
/* 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: 20px;
    border: none;
    padding: 0;
    background-color: transparent;
}
.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;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    transition: .3s;
    padding-top: 10px;
    padding-bottom: 10px;
}
.header__wrapper {
    align-items: center;
    display: flex;
    justify-content: flex-start;
}

.header__logo {
    padding: 0 15px;
}
.header__logo img {
    transition: .3s;
    width: 200px;
}
.scrolled .header__logo img {
    width: 150px;
}

.header__btns {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px;
}
.header__icon svg {
    transition: .3s;
    width: 20px;
    height: auto;
}
.header__icon:hover svg {
    filter: brightness(0);
}
.header__langs {
    list-style: none;
    padding: 0;
    margin: 0 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    position: relative;
}
.lang-current {
	border: none;
	cursor: pointer;
	border: none;
	font-family: var(--font-second);
	background-color: transparent;
	font-size: .9rem;
	line-height: 100%;
	padding: 0;
	color: #000;
}
.lang-current > svg {
	width: 6px;
	min-width: 6px;
	margin-left:7px;
	transform: rotate(90deg);
}
.lang-dropdown {
	position: absolute;
	top: calc(100% - 2px);
	left: 0;
	background: transparent;
	border: 1px solid #000;
	border-radius: 0;
	margin-top: 4px;
	display: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	font-family: var(--font-main);
	z-index: 20;
    font-size: .8rem;
    line-height: 120%;
	width: max-content;
}
.header__langs:hover .lang-dropdown {
	display: block;
}
.lang-option {
	display: block;
	padding: 10px 15px;
	text-decoration: none;
	color: #000;
    background-color: #fff;
}
.lang-option:hover {
	background: #f0f0f0;
}

.lang-option.active {
	font-weight: bold;
}

.header__menu {
    padding: 0 15px;
    flex: 1;
    margin: 0 auto;
}
.header__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.header__menu ul ul {
    display: none;
}
.header__menu>div>ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__menu>div>ul>li>a {
    display: inline-block;
    text-align: center;
    padding: 1px clamp(10px, 1.5vw, 40px);
    font-size: 1rem;
    line-height: 120%;
}
.header__menu>div>ul>li>a:hover {
    color: var(--color-main);
}
.header__menu>div>ul>li:not(:last-child) {
    border-right: 1px solid var(--color-main);
}


@media(max-width: 1440px) {
    .header__logo {
        padding: 0 15px;
    }
    .header__logo img {
        transition: .3s;
        width: 160px;
    }
    .scrolled .header__logo img {
        width: 130px;
    }
}
@media(max-width: 1100px) {
    .nav-icon {
        display: block;
    }
    .header__menu {
        position: fixed;
        top: 0;
        right: -500px;
        width: 450px;
        background-color: #fff;
        height: 100%;
        overflow: auto;
        max-width: 100%;
        padding: 60px 40px 40px 40px;
        transition: .8s;
    }
    .menuopened .header__menu {
        right: 0;
    }
    .header__menu>div>ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 8px 0;
    }
    .header__menu>div>ul>li {
        border: none !important;
    }
    .header__menu>div>ul>li>a {
        border: none;
        padding: 2px 0;
        text-align: left;
        font-size: 24px;
        line-height: 120%;
    }
}
@media(max-width: 992px) {
    .header__langs {
        margin-left: 15px;
    }
    .lang-current {
        font-size: 1.1rem;
    }
}
@media(max-width: 767px) {
   
    
}