/* 1. Colors -------------------------------------------*/
:root {
    --black: #000000;
    --bone: #e3d8c9;
    --chamoisee: #91744b;
    --CoE-blackgreen: #182828;
    --CoE-darkgreen: #0e423f;
    --eerie-black: #1a1a1a;
    --dim-grey: #626262;
    --gunmetal: #182828;
    --lion: #ab8c5f;
    --platinum: #d9d9d9;
    --timberwolf: #d2d2d2;
    --uni-blue: #3c7295;
    --uni-red: #ae0000;
    --uni-teal: #57c4c0;
    --yellow-green: #abd037;
    --white: #ffffff;
    --white-smoke: #f7f5f3;
}

/* 2. Top Navigation ------------------------------------*/
.mobile-only {
    display: none;
}

/* Skip to Main */
.skip-main {
    background-color: var(--white-smoke);
    border-radius: 5px;
    color: var(--eerie-black);
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    left: 12%;
    padding: 10px;
    position: fixed;
    text-decoration: none;
    top: -100px;
    z-index: 10000;
}

    .skip-main:focus, .skip-maink:active {
        border: 3px var(--black) solid;
        left: 50%;
        top: unset;
        transform: translateX(-50%);
        opacity: 1;
    }

nav#topnav .logo img {
    max-width: 200px;
}

nav#topnav {
    align-items: center;
    background-color: var(--uni-red);
    box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.4);
    color: var(--white);
    column-gap: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 5rem;
    justify-content: space-between;
    max-width: 1920px;
    overflow: hidden;
    padding: 0 2rem 0 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

    nav#topnav .menu-container {
        position: relative;
    }

    nav#topnav ul.menu-list {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        justify-content: flex-end;
        max-height: initial;
        position: static;
        width: 100%;
    }

    nav#topnav.expanded ul.menu-list {
        align-items: flex-start;
        background-color: var(--white);
        box-shadow: rgb(0 0 0 / 30%) 0px 8px 10px -3px inset, rgb(0 0 0 / 30%) 0px 3px 10px 3px;
        color: var(--eerie-black);
        display: block; /*flex*/
        flex-direction: column;
        height: 100vh;
        justify-content: flex-start;
        left: 0;
        margin-top: -1px;
        overflow-y: scroll;
        padding: 1rem;
        position: fixed;
        row-gap: 0.8rem;
        transition: height 0.4s ease-in-out;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    nav#topnav ul.menu-list li {
        display: flex;
        margin-bottom: 0;
    }

        nav#topnav ul.menu-list li a {
            background-color: inherit;
            color: currentColor;
            font-size: 1.3rem;
            font-weight: 600;
            padding: 1rem 0;
            position: relative;
            text-decoration: none;
            text-transform: capitalize;
            white-space: nowrap;
        }

    nav#topnav ul.menu-list a::after {
        border-bottom: 2px solid var(--white);
        bottom: 1rem;
        content: "";
        left: 0;
        position: absolute;
        right: 100%;
        transition: right 0.2s ease-out;
    }

    nav#topnav ul.menu-list a:hover::after {
        right: 0;
    }

    /*nav#topnav ul.menu-list li:nth-last-child(-n + 2) a:hover::after {
        right: unset;
    }*/

    nav#topnav.expanded ul.menu-list {
        height: 100%;
        max-height: 100%;
    }

    nav#topnav .burger {
        display: none;
        font-size: 2.5rem;
        font-weight: 900;
    }

    nav#topnav .fa-times.menu-close {
        display: none;
    }

    nav#topnav.expanded .fa-times.menu-close {
        display: block;
    }

    nav#topnav.expanded .fa-bars.menu-open {
        display: none;
    }

    nav#topnav:not(.expanded) .fa-times.menu-close {
        display: none;
    }

    nav#topnav:not(.expanded) .fa-bars.menu-open {
        display: block;
    }

/* 3. Secondary Menu ------------------------------------*/
.thisSection {
    font-size: 1.5rem;
    margin-left: 1rem;
}

