@charset "utf-8";

@media screen and (max-width: 1300px) {    
    nav {
        height: 80px;
    }

    .nav-toggle {
        position: absolute;
        margin-top: 30px;
        margin-right: 30px;
        right: 0;
        width: 1.75rem;
        height: 1.5rem;
    }

    .nav-toggle i {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #066f6a;
        position: absolute;
        border-radius: 5px;
        transition: transform .5s, opacity .5s;
    }

    .nav-toggle i:nth-child(1) {
        top: 0;
    }

    .nav-toggle i:nth-child(2) {
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .nav-toggle i:nth-child(3) {
        bottom: 0;
    }

    .nav-toggle.show i:nth-child(1) {
        transform: translateY(10px) rotate(-45deg);
    }

    .nav-toggle.show i:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.show i:nth-child(3) {
        transform: translateY(-12px) rotate(45deg);
    }

    .nav-menu {
        display: block;
        position: fixed;
        top: 3rem;
        right: -20px;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu > div {
        margin: 10px;
        display: flex;
        justify-content: center;
    }

    .nav-menu.show {
        position: absolute;
        width: 200px;
        height: 340px;
        margin-top: 40px;
        background-color: #bcdfdf;
        opacity: 1;
        visibility: visible;
        border-radius: 15px;
        box-shadow: 0px 0px 27px -5px rgba(0, 0, 0, 0.23);
        z-index: 2;
    }
    
    .nav-menu.show > a {
        display: block;
        padding: 5px 0;
    }

    .content {
        padding-top: 80px;
    }

    .footer-links {
        display: block;
    }

    .footer-links > a {
        display: block;
        margin: 10px 0;
    }
}