﻿:root {
    --black: #1E1E1E;
    --white: #FFF;
    --purple: #7500FF;
    --grey: #E0E0E0;
    --lightgrey: #f2f2f2;
    --blue: #0C2A60;
    --yellow: #FFED00;
}

/*Buttons*/

.btn-primary {
    padding: 13px 30px 10px 30px;
    background-color: var(--yellow) !important;
    border: none !important;
    color: var(--blue);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.2px;
    box-shadow: none !important;
    text-transform: uppercase;
    display: inline-block;
}
    .btn-primary:hover {
        color: var(--blue);
        opacity: .7;
    }

.btn-secondary {
    padding: 18px 22px 18px 22px;
    background-color: var(--mint) !important;
    border: none !important;
    color: var(--black);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0.2px;
    box-shadow: none !important;
}
.btn-secondary:hover {
    opacity: .7;
    color: var(--black);
}

.read-more-link {
    color: var(--blue);
    font-weight: 700;
    position: relative;
}
.read-more-link {
    color: var(--blue);
    font-weight: 700;
    position: relative;
}
.read-more-link:hover {
    color: var(--black);
}
    .read-more-link:after {
        content: '';
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 16px;
        background-image: url('../assets/Double-chevron-blue.svg');
        background-size: contain;
        background-repeat: no-repeat;
    }
    .read-more-link:hover:after {
        content: '';
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 16px;
        background-image: url('../assets/Double-chevron-black.svg');
        background-size: contain;
        background-repeat: no-repeat;
    }
/*Buttons*/
/* HEADER */
header {
    position: relative;
}

.header-top{
    background-color: var(--blue);
}

.header-navbar {
    background-color: var(--yellow);
}

.navbar-brand {
    display: flex;
    align-items: center;
    width: fit-content;
    padding-top: 25px;
    padding-bottom: 25px;
}

.header-top > .container {
    background: transparent url(/assets/header-skyline-n.png) no-repeat right 120px bottom 0px;
    background-size: 50%;
}

.divider {
    height: 70px;
    margin: 0 10px;
    background: transparent url(/assets/header-divider.png) no-repeat top center;
    display: inline-block;
    width: 3px;
}
.navbar-brand img {
    max-height: 50px;
}

#header-inner {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px var(--grey) solid;
    z-index: 99;
}
.header-wrap{
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: relative;
}

nav {
    display: flex;
    align-items: center;
}

.logo-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

.menuitem-wrapper {
    height: 100%;
    padding-left: 18px;
    padding-right: 18px;
    position: relative;
}
    .menuitem-wrapper .menuitem-top {
        font-size: 18px;
        height: 100%;
        display: flex;
        align-items: center;
        color: var(--black);
        text-decoration: none;
        padding: 8px 0;
    }

.header-navbar .menuitem-wrapper {
    border-right: 2px solid #dcd000;
}
    .header-navbar .menuitem-wrapper:first-child {
        border-left: 2px solid #dcd000;
    }
    .header-navbar .menuitem-wrapper:hover {
        background-color: #e6da00;
    }

    .header-search {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: flex-end;
        position: relative;
    }

.search-icon {
    width: 30px;
    height: 30px;
    background-image: url('../assets/search-icon-white.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

    .search-icon:hover {
        background-image: url('../assets/search-icon-white.svg');
    }

    .search-icon.open {
        background-image: url('../assets/close-icon-white.svg');
    }

        .search-icon.open:hover {
            background-image: url('../assets/close-icon-white.svg');
        }

.menu-search-container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

#menu-search-show {
    display: none;
    margin-right: 24px;
}

    #menu-search-show.show {
        display: flex;
        width: 60%;
    }

#txtSiteSearch {
    border: 1px solid #D6D6D6;
    border-right: none;
    padding: 11px 16px;
    width: calc(100% - 50px);
}
#btnSiteSearch {
    outline: none;
    border: none;
    background-color: var(--yellow);
    height: 50px;
    width: 46px;
    background-image: url('../assets/search-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
}

#mobileBurgerMenu {
    display: none;
    cursor: pointer;
    font-size: 18px;
    padding: 10px;
    width: 56px;
    height: 26px;
    background-image: url('../assets/burger.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
    #mobileBurgerMenu.active {
        background-image: url('../assets/close-icon-white.svg');
    }

    #mobileSideNav {
        position: fixed;
        top: 120px;
        left: 0;
        width: 100vw;
        z-index: 99;
        background: #fff;
        color: #fff;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    #mobileSideNav.active {
        transform: translateX(0);
    }

