@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

:root {
    --primary-color : #1a6564;
    --main-color : #2F4057;
}

html,
body {
    overflow-x: hidden;
}

section {
    padding: 3rem 9%;
}

#menu {
    display: none;
}

#preloader {
    background: #fff url(image/preload.gif) no-repeat center center;
    background-size: 20%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 99999;
}

.hamburger div {
    width: 20px;
    height: 3px;
    background: #fff;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}


.heading {
    text-align: start;
    margin: 1rem 0;
    text-transform: uppercase;
    font-size: 2rem;
}

.white {
    color: #fff;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 3%;
    position: fixed;
    background: transparent;
    transition: all .45s ease;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar img {
    width: 8rem;
}


.navbar-nav a {
    font-size: 0.85rem;
    margin: 1.25rem 1rem;
    display: inline-block;
    transition: 0.2s ease;
    position: relative;
    font-weight: 450;
    text-transform: uppercase;
    transition: .3s;
    color: #fff;
    transition: color 0.3s ease;
}

.navbar-nav a:hover {
    color: #008080;
}

.navbar.fixed {
    position: fixed;
    background-color: #fff;
    padding: 0.4rem 5%;
    color: #000;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.3);
}

.logo.asli {
    display: none;
}

.navbar.fixed .logo.asli {
    display: inline-block;
}

.navbar.fixed .logo.putih {
    display: none;
}

.navbar.fixed .navbar-nav a {
    color: #333;
}

.navbar.navbar.fixed .navbar-nav a:hover {
    color: #008080;
}


.language {
    position: relative;
    width: 120px;
    margin-left: 40px;
    font-weight: bold;
}


.language-selected {
    display: flex;
    align-items: center;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease
}

.navbar.fixed .language-selected {
    color: #333;
}

.language-selected::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(https://flagsapi.com/ID/flat/64.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.language-selected.en::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(https://flagsapi.com/US/flat/64.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.language-selected.cn::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(https://flagsapi.com/CN/flat/64.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.language ul {
    position: absolute;
    width: 100px;
    background-color: #fff;
    border: 1px solid #f8f8f8;
    padding: 5px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
    display: none;
}

.language ul li {
    list-style: none;
}

.languageu ul li a {
    display: block;
    color: #252525;
    padding-top: 5px 10px;
}

.language ul li:hover {
    background-color: #f8f8f8;
}

.language ul li a::before {
        content: '';
        display: inline-block;
        width: 25px;
        height: 25px;
        background-size: contain;
        vertical-align: middle;
        background-repeat: no-repeat;
        margin-right: 10px;
}

a.en::before {
    background-image: url(https://flagsapi.com/US/flat/64.png);
}

a.id::before {
    background-image: url(https://flagsapi.com/ID/flat/64.png);
}

a.cn::before {
    background-image: url(https://flagsapi.com/CN/flat/64.png)
}

.language:hover ul {
    display: block;
}

.home {
    position:relative;
    margin: 0;
    padding: 0;
    width: 100%;
    padding: 0 0 10rem 0;
    background: url('image/home.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.home-wave::before {
    content: '';
    position: absolute;
    height: 100vh;
    width: 100%;
    left: 0;
    bottom: 0;
    background: url(image/wave-d.png) 100% 100% no-repeat;
    background-size: contain;
}

.home-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.home-content {
    margin: 200px 0 0 50px;
}

.home-content h1 {
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 2.5px;
}

.home-content p {
    color: #C4D0D5;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 2rem;
    margin: 0.5rem 0 2rem;

}

.jarak {
    margin:5rem 0;
}

.btn {
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #fff;
    padding: 1.25rem 2rem; 
    border-radius: 5px;
    transition: all .3s ease;
    width: fit-content;
    color: #fff;
    font-size: 1.25rem;
}


.btn:hover {
    background-color: #FFFFFA;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.3);
    color: #000;
    transform: translateY(-10px);
}
.compro-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.compro-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 1rem;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
}

.close-compro {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 24px;
    cursor: pointer;
}

.mobile-view {
    display: none;
}

.download-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #008080;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.about-teks {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-teks p {
    text-align: center;
    font-size: 1.5rem;
    margin: 5rem;
    color: var(--primary-color);
}

.about {
    padding: 2rem;
    margin: 2.5rem 0;
    width: 100%;
    background: url('image/bg\ \(1\).jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-content {
    background-color: #86bdbfe0;
    padding: 1.5rem;
    margin: 5rem 2rem;
    width: 50%;
}

.about-content .prg {
    margin-bottom: 1.2rem;
}

.about-content .prg {
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff;
    line-height: 2rem;
}

.about-content .dirut {
    font-size: 1rem;
    color: #fff;
}

.about-content .dirut-teks {
    color: #ffffff98;
}

/* css slider */
.content p, .content h2 {
    color: #fff;
}

/* TENTANG */
.tentang-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.tentang-content {
    background: url('image/bg\ \(5\).jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 0 200px 150px;
    position: relative;
    margin: 0;
    width: 100%;

}

.two {
    background: url('image/bg\ \(2\).jpg');
}

.tentang-content:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, #000 10%, transparent);
}

.tentang-content p {
    letter-spacing: 10px;
    color: #fff;
    text-transform: uppercase;
    z-index: 1;
}

.tentang-content h1 {
    font-size: 4rem;
    color: #fff;
    z-index: 1;
    margin: 1rem 0;
}

.tentang-content h3 {
    color: #fff;
    z-index: 1;
    font-weight: 400;
    
}



/* TENTANG END */
/* BUSINESS */
.business {
    margin: 1rem 0;
}
.business h1 {
    letter-spacing: 10px;
    text-transform: uppercase;
    font-size: 3rem;
    color: #333333;
}

.underline {
    left: 0;
    width: 0;
    height: 5px;
    background-color: #000;
    transition: width 0.5s ease-in-out;
    margin-top: 1rem;
    }

.business.active .underline {
    width: 20%;
}

.busines-container {
    display: flex;
    align-items:center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    
}

.busines-box {
    padding: 3rem;
    background-color: #f0fcff;
    border-radius: 10px;
    text-align: center;
    height: 40rem;
    width: 20rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}



.busines-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    row-gap: 10px;
}

.busines-icon i {
    font-size: 2.5rem;
    padding: 12px;
    background-color: #008080;
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.busines-icon h4 {
    font-size: 1.25rem;
    text-transform: uppercase;
}

.busines-text {
    margin-top: 16px;
    line-height: 2rem;
    
}

.busines-text ul li {
    font-size: 1rem;
}



/* BUSINESS END */

video {
    width: 100%;
}

.video-container {
            position: relative;
            width: 100%;
            height: 75vh;
            overflow: hidden;
        }
        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #333333;
            text-align: center;
            background: #f5f6f7cf;
            padding: 20px 30px;
            border-radius: 5px;
        }
        .overlay .text {
            font-size: 30px;
            font-weight: bold;
            text-transform: uppercase;
        }
        .overlay .author {
            font-size: 18px;
            font-style: italic;
            color: #333333;
            margin-top: 8px;
            text-align: start;
        }

.galeri {
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
}

.galeri img {
    width: 100%;
}

.keunggulan-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    margin-top: 2rem;
}

.keunggulan-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.keunggulan-content h3 {
    text-transform: uppercase;
}
.keunggulan-content i {
    font-size: 35px;
    padding: 0.85rem;
    border: 2px solid #008080;
    border-radius: 50%;
    color: #008080;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.keunggulan-content p {
    text-align: center;
}

/*=============== SUBSCRIBE ===============*/

.investor-container {
    background:url(image/back\ \(1\).jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5rem;
    border-radius: 10px;
    border: 5px solid #135353;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
}

.investor-container:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background-image: linear-gradient(to top, #135353 10%, transparent);
}

.investor-container h1 {
    font-size: 3.5rem;
    color: #fff;
        letter-spacing: 5px;
    text-transform: uppercase;
    z-index: 1;
    text-align: center;
}

.investor p {
    color: #fff;
    margin: 1rem 5rem 2.2rem;
    z-index: 1;
    font-size: 20px;
    text-align: center;
    letter-spacing: 2px;
    line-height: 30px;
}

.investor-button {
    font-size: 1.1rem;
    padding: 1.1rem;
    background-color: #2cadab;
    border-radius: 8px;
    border: 3px solid #fff;
    color: #fff;
    z-index: 1;
    letter-spacing: 2px;
    line-height: 30px;
}

.investor-home {
    margin: 0;
    padding: 0 0 4rem 0;
    width: 100%;
    background: url(Image/investor2.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.investor-content {
    margin: 125px 0 0 50px;
}


.back {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.back a {
    color: #fff;
}

.back p {
    font-size: 13px;
    color: #fff;
    margin: 0;
}

.inv-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 2rem 0;
}

.inv-content h1 {
    font-family: "Mulish", sans-serif;
    letter-spacing: 2px;
    line-height: 30px;
    font-weight: 600;
    color: #4B7389;
    font-size: 4rem;
    margin-bottom: 3rem;
}

.inv-content p {
    margin: 1.5rem 0;
    font-family: "Mulish", sans-serif;
    letter-spacing: 2px;
    line-height: 30px;
}

.inv-content img {
    width: 45rem;
}



.popup {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4BB543;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    animation: fadeInOut 3s ease-in-out;
}

/* Animasi muncul dan hilang */
@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    90% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}
/* SCROLL UP */
.scroll-up {
    position: fixed;
    right: 3rem;
    bottom: -20%;
    background-color: var(--primary-color);
    opacity: 0.8;
    padding: 0.1rem;
    border-radius: 50%;
    z-index: 95;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-up:hover {
    background-color: #073043;
}

.scroll-up-icon {
    font-size: 1.5rem;
    color: #fff;
}

.show-scroll {
    bottom: 2rem;
}


/* PARTNER */
.partner {
    background-color: #EEEEF0;
    padding: 2rem 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.partner h1 {
    font-size: 1.5rem;
    color: #135353;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-align: center;
}

.partner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.partner-container img {
    width: 10rem;
}



/* PARTNER END */
.footer {
    position: relative;
    margin: 0;
    padding: 1rem 4rem;
    background: url(image/footer.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 100px;

}

.footer-content {
    width: 100%;
}

.footer-content img {
    width: 13rem;
}

.footer-content h1, .contact-form h2 {
    color: #F9F6EE;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.footer-detail {
    margin: 2rem 0;
}

.footer-detail a {
    color: #F9F6EE;
}

.footer-content p {
    color: #F9F6EE;
}

.kontak {
    display: flex;
    flex-direction: column;
}

.kontak a {
    color: #F9F6EE;
}

.footer-content ul li  {
    list-style: square;
}

.footer-content ul li::marker {
    color: #fff;
}

.footer-content ul li a:hover {
    text-decoration: underline;
}

.contact-form {
    padding: 20px 20px 20px 0;
    border-radius: 5px;
    color: #fff;
}

.contact-form input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
}

.contact-form textarea {
    width: 100%;
    height: 220px;
    border: none;
    border-radius: 5px;
    margin: 5px 0;
    padding: 10px;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
}

.garis {
    width: 80%;
    margin: 0 auto;
    height: 1px;
    background-color: #C4D0D5;
}

.copy {
    margin: 2rem;
    text-align: center;
}

.copy p {
    color: #fff;
}

.popup-success {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #4caf50;
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
}

.popup-success.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* MEDIA QUERIES */ 

@media (max-width: 1060px) {
        .navbar {
        padding: 0.5rem 2%;
    }

    .navbar img {
    width: 6.5rem;
    }

    .navbar-nav a {
        font-size: 1rem;
    }
}
@media (max-width: 991px) {

    .navbar.fixed {
        padding: 0.5rem 3%;
    }

    .busines-content img {
        width:100%;
    }

    .busines-content p {
        height: auto;
    }

    .footer-container {
        margin: 0 20px;
    }

    .footer-content p {
        font-size: 15px;
    }

    .investor-content {
        margin: 125px 0 0 20px;
    }
}

/* Tambahan untuk responsive */
@media (max-width: 889px) {

    #preloader{
        background-size: 50%;
    }

    .home-content {
        margin: 150px 0 0 20px;
    }

    .home-content h1 {
        line-height: 45px;
        margin-bottom: 1rem;
    }

    .home-content p {
        margin: 1rem 0 5rem;
    }

    .navbar {
        flex-wrap: wrap;
        padding: 1rem 7%;
        background-color: #fff;
        position: fixed;
        width: 100%;
    }

    .navbar.fixed {
        display: none;
    }

        .language ul {
            margin-left: -2rem;
        }

        .language-selected {
            color: #333;
            margin-left: -1rem;
        }
        .hamburger {
            display: block;
            position: fixed;
            cursor: pointer;
            right: 5%;
            top: 3rem;
            transform: translate(-5%, -50%);
            z-index: 2;
            background-color: var(--primary-color);
            padding: 5px;
            transition: all 0.7s ease;
        }
    
        .toggle .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
    
        .toggle .line2 {
            transition: all 0.7s ease;
            width: 0;
        }
    
        .toggle .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }
.navbar-nav {
    position: fixed;
    top: 95px;
    /* biar nggak nutup logo dan tombol X */
    left: 0;
    right: 0;
    background-color: #1a6564f7;
    height: calc(100vh - 80px);
    /* sisa tinggi layar setelah header */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* tengah vertikal */
    align-items: center;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
    z-index: 999;
}

.navbar-nav.open {
    opacity: 1;
    pointer-events: auto;
}
    
        .navbar-nav a {
            text-align: center;
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }
    
        .navbar-nav a:hover {
            color: #c7e5ff;
        }

                .navbar-nav a {
                    opacity: 0;
                    transform: translateY(20px);
                    transition: all 0.5s ease;
                }
        
                /* Saat navbar open, animasi muncul satu-satu dari bawah ke atas */
                .navbar-nav.open a {
                    opacity: 1;
                    transform: translateY(0);
                }
        
                /* Tambah delay supaya munculnya berurutan */
                .navbar-nav.open a:nth-child(1) {
                    transition-delay: 0.1s;
                }
        
                .navbar-nav.open a:nth-child(2) {
                    transition-delay: 0.2s;
                }
        
                .navbar-nav.open a:nth-child(3) {
                    transition-delay: 0.3s;
                }
        
                .navbar-nav.open a:nth-child(4) {
                    transition-delay: 0.4s;
                }
        
                .navbar-nav.open a:nth-child(5) {
                    transition-delay: 0.5s;
                }

            .logo.asli {
        display: inline-block;
    }
    .logo.putih {
        display: none;
}

.desktop-view {
    display: none;
}

.mobile-view {
    display: block;
}

.hp {
    display: inline;
}

    .home {
        padding: 0 0 5rem 0;
        background-attachment:inherit;
    }

    .about-teks {
        padding: 4rem 0;
    }

    .about-container {
        justify-content: center;
    }
    
    .about-teks p {
        font-size: 1.25rem;
        margin: 0 2.5rem;
        text-align: justify;
    }

    .about-content {
        width: 100%;
        margin: 2rem 1rem;
        padding: 2rem;
    }

    .about-content .prg {
        font-size: 1.4rem;
        line-height: 2.5rem;
    }

    .busines-content p {
        height: auto;
    }
    .tentang-content {
        min-height: 75vh;
        padding: 120px 0 50px 100px;
    }

    .tentang-content p {
        letter-spacing: 5px;
    }

    .hide {
        display: none;
    }

    .tentang-content {
        padding: 0 50px 50px;
    }
    .arrows{
        top: 10%;
    }


    .business {
        margin: 3rem 0;
    }

    .busines-container {
        flex-wrap: wrap;
        gap: 1.25rem;
        align-items: center;
        justify-content: center;
        text-align: justify;
    }

    .busines-box {
        height: 40rem;
    }

    .business h1 {
        font-size: 2.2rem;
    }

    .business.active .underline {
        width: 50%;
    }

    .busines-content p {
        font-size: 1.25rem;
    }

    .galeri img {
        width: 75rem;
    }

.overlay {
    padding: 25px;
    width: 90%;
}

.overlay .text {
    font-size: 23px;
}

.overlay .author {
    font-size: 15px;
}

.busines-content img {
    width: 23rem;
}
.investor-container {
    padding: 2.5rem;
}

.investor-container h1 {
    font-size: 2.4rem;
    text-align: center;
}

.investor p {
    font-size: 15px;
    margin: 25px 0;
}

.investor-button {
    font-size: 1rem;
    padding: 1rem;
}

.inv-content h1 {
    font-size: 3rem;
}


.investor-content {
    margin: 125px 0 0 25px;
}
.footer {
    padding: 1rem 0 1rem 0;
}

.footer-container {
    flex-direction: column;
    gap: 1.5rem;
    margin: 0 50px;
}
}


@media screen and (max-width: 478px) {
    html {
        font-size: 85.5%;
    }

    .pdf-modal-content {
    width: 95%;
    height: 90%;
    padding: 0.3rem;
    border-radius: 6px;
  }

  .close-btn {
    font-size: 22px;
    top: 6px;
    right: 10px;
  }

  .keunggulan-container {
    flex-wrap: wrap;
  }


}

@media screen and (max-width: 395px) {
    html {
        font-size: 72.5%;
    }

        .navbar {
        padding: 1.5rem 2%;
    }

    .hamburger {
        padding: 3px;
    }

    .about-content {
        width: 90%;
        margin: 1rem;
    }

    .tentang-content {
        min-height: 80vh;
    }



    .home-container {
        padding-bottom: 3rem;
    }
    .overlay {
        padding: 10px 15px;
        width: 80%;
    }
}

@media screen and (max-width: 991px) and (orientation: landscape) {
    .navbar {
        padding: 0.5rem 2%;
    }
        .home {
        background-attachment: inherit;
    }
    


    .slider {
        height: 250vh;
    }

    .overlay {
        padding: 15px 10px;
        width: 70%;
    }
}