/* HEADER HEADER HEADER HEADER */
/* HEADER HEADER HEADER HEADER */
/* HEADER HEADER HEADER HEADER */
/* HEADER HEADER HEADER HEADER */

/* Outer header */
.main-page-header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #101519;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 0;
    z-index: 999;
    margin-bottom: 1.7rem;
}
/* Inner header */
.main-page-header-wrapper{
    width: 95%;
    max-width: 1024px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
/* Inner header Left Side */
.main-page-header-outer-left{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}
.header-main-logo-link{
    line-height: 0;
}
.header-main-logo-image{
    max-width: 15.3rem;
}
.main-page-desktop-navigation ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding-left: 1.6rem;
}
.main-page-desktop-navigation ul li{
    border-right: 1px solid #6B6B6B;
    padding: 0 1.6rem;
}
.main-page-desktop-navigation ul li:last-child{
    border-right: none;
}
.main-page-desktop-navigation ul li a{
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-size: 1.2rem;
    line-height: 1.7rem;
    font-family: 'Open Sans', sans-serif;

    letter-spacing: 0;
    color: #FFFFFF;
    text-transform: uppercase;
    text-decoration: none;
}
.main-page-desktop-navigation ul li a:hover, .main-page-desktop-navigation ul li.current-menu-item a{
    text-decoration: underline;
}
/* Inner header Right Side */
.main-page-header-outer-right{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.header-main-cta{
    background-color: #0099CC;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.8rem;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    letter-spacing: 0px;
    color: #FFFFFF;
    padding: 0.4em 1.5em;
    border-radius: 100px;
    border-bottom: .3rem solid #004e68;
    margin-right: .5rem;
    transform: scale(1);
    transition: transform .2s ease-in-out;
}
.header-main-cta:hover{
    transform: scale(1.05);
}
/* Style for the dropdown button */
.dropbtn {
    background-color: #101519;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    line-height: 1.7rem;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    font-family: 'Open Sans', sans-serif;
    padding: 0;
    margin: 0;
    margin-left: .5rem;
    padding-left: .5rem;
    padding-right: .5rem;
    height: 6rem;
    transition: background-color .2s ease-in-out;
    text-transform: uppercase;
}
.dropbtn:hover{
    background-color: #26353D;
}
.lang-switcher-icon{
    width: 3rem;
    height: 3rem;
    margin-right: .5rem;
}
/* Desktop header language switcher navigation */
.dropdown {
    position: relative;
    display: inline-block;
}
#dropdownContent div{
    width: 100%;
}
#dropdownContent ul{
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
#dropdownContent ul li{
    margin: 0;
    padding: 0;
    width: 100%;
}
#dropdownContent ul li a{
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.7rem;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    font-family: 'Open Sans', sans-serif;
    color:white;
    display: block;
    width: 100%;
    background: linear-gradient(90deg, rgba(38,53,61,1) 99%, rgba(16,21,25,1) 100%);
    border-left: 3px solid #26353D;
    padding: .7rem 1.7rem;
    transition: background 0.2s, border-left 0.2s ease;
}
#dropdownContent ul li a:hover, #dropdownContent ul li.wpml-ls-current-language a{
    border-left: .3rem solid #0099CC;
    background: linear-gradient(90deg, rgba(38,53,61,1) 43%, rgba(16,21,25,1) 100%);
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #26353D;
    min-width: 16rem;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    z-index: 9999;
    right: 0;
    overflow: hidden;
}
/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown:hover .dropbtn, .openedlangmenu {
    background-color: #26353D;
}
/* Mobile hamburger trigger */
.mobile-menu-toggler {
    display: none;
    cursor: pointer;
    margin-left: 1rem;
}
.bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    transition: transform 0.2s ease-in-out;
}
.cross #bar1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.cross #bar2 {
    opacity: 0;
}
.cross #bar3 {
    transform: rotate(45deg) translate(-5px, -6px);
}
header.mobile-sizes .main-page-desktop-navigation{
    position: fixed;
    top: 6rem;
    left: 100%;
    background: #26353D;
    width: 100%;
    height: calc(100% - 6rem);
    opacity: 0;
    z-index: 999;
    transition: opacity .2s ease-in-out, left .2s ease-in-out;
}
header.mobile-sizes .main-page-desktop-navigation.mobile-menu-opened{
    left: 0%;
    opacity: 1;
}
header.mobile-sizes .main-page-desktop-navigation ul{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
header.mobile-sizes .main-page-desktop-navigation ul li{
    border: none;
}
header.mobile-sizes .main-page-desktop-navigation ul li a{
    display: block;
    padding: 1rem 0;
    font-size: 1.4rem;
    font-weight: 600;;
}
header.mobile-sizes .main-page-desktop-navigation ul li:first-child a{
    padding: 2rem 0 1rem 0;
}

header.mobile-sizes .mobile-menu-toggler{
    display: inline-block;
}
