*,
html,
body {
    margin: 0;
    padding: 0;
    font-family: 'pangolin', cursive;
    scroll-behavior: smooth;
}

.mvp1 {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    width: 100%;
    height: 100vh;
}

.container11 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.slider-container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.slidem {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide1,
.slide2,
.slide3,
.slide4 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    padding: 20px;
}

.slide1 img,
.slide2 img,
.slide3 img,
.slide4 img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Tombol prev/next */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    background-color: rgb(0, 0, 0);
    border: 1px solid #000;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.prev:hover,
.next:hover {
    background-color: white;
    color: black;
    border: #ffc54d 5px solid;
}

.prev {
    left: 5%;
}

.next {
    right: 5%;
}

.container {
    width: 100%;
    height: 100vh;
    background-color: rgb(165, 165, 165);
}

.header {
    z-index: 3;
    position: fixed;
    top: 0;
    height: 90px;
    background: #ffc54d;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
}

.wreaper {
    align-items: center;
    justify-content: center;
    display: flex;
    justify-content: space-between;
}

.logo {
    width: 30%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    position: absolute;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
}

.logo a img {
    width: 200px;
    height: 40px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    margin-right: 100px;
    position: absolute;

}

.button {
    color: rgb(0, 0, 0);
    display: none;
    padding: 20px;
}

.ulbutton {
    display: none;
    background-color: black;
}

.ulbutton li {
    list-style-type: none;
}

.ulbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ulbar li {
    list-style-type: none;
    padding: 30px;
}

.ulbar li a {
    text-transform: capitalize;
    text-decoration: none;
    font-size: 15px;
    background-image: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 0, 0) 50%, white 50%);
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

.ulbar li a:before {
    content: '';
    background: #ffffff;
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease-in-out;
}



.ulbar li a:hover {
    background-position: 0;
}

.ulbar li a:hover::before {
    width: 100%;
}

.event {
    cursor: pointer;
}

.event p {
    cursor: pointer;
    color: white;
}

.event p:hover {
    color: rgb(0, 0, 0);
}


.uldrop {
    display: none;
    position: absolute;
    width: 100px;
    height: auto;
    margin-top: 10px;
    right: 1%;
    box-shadow: 0 1px 5px 0 rgb(139, 139, 139);
    background-color: rgb(255, 255, 255);
    justify-content: center;
    border-radius: 10px;
    flex-direction: column;
}

.uldrop li {
    list-style-type: none;
    margin: 5px;
}

.uldrop a li {
    background-image: linear-gradient(to right, orange, orange 50%, rgb(0, 0, 0) 50%);
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}


.uldrop a li:before {
    content: '';
    background: #000000;
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease-in-out;
}



.uldrop a li:hover {
    background-position: 0;
}

.uldrop a li:hover::before {
    width: 100%;
}

.event:hover .uldrop {
    display: flex;
    justify-content: left;
    flex-direction: column;
    transition: all.9s;

}





.home {
    background-color: #ffc54d;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lefth1 {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.left1 img {
    width: 50%;
    height: 20%;
}

.buttond1 {
    margin-top: 50px;
    background-color: black;
    width: 100px;
    height: 50px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    cursor: pointer;
}

.buttond1:hover {
    margin-top: 50px;
    background-color: rgb(255, 255, 255);
    width: 100px;
    height: 50px;
    color: rgb(0, 0, 0);
    display: flex;
    transition: all 0.5s;
    box-shadow: #000000 0 2px 10px 0;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    cursor: pointer;
}

a,
.buttond1 {
    text-decoration: none
}

.righth1 {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    border-radius: 400px 0 0 0;
    border-left: solid 5px white;
}

.righth1 img {
    width: 60%;
    height: 40%;
}


/* Initial styles for the "tentang" section */
.tentang {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.9s, opacity 0.5s;
}

/* CSS keyframes animation for sliding in from the left */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply the animation to elements with the class "leftt1" */
.leftt1 {
    animation: slideInFromLeft 1s ease-out;
}

/* CSS keyframes animation for sliding in from the right */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply the animation to elements with the class "rightt1" */
.rightt1 {
    animation: slideInFromRight 1s ease-out;
}




