
.page-header {
    position: relative;
    width: 100%;
    z-index: 99;
    top: 0;
    left: 0;
    background: var(--color-grey);
}

.header-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: var(--color-primary-dark);
}

.header-top__link {
    width: 50%;
    text-align: center;
    border-right: 1px solid #818346;
}

.header-top__link:last-child {
    border: none;
}

.header-top__link a {
    background: none;
    color: #fff;
    font-size: 16px;
    line-height: 1.1875em;
    padding: 11px 0 10px 0;
    display: block;
}

.header-top__link a i {
    font-weight: normal;
    font-size: 12px;
    padding-left: 10px;
}

.header-flex {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 98px;
}

.logo a {
    background: none;
}

.right-header {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 8px;
}

.right-header__top {
    display: flex;
    gap:30px;
}

.js-search-toggle,
.header-call,
.js-menu-toggle {
    width: 48px;
    height: 48px;
    background: #E7D295;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-secondary-dark);
    cursor: pointer;
}

.header-call a {
    background: none;
    font-size: 20px;
    font-weight: normal;
}

.js-menu-toggle {
    font-size: 25px;
}

.js-menu-toggle .icon-lines:before {
    width: 35px;
    display
: block;
    overflow: hidden;
}

.page-header.page-header--inner {
    background: transparent;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .page-header {
        position: absolute;
        background: linear-gradient(to bottom,  rgba(244,236,208,0.85) 0%,rgba(244,236,208,0.75) 50%,rgba(244,236,208,0) 100%);
        transition: all .3s ease;
        top: 48px;
    }

    .page-header.page-header--inner {
        top: 48px;
    }
        
    .header-top__link a {
        font-size: 18px;
        line-height: 1.222em;
        padding: 13px 0 13px 0;
    }


    .header-flex {
        padding: 14px 0;
    }

    .logo {
        width: 160px;
    }

    .right-header {
        gap: 16px;
    }
    
}

@media (min-width: 1200px) {

    .page-header {
        top: 0;
        background: linear-gradient(to bottom,  rgba(244,236,208,0.75) 0%,rgba(244,236,208,0.65) 50%,rgba(244,236,208,0) 100%);
    }

    .page-header.page-header--inner {
        top: 0;
    }

    .hideheader {
        top: -200px;
    }

    .page-header.js-scrolled {
        position: fixed;
        background: #fff;
        top: 0;
    }


    .right-header {
        gap: 16px;
    }

    .js-search-toggle,
    .header-call,
    .js-menu-toggle {
        width: auto;
        height: auto;
        background: none;
        font-size: 21px;
    }

    .header-call a {
        background: none;
        font-size: 18px;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .header-call a i {
        font-weight: normal;
        font-size: 22px;
    }

    .header-bttn {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header-bttn .btn {
        margin: 0;
    }

    .header-call a:hover,
    .js-search-toggle:hover {
        color: var(--color-accent);
    }
    
}

@media (min-width: 1366px) {
    .logo {
        width: 272px;
    }

    .right-header {
        gap: 32px;
    }
}

@media( min-width: 1025px ) {
    .page-header--sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }
}

@media (-webkit-min-device-pixel-ratio: 2) and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) and (max-width: 1024px) {


}




/**
 * Navigation
 */


/* General Styling */

.nav-primary {
    display: none;
}

.nav-primary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-primary li {
    cursor: pointer;
    position: relative;
}

.nav-primary li:before,
.nav-primary li:after {
    display: none; /* hide any custom bullet styling */
}

.nav-primary a {
    display: block;
    text-decoration: none;
}

.nav-primary li.current-page {
    border-bottom: 2px solid var(--color-accent);
}


/* 1st Level */

.nav-primary > .menu > li {
    display: inline-block;
}


/* Sub Menus */

.nav-primary .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    max-width: 250px; /* adjust to match width of submenu prototype */
}

.nav-primary li:hover > .sub-menu {
    display: block;
}

