/* 
        Dark blue: #020460;
        Light gray: #777777;
    */
    

/*Header*/
.primaryHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*border-bottom: ;*/
    padding: 20px 30px;
    width: 100%;
    background-color: white;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}

.primaryHeader__left > a > img {
    width: 188.45px;
    height: 80px;
    cursor: pointer;
}

.primaryHeader__right {
    display: flex;
    column-gap: 50px;
}

.primaryHeader__right > a {
    font-family: 'Core Sans Regular';
    font-weight: 400;
    font-size: 20px;
    color: #020460;
    margin: 0;
    cursor: pointer;
}

.primaryHeader__right > img {
    width: 25px;
    object-fit: contain;
}

#menu-icon:hover {
    stroke: #00A9CE;
}

/* NAVIGATION OVERLAY */
.nav-overlay {
    position: fixed;
    background: #020460;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    padding: 20px 30px;
    display: none;
    overflow: auto;
}

.nav-overlay-menu {
    padding-bottom: 50px;
}

.nav-overlay-menu a {
    margin-bottom: 10px;
}


.nav-overlay a {
    color: #ffffff;
    font-family: 'Core Sans Regular';
    font-weight: 400;
    font-size: 20px;
    display: block;
}

.nav-overlay p {
    color: #777777;
    font-family: 'Core Sans Regular';
    font-weight: 400;
    font-size: 15px;
}

.close-nav-toggle:hover {
    cursor: pointer;
}

.close-nav-toggle:hover svg path {
    stroke: #00A9CE;
}

/* Secondary Header */
.navbar {
    padding: 0 !important;
}

.navbar-toggler {
    border: none;
}

.secondaryHeader > .container {
    padding: 25px 0 20px 0 !important;
    border-bottom: 1px solid #777777;
}

.secondaryHeader__right > h3 {
    font-family: 'Core Sans Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #777777;
    margin: 0;
}

.secondaryHeader__left {
    display: flex;
    column-gap: 30px;
    row-gap: 30px;
}

.secondaryHeader__left > a {
    font-family: 'Core Sans Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #777777;
}

/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    
.primaryHeader__right > a {
    display: none;
}

.secondaryHeader__left {
    padding: 30px 0;
    row-gap: 30px;
    flex-direction: column;
}

}

.primaryHeader__share {
    display: flex;
    column-gap: 10px;
    justify-content: center;
    align-items: center;
}

.primaryHeader__share > h5 {
    color: white !important;
    margin-bottom: 0;
}

.primaryHeader__share > a > img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}