.leftt1 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    width: 40%;
    height: 100%;
    border-radius: 0 400px 0 0;
    border-right: solid 5px #ffc54d;
}

.leftt1 img {
    width: 60%;
    height: 40%;
}

.rightt1 {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tentang1 {
    width: 70%;
    height: 40%;
    background-color: #ffc54d;
    border: solid 5px black;
    border-radius: 0 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tentang1 h3 {
    text-align: center;
    margin-bottom: 20px;
}

.isi1 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80%;
    width: 90%;
    flex-direction: column;
}

.isi1 p {
    text-align: justify;
    margin-bottom: 20px;
}


/* Styling untuk vidio1 */
.vidio1 {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffc54d;
}

.bvidio {
    width: 70%;
    height: 70%;
    background-color: rgba(0, 0, 0, 0.596);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.bvidio video {
    width: 90%;
    height: 90%;
    z-index: 1;
}

.leftv1,
.rightv1 {
    position: absolute;
    width: 30%;
    height: 50%;
    background-color: white;
    bottom: 0;
    z-index: 0;
}

.leftv1 {
    left: 0;
    border-radius: 0 500px 0 0;
}

.rightv1 {
    right: 0;
    border-radius: 500px 0 0 0;
}




.grandfinal {
    min-height: 100vh;
    justify-content: center;
    display: flex;
    z-index: 1;
    background-color: #ffc54d;
    align-items: center;
    width: 100%;
}

.grdfinal {
    width: 100%;
    flex-wrap: wrap;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    justify-content: center;
}

.grd1,
.grd2,
.grd3,
.grd4 {
    margin: 20px;
    width: 250px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 5px 10px 0px #000000;
}

.grd1 img,
.grd2 img,
.grd3 img,
.grd4 img {
    width: 250px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;

}

/* Gaya untuk gambar dengan class "zoomable" */
.zoomable {
    cursor: pointer;
    transition: transform 0.3s ease;
    /* Animasi transform */
}

/* Ketika gambar dihover, berikan efek zoom */
.zoomable:hover {
    transform: scale(1.2);
    /* Perbesar gambar saat dihover */
}

.mvp {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    height: 100vh;
    /* Sesuaikan dengan tinggi yang Anda inginkan */
    overflow: hidden;
    position: relative;
    /* Tambahkan properti position */
}

.container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
}

.slider-container {
    display: flex;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    /* Tambahkan properti width */
}

.slide {
    flex: 0 0 100%;
    display: flex;
    /* Tambahkan display flex */
    justify-content: center;
    /* Tambahkan justify-content center */
    align-items: center;
    /* Tambahkan align-items center */
}

.slide img {
    max-width: 1000px;
    height: auto;
    width: auto;
    /* Hapus height auto dan tambahkan width auto */
    max-height: 450px;
    /* Tambahkan max-height 100% */
}


/* Default styles for .informasi */
.informasi {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffc54d;
}

/* Default styles for .informasi1 */
.informasi1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    height: 70%;
    background-color: #ffffff;
    border-radius: 50px;
    flex-direction: column;
}

/* Default styles for .f1, .f2, .f3, .f4 */
.f1,
.f2,
.f3,
.f4 {
    margin-bottom: 10px;
    margin-top: 10px;
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-evenly;
}

/* Default styles for .f11, .f22, .f33, .f44 */
.f11,
.f22,
.f33,
.f44 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    width: 40%;
    height: 60%;
    border: solid 5px rgb(90, 90, 90);
    background-color: black;
    border-radius: 100px;
    flex-direction: column;
}

/* Default styles for .f111, .f222, .f333, .f444 */
.f111,
.f222,
.f333,
.f444 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    width: 40%;
    border: solid 5px rgb(90, 90, 90);
    height: 60%;
    background-color: black;
    border-radius: 100px;
    flex-direction: column;
}

/* Default styles for text within .f11, .f22, .f33, .f44 */
.f11 p,
.f22 p,
.f33 p,
.f44 p {
    color: #ffc54d;
}

/* Default styles for text within .f111, .f222, .f333, .f444 */
.f111 p,
.f222 p,
.f333 p,
.f444 p {
    color: #ffc54d;
}