#menu-search-show-mobile {
    padding: 10px;
    display: flex;
}
#txtSiteSearchMobile {
    border: 1px solid #D6D6D6;
    border-right: none;
    padding: 11px 16px;
    width: calc(100% - 50px);
}
#btnSiteSearchMobile {
    outline: none;
    border: none;
    background-color: var(--yellow);
    height: 50px;
    width: 46px;
    background-image: url('../assets/search-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
}
#openSearchMobile{
    display: none;
}
#menu-search-show-mobile{
    display: none;
}
    #menu-search-show-mobile.active {
        display: flex;
    }

.mobile-menuitem-wrapper {
    width: 100%;
    padding: 10px;
    border-bottom: solid 2px #EBEBEB;
}
    .mobile-menuitem-wrapper a {
        color: #31404c;
    }

    .mobile-menuitem-wrapper.has-children{
        position: relative;
        padding: 0px;
    }
        .mobile-menuitem-wrapper.has-children:after {
            content: '';
            position: absolute;
            top: 16px;
            right: 12px;
            width: 14px;
            height: 8px;
            background-image: url('../assets/chevron-down.svg');
            background-size: contain;
            background-repeat: no-repeat;
        }
    .mobile-menuitem-wrapper.has-children .menuitem-top{
        display: block;
        width: 100%;
        padding: 10px;
    }

    #mobileSideNav .megamenu {
        position: unset;
        opacity: 1;
        box-shadow: unset;
        border-radius: 0px;
        flex-direction: column;
        background-color: var(--White);
        padding: 0px 16px 18px 16px;
        width: 100%;
    }

.mobile-mm-links li{
    list-style-type: none;
    padding-left: 16px;
    margin-bottom: 6px;
}
.mobile-mm-links li a{
    color: #777;
}

.menuitem-top.has-dropdown {
    padding-right: 18px;
}

.menuitem-top.has-dropdown:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 12px;
    width: 14px;
    height: 8px;
    background-image: url('../assets/chevron-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

/*Mega Menu*/
.megamenu {
    position: absolute;
    left: 0;
    background-color: #fff;
    display: none;
    opacity: 0;
    width: 250px;
    box-shadow: 0px 0px 16px -6px #000000;
}

.menuitem-wrapper:hover .megamenu {
    display: flex;
    opacity: 1;
    flex-direction: column;
}

.mm-item {
    list-style-type: none;
    width: 100%;
}

.megamenu .mm-item a {
    display: flex;
    color: #000;
    font-weight: 400;
    width: 100%;
    padding: 12px 18px;
    border-bottom: 1px solid #ccc;
}
    .megamenu .mm-item a:hover {
        background-color: #ddd;
        opacity: .8;
    }

.mobile-nav{
    flex-direction: column;
}
/* Mega Menu */
/* HEADER */
/* Footer */
#footer {
    background-color: var(--blue);
    padding-top: 40px;
    padding-bottom: 20px;
}
.footer-inner {
    padding-top: 40px;
    padding-bottom: 32px;
    display: flex;
}
#footer p{
    color: var(--white);
}

.copyright {
    color: var(--white);
    background-color: var(--black);

}
.copyright-container p {
    width: fit-content;
    margin-bottom: 0px;
    font-size: 15px;
    font-weight: 400;
}
.copyright-inner{
    display: flex;
    justify-content: space-between;
}
.footer-links {
    margin-bottom: 40px;
}
.footer-link {
    font-size: 16px;
    color: var(--yellow);
}
.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-divider {
    margin-left: 5px;
    margin-right: 5px;
    color: var(--yellow)
}
/*Footer*/
.pt-None {
    margin-top: 0px;
}

.pt-X-small {
    margin-top: 24px;
}

.pt-Small {
    margin-top: 40px;
}

.pt-Medium {
    margin-top: 80px;
}

.pt-Large {
    margin-top: 104px;
}

.pt-X-large {
    margin-top: 120px;
}

.pb-None {
    margin-bottom: 0px;
}

.pb-X-small {
    margin-bottom: 24px;
}

.pb-Small {
    margin-bottom: 40px;
}

.pb-Medium {
    margin-bottom: 80px;
}

.pb-Large {
    margin-bottom: 104px;
}

.pb-X-large {
    margin-bottom: 120px;
}

.bg-white{
    background-color: #fff;
}
.bg-light-grey{
    background-color: var(--lightgrey);
}
.bg-yellow{
    background-color: var(--yellow);
}

/*Bread crumb*/

.breadcrumb-item {
    font-size: 12px;
    text-decoration: underline;
}
.breadcrumb-item a{
    color: #000;
}
    .breadcrumb-item a:hover {
        opacity: .7;
    }

.breadcrumb-item.no-chev {
    text-decoration: none;
}

.breadcrumb{
    margin-bottom: 6px;
    margin-top: 6px;
}

/*Bread crumb*/