

/*** -------------------- GLOBAL MESSAGE BAR -------------------- ***/
.global_message_bar {
    background-color: var(--off-white);
    text-align: center;
    padding: 8px 0;
}
.global_message_bar a {
    -webkit-transition: ease all .3s;
    -o-transition: ease all .3s;
    transition: ease all .3s;
}
.global_message_bar a:hover {
    opacity: 1;
}
.global_message_bar .global_message_bar_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.global_message_bar * {
    text-decoration: none;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400; /* medium */
    margin-bottom: 0;
    color: var(--navy);
    font-family: industry, sans-serif;
    text-transform: uppercase;
}
.global_message_bar *:hover {
    text-decoration: none;
}
.global_message_bar a:hover {
    color: var(--rose);
}
.global_message_bar .left,
.global_message_bar .right {
    width: 10px;
    display: flex;
    flex-direction: row;
    column-gap: 45px;
}
.global_message_bar .center {
    margin-top: 3px;
}
.global_message_bar .left {
    justify-content: flex-start;
}
.global_message_bar .right {
    justify-content: flex-end;
}


/* Container padding for nav to prevent it being flush to side */
@media(max-width: 1830px) {
    .global_message_bar .nav_container_padding_desktop {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media(max-width: 1499.98px) {
    .global_message_bar * {
        font-size: 13px;
        line-height: 1.2;
    }
}
@media(max-width: 1299.98px) {
    .global_message_bar .nav_container_padding_desktop {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media(max-width: 1299.98px) {
    .global_message_bar {
        /*display: none;*/
    }
}
@media(max-width: 767.98px) {
    .global_message_bar * {
        font-size: 13px;
    }
    .global_message_bar {
        padding: 5px 0;
    }
    .global_message_bar .nav_container_padding_desktop {
        padding: 0 10px;
    }
}
@media(max-width: 767.98px) {
    .global_message_bar * {
        font-size: 12px;
    }
}
@media(max-width: 575px) {
    .global_message_bar .nav_container_padding_desktop {
        padding: 0 10px;
        padding-right: 5px;
    }
}
@media(min-width: 575px) {
    .global_message_bar br {
        display: none;
    }
}







/*** Navigation ***/

#mobile_navigation {
    display: none;
}
#navigation_tray {
    display: none;
}
#desktop_navigation {
    display: block;
}

/*** -------------------- DESKTOP -------------------- ***/
header {
    /*overflow-x: hidden;*/
}

#desktop_navigation {
    background-color: var(--white);
    width: 100%;
    max-width: 100%;
}
#desktop_navigation .desktop_menu_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    transition: ease all .4s;
    padding-left: 30px;
    padding-right: 30px;
    /* before sticky */
    padding-top: 30px;
    padding-bottom: 30px;
}

/*** --------- Transparent Nav ---------- ***/
header.transparent_nav #desktop_navigation {
    background-color: transparent;
}

/***  Desktop Sticky  ***/
/*header.sticky #desktop_navigation {*/
/*    background-color: #FFFFFF;*/
/*}*/
/*header.sticky #desktop_navigation .desktop_menu_flex {*/
/*    padding-top: 20px;*/
/*    padding-bottom: 20px;*/
/*}*/





/* Logo */
#desktop_navigation .main_logo {
    background-image: url('../assets/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}
#desktop_navigation .main_logo,
#desktop_navigation .main_logo a,
#desktop_navigation .main_logo img {
    display: block;
    height: 55px;
    width: auto;
}
#desktop_navigation .main_logo img {
    opacity: 0;
}
#desktop_navigation .main_logo {
    width: 355px;
}

/* Main Links */
#desktop_navigation .main_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#desktop_navigation .main_links a {
    margin-right: 22px;
    margin-left: 22px;
    font-size: 16px;
    line-height: 1.2;
    font-family: 'industry', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
}
#desktop_navigation .main_links a:hover {
    color: var(--rose);
}
#desktop_navigation .main_links li:first-of-type a {
    margin-left: 0;
}
#desktop_navigation .main_links li:last-of-type a {
    margin-right: 0;
}


/*** ------------------ DROPDOWN LINK MENUS ---------------- ***/

#desktop_navigation .dropdown_surround {
    position: relative;
}

#desktop_navigation .dropdown_link_menu {
    position: absolute;
    padding: 24px;
    background-color: white;
    display: flex;
    flex-direction: column;
    width: fit-content;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: ease all .3s;

    padding-top: 75px;
    row-gap: 15px;
    z-index: 60000;
}
#desktop_navigation .background_of_dropdown {
    position: fixed;
    bottom: 0;
    left: 0;
    height: calc(100% - var(--navbar-height));
    width: 100%;
    background-color: rgba(0,0,0,0.75);
    opacity: 0;
    visibility: hidden;
    z-index: 50000;
    transition:  ease all .3s;
}


