@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --color-text: #000;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Inter, "Sans Serif";
}

.container {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.nav-container {
    padding: 0.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
}

.nav-head a img {
    width: 15rem;
}

.nav_menu {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.nav_menu ul {
    display: flex;
    gap: 2.5rem;
}

.nav_menu ul li {
    list-style: none;
}

.nav_menu ul li a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 16px;
    transition: all .3s ease;
}

#nav-menu ul li a:hover {
    transform: translate(0, 2px);
    opacity: 70%;
}

.btn_list {
    padding: 0.9rem 2rem;
    outline: none;
    border: none;
    background-color: #000;
    color: #fff;
    border-radius: 0.5rem;
    font-size: 16px;
    transition: all .3s ease;
    cursor: pointer;
}

.btn_list:hover {
    background-color: #fff;
    color: #000;
    outline: #000 solid 1.75px;
}



/* LoxAccess Footer */
.footer-component {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.logo-loxaccess {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0.25rem;
}

.footer-component .logo-loxaccess img {
    width: 20%;
    cursor: auto;
}

.footer-component .footer-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
}

.home a {
    text-decoration: none;
    color: #8e8c87;
}

.footer-grid .home {
    display: flex;
    gap: 1rem;
}

.home a:hover {
    color: black;
    transform: translate(0px, -2px);
    transition: all 0.3s ease;
}

.contact a {
    text-decoration: none;
    color: #8e8c87;
}

.footer-grid .contact {
    display: flex;
    gap: 1rem;
}

.contact a:hover {
    color: black;
    transform: translate(0px, -2px);
    transition: all 0.3s ease;
}

.privacy a {
    text-decoration: none;
    color: #8e8c87;
}

.footer-grid .privacy {
    display: flex;
    gap: 1rem;
}

.privacy a:hover {
    color: black;
    transform: translate(0px, -2px);
    transition: all 0.3s ease;
}

.footer-component .footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding-bottom: 1rem;
}

.footer-social a:hover {
    transform: translate(0px, -2px);
    transition: all 0.3s ease;
}

.footer-component .footer-link p {
    font-size: 12px;
}

.footer-link a {
    color: black;
}

.footer-link {
    padding-bottom: 1rem;
}


.nav_toggle {
    position: absolute;
    right: 15px;
    top: 2.5%;
    color: #000;
    cursor: pointer;
    font-size: 24px;
    display: none;
}

.nav-menu-toggle #check {
    /* display: none; */
    opacity: 1;
    position: relative;
    top: 20px;
    left: 8px;
    z-index: 1000;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav_toggle {
        display: block;
    }

    #check:checked~.nav_toggle #menu-icon {
        display: none;
    }

    #check:checked~.nav_toggle #close-icon {
        display: block;
    }

    .nav-head a img {
        width: 10rem;
    }

    .nav_toggle #close-icon {
        display: none;
    }

    .nav_menu ul {
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    .nav_menu {
        position: absolute;
        top: 7.5%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        flex-flow: column;
        background-color: #fff;
        transition: max-height .35s ease;
        border-bottom-left-radius: 0.75rem;
        border-bottom-right-radius: 0.75rem;
        box-shadow: 0 -2 6px 6px rgba(0, 0, 0, .05);
        z-index: 100;
    }
    
    #check:checked~.nav_menu {
        max-height: 18rem;
        padding: 2rem 1rem;
    }

    #check:checked~.nav_menu a {
        transform: rotateY('0');
        transition-delay:  calc(.15s * var(--is));
    }

    .footer-component .logo-loxaccess img {
        width: 45%;
    }

    .footer-component .footer-social {
        gap: 2rem;
    }

    .footer-grid .home a {
        font-size: 14px;
    }
}