/* Media Query for screens with a maximum width of 768px */
@media (max-width: 768px) {
    .informasi1 {
        width: 90%;
        /* Adjust width for smaller screens */
        height: auto;
        /* Remove fixed height */
    }

    .f1,
    .f2,
    .f3,
    .f4 {
        flex-direction: column;
        /* Stack elements vertically */
        height: auto;
        /* Remove fixed height */
    }

    .f11,
    .f22,
    .f33,
    .f44,
    .f111,
    .f222,
    .f333,
    .f444 {
        width: 80%;
        /* Adjust width for smaller screens */
        height: auto;
        /* Remove fixed height */
    }
}


/* Updated styles for the "DAFTAR" section */
.daftar {
    background-color: #ffffff;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Container for the form */
.dfr1 {
    max-width: 90%;
    padding: 25px;
    background-color: #ffc54d;
    border-radius: 10px;
    border: solid 5px black;
    box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    /* Stack elements vertically */
    align-items: center;
    /* Center align children horizontally */
}

/* Default styles for the form */
.form {
    width: 100%;
    /* Adjust form width to fill the container */
    max-width: 400px;
    margin: 0 auto;
}

/* Default styles for labels */
.form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    text-align: left;
    /* Left-align labels */
}

/* Default styles for input elements */
.input1 input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Default styles for the "DAFTAR" button */
.buttona {
    background-color: #000;
    color: #ffc54d;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover styles for the "DAFTAR" button */
.buttona:hover {
    background-color: #444;
}

/* Media Query for screens with a maximum width of 768px */
@media (max-width: 768px) {

    /* Adjust the max-width of the form for smaller screens */
    .form {
        max-width: 90%;
    }
}


.footer {
    background-color: black;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.leftft1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100px;
}


.leftft1 img {
    width: 220px;
    height: 100px;
}

.leftft1 .imgft1 {
    width: 120px;
    height: 80px;
}

.rightft1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100px;
}

.media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
}

.ft11,
.ft12 {
    margin: 50px;
    width: 60px;
    /* Adjust icon width */
    height: 60px;
    border: #ffc54d 5px solid;
    /* Adjust icon height */
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    cursor: pointer;
}

/* Default styles for the social media icons images */
.ft11 img,
.ft12 img {
    width: 50px;
    /* Adjust icon image width */
    height: 50px;
    /* Adjust icon image height */
}

@media screen and (max-width:667px) {

    .footer {
        background-color: black;
        width: 100%;
        height: 200px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        color: white;
    }

    .leftft1 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100px;
    }


    .leftft1 img {
        width: 220px;
        height: 100px;
    }

    .leftft1 .imgft1 {
        width: 120px;
        height: 80px;
        margin-right: 50px;
    }

    .rightft1 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100px;
    }

    .media {
        display: flex;
        align-items: center;
        justify-content: center;
        justify-content: space-evenly;
        width: 100%;
        height: 100%;
    }

    .ft11,
    .ft12 {
        width: 60px;
        /* Adjust icon width */
        height: 60px;
        border: #ffc54d 5px solid;
        /* Adjust icon height */
        border-radius: 50%;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 80px;
        cursor: pointer;
    }

    /* Default styles for the social media icons images */
    .ft11 img,
    .ft12 img {
        width: 50px;
        /* Adjust icon image width */
        height: 50px;
        /* Adjust icon image height */
    }
}


@media screen and (max-width:363px) {

    .footer {
        background-color: black;
        width: 100%;
        height: 200px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        color: white;
    }

    .leftft1 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100px;
        justify-content: space-evenly;
    }


    .leftft1 img {
        width: 150px;
        height: 80px;
    }

    .leftft1 .imgft1 {
        width: 90px;
        height: 60px;
        margin-right: 30px;
    }

    .rightft1 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100px;
    }

    .media {
        display: flex;
        align-items: center;
        justify-content: center;
        justify-content: space-evenly;
        width: 100%;
        height: 100%;
    }

    .ft11,
    .ft12 {
        width: 60px;
        /* Adjust icon width */
        height: 60px;
        border: #ffc54d 5px solid;
        /* Adjust icon height */
        border-radius: 50%;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 80px;
        cursor: pointer;
    }

    /* Default styles for the social media icons images */
    .ft11 img,
    .ft12 img {
        width: 50px;
        /* Adjust icon image width */
        height: 50px;
        /* Adjust icon image height */
    }
}