#secondnav {
    background-color: var(--uni-red);
    color: var(--white);
    max-width: 1920px;
    min-height: 3rem;
    padding: 1rem 2rem;
    /*position: sticky;*/
    top: 0;
    left: 0;
    width: 100%;
    right: 0;
}

    #secondnav > h1 {
        font-size: 2.25rem;
        line-height: normal;
        margin: 0;
        padding: 0;
    }

    #secondnav ul.secondNav-menu li a:hover {
        color: var(--platinum);
        transform: translateX(1.25rem);
        transition-duration: 0.3s;
        transition-property: transform;
    }

    #secondnav ul.secondNav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin-top: 1rem;
        /*margin-left: -2rem;*/
        padding: 0;
        transition: all 0.25s ease-in;
    }

        #secondnav ul.secondNav-menu li {
            border-bottom: 0.0625rem solid var(--white);
            color: var(--white);
            display: inline;
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 1rem 1rem;
            padding: 0 0 0.25rem 0;
            width: calc(25% - 1rem);
        }

            #secondnav ul.secondNav-menu li a {
                display: inline-block;
                margin: 0 1.5em 0 0.5rem;
                transform: translateX(0rem);
                transition-duration: 0.3s;
                transition-property: transform;
                width: 85%;
            }

                #secondnav ul.secondNav-menu li a:link, #secondnav ul.secondNav-menu li a:visited {
                    color: var(--white);
                    text-decoration: none;
                }

.thisSection > h2 {
    font-size: 1.95rem;
    margin: 1rem 0 1rem 0;
}

/* 4. Language Menu ------------------------------------*/
.tooltipText {
    background-color: #000;
    color: #fff;
    position: absolute;
    padding: 5px 7px;
    border-radius: 5px;
    font-size: 16px;
    right: 0;
    opacity: 0;
    transition: all .5s;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

.social-menu ul > li.tooltip:hover, .social-menu ul > li.tooltip:focus, .social-menu ul > li.tooltip:focus-visible {
    letter-spacing: normal;
}

.tooltip:hover .tooltipText, .tooltip:focus .tooltipText, .tooltip:focus-visible .tooltipText, .tooltip:active .tooltipText, .tooltip a:focus-visible > .tooltipText {
    opacity: 1;
    outline: 0;
    transition: background-color 0.3s;
    transform: translate3d(-50%, 0, 0) scale(1);
    clip: unset;
    clip-path: unset;
    height: unset;
    width: auto;
}

.language-nav-wrapper {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    padding-top: 6rem;
    text-align: left;
    background-color: #2b2b2b;
    z-index: 10;
    transition: all 0.3s;
    width: 16vw;
}

.language-nav-country {
    color: #fff;
    line-height: 2;
    margin-left: 1.5rem;
    margin-top: 1rem;
    position: fixed;
}

    .language-nav-country > ul {
        list-style: none;
    }

        .language-nav-country > ul > li > a {
            color: #fff;
            text-decoration: none;
        }

.showLanguage {
    display: block !important;
}

/* Responsive */
/*Responsive*/
/*CSS kicks in when the device width is 1700px and below*/
@media only screen and (max-width: 1700px) {
    nav.second-navRed ul.secondNav-menu li {
        width: calc(33% - 1rem);
    }

    nav#topnav ul.menu-list > li.menu-item > a {
        font-size: 1.3rem;
        font-weight: 600;
    }
}

/*CSS kicks in when the device width is 1600px and below*/
@media only screen and (max-width: 1600px) {
    #secondnav ul.secondNav-menu li {
        width: calc(32% - 1rem);
    }
}

/*CSS kicks in when the device width is 1450px and below*/
@media only screen and (max-width: 1450px) {
    nav#topnav .burger {
        display: flex;
    }

    nav#topnav .logo img {
        max-width: 250px;
    }

    nav#topnav:not(.expanded) .fa-times.menu-close {
        display: none;
    }

    nav#topnav:not(.expanded) .fa-bars.menu-open {
        display: block;
    }

    nav#topnav.expanded .fa-bars.menu-open {
        display: none;
    }

    nav#topnav.expanded .fa-times.menu-close {
        display: block;
    }

    nav#topnav:not(.expanded) .menu-list {
        display: none;
    }

    nav#topnav.expanded .menu-list {
        align-items: flex-start;
        display: flex;
    }
}

/*CSS kicks in when the device width is 1280px and below*/
@media only screen and (max-width: 1280px) {
    #secondnav {
        color: var(--white);
        left: 0;
        max-width: 1920px;
        min-height: 3rem;
        padding: 1rem;
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
    }

        #secondnav ul.secondNav-menu li {
            width: calc(48% - 1rem);
        }
}

/*CSS kicks in when the device width is 1200px and below*/
@media only screen and (max-width: 1200px) {
    nav#topnav .logo img {
        max-width: 250px;
    }
}

