header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    position: absolute;
    backdrop-filter: blur(20px)
}

header .container {
    padding-top: 0;
    padding-bottom: 0
}

.header {
    display: flex;
    padding: 20px 0;
    align-items: center;
    height: 100px;
    position: relative
}

@media only screen and (min-width: 1024px) {
    .header {
        justify-content:space-between
    }
}

.header .custom-logo-link {
    flex-shrink: 1;
	margin-left: 1em;
}

.header a {
    color: #fff
}

.logo {
    width: 56px;
    height: 56px;
    z-index: 500
}

.logo img {
    width: 100%;
    object-fit: contain
}

.navigation {
    display: none;
    align-items: center;
    justify-content: space-between
}

.navigation .menu {
    display: flex
}

.navigation .menu a {
    width: 100%;
    padding: 10px;
    display: inline-block;
    transition: .25s linear;
	font-size: 1.2em;
}

@media only screen and (min-width: 1440px) {
    .navigation .menu a {
        padding:10px 20px
    }
}

.navigation .menu>.menu-item {
    position: relative;
    transition: .25s linear
}

.navigation .menu>.menu-item:hover {
    background-color: #fff
}

.navigation .menu>.menu-item:hover a {
    color: #000
}

.navigation .menu>.menu-item:hover>.sub-menu {
    display: block
}

.navigation .menu .menu-item-has-children {
    position: relative
}

.navigation .menu .menu-item-has-children:before {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 50%
}

.navigation .menu .menu-item-869,.navigation .menu .menu-item-873 {
    border: 1px solid #fff;
	border-radius: 2em;
}

.navigation .menu .current-menu-item {
    font-weight: 700
}

.navigation .menu .lang-item {
    border-left: 1px solid #fff
}

.navigation .menu .current-lang {
    display: none
}

.navigation .menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    width: max-content;
    min-width: 100%;
    left: 0;
    background-color: #fff
}

.navigation .menu .sub-menu .menu-item:not(:last-child),.navigation .menu .sub-menu .menu-item:not(:last-child) a {
    position: relative
}

.navigation .menu .sub-menu .menu-item:not(:last-child) a:after {
    position: absolute;
    content: "";
    width: 90%;
    height: 1px;
    background-color: rgba(0,0,0,.2);
    bottom: 0;
    left: 5%
}

.navigation .menu .sub-menu .menu-item :hover {
    background-color: #0a38fd;
    color: #fff
}

.navigation .menu .sub-menu>.menu-item:hover>.sub-menu {
    display: block;
	left: 14.4em;
    top: 0px;
	background-color: #ffffff;
    color: #000000;
}

.mobile-menu {
    position: absolute;
    width: 100%;
    left: 0;
    padding: 100px 20px 0;
    box-sizing: border-box;
    transform: translateX(-100%);
    z-index: -1;
    right: 0;
    top: 0;
    overflow-y: scroll;
    height: 100vh;
    background-color: #fff;
    transition: .25s linear
}

@media only screen and (min-width: 768px) {
    .mobile-menu {
        width:50%
    }
}

@media only screen and (min-width: 1024px) {
    .navigation {
        display:flex
    }

    .mobile-menu {
        display: none
    }
}

.mobile-menu.show {
    transform: translateX(0);
    z-index: 400
}

.mobile-menu.show .mobile-menu__box {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.mobile-menu .menu {
    display: flex;
    flex-direction: column;
    width: 100%
}

.mobile-menu .menu-item {
    line-height: 50px;
    width: 100%;
    margin-bottom: 0em;
}

.mobile-menu .menu-item a {
    display: block;
    width: 100%;
    height: 100%
}

.mobile-menu .menu .sub-menu {
    margin-left: 20px
}

.mobile-menu .menu .current_page_item {
/*     border-bottom: 1px solid #000; */
	font-weight: 600;
}

.mobile-menu .menu .current-lang {
    display: none
}

.header-controls {
    z-index: 500;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

@media only screen and (min-width: 1024px) {
    .header-controls {
        display:none
    }
}

.burger-btn {
    right: 0;
    top: 0;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    padding: 5px
}

.burger-btn.active {
    z-index: 9999
}

.burger-btn.active span:nth-child(2) {
    width: 60%;
    align-self: flex-end
}

.burger-btn.active span {
    background-color: #000
}

.burger-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #eee
}

.burger-btn span:not(:last-child) {
    margin-bottom: 6px
}