.nav-primary .sub-menu li {
    display: block;
}


/* 3rd Level Sub Menus */

.nav-primary .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

@media (min-width: 1200px) {
    
    .nav-primary {
        display: block;
    }

    .nav-primary ul {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .nav-primary ul li {
        margin: 0;
        padding: 0;
    }

    .nav-primary ul li.menu-item-has-children {
        padding-right: 20px;
    } 

    .nav-primary ul li a {
        font-weight: 500;
        color: var(--color-secondary-dark);
        background: none;
        font-family: "League Spartan", serif;
        font-size: 16px;
    }

    .nav-primary ul li a:hover {
        color: var(--color-primary-dark);
    }


    .sub-menu-toggle {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        font-size: 12px;
    }
}


@media (min-width: 1366px) {


    .nav-primary ul {
        gap: 32px;
    }
    .nav-primary ul li a {
        font-size: 18px;
    }
}


/**
 * Masthead
 */

.masthead {
    position: relative;
}

.masthead--innerpage {
    background: #F0F4F4;
    margin-top: 76px;
}

.masthead--innerpage__bg {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1920px;
    height: 100%;
    max-width: inherit;
    transform: translate(-50%, 0);
    object-fit: cover;
}

.masthead--innerpage__wrap {
    position: relative;
    z-index: 2;
    background:rgb(24 25 0 / 88%);
    padding: 45px 0 33px;
}

.masthead--innerpage__wrap h1 {
    position: relative;
    color: var(--color-grey);
}

.masthead--innerpage__wrap h1::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 30px;
    width: calc(100% - 24px);
    height: 2px;
    background: var(--color-accent);
    opacity: 0;
}

@media (min-width: 768px) {
    .masthead--innerpage__wrap {
        padding: 75px 0 43px;
    }

    .masthead--innerpage {
        margin-top: 92px
    }
}

@media (min-width: 1200px) {
    .masthead--innerpage__wrap {
        padding: 100px 0 60px;
    }

    .masthead--innerpage__wrap h1::before {
        opacity: 1;
    }

    .masthead--innerpage {
        margin-top: 94.656px
    }
}

@media (min-width: 1366px) {
    .masthead--innerpage {
        margin-top: 141.833px
    }
}






/**
 * Breadcrumbs
 */
 .breadcrumbs {
    padding: 6px 0 0;
    font-family: "League Spartan", serif;
}

.breadcrumbs ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.breadcrumbs ul li {
    margin: 0;
    padding: 0 13px;
    color: var(--color-accent);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
}

.breadcrumbs ul li:first-child {
    padding-left: 0;
}

.breadcrumbs ul li a {
    color: var(--color-foreground);
    font-weight: 500;
    border: none;
    background: transparent;
}

.breadcrumbs ul li::before {
    display: none;
}

.breadcrumbs ul li::after {
    content: '\e914';
    font-family: 'ramsey-camp';
    font-size: 10px;
    line-height: 1em;
    font-weight: normal;
    position: absolute;
    right: -4px;
    top: 7px;
    color: var(--color-grey);
}

.breadcrumbs ul li:last-child::after {
    display: none;
}

.breadcrumbs-link {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-primary-dark);
    border: none;
    font-weight: 500;
    padding-left: 18px;
    background: transparent;
    font-family: "League Spartan", serif;
}

.breadcrumbs-link::before {
    content: '\e908';
    font-family: 'ramsey-camp';
    font-size: 10px;
    line-height: 1em;
    position: absolute;
    left: 0;
    top: 50%;
    font-weight: normal;
    transform: translate(0, -50%);
    margin-top: 0;
    color: var(--color-secondary-dark);
}

@media (min-width: 768px) {
    .breadcrumbs {
        padding-top: 8px;
    }
}

@media (min-width: 1200px) {
    .breadcrumbs {
        padding-top: 12px;
    }

    .breadcrumbs ul li a:hover {
        color: var(--color-foreground);
    }
}