.header {
    position: relative;
}
.top-bar {
    background-color: var(--darkMaroon);
    padding: 25px 0 20px;
}
.topbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.translate-search-wrap{ 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    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-AvantGardeBook);
    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: 8px 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-AvantGardeBook);
    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;
}

.search-wrap form {
    /*width: 191px;*/
    position: relative;
    display: flex;
	align-items: center;
}
.search-wrap input.search-box::placeholder {
    font-family: var(--font-AvantGardeBook);
    font-size: var(--btnFont);
    font-style: normal;
    font-weight: 700;
    color: var(--gray);
    text-transform: capitalize;
}
.search-wrap input.search-box {
    width: 173px; /*292px;*/
    padding: 8px 17px;
    font-family: var(--font-AvantGardeBook);
    font-size: var(--btnFont);
    font-style: normal;
    font-weight: 700;
    line-height: var(--btnLh);
    background-color: var(--white);
    border: 1px solid var(--gray);
    border-radius: 25px;
	color: var(--gray);
}
.search-wrap .search-icon {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: var(--maroon);
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;    
    background: transparent;
    border: none;
}

.ham-lines {
    transition: all 0.5s ease;
}
.ham-lines span {
    display: block;
    width: 73px;
    height: 11px;
    background: var(--white);
    margin-bottom: 10px;
    position: relative;
    border-radius: 10px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
}
.ham-lines span:first-child {
    transform-origin: 0% 0%;
}

.navbar-nav {
    gap: 60px;
}
.navbar-nav li {
    position: relative;
}
.navbar-nav li a {
    color: var(--white);
    font-size: var(--menuFont);
    font-style: normal;
    font-weight: 400;    
    position: relative;
    display: inline-block;
}
.nav-item > a.nav-link:not(.dropdown-menu a) {
    padding: 0 !important;
}
.navbar-nav li a::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: currentColor;
    bottom: -5px;
    left: 0;
    scale: 0 0;
    transition: all 0.5s ease;
}
.nav-link:focus,
.navbar-nav li a:hover,
.navbar-nav .nav-link.active, 
.navbar-nav .nav-link.show {
    color: var(--white);
}
.navbar-nav li a:hover::after,
.navbar-nav .nav-link.active::after, 
.navbar-nav .nav-link.show::after {
    scale: 1 1;
}
.dropdown-menu {
    padding: 0;
    list-style-type: none;
}
.dropdown-menu li a {
    padding: 25px 0 !important;
    text-decoration: none;
}
.collapse-wrapper {
    width: 100%;
}

.dropdown-toggle {
    display: none;
}

.banner.video video {    
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}
.video-control {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--darkMaroon);
    color: var(--white);
    border: none;
    border-radius: 50%;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s;
    width: 40px;
    height: 40px;
}
.video-control:hover {
    background: var(--maroon);
}



@media(min-width: 1200px) {
    .topbar-wrap .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    .topbar-wrap .navbar-nav {
        flex-direction: row;
    }
    .navbar-nav .dropdown-menu {
        position: absolute;
    }    
    .navbar-nav {
        justify-content: center;
    }
    .navbar-hamburger {
        display: none;
    }
    .hideDesk {
        display: none;
    }

    .dropdown-menu {
        background: #FFF;
        width: 223px;
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 10px;
        pointer-events: auto;
        box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        height: 0;
        visibility: hidden;
        /*interpolate-size: allow-keywords;*/
        transition: height 0.5s ease, visibility 0.5s ease;
        display: block;
        border: 0;
    }
    .navbar-nav li:hover > .dropdown-menu,
    .navbar-nav li:focus-within > .dropdown-menu  {
        height: auto;
        visibility: visible;
        display: block;
    }
    .dropdown-menu li a {
        color: var(--darkMaroon);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        text-transform: capitalize;
        padding: 25px 13px !important;
        display: block;
        transition: all 0.5s ease;
    }    
    .dropdown-menu li a:focus,
    .dropdown-menu li a:hover,
    .dropdown-item.active, 
    .dropdown-item:active {
        background-color: var(--maroon);
        color: var(--white);
    }
    .navbar-nav .nav-item:hover::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        height: 10px; /* matches margin-top of dropdown */
        width: 100%;
        background: transparent;
        z-index: 1;
    }
}
@media(max-width: 1200px) {
    .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-collapse {
        display: block !important;
        position: fixed;
        top: 0;
        width: 100%;
        left: 0;
        height: 0;
        /*interpolate-size: allow-keywords;*/
        visibility: hidden;
        transition: height 0.5s ease, max-height 0.5s ease, visibility 0.5s ease;
        overflow: hidden;
        background-color: var(--darkMaroon);
        z-index: 9;
    }
    .collapse-wrapper {
        padding: 56px 36px;
        height: 100vh;
    }
    .navbar-collapse.show {
        height: 100%;
        visibility: visible;       
    }
    .navbar-nav, .nav-translate {
        text-align: center;
        margin-top: 45px;
    }
    .gt_switcher {
        margin: 0 auto;
    }
    /*.nav-options li.dropdown {
        padding-left: 20px;
    }*/
    .nav-options .dropdown > a {
        margin-left: 20px;
    }
    .nav-options .dropdown-toggle {
        display: inline-block !important;
        border: 0;
        padding-left: 10px;
        padding-right: 0px;
    }
    .nav-options .dropdown-toggle::after {
        color: var(--white);
    }
    .nav-options .dropdown-menu {
        padding-top: 10px;
        position: relative;
        top: unset !important;
        background: transparent !important;
        border: 0;
        text-align: center;
        width: 100%;
        box-shadow: none;
    }
    .nav-options .dropdown-menu li {
        border-bottom: 0 !important;
    }
    .nav-options .dropdown-menu li a {
        color: var(--white) !important;
        padding: 10px 0 !important;
        text-decoration: none;
    }
    .nav-options .dropdown-menu li a:hover,
    .nav-options .dropdown-menu li a:focus,
    .nav-options .dropdown-item.active, 
    .nav-options .dropdown-item:active {
        background-color: transparent !important;
    }
    .navbar-nav li:hover .dropdown-menu,
    .navbar-nav li:focus .dropdown-menu {
        height: auto;
        visibility: visible;
    }
    .logo-overlayer {
        position: absolute;
        bottom: 0;
        left: 36px;
        z-index: -1;
    }
    .nav-close i {
        color: white;
        font-size: 60px;
    }

    .showDesk,
    .topmenu {
        display: none;
    }
}

@media(max-width:992px) {
    /*.search-wrap {
        position: absolute;
        top: 142px;
        left: 36px;
    }*/

    .nav-options > li > a {
        position: relative;
        display: inline-block;
    }
    .nav-options > li > a > i {
        position: absolute;
        right: -30px;
        top: 10px;
        font-size: 13px;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-top .nav-link.active {
        color: var(--white) !important;
    }
}
@media (max-width: 768px) {
    .topbar-wrap {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 50px;
        position: relative;
    }
    .social-icons {
        order: 1;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .translate-search-wrap {
        order: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-right: 50px;
        padding-bottom: 10px;
    }
    .search-wrap form {
        display: flex;
        flex: 1;
        max-width: 100%;
    }
    .search-box {
        flex: 1;
        min-width: 0;
    }
    .navbar-toggler.navbar-hamburger {
        order: 2;
        margin-left: 10px;
    }
    .navbar-toggler.navbar-hamburger {
        position: absolute;
        right: 10px;
        bottom: 0;
    }
}
/*
@media(max-width:475px) {
    .search-wrap .search-box {
        width: calc(100vw - 180px) !important;
    }
}*/