.header {
	position: relative;
}


/**--menu--**/
.header__menu {
    display: none;
}

.header__menu ul.menu li {
    position: relative;
    padding-left: 25px;
}

.header__menu ul.menu li a {
    text-decoration: none;
    padding: 0;
    display: block;
    font-size: 14px;
    color: var(--text_color);
    font-family: var(--font_raleway);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}

.header__menu ul.menu li a::after {
    content: "";
    background: black;
    height: 3px;
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    width: 0;
    -moz-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    -webkit-transition: all 0.6s ease;
    -webkit-transition-delay: 0s;
    transition: all 0.6s ease 0s;
}

.header__menu ul.menu .is-active::after,
.header__menu ul.menu a:hover:after {
    width: 100%;
}

.header__menu ul.menu ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border-radius: 0 8px 8px 8px;
    width: 216px;
    overflow: hidden;
}

.header__menu ul.menu li:hover>ul {
    display: block;
}

.header__hamburger {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	cursor: pointer;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 29px;
	padding: 0;
}



.header__menu-close {
    position: absolute;
    right: -50px;
    top: 63px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border: none;
    background: none;
}

.header__menu-close::before,
.header__menu-close::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 50%;
    height: 2px;
    margin: auto;
    content: '';
    transform: rotate(45deg);
    background: #fff;
}

.header__menu-close::after {
    transform: rotate(-45deg);
}



.header__menu a {
    font-size: 22px;
    font-weight: 600;
    line-height: 23px;
}


.header__hamburger span {
    background: var(--text_color);
    width: 100%;
    height: 4px;
}

.overlay {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .72);
}

.overlay.state-open {
    display: block;
}

@media (width >=1024px) {


    .header__menu {
        display: block;
        padding: 0;

    }


    .header__menu ul.menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: flex-end;


    }

    .header__hamburger {
        display: none;
    }

    .header__menu-close {
        display: none;
    }
}

@media (width <=1024px) {

    .header__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50%;
        position: fixed;
        height: 100vh;
        width: 100%;
        left: 0;
        top: 0;
        padding: 35px 20px;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        opacity: 0;
        visibility: hidden;
        z-index: 20;
    }

    .header__menu::before {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        content: '';
        background: #ffffffe8;
    }

    .header__menu-box {
        z-index: 2;
    }

    .header__menu.state-open {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        opacity: 1;
        visibility: visible;
        width: 325px;
        z-index: 3;
    }

    .header__menu ul.menu li a {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding-block: 20px;
        position: relative;
    }

    .header__menu ul.menu li a {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding: 20px 0 6px;
        position: relative;
        -moz-transition: all 0.6s ease 0s;
        -o-transition: all 0.6s ease 0s;
        -webkit-transition: all 0.6s ease;
        -webkit-transition-delay: 0s;
        -webkit-transition: all 0.6s ease 0s;
        transition: all 0.6s ease 0s;
    }



    .header__menu ul.menu li a:hover::before {
        width: 100%;
    }


.header__menu ul.menu li a::after {

	bottom: 0px;

}
    .header__menu ul.menu li:hover a {
        background: transparent;
    }

    .header__menu ul.menu li {
        text-align: left;

    }



}

@media (max-width: 460px){
    .header__hamburger {
	right: 20px;
    }

}


/**--menu-end-**/
.header__menu-box .menu-item.client_area{
    display: none;
}

.header__logo.logo svg {
    max-width: 180px;
    height: auto;
}

.header__box.d-flex.d-flex-sb {
    padding: 20px 0 22px;
    align-items: center;
    align-content: center;
}

.header__logo.logo {
    padding: 8px 0 0;
}