/* Header */
.main-header {
    line-height: 0;
    padding: 20px 0;
    border-bottom: 1px solid #c1d6e066;
    align-items: center;
}
#nav-logo .page-logo img {
    height: 50px;
    object-fit: contain;
}

#primary-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}
#primary-menu li.last {
    margin-left: 30px;
}

#primary-menu a {
    font-family: "Good Pro Black";
    color: var(--ldwp-light-purple);
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0.5px;
    transition: all .2s;
}
#primary-menu a:hover , 
#primary-menu .disable a{
    color: #ded2e180;
}

.menu-opened {
    background: var(--ldwp-darkish-green);
}    

body:not(.home) header#masthead {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 5;
    background-color: var(--ldwp-darkish-green);
}

body.admin-bar:not(.home) header#masthead {
    top: 32px;
}

body:not(.home) div#page {
    padding-top: 92px;
} 

body.admin-bar:not(.home) div#page {
    padding-top: 92px;
}




/* Toggle menu */
#main-header .toggle-menu {
    display: none;
}
.toggle-menu-inner {
    cursor: pointer;
    display: grid;
    gap: 6px;
    width: fit-content;
}
.toggle-menu-inner span {
    width: 40px;
    height: 5px;
    display: block;
    background: var(--ldwp-light-purple);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Active toggle */
.toggle-menu.active .toggle-menu-inner span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.toggle-menu.active .toggle-menu-inner span:nth-child(2) {
    opacity: 0;
}

.toggle-menu.active .toggle-menu-inner span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}



/* global */
.button {
    font-family: "Good Pro Black";
    color: var(--ldwp-light-purple);
    text-transform: uppercase;
    font-size: 18px;
    text-decoration: unset;
    letter-spacing: .5px;
}
.button.border {
    padding-bottom: .5rem;
    border-bottom: 1px solid;
}
.wrap-border {
    border-bottom: 1px solid #c1d6e066;
}
.font-md {
    font-size: 26px;
    line-height: 1.2;
}



/* Footer */
.footer-top-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 9rem 0;
}



/* responsive */
@media only screen and (min-width: 999px) {
    
    #primary-menu li.btn a {
        background: var(--ldwp-muted-cyan);
        padding: 1.4rem 1rem;
        color: var(--ldwp-dark);
        text-align: center;
    }
    #primary-menu li.btn a:hover {
        background: var(--ldwp-light-purple);
    }
}

@media only screen and (max-width: 1500px) {
    body .font-md {
        font-size: 20px;
    }
}

@media only screen and (max-width: 998px) {
    #main-header .toggle-menu {
        display: block;
    }
    .menu-primary-menu-container {
        left: 0;
        display: none;
        position: absolute;
        width: 100vw;
        height: 100vh;
        background: var(--ldwp-darkish-green);
        top: 82px;
        z-index: 9;
        padding: 30px 20px 0;
    }
    #primary-menu {
        flex-direction: column;
        width: 100%;
        padding: 0 0 40px;
        border-bottom: 1px solid #c1d6e066;
        align-items: flex-start;
    }
    #primary-menu li.last {
        margin-left: 0;
    }
    #primary-menu a {
        font-size: 16vw;
        line-height: 1;
        text-align: left;
        font-family: "Bebas Neue", sans-serif;
    }
   
}

@media only screen and (max-width: 767px) {
    body .font-md {
        font-size: 18px;
    }
    .ft-top-hd-con .h1 {
        font-size: 80px !important;
    }
    .font-sm {
        font-size: 14px;
    }
}
