/* #region MARK: Menu 
*/

#menu {
    height: 72px;

    background-color: var(--menu);
    backdrop-filter: blur(2px);

    z-index: 9;

}

#menu-content {
    width: var(--interface-width);
}
#menu-content h1 {
    font-size: 16px !important;
    color: var(--primary-900);
    line-height: 22px;
}

.nav-link:hover {
    text-decoration-line: underline !important;
    color: var(--primary-600) !important;
}

#burger {
    padding: 0px;
}

#nav-mobile {

    z-index: 10;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;

}

#nav-mobile-content {
    width: 326px;
    right: -100%;
    z-index: 11;
    transition: all .4s;
}

#nav-mobile-content a {
    height: 40px;
}

#nav-mobile-content img {
    width: 80px;
    height: 80px;
}

/* #endregion Menu */

/* #region MARK: Footer 
*/

#footer {
    position: relative;
    bottom: 0px;
    background-color: var(--primary-50);
}

#footer-content {
    z-index: 1;
}
#footer-text {
    width: 348px;
}

#footer-bg {
    width: 624.241px;
    height: 916.116px;
    transform: rotate(92.477deg);
    z-index: -1;
}

/* #endregion Footer */

#template {
    height: 100vh;
}

/* #region MARK: Media Queries 
*/

@media screen and (min-width: 1136px) {
        
    .mobile {
        display: none !important;
    }

    #footer-content {
        width: var(--interface-width);
    }

    #footer-bg {
        top: -270px;
        left: -100.55px;
        color: var(--primary-100);
        transform: rotate(70.477deg);
    }

}

@media screen and (max-width: 1136px) {

    #nav-desktop {
        display: none !important;
    }

    .link {
        min-width: 160px;
    }

    #footer-content {
        width: 100%;
    }

    #footer-bg {
        top: -195px;
        right: -218px;
        color: var(--primary-100);
        transform: rotate(92.477deg);
    }

}

/* #endregion Media Queries */