.header {
    /*background-image: var(--desktopBGoverlayImg);*/
    height: 900px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.header.no-banner {
    background: linear-gradient(180deg, #000 100%, rgba(0, 0, 0, 0.00) 0%);
    background-blend-mode: multiply;
    height: auto;
}

.navbar-brand {
    /*z-index: 999999;*/
    width: 100%;
}

.top-bar {
    padding-top: 30px;
}
.header.no-banner .top-bar {
    padding-bottom: 30px;
}
.topbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-right-wrap {
    display: flex;
    flex-direction: row;
    gap: 40px;
}
.nav-translate {
    position: relative;
    z-index: 10;
}
body .nav-translate .gt_switcher {
    position: relative;
    overflow: initial;
}
.gt_switcher .gt_selected a::after,
.gt_switcher .gt_selected a::before{
    transition: transform 0.3s ease !important;
}
.gt_switcher .gt_selected a.open::after,
.gt_switcher .gt_selected a.open::before{
    transition: rotate(-180deg);
}
body .nav-translate .gt_switcher a {    
    padding: 0px 5px;
    border: 1px solid var(--white);
    background: var(--white);
    border-radius: 25px;
    width: auto;
    text-align: left;    
    transition: border-radius 0.3s ease;
}
body .nav-translate .gt_switcher .gt_selected a {
    /*height: 51px;*/
    font-family: var(--font-Figtree);
    font-size: var(--btnFont);
    font-style: normal;
    font-weight: 700;
    color: var(--gray);
    text-transform: capitalize;
    position: relative;
    line-height: 17px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 13px 10px;
}
body .nav-translate .gt_switcher .gt_selected a::after {
    width: 20px;
    background-size: 18px;
}
body .nav-translate .gt_switcher .gt_selected a img {
    padding-right: 5px;
}

body .nav-translate .gt_switcher .gt_option {
    background: var(--white);
    width: 100%;
    position: absolute !important;
    top: 100%;
    padding: 10px 4px;
    border-radius: 0 0 25px 25px;
    overflow-y: auto;
    overflow-x: hidden;
    clip-path: inset(0 round 0 0 25px 25px);
    -webkit-mask-image: -webkit-radial-gradient(white, black); /* Safari fix */
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    scrollbar-gutter: stable;
}
/* Chrome, Edge, Safari */
.gt_switcher .gt_option::-webkit-scrollbar {
    width: 6px;
}
.gt_switcher .gt_option::-webkit-scrollbar-track {
    background: transparent;
}  
.gt_switcher .gt_option::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}
.gt_switcher .gt_option, body .nav-translate .gt_switcher .gt_option {
    border-top: 0 !important;
}
.gt_switcher .gt_selected a{
    border-bottom: 0 !important;
}
body .nav-translate .gt_switcher .gt_option a {
    padding: 8px;
    font-family: var(--font-Figtree);
    font-size: var(--btnFont);
    font-style: normal;
    font-weight: 500;
    color: var(--gray);
    line-height: 24px;
    font-weight: 600;
}
body .nav-translate .gt_switcher a.open{
    border-radius: 25px 25px 0 0 !important;
}
body .gt_selected {
    background: transparent !important;
}
.gt_switcher .gt_option{
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* Shown when dropdown is open */
.gt_switcher .gt_option[style*="display: block"] {
    opacity: 1;
    visibility: visible;
}

.banner {
    height: 100%;
}
.banner-container {
    height: calc(100% - 150px);
}
.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.banner-title {
    font-family: var(--font-MDExtBold);
    /*font-size: 106px;*/
    font-size: clamp(32px, 6vw, 106px);
    font-style: normal;
    font-weight: 500;
    color: var(--white);
    text-align: center;
}
.banner-title span {
    font-family: var(--font-MDRegular);
}

@media (max-width: 992px) {
    .topbar-wrap {
        flex-direction: column;
        gap: 30px;
    }
    .navbar-brand {
        text-align: center;
    }
}
@media(max-width:767px) {
    .header {
        height: 600px;
    }
    .header .banner:not(.no-banner) {
        height: 578px;
    }
    .banner-container {
        height: calc(100% - 200px);
    }
}
@media (max-width: 560px) {
    .nav-right-wrap {
        flex-direction: column;
        align-items: center;
    }
}