/* ================= BURGER ================= */
.menu-toggle {
    width: 34px;
    height: 24px;
    cursor: pointer;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #a2ce3b;
    transition: 0.4s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { bottom: 0; }

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 10px;
}

/* ================= FULLSCREEN ================= */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    display: flex;
    pointer-events: none;
    z-index: 1000;
}

.fullscreen-menu.active {
    pointer-events: auto;
}

/* ================= COLUMNS ================= */
.menu-col {
    flex: 1;
    background: #a2ce3b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(.77,0,.18,1);
}

/* Initial positions */
.menu-col:nth-child(1) { transform: translateX(-100%); }
.menu-col:nth-child(2) { transform: translateY(-100%); }
.menu-col:nth-child(3) { 
    transform: translateX(100%);
}

/* Active */
.fullscreen-menu.active .menu-col {
    transform: translateX(0) translateY(0);
}

/* ================= MENU ================= */
.menu-col ul {
    list-style: none;
    padding: 0 5vw;
}

.menu-col li {
    overflow: hidden;
}

.menu-col a {
    display: inline-block;
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .4s ease, transform .4s ease;
}

/* underline hover only */
.menu-col a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 3px;
    background: #fff;
    transition: width .3s ease;
}

.menu-col a:hover::after {
    width: 100%;
}

/* stagger text */
.fullscreen-menu.active a {
    opacity: 1;
    transform: translateY(0);
}

/* ================= CONTACT ================= */
.quick-links {
    color: #fff;
    padding: 40px 30px;
    width: 100%;
}

.quick-links h4 {
    font-size: clamp(18px, 2vw, 30px);
    margin-bottom: 15px;
    text-transform: uppercase;
    padding: 0 5vw;
}

.quick-links ul {
    list-style: none;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
}

hr {
    border: 1px solid rgba(255,255,255,.5);
    margin: 10px 0;
}
.quick-links ul li a:hover {
    color: #fff;
}
.menu-col:nth-child(3) a {
    padding: 5px 0px;
}
.m-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: transparent;
    color: #a2ce3b;
    font-size: 15px;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #a2ce3b;
    margin-right: 15px;
}

/* Hover */
.btn-contact:hover {
    
    background: #a2ce3b;
    color: #ffffff;
}

/* Active */
.btn-contact:active {
    transform: scale(0.96);
}

/* Focus (accessibility) */
.btn-contact:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(162, 206, 59, 0.35);
}

/* Responsive */
@media (max-width: 767px) {
    .btn-contact {
        font-size: 15px;
        padding: 10px 24px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 1025px) {.fullscreen-menu.active .quick-links {margin-top: 225px;}}
@media (max-width: 991px) {
    .fullscreen-menu {flex-direction: column;}
    .menu-col {width: 100%;}
    .menu-col:nth-child(1) { transform: translateX(-100%); }
    .menu-col:nth-child(2) { transform: translateX(100%); }
    .menu-col:nth-child(3) { transform: translateY(100%); }
    .fullscreen-menu.active .menu-col {
        transform: translateX(0) translateY(0);
    }
    .menu-col ul {
        text-align: center;
    }    
    .fullscreen-menu.active {margin-top: 107px;overflow-y: auto;}
    .fullscreen-menu.active .quick-links {
        margin-top: 0;
        padding:0;
    }
    .quick-links h4 {text-align: center;}
}