/*CSS kicks in when the device width is 1100px and below*/
@media only screen and (max-width: 1100px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    nav#topnav .burger {
        display: flex;
    }

    .mobile-only.searchLbl {
        display: inline-block;
    }

    nav#topnav ul.menu-list > li.menu-item {
        border-bottom: 1px #000 solid;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        width: 100%;
    }

        nav#topnav ul.menu-list > li.menu-item > a {
            display: block;
            font-size: 1.55rem;
            padding: unset;
            width: 100%;
        }

    .bg-video {
        min-height: unset;
    }

    .thisSection > button, .thisSection > button:active {
        background-color: var(--uni-red);
        border: 0;
        color: #fff;
        display: block;
        font-size: 1.2rem;
        letter-spacing: 1px;
        padding: 15px;
        text-decoration: none;
        word-spacing: 3px;
    }

    .thisSection button > .fa-solid.fa-chevron-down {
        right: 6%;
        position: absolute;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
        transition: all 0.5s;
    }

    .thisSection.active button > .fa-solid.fa-chevron-down {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    #secondnav ul.secondNav-menu {
        display: none;
        height: 0;
        margin-bottom: 0;
        transition: all 0.35s ease;
    }

        #secondnav ul.secondNav-menu.active {
            display: block;
            height: auto;
            margin-bottom: 0;
            transition: all 0.35s ease;
        }

        #secondnav ul.secondNav-menu li {
            display: inherit;
            width: 100%;
        }

            #secondnav ul.secondNav-menu li a {
                display: inline-block;
                margin: 0 1.5em 0 0.5rem;
                transform: translateX(0rem);
                transition-duration: 0.3s;
                transition-property: transform;
                width: 85%;
            }

                #secondnav ul.secondNav-menu li a:hover {
                    color: #F2F2F2;
                    transform: translateX(1.25rem);
                    transition-duration: 0.3s;
                    transition-property: transform;
                }
}

/*CSS kicks in when the device width is 1080px and below*/
@media only screen and (max-width: 1080px) {
}

/*CSS kicks in when the device width is 932px and below*/
@media only screen and (max-width: 932px) {
    nav#topnav .logo img {
        max-width: 250px;
    }
}

/*CSS kicks in when the device width is 810px and below*/
@media only screen and (max-width: 810px) {
}

/*CSS kicks in when the device width is 667px and below*/
@media only screen and (max-width: 667px) {
    body.expanded {
        overflow: hidden;
    }

    .hero {
        min-height: unset;
        clip-path: unset;
    }

    .hero-image {
        min-height: auto;
    }
}

/*CSS kicks in when the device width is 412px and below*/
@media only screen and (max-width: 412px) {
    .hero {
        min-height: unset;
        clip-path: unset;
    }

    .hero-image {
        min-height: auto;
    }

    nav#topnav {
        height: 16vh;
        padding: 1rem 2rem 1rem 1rem;
    }

    #secondnav {
        padding: 1rem 2rem 1rem 2rem;
    }

        #secondnav > h1 {
            font-size: 1.4rem;
            line-height: normal;
            margin: 0;
            padding: 0;
        }

    .thisSection {
        margin-top: 0 !important;
    }
}

/*CSS kicks in when the device width is 926px and device height is 428px and below*/
@media only screen and (max-width: 926px) and (max-height: 428px) {
    nav#topnav.expanded ul.menu-list {
        max-height: 80vh;
    }

    #secondnav {
        padding: 0 2rem;
    }
}

/*CSS kicks in when the device width is 896px and device height is 414px and below*/
@media only screen and (max-width: 896px) and (max-height: 414px) {
    nav#topnav.expanded ul.menu-list {
        max-height: 80vh;
    }

    #secondnav {
        padding: 1rem 2rem 1rem 2rem;
    }
}

/*CSS kicks in when the device width is 667px and device height is 412px and below*/
@media only screen and (max-width: 667px) and (max-height: 412px) {
    nav#topnav.expanded ul.menu-list {
        max-height: 80vh;
    }

    #secondnav {
        padding: 1rem 2rem 1rem 2rem;
    }
}

/*CSS kicks in when the device width is 375px and below*/
@media only screen and (max-width: 375px) {
    nav#topnav {
        padding: 1rem 2rem 1rem 1rem;
    }
}

.GeckoChatWidget .UnreadMessages .unread-msg-close {
    height: 24px !important;
    width: 24px !important;
}