.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
}

.header__holder {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.header__holder ul {
	list-style-type: none;
	padding-left: 0;
}
.header__main-menu {
    display: none;
}
.header__holder .menu {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    flex: 1;
    gap: 36px;
	list-style-type: none;
	padding-left: 0;
}
.header__holder .menu .menu-item.current-menu-item a {
	font-weight: 700;
}
.header__holder .menu .menu-item a {
    font-size: 12px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 400;
    line-height: 1.3;
    color: #00273D;
}
.header__logo img {
	max-width: 120px;
}
.header__button {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}
.header__menu svg {
    margin-top: 30px;
}
.header__menu .header__menu-close .line {
    width: 24px;
    height: 2px;
    background: #fff;
    display: inline-block;
}
.header__button .line {
    width: 24px;
    height: 2px;
    background: #001927;
    display: inline-block;
}

.header__menu.active {
    transform: unset;
}

.header__menu {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    background: #001927;
    max-width: 320px;
    width: 100%;
    z-index: 99999;
    padding: 60px 20px 40px;
    transform: translateX(200%);
    transition: all 500ms ease;
}

.header__menu .header__menu-close {
    width: 30px;
    height: 30px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.header__menu .header__menu-close .line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header__menu .header__menu-close .line:first-of-type {
    transform: translate(-50%, -50%) rotate(45deg);
}

.header__menu .header__menu-close .line:last-of-type {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.header__menu ul {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
}

.header__menu ul li a {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #fff;
}
.desktop-icon-lang {
    display: none;
}

.lang-menu .sub-menu {
	display: none;
}

.lang-menu .menu-item {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	width: 101px;
	position: relative;
}

.lang-menu .menu-item a {
	display: inline-block;
	width: 100%;
	background: #00273D;
	padding: 6px 15px;
	border-radius: 25px;
	color: #fff;
	font-size: 12px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 400;
    line-height: 1.3;
	text-transform: capitalize;
}

.lang-menu .menu-item:has(.sub-menu) .sub-menu {
	position: absolute;
	top: 100%;
	background: #00273D;
    width: 101px;
    border-radius: 0 0 25px 25px;
}

.lang-menu .menu-item:has(.sub-menu) .sub-menu a {
	border-radius: 0 0 25px 25px;
}

.lang-menu .menu-item:has(.sub-menu):hover{
	background: #00273D;
	border-radius: 20px 20px 0 0;
}

.lang-menu .menu-item:has(.sub-menu):hover .sub-menu {
	display: inline-block;
}

@media only screen and (max-width: 991px) {
	.lang-menu {
		margin-top: 20px;
	}
	.lang-menu .menu-item:has(.sub-menu) .sub-menu {
		display: flex;
		flex-flow: column;
	}
	
	.lang-menu .menu-item a {
	background: transparent;
		padding: 0;
	}
	
	.lang-menu .menu-item:has(.sub-menu):hover {
		background: transparent;
	}
}

@media only screen and (min-width: 991px) {
    .header__button {
     display: none;
    }

    .header__main-menu {
        display: flex;
    }

    .desktop-icon-lang {
        display: inline-block;
    }
	
	.header__logo img {
	max-width: 180px;
}
	
	.header__holder .menu .menu-item a {
		font-size: 16px;
	}
}