#desktop_navigation .dropdown_surround:hover .dropdown_link_menu,
#desktop_navigation .background_of_dropdown.open {
    opacity: 1;
    visibility: visible;
}


#desktop_navigation .dropdown_link_menu a {
    margin: 0;
}



/**** Smaller desktops ***/
@media(max-width: 1599.98px) {
    #desktop_navigation .desktop_menu_flex {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #desktop_navigation .desktop_menu_flex .button.primary,
    #desktop_navigation .desktop_menu_flex a.button.secondary {
        padding: 12px 22px;
        font-size: 16px;
    }
    #desktop_navigation .desktop_menu_flex a.button.secondary {
        margin-right: 10px;
    }
    #desktop_navigation .main_logo,
    #desktop_navigation .main_logo a,
    #desktop_navigation .main_logo img {
        height: 45px;
    }
    #desktop_navigation .main_links a {
        margin-right: 16px;
        margin-left: 16px;
    }
    #desktop_navigation .dropdown_link_menu a {
        margin: 0;
    }
    #desktop_navigation .main_logo {
        width: 290px;
    }
}
@media(max-width: 1366.98px) {
    #desktop_navigation .main_logo {
        width: 100px;
    }
}


/*** Open Tray Buttons ***/
#desktop_navigation button.open_tray,
#mobile_navigation button.open_tray {
    background-color: transparent;
    border: none;
    padding: 0;
}

/*** ------------------ NAVIGATION TRAY ---------------- ***/

/* No Scroll Class When Tray is Open */
html.no_scroll {
    overflow-y: hidden!important;
    overflow-x: hidden!important;
}

/*** Nav Tray Backdrop ***/
.navigation_tray_backdrop {
    z-index: 5000000;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.navigation_tray_backdrop::before { /* For backdrop compatibility */
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #000000;
    opacity: 0.4;
}
.navigation_tray_backdrop.open {
    opacity: 1;
    visibility: visible;
}

/*** Tray Styles - Open/Close ***/
#navigation_tray,
#navigation_tray .sub_tray {
    z-index: 50000001;
    position: fixed;
    top: 0;
    right: -570px;
    width: 570px;
    max-width: calc(100% - 30px);
    height: 100%;
    background-color: #FFFFFF;
    opacity: 0.4;
    transition-delay: 0.2s;
    transition-timing-function: ease;
    transition-duration: 0.2s;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    padding: 60px 55px;

    -webkit-box-shadow: -30px 1px 100px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: -30px 1px 100px 0px rgba(0,0,0,0.15);
    box-shadow: -30px 1px 100px 0px rgba(0,0,0,0.15);
}
#navigation_tray.open,
#navigation_tray .sub_tray.open {
    right: 0;
    opacity: 1;
}

/*** Tray Sections ***/
#navigation_tray .tray_top .tray_buttons {
    margin-bottom: 80px;
}
#navigation_tray .tray_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

#navigation_tray .tray_center a:not(.button) {
    font-size: 30px;
    margin-bottom: 30px;
    font-family: 'industry', sans-serif;
    text-decoration: none;
    color: var(--navy);
}
#navigation_tray .tray_center a:not(.button):hover {
    color: var(--rose);
}
#navigation_tray .tray_top .tray_buttons button.close_tray {
    border: none;
    background-color: transparent;
    padding: 0;
}
#navigation_tray .tray_top .tray_buttons button.close_tray img {
    height: 20px;
    width: 20px;
}

/****** Sub trays ******/





/*** -------------------- MOBILE -------------------- ***/
@media(max-width: 1199.98px) {
    #desktop_navigation {
        display: none;
    }
    #mobile_navigation {
        display: block;
    }


    #mobile_navigation {
        background-color: var(--white);
        width: 100%;
    }
    #mobile_navigation .mobile_menu_flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        transition: ease all .4s;
        padding-left: 20px;
        padding-right: 20px;
        /* before sticky */
        padding-top: 20px;
        padding-bottom: 20px;
    }


    /* Logo */
    #mobile_navigation .main_logo {
        background-image: url('../assets/logo.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
    }
    #mobile_navigation .main_logo img {
        opacity: 0;
        width: 70px;
        height: auto;
    }

}


@media(max-width: 767.98px) {
    #mobile_navigation .mobile_menu_flex {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 15px;
        padding-right: 15px;
    }
    #navigation_tray, #navigation_tray .sub_tray {
        padding: 30px;
    }
    #navigation_tray a.button.primary,
    #navigation_tray a.button.secondary {
        width: 100%;
        margin-right: 0;
    }
    #navigation_tray a.button.secondary {
        margin-bottom: 10px !important;
    }
    #navigation_tray .tray_center a:not(.button) {
        font-size: 26px;
        margin-bottom: 20px;
    }
}