.cd-dropdown-trigger {
    display: block;
    position: relative;
    padding: 0 20px 0 0;
    line-height: 40px;
}
.no-touch .cd-dropdown-trigger:hover {
    color: var(--header_link_hover_color, #eb5757);
}
.cd-dropdown h3 {
    height: 65px;
    line-height: 65px;
}
.div_menu_content ul li a,
.cd-dropdown-content ul li a {
    height: 57px;
    line-height: 57px;
}
.cd-dropdown-content ul li a.img_height {
    min-height: 300px !important ;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain;
}
.cd-dropdown-content ul a.theme-btn {
    height: 40px;
    line-height: 38px;
    margin-bottom: 0;
}
.cd-dropdown-content ul a.theme-btn::after {
    background: transparent;
}
@media only screen and (min-width: 1200px) {
    .cd-dropdown-content ul li a {
        height: 57px;
        line-height: 57px;
    }
}

.cd-dropdown h3,
.cd-dropdown-content a,
.cd-dropdown-content ul a,
.cd-dropdown-content .cd-divider {
    padding: 0 20px;
}

.cd-dropdown {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    max-width: 20rem;
    height: 100%;
    background-color: #ffffff;
    color: var(--header_link_f_color, #333333);
    visibility: hidden;
    /* Force Hardware Acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0.5s;
    -moz-transition: -moz-transform 0.5s 0s, visibility 0s 0.5s;
    transition: transform 0.5s 0s, visibility 0s 0.5s;
}
.cd-dropdown h3 {
    /* dropdown title - mobile version only */
    position: relative;
    z-index: 1;
    color: var(--header_main_f_color, #13243e);
    border-bottom: 1px solid var(--color23);
    font-weight: 700;
    text-align: right;
    font-size:24px;
}
.cd-dropdown h3 a {
    margin-left:16px;
    cursor:pointer;
}
.cd-dropdown h3 a:hover {
    color: var(--header_link_hover_color, #eb5757);
}
.cd-dropdown .cd-close {
    /* 'X' close icon - mobile version only */
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    height: 65px;
    width: 65px;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: var(--header_main_f_color, #13243e);
}
.cd-dropdown .cd-close::after,
.cd-dropdown .cd-close::before {
    /* this is the 'X' icon */
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    height: 20px;
    width: 2px;
    background: var(--header_main_f_color, #13243e);
}
.cd-dropdown .cd-close::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.cd-dropdown .cd-close::before {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.cd-dropdown.dropdown-is-active {
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0s;
    -moz-transition: -moz-transform 0.5s 0s, visibility 0s 0s;
    transition: transform 0.5s 0s, visibility 0s 0s;
}
@media only screen and (min-width: 768px) {
    .cd-dropdown .cd-close {
        top: 5px;
    }
}
.cd_header {
    position: fixed;
    background-color: var(--white);
    width: 100%;
    z-index: 9;
    height: 65px;
}
.cd-dropdown-content,
.cd-dropdown-content ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    overflow-x: hidden;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
    display: block;
}
.cd-dropdown-content {
    overflow-y: auto;
    margin-top: 65px;
}
ul.cd-dropdown-content li {
    margin-left: 0 !important;
}
ul.cd-dropdown-content li img {
    padding-bottom: 150px;
}
ul.cd-dropdown-content li img {
    padding-top: 20px;
}
.cd-dropdown-content a,
.cd-dropdown-content ul a {
    display: block;
    color: var(--header_link_f_color, #333333);
    /* truncate text with ellipsis if too long */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-top: 1px solid var(--color23);
}
.cd-dropdown-content li:first-of-type > a,
.cd-dropdown-content ul li:first-of-type > a {
    border-top-width: 0;
}
.cd-dropdown-content li:last-of-type > a,
.cd-dropdown-content ul li:last-of-type > a {
    border-bottom-width: 1px;
}
.cd-dropdown-content .cd-divider,
.cd-dropdown-content ul .cd-divider {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #0b0e23;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #585a70;
    text-transform: uppercase;
}
.cd-dropdown-content .cd-divider + li > a,
.cd-dropdown-content ul .cd-divider + li > a {
    border-top-width: 0;
}
.cd-dropdown-content a,
.cd-dropdown-content .cd-search,
.cd-dropdown-content .cd-divider,
.cd-dropdown-content ul a,
.cd-dropdown-content ul .cd-search,
.cd-dropdown-content ul .cd-divider {
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    -moz-transition: opacity 0.3s, -moz-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
}
.cd-dropdown-content.is-hidden,
.cd-dropdown-content ul.is-hidden {
    /* push the secondary dropdown items to the right */
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
.cd-dropdown-content.is-hidden > li > a,
.cd-dropdown-content.is-hidden > li > .cd-search,
.cd-dropdown-content.is-hidden > .cd-divider,
.cd-dropdown-content.move-out > li > a,
.cd-dropdown-content.move-out > li > .cd-search,
.cd-dropdown-content.move-out > .cd-divider,
.cd-dropdown-content ul.is-hidden > li > a,
.cd-dropdown-content ul.is-hidden > li > .cd-search,
.cd-dropdown-content ul.is-hidden > .cd-divider,
.cd-dropdown-content ul.move-out > li > a,
.cd-dropdown-content ul.move-out > li > .cd-search,
.cd-dropdown-content ul.move-out > .cd-divider {
    /* lower down the dropdown items opacity - when secondary dropdown slides in or for dropdown items hidden on the right */
    opacity: 0;
}
.cd-dropdown-content.move-out > li > a,
.cd-dropdown-content.move-out > li > .cd-search,
.cd-dropdown-content.move-out > .cd-divider,
.cd-dropdown-content ul.move-out > li > a,
.cd-dropdown-content ul.move-out > li > .cd-search,
.cd-dropdown-content ul.move-out > .cd-divider {
    /* push the dropdown items to the left when secondary dropdown slides in */
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}
.dropdown-is-active .cd-dropdown-content,
.dropdown-is-active .cd-dropdown-content ul {
    -webkit-overflow-scrolling: touch;
}
@media only screen and (min-width: 1200px) {
    .cd-dropdown-content,
    .cd-dropdown-content ul {
        padding-top: 0;
        overflow: visible;
    }
    .cd-dropdown-content a,
    .cd-dropdown-content ul a {
        color: var(--header_main_f_color, #13243e);
        height: 50px;
        line-height: 50px;
        font-size: 16px;
        border-color: #ebebeb;
    }
    .cd-dropdown-content .cd-divider,
    .cd-dropdown-content ul .cd-divider {
        background-color: transparent;
        color: #b3b3b3;
        border-top: 1px solid #ebebeb;
    }
    .cd-dropdown-content .cd-divider + li > a,
    .cd-dropdown-content ul .cd-divider + li > a {
        border-top-width: 1px;
    }
    .cd-dropdown-content.is-hidden > li > a,
    .cd-dropdown-content.is-hidden > li > .cd-search,
    .cd-dropdown-content.is-hidden > .cd-divider,
    .cd-dropdown-content.move-out > li > a,
    .cd-dropdown-content.move-out > li > .cd-search,
    .cd-dropdown-content.move-out > .cd-divider,
    .cd-dropdown-content ul.is-hidden > li > a,
    .cd-dropdown-content ul.is-hidden > li > .cd-search,
    .cd-dropdown-content ul.is-hidden > .cd-divider,
    .cd-dropdown-content ul.move-out > li > a,
    .cd-dropdown-content ul.move-out > li > .cd-search,
    .cd-dropdown-content ul.move-out > .cd-divider {
        /* reset mobile style */
        opacity: 1;
    }
}

.cd-dropdown-content .see-all {
    /* different style for the See all links */
    height: 57px;
    align-items: center;
    position: relative;
    /* z-index: 9; */
}
.cd-dropdown-content .see-all a::after {
    /* different style for the See all links */
    width: 0 !important;
}
.cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item,
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
    /* items with picture (or icon) and title */
    height: 80px;
    line-height: 80px;
}
.cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item h3,
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item h3 {
    /* truncate text with ellipsis if too long */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item {
    padding-left: 90px;
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
    padding-left: 75px;
    position: relative;
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item p {
    color: #111433;
    font-size: 1.3rem;
    /* hide description on small devices */
    display: none;
}
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item::before {
    /* item icon */
    content: "";
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40px 40px;
}

@-webkit-keyframes cd-fade-in {
    0% {
        opacity: 0;
        visibility: visible;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}
@-moz-keyframes cd-fade-in {
    0% {
        opacity: 0;
        visibility: visible;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}
@keyframes cd-fade-in {
    0% {
        opacity: 0;
        visibility: visible;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}
@-webkit-keyframes cd-fade-out {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: visible;
    }
}
@-moz-keyframes cd-fade-out {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: visible;
    }
}
@keyframes cd-fade-out {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: visible;
    }
}
.has-children > a,
.go-back a {
    position: relative;
}
.has-children > a::after,
.go-back a::after {
    /* arrow icon in CSS - for element with nested unordered lists */
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1px;
    display: inline-block;
    height: 2px;
    width: 10px;
    background: var(--header_main_f_color, #13243e);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.has-children a::after {
    content: "";
    display: block;
    -moz-padding-start: calc(0.75rem - 3px);
    background-image: url("../img/icon/icon-arrow-right.svg");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px 12px;
    background-size: contain;
    border: none;
    height: 18px;
    width: 18px;
    top: 20px;
    right: 20px;
    position: absolute;
}
.cd-dropdown-content .theme-btn a::after {
    display: none;
    background: red;
}
.has-children a.arrow_hidden::after {
    display: none;
}
.has-children a:hover::after {
    background-image: url("../img/icon/icon-arrow-right-red.svg");
}

.has-children > a {
    padding-right: 40px;
}
nav > ul li.has-children a {
    font-weight: 400 !important;
}

.cd-dropdown-content .go-back a {
    padding-left: 40px;
}
.cd-dropdown-content .go-back a {
    background-color: var(--color22);
    font-weight: 700 !important;
    color: var(--header_link_f_color, #333333);
}
.cd-dropdown-content .go-back a::before {
    /* arrow goes on the left side - go back button */
    content: "";
    display: block;
    -moz-padding-start: calc(0.75rem - 3px);
    background-image: url("../img/icon/icon-arrow-left.svg") !important;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px 12px;
    background-size: contain;
    border: none !important;
    height: 18px !important;
    width: 18px !important;
    top: 20px;
    left: 15px;
    position: absolute;
}
.cd-dropdown-content .go-back a::after {
    width: 0;
}

.no-js .cd-dropdown-wrapper:hover .cd-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.no-js .cd-dropdown-wrapper .cd-close {
    display: none;
}
.language_area {
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: var(--color22);
    color: var(--color26);
    font-size: 12px;
    display: flex;
    width: 100%;
    padding: 20px;
    align-items: center;
    height: 40px;
    display: flex;
}
.language_area span {
    cursor: pointer;
}
.language_area span.active {
    color: var(--header_main_f_color, #13243e);
    text-decoration: underline;
}
.nav_menu_mobile{
	    grid-template-rows: auto 1fr;
    display: grid;
	
}
.nav_menu_mobile .cd_header{
	position: unset;
    margin: 0;
}
.div_outer_menu{
	display: grid;
    grid-template-rows: 1fr auto;
}
.div_menu_content{
	position: relative;
}

.div_menu_content .cd-dropdown-content{
	margin-top: 0;
	height: 100%;
}
.div_menu_content .cd-dropdown-content ul{
	height: 100%;
}
.div_menu_language{
	position: sticky;
	bottom: 0;
}
.div_menu_language .language_area{
	position: unset;
}