
/* Media Queries */
/* Desktop */
@media (min-width: 1450) {
    
}

/* Laptop */
@media (max-width: 1366px) {
    html {
        font-size: 75%;
    }
}

/* Tablet */
@media (max-width: 991px) {
    /* html {
        font-size: 62.5%;
    } */

    .navbar .container-fluid {
        margin: 0 !important;
    }
     
    #navbarNavDropdown {
        background-color: white;
    }

    .nav-logo {
        height: 60px;
    }

    .nav-item a{
        color: black !important;
    }

    .nav-link.active {
        color: var(--bs-primary) !important;
        border-bottom: 1.5px solid var(--bs-primary);
    }

    #solutions, #services {
        margin-bottom: 8rem;
    }

    .hero-slide {
        height: 77vh;
    }
}

@media (max-width: 991px) and (max-height: 750px) {
    .hero-slide {
        height: 75vh; /* bisa Anda sesuaikan */
    }
}

@media (max-width: 767px) {
    /* html {
        font-size: 62.5%;
    } */
     
}

/* Mobile */
@media (max-width: 450px) {
    /* html {
        font-size: 55%;
    } */

    #contact-content {
        padding: 1rem;
    }
}