@media screen and (max-width:1598px) {

    .rightt1 {
        width: 60%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tentang1 {
        width: 70%;
        height: 60%;
        background-color: #ffc54d;
        border: solid 5px black;
        border-radius: 0 0 0 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tentang1 h3 {
        text-align: center;
        margin-bottom: 20px;
    }

    .isi1 {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80%;
        width: 90%;
        flex-direction: column;
    }

    .isi1 p {
        text-align: justify;
        margin-bottom: 20px;
    }

}

@media screen and (max-width:1322px) {



    .lefth1 {
        width: 50%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .left1 {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .left1 img {
        width: 80%;
        height: 20%;
    }

    .buttond1 {
        margin-top: 50px;
        background-color: black;
        width: 100px;
        height: 50px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        cursor: pointer;
    }

    .buttond1:hover {
        margin-top: 50px;
        background-color: rgb(255, 255, 255);
        width: 100px;
        height: 50px;
        color: rgb(0, 0, 0);
        display: flex;
        transition: all 0.5s;
        box-shadow: #000000 0 2px 10px 0;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        cursor: pointer;
    }

    a,
    .buttond1 {
        text-decoration: none
    }

    .righth1 {
        width: 50%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: black;
        border-radius: 400px 0 0 0;
        border-left: solid 5px white;
    }

    .righth1 img {
        width: 80%;
        height: 40%;
    }

}



@media screen and (max-width:1090px) {


    .leftt1 {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: black;
        width: 20%;
        height: 100%;
        border-radius: 0 400px 0 0;
        border-right: solid 5px #ffc54d;
    }

    .leftt1 img {
        width: 70%;
        height: 20%;
    }

    .rightt1 {
        width: 80%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tentang1 {
        width: 70%;
        height: 60%;
        background-color: #ffc54d;
        border: solid 5px black;
        border-radius: 0 0 0 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tentang1 h3 {
        text-align: center;
        margin-bottom: 20px;
    }

    .isi1 {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80%;
        width: 90%;
        flex-direction: column;
    }

    .isi1 p {
        text-align: justify;
        margin-bottom: 20px;
    }





    .lefth1 {
        width: 50%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .left1 {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .left1 img {
        width: 80%;
        height: 20%;
    }

    .buttond1 {
        margin-top: 50px;
        background-color: black;
        width: 100px;
        height: 50px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        cursor: pointer;
    }

    .buttond1:hover {
        margin-top: 50px;
        background-color: rgb(255, 255, 255);
        width: 100px;
        height: 50px;
        color: rgb(0, 0, 0);
        display: flex;
        transition: all 0.5s;
        box-shadow: #000000 0 2px 10px 0;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        cursor: pointer;
    }

    a,
    .buttond1 {
        text-decoration: none
    }

    .righth1 {
        width: 50%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: black;
        border-radius: 400px 0 0 0;
        border-left: solid 5px white;
    }

    .righth1 img {
        width: 80%;
        height: 40%;
    }


}



@media screen and (max-width:816px) {


    .home {
        background-color: #ffc54d;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .lefth1 {
        width: 80%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .left1 {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .left1 img {
        width: 80%;
        height: 20%;
    }

    .buttond1 {
        margin-top: 50px;
        background-color: black;
        width: 100px;
        height: 50px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        cursor: pointer;
    }

    .buttond1:hover {
        margin-top: 50px;
        background-color: rgb(255, 255, 255);
        width: 100px;
        height: 50px;
        color: rgb(0, 0, 0);
        display: flex;
        transition: all 0.5s;
        box-shadow: #000000 0 2px 10px 0;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        cursor: pointer;
    }

    a,
    .buttond1 {
        text-decoration: none
    }

    .righth1 {
        position: absolute;
        width: 10%;
        height: 100%;
        right: 0;
        background-color: black;
        border-radius: 400px 0 0 0;
        border-left: solid 5px white;
    }

    .righth1 img {
        display: none;
        width: 80%;
        height: 40%;
    }






    .leftt1 {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: black;
        width: 10%;
        height: 100%;
        border-radius: 0 400px 0 0;
        border-right: solid 5px #ffc54d;
    }

    .leftt1 img {
        display: none;
        width: 70%;
        height: 20%;
    }

    .rightt1 {
        width: 90%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tentang1 {
        width: 90%;
        height: 60%;
        background-color: #ffc54d;
        border: solid 5px black;
        border-radius: 0 0 0 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tentang1 h3 {
        text-align: center;
        margin-bottom: 20px;
    }

    .isi1 {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80%;
        width: 90%;
        flex-direction: column;
    }

    .isi1 p {
        text-align: justify;
        margin-bottom: 20px;
    }



}

@media screen and (max-width:557px) {

    .home {
        background-color: #ffc54d;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .lefth1 {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .left1 {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .left1 img {
        width: 80%;
        height: 20%;
    }

    .buttond1 {
        margin-top: 50px;
        background-color: black;
        width: 100px;
        height: 50px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        cursor: pointer;
    }

    .buttond1:hover {
        margin-top: 50px;
        background-color: rgb(255, 255, 255);
        width: 100px;
        height: 50px;
        color: rgb(0, 0, 0);
        display: flex;
        transition: all 0.5s;
        box-shadow: #000000 0 2px 10px 0;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        cursor: pointer;
    }

    a,
    .buttond1 {
        text-decoration: none
    }

    .righth1 {
        display: none;
        position: absolute;
        width: 10%;
        height: 100%;
        right: 0;
        background-color: black;
        border-radius: 400px 0 0 0;
        border-left: solid 5px white;
    }

    .righth1 img {
        display: none;
        width: 80%;
        height: 40%;
    }
}


@media screen and (max-width:381px) {



    .leftt1 {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: black;
        width: 10%;
        height: 100%;
        border-radius: 0 400px 0 0;
        border-right: solid 5px #ffc54d;
    }

    .leftt1 img {
        display: none;
        width: 70%;
        height: 20%;
    }

    .rightt1 {
        width: 90%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tentang1 {
        width: 90%;
        height: 95%;
        background-color: #ffc54d;
        border: solid 5px black;
        border-radius: 0 0 0 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tentang1 h3 {
        text-align: center;
        margin-bottom: 20px;
    }

    .isi1 {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80%;
        width: 90%;
        flex-direction: column;
    }

    .isi1 p {
        text-align: justify;
        margin-bottom: 20px;
    }


}


@media screen and (max-width:1889px) {

    .vidio1 {
        position: relative;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffc54d;
    }

    .bvidio {
        width: 80%;
        height: 70%;
        background-color: rgba(0, 0, 0, 0.596);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .bvidio video {
        width: 100%;
        height: 100%;
        z-index: 1;
    }
}


@media screen and (max-width:1610px) {

    .vidio1 {
        position: relative;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffc54d;
    }

    .bvidio {
        width: 90%;
        height: 70%;
        background-color: rgba(0, 0, 0, 0.596);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .bvidio video {
        width: 100%;
        height: 100%;
        z-index: 1;
    }
}




@media screen and (max-width:1156px) {




    .informasi {
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffc54d;
    }

    .informasi1 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80%;
        height: 70%;
        background-color: #ffffff;
        border-radius: 50px;
        flex-direction: column;

    }

    .f1,
    .f2,
    .f3,
    .f4 {
        margin-bottom: 10px;
        margin-top: 10px;
        width: 100%;
        height: 40%;
        display: flex;
        align-items: center;
        justify-content: center;
        justify-content: space-evenly;
    }

    .f11,
    .f22,
    .f33,
    .f44 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        width: 40%;
        height: 60%;
        border: solid 5px rgb(90, 90, 90);
        background-color: black;
        border-radius: 100px;
        flex-direction: column;
    }


    .f111,
    .f222,
    .f333,
    .f444 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        width: 40%;
        border: solid 5px rgb(90, 90, 90);

        height: 60%;
        background-color: black;
        border-radius: 100px;
        flex-direction: column;
    }



    .f11 p,
    .f22 p,
    .f33 p,
    .f44 p {
        color: #ffc54d;
    }

    .f111 p,
    .f222 p,
    .f333 p,
    .f444 p {
        color: #ffc54d;
    }
}


@media screen and (max-width:1006px) {




    .informasi {
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffc54d;
    }

    .informasi1 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90%;
        height: 70%;
        background-color: #ffffff;
        border-radius: 50px;
        flex-direction: column;

    }

    .f1,
    .f2,
    .f3,
    .f4 {
        margin-bottom: 10px;
        margin-top: 10px;
        width: 100%;
        height: 40%;
        display: flex;
        align-items: center;
        justify-content: center;
        justify-content: space-evenly;
    }

    .f11,
    .f22,
    .f33,
    .f44 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        width: 40%;
        height: 60%;
        border: solid 5px rgb(90, 90, 90);
        background-color: black;
        border-radius: 100px;
        flex-direction: column;
    }


    .f111,
    .f222,
    .f333,
    .f444 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        width: 40%;
        border: solid 5px rgb(90, 90, 90);

        height: 60%;
        background-color: black;
        border-radius: 100px;
        flex-direction: column;
    }



    .f11 p,
    .f22 p,
    .f33 p,
    .f44 p {
        color: #ffc54d;
    }

    .f111 p,
    .f222 p,
    .f333 p,
    .f444 p {
        color: #ffc54d;
    }
}



@media screen and (max-width:856px) {

    .informasi {
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffc54d;
    }

    .informasi1 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 95%;
        height: 70%;
        background-color: #ffffff;
        border-radius: 50px;
        flex-direction: column;

    }

    .f1,
    .f2,
    .f3,
    .f4 {
        margin-bottom: 10px;
        margin-top: 10px;
        width: 100%;
        height: 40%;
        display: flex;
        align-items: center;
        justify-content: center;
        justify-content: space-evenly;
    }

    .f11,
    .f22,
    .f33,
    .f44 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        width: 40%;
        height: 60%;
        border: solid 5px rgb(90, 90, 90);
        background-color: black;
        border-radius: 100px;
        flex-direction: column;
    }


    .f111,
    .f222,
    .f333,
    .f444 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        width: 40%;
        border: solid 5px rgb(90, 90, 90);

        height: 60%;
        background-color: black;
        border-radius: 100px;
        flex-direction: column;
    }



    .f11 p,
    .f22 p,
    .f33 p,
    .f44 p {
        color: #ffc54d;
    }

    .f111 p,
    .f222 p,
    .f333 p,
    .f444 p {
        color: #ffc54d;
    }
}



@media screen and (max-width:766px) {




    .informasi {
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffc54d;
    }

    .informasi1 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 95%;
        height: 70%;
        background-color: #ffffff;
        border-radius: 50px;
        flex-direction: column;

    }

    .f1,
    .f2,
    .f3,
    .f4 {
        margin-bottom: 10px;
        margin-top: 10px;
        width: 100%;
        height: 40%;
        display: flex;
        align-items: center;
        justify-content: center;
        justify-content: space-evenly;
    }

    .f11,
    .f22,
    .f33,
    .f44 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        width: 40%;
        height: 60%;
        border: solid 5px rgb(90, 90, 90);
        background-color: black;
        border-radius: 100px;
        flex-direction: column;
    }


    .f111,
    .f222,
    .f333,
    .f444 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        width: 40%;
        border: solid 5px rgb(90, 90, 90);

        height: 60%;
        background-color: black;
        border-radius: 100px;
        flex-direction: column;
    }



    .f11 p,
    .f22 p,
    .f33 p,
    .f44 p {
        color: #ffc54d;
    }

    .f111 p,
    .f222 p,
    .f333 p,
    .f444 p {
        color: #ffc54d;
    }
}


@media screen and (max-width:668px) {




    .informasi {
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffc54d;
    }

    .informasi1 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 95%;
        height: 100%;
        background-color: #ffffff;
        border-radius: 50px 50px 0 0;
        border-top: #000000 solid;
        border-bottom: #000000 solid;
        flex-direction: column;

    }

    .f1,
    .f2,
    .f3,
    .f4 {
        width: 100%;
        height: 40%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .f11,
    .f22,
    .f33,
    .f44 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        width: 80%;
        height: 60%;
        border: solid 5px rgb(90, 90, 90);
        background-color: black;
        border-radius: 100px;
        flex-direction: column;
    }


    .f111,
    .f222,
    .f333,
    .f444 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        width: 80%;
        border: solid 5px rgb(90, 90, 90);
        height: 60%;
        background-color: black;
        border-radius: 100px;
        margin-top: 10px;
        flex-direction: column;
    }



    .f11 p,
    .f22 p,
    .f33 p,
    .f44 p {
        color: #ffc54d;
    }

    .f111 p,
    .f222 p,
    .f333 p,
    .f444 p {
        color: #ffc54d;
    }

    .f1 .pp1,
    .f2 .pp1,
    .f3 .pp1,
    .f4 .pp1 {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 25px;
        background-color: #ffc54d;
        width: 40px;
        height: 30px;
        margin-top: 10px
    }
}

/* Add a media query for screens with a maximum width of 768px */
@media (max-width: 768px) {
    .header {
        height: 60px;
        /* Decrease the height for smaller screens */
    }

    .wreaper {
        flex-direction: column;
        /* Stack elements vertically */
    }

    .logo {
        width: 50%;
        /* Adjust logo width */
    }

    .navbar {
        margin-right: 20px;
        /* Decrease the right margin */
    }

    .button {
        display: block;
        /* Show the button */
    }

    .ulbutton {
        display: none;
        /* Show the ulbutton */
    }

    .ulbar {
        display: none;
        /* Hide the ulbar */
    }

    .uldrop {
        display: none;
        right: 0;
        /* Adjust the position */
    }
}

/* Add a media query for screens with a minimum width of 1200px */
@media (min-width: 1200px) {
    .navbar {
        margin-right: 100px;
        /* Restore the margin for larger screens */
    }
}

/* Add a media query for screens with a maximum width of 992px */
@media (max-width: 992px) {
    .navbar {
        margin-right: 50px;
        /* Decrease the margin for medium-sized screens */
    }
}

/* Add a media query for screens with a maximum width of 576px */
@media (max-width: 576px) {
    .uldrop {
        width: 80px;
        /* Adjust the width for smaller screens */
    }
}

/* Add a media query for screens with a maximum width of 320px */
@media (max-width: 420px) {
    .logo a img {
        position: absolute;
        width: 150px;
        left: 5%;
        margin-bottom: 10px;
        /* Adjust the logo image width for very small screens */
    }
}

@media screen and (max-width: 987px) {

    .mvp {
        display: none;
        justify-content: center;
        align-items: center;
        height: 100%;
        height: 100vh;
        /* Sesuaikan dengan tinggi yang Anda inginkan */
        overflow: hidden;
        position: relative;
        /* Tambahkan properti position */
    }

    .container1 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70%;
    }

    .slider-container {
        display: flex;
        overflow: hidden;
    }

    .slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 100%;
        /* Tambahkan properti width */
    }

    .slide {
        flex: 0 0 100%;
        display: flex;
        /* Tambahkan display flex */
        justify-content: center;
        /* Tambahkan justify-content center */
        align-items: center;
        /* Tambahkan align-items center */
    }

    .slide img {
        max-width: 1000px;
        height: auto;
        width: auto;
        /* Hapus height auto dan tambahkan width auto */
        max-height: 450px;
        /* Tambahkan max-height 100% */
    }

    /* Styling dasar */
    .mvp1 {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ffffff;
        width: 100%;
        height: 100vh;
    }

    .container11 {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100%;
    }

    .slider-container1 {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .slidem {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .slide1,
    .slide2,
    .slide3,
    .slide4 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        padding: 20px;
    }

    .slide1 img,
    .slide2 img,
    .slide3 img,
    .slide4 img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    /* Tombol prev/next */
    .prev,
    .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        font-size: 24px;
        padding: 10px;
        background-color: rgb(0, 0, 0);
        border: 1px solid #000;
        border-radius: 50%;
        text-decoration: none;
        color: #ffffff;
        transition: background-color 0.3s ease;
    }

    .prev:hover,
    .next:hover {
        background-color: white;
        color: black;
        border: #ffc54d 5px solid;
    }

    .prev {
        left: 5%;
    }

    .next {
        right: 5%;
    }

    /* Responsif */
    @media (max-width: 768px) {
        .slidem {
            flex-wrap: nowrap;
        }

        .slide1,
        .slide2,
        .slide3,
        .slide4 {
            flex: 0 0 100%;
        }
    }


}