
.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-search {
    margin-right: 30px;
    height: 100%;
    overflow: hidden;
	display: none !important;
}


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

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

@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 {
        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;
    }
}