/* ========================================
            Header {MOBILE}
                [START]
========================================= */

.page__header {
    height: auto;
    /* box-shadow: inset 0 35px 40px rgb(0, 0, 0, 20%); */
    border-bottom: 4px solid #fff;
}

.header--sticky {
    display: none;
}

.l-header__inner {
    width: 85%;
    height: 100%;
    margin: 0 auto;
    border-bottom: 1px solid rgba(52, 57, 69, 10%);
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: row;
}

.header__logo {
    display: block;
    margin: auto;
    width: 300px;
}

.header__nav--desktop {
    display: none;
}

.header__nav {
    /* display: flex; */
    position: fixed;
    height: 0;
    width: 100vw;
    top: 0;
    left: 0;
    padding: 0;
    background-color: #fff;
    z-index: 999999;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}
.header__nav.header__nav--active {
    height: 100vh;
    padding-top: 44px;
    padding-bottom: 44px;
    transition: all .5s ease;
}
.header__nav.header__nav--not-active {
    height: 0;
    transition: all .5s ease;
}

.header__nav a {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 5px;
}

.header__nav li.current-menu-item a {
    color: var(--theme-color) !important;
}

/* Burger button */
.l-nav__btn {
    display: block;
    position: relative;
    width: 40px;
    margin-left: 15px;
}

.l-nav__btn-inner {
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999991;
}

.nav__btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    cursor: pointer;
}

.nav__btn span {
    display: block;
    width: 100%;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 30%);
    border-radius: 3px;
    height: 7px;
    background-color: var(--theme-color);
    transition: all .3s;
    position: relative;
}

.nav__btn span + span {
    margin-top: 6px;
}

.nav__btn .active span:nth-child(1) {
    animation: ease .7s top forwards;
}
.nav__btn .not-active span:nth-child(1) {
    animation: ease .7s top-2 forwards;
}
.nav__btn .active span:nth-child(2) {
    animation: ease .7s scaled forwards;
}
.nav__btn .not-active span:nth-child(2) {
    animation: ease .7s scaled-2 forwards;
}
.nav__btn .active span:nth-child(3) {
    animation: ease .7s bottom forwards;
}
.nav__btn .not-active span:nth-child(3) {
    animation: ease .7s bottom-2 forwards;
}

@keyframes top {
    0% {
        top: 0;
        transform: rotate(0);
    }
    50% {
        top: 15px;
        transform: rotate(0);
    }
    100% {
        top: 15px;
        transform: rotate(45deg);
    }
}
@keyframes top-2 {
    0% {
        top: 15px;
        transform: rotate(45deg);
    }
    50% {
        top: 15px;
        transform: rotate(0deg);
    }
    100% {
        top: 0;
        transform: rotate(0deg);
    }
}
@keyframes bottom {
    0% {
        bottom: 0;
        transform: rotate(0);
    }

    50% {
        bottom: 15px;
        transform: rotate(0);
    }
    100% {
        bottom: 15px;
        transform: rotate(135deg);
    }
}
@keyframes bottom-2 {
    0% {
        bottom: 15px;
        transform: rotate(135deg);
    }
    50% {
        bottom: 15px;
        transform: rotate(0);
    }
    100% {
        bottom: 0;
        transform: rotate(0);
    }
}
@keyframes scaled {
    50% {
        transform: scale(0);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes scaled-2 {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}




/* ========================================
                Header->
            Social buttons
                [START]
========================================= */
.header__social-buttons {
    display: flex;
    align-items: center;
    margin-top: 25px;
    justify-content: center;
}

.social-buttons__inner {
    display: flex;
    gap: 5px;
}

.header__social-buttons .social-button {
    height: 40px;
    width: 40px;   
}

.header__social-buttons .social-button__icon,
.header__social-buttons .social-button__icon::before {
    margin: auto; /* Reset margin */
}

.header__social-buttons .social-button__icon--facebook {
    font-size: 19px;
}
.header__social-buttons .social-button__icon--email {
    font-size: 16px;
}
.header__social-buttons .social-button__icon--phone {
    font-size: 14px;
}
/* ========================================
                Header->
            Social buttons
                [END]
========================================= */
/* ========================================
                Header {MOBILE}
                [END]
========================================= */