/* .sub-header {
    background: #F2F4F6;
    height: 45px;
    margin-bottom: 16px;
    position: relative;
    z-index: 10;
    display: none;
} */

/* header.global-header {
    padding: 0 0 1.5rem 0;
} */

/* .sub-header__content {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-right: 32px;
}
.sub-header .container {
    max-width: 1420px;
    height: 100%;
}
.header-lang {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.header-lang::details-content {
    opacity: 0;
    block-size: 0;
    overflow-y: clip;
    transition: content-visibility 300ms allow-discrete, opacity 300ms, block-size 300ms;
}

.sub-header__form-wrapper form {
    margin: 0;
}

.header-lang[open]::details-content {
    opacity: 1;
    block-size: auto;
}

.header-lang summary {
    display: flex;
    flex-direction: row;
    gap: 6px;
    flex-wrap: wrap;
    align-content: center;
    position: relative;
}

.header-lang[open]::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(
            90deg,
        #26244F 0%,
        #072854 15%,
        #36204A 75%,
        #70193E 100%
    );
}

.header-lang summary::marker {
    display: none;
    content: '';
}

.header-lang[open] .header-lang__dropdown {
    opacity: 1;
    visibility: visible;
}

.header-lang__dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    border-radius: 8px;
    width: 157px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
}

.header-lang__dropdown-item {
    height: 34px;
    padding-left: 14px;
    display: block;
    background: #fff;
    line-height: 34px;
    transition: background 0.2s ease-in-out;
    cursor: pointer;
    position: relative;
}

.header-lang__dropdown .selected::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
    width: 18px;
    height: 18px;
    background: url(../img/icons/check-red.svg) no-repeat center center;

}

.header-lang__dropdown-item:hover, .header-lang__dropdown-item.selected {
    background: #F2F4F6;
} */

.header-nav-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-left: auto;
}

.header-nav-buttons:not(:has(.header-search)) {
    gap: 20px;
}

.btn-hamburger {
    position: static;
}

.header-nav-cta {
    margin-left: auto;
}

.header-nav-cta__link {
    padding: 10px 32px;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    border-radius: 100px;
    display: block;
    text-decoration: none;
	position: relative;
	z-index: 1;
	background-color: transparent;
    background-image: none;
}

.header-nav-cta__link::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
    90deg,
    rgb(37, 35, 78) 0%,
    rgba(0, 40, 85, 1) 3%,
    rgba(57, 32, 73, 1) 37%,
    rgba(114, 24, 61, 1) 71%
  ) #72183d;
	z-index: -1;
  transition: opacity 0.5s ease-in-out;
    border-radius: 100px;
	opacity: 0;
}

.header-nav-cta__link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(37, 35, 78);
	z-index: -2;
    border-radius: 100px;
}

.header-nav-cta__link:hover, .header-nav-cta__link:focus {
    color: #fff; 
    background-color: transparent;
    background-image: none;
}

.header-nav-cta__link:hover::after, .header-nav-cta__link:focus::after {
	opacity: 1;
}

/* header.global-header .header-bd .header-navbar {
    padding-right: 10px;
} */

.header-search {
    margin-right: 30px;
    height: 100%;
    overflow: hidden;
}

/* .header-lang__text {
    margin-top: 3px;
}

.sub-header__form-wrapper {
    width: 100%;
    transition: all 0.4s ease-in-out;
    height: 100%;
    align-items: center;
    position: relative;
    display: flex;
    transform: translateX(calc(100% - 23px));
}

.sub-header__form-wrapper.is-open {
    width: 100%;
    transform: translateX(0);
}

.sub-header__form-wrapper .input-group-text {
    background-color: transparent;
    padding: 0px;
}
.sub-header__form-wrapper .input-group {
    position: relative;
    width: 340px;
    background: transparent;
    display: flex;
    align-items: center;
    height: 36px;
}
.sub-header__form-wrapper.is-open::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: linear-gradient(
            90deg,
        #26244F 0%,
        #072854 15%,
        #36204A 75%,
        #70193E 100%
    );
}

.sub-header__form-wrapper .input-group input::placeholder {
    color: #1C1C1C;
    font-size: 14px;
}

.sub-header__form-wrapper .input-group input {
    padding: 0px 32px 0px 24px;
    border: none;
    resize: none;
    background: transparent;
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 100%;
}

.sub-header__form-wrapper .input-group .input-group-text {
    border: none;
    position: absolute;
    top: 51%;
    transform: translateY(-50%);
    left: 0;
    z-index: 9;
}

.sub-header__form-wrapper .input-group input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.sub-header__form-wrapper .input-group-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    right: 10px;
    background: none;
    outline: none;
    border: none;
    z-index: 9;
    box-shadow: none;
}

.sub-header__form-wrapper .input-group-close:focus {
    outline: none;
    border: none;
    box-shadow: none;
} */

header.global-header .header-bd .header-search {
    padding-right: 0;
    margin-right: 0;
}

header.global-header .header-bd .header-lang {
    padding-right: 0;
}

header.global-header .header-bd .nav-bd .ms-xxl-6 {
    margin-left: 0 !important;
}

@media only screen and (min-width: 1180px) and (max-width: 1400px) {
    .header-nav-cta__link {
        font-size: 15px;
        padding: 10px 15px;
    }

    header.global-header .header-bd .header-nav .menu-primary > .menu-item {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1180px) {
    /* .sub-header {
        display: block;
    } */

    .header-nav-button:not(:has(.btn-hamburger.active)) {
        display: none;
    }
}

@media only screen and (max-width: 1179px) {
    .header-nav-cta {
        display: none;
    }

}

@media only screen and (max-width: 1420px) {
    header.global-header .header-bd .header-nav {
        margin-left: 1.5rem;
    }

    #primary-menu .ms-xxl-6 {
        margin-left: 0 !important;
    }
}

@media only screen and (max-width: 991px) {
    .header-nav-buttons {
        gap: 20px;
    }
}

@media (max-width: 1320px) {
    header.global-header .header-bd .header-nav .menu-secondary > .menu-item, header.global-header .header-bd .header-nav .menu-primary > .menu-item {
        padding: 1rem 0.5rem;
    }
}

.btn-hamburger {
	display:none;
}
.btn-hamburger.active {
	display:block;
}
@media (max-width: 1200px) {
	.btn-hamburger {
		display: block;
	}
}