
/* menu button start */
.nav-icon {
    width: 33px;
    height: 23px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 999999;
    position: relative;
    display: none;
    margin-left: 10px;
    background-color: transparent;
    border: none;
    padding: 0;
}
.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-main);
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav-icon span:nth-child(1) {
    top: 0px;
}
.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
    top: 10px;
}
.nav-icon span:nth-child(4) {
    top: 20px;
}
.nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
.nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
/* menu button end */
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding-top:20px;
    padding-bottom:20px;
    transition: .3s;
    background-color: transparent;
    z-index: 99;
    background-color: #fff;
}
body.scrolled .header {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #fff;
}

.header__wrapper {
    flex-wrap: nowrap !important;
}

.header__logo {
    padding: 0 15px
}
.header__logo img {
    width: 110px;
    transition: .3s;
}
/* menu start */
.header__menu {
    flex: 1 ;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px clamp(10px, 2vw, 60px);
}
.header__menu ul li a {
    color: var(--color-main);
    position: relative;
    font-size: .9rem;
    line-height: 130%;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
}
.header__menu ul li a:after {
    content: '';
    width: 0;
    transition: .3s;
    height: 1px;
    background-color: var(--color-main);
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
}
.header__menu ul li:not(.current_page_item) a:hover:after {
    width: 100%;
}
.header__menu ul li.current_page_item>a{
    color: var(--color-second);
}
.header__menu ul ul {
    display: none !important;
}



.header__logo-mobile {
    display: none;
}
/* menu end */




@media(max-width: 1440px) {
   
}
@media(max-width: 992px) {
    .header__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header__logo img {
        width: 90px;
    }
    .nav-icon {
        display: block;
    }

    .header__menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(320px, 80%);
        flex: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        background: #fff;
        padding: 40px 30px 40px;
        transform: translateX(100%);
        transition: transform .4s ease-in-out;
        z-index: 9999;
        overflow-y: auto;
        border-left: 1px solid #d5d5d5;
    }

    .header__menu.open {
        transform: translateX(0);
    }

    .header__menu ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 25px 0;
        width: 100%;
    }

    .header__menu ul li {
        width: 100%;
    }

    .header__menu ul li a {
        font-size: 20px;
        display: block;
        text-align: left;
    }

    .header__logo-mobile {
        display: block;
        margin-bottom: 40px;
    }

    .header__logo-mobile img {
        width: 110px;
    }

    body.menuopened::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        z-index: 98;
    }

    body.menuopened {
        overflow: hidden;
    }
}
@media(max-width: 767px) {
   
    
}