<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary: #534e37;
    --belmont-green: #534e37;
    --belmont-cream: #efece2;
    --gold: #cab293;
    --grayish-blue: #697a7e;
    --dark-blue: #393f4e;
    --aubergine: #593f53;
    --burnt-orange: #ad8777;
    --grayish-blue-contrast: #d8dddd;
    --dark-blue-contrast: #c5cecf;
    --aubergine-contrast: #cfced6;
    --burnt-orange-contrast: #e6d3cb;
    --light-themed-text-colour: #544e35;
    --dark-themed-text-colour: #efece2;
    --step--1: clamp(0.83rem,calc(0.81rem + 0.12vw),0.90rem);
    --step-0: clamp(1.00rem,calc(0.96rem + 0.22vw),1.13rem);
    --step-1: clamp(1.20rem,calc(1.13rem + 0.36vw),1.41rem);
    --step-2: clamp(1.44rem,calc(1.33rem + 0.55vw),1.76rem);
    --step-3: clamp(1.73rem,calc(1.56rem + 0.82vw),2.20rem);
    --step-4: clamp(2.07rem,calc(1.84rem + 1.17vw),2.75rem);
    --step-5: clamp(2.49rem,calc(2.16rem + 1.64vw),3.43rem);
    --step-6: clamp(2.99rem,calc(2.53rem + 2.27vw),4.29rem);
    --step-7: clamp(3.58rem,calc(2.96rem + 3.1vw),5.36rem);
    --step-8: clamp(4.30rem,calc(3.46rem + 4.18vw),6.71rem);
    --step-9: clamp(5.16rem,calc(4.04rem + 5.6vw),8.38rem);
    --step-10: clamp(6.19rem,calc(4.7rem + 7.45vw),10.48rem);
    --space-3xs: clamp(0.25rem,calc(0.23rem + 0.11vw),0.31rem);
    --space-2xs: clamp(0.50rem,calc(0.48rem + 0.11vw),0.56rem);
    --space-xs: clamp(0.75rem,calc(0.71rem + 0.22vw),0.88rem);
    --space-s: clamp(1.00rem,calc(0.96rem + 0.22vw),1.13rem);
    --space-m: clamp(2.00rem,calc(1.91rem + 0.43vw),2.25rem);
    --space-l: clamp(3.00rem,calc(2.87rem + 0.65vw),3.38rem);
    --space-xl: clamp(4.00rem,calc(3.83rem + 0.87vw),4.50rem);
    --space-2xl: clamp(5.00rem,calc(4.78rem + 1.09vw),5.63rem);
    --space-3xl: clamp(6.00rem,calc(5.74rem + 1.3vw),6.75rem);
    --mobile-width: 768px;
    --large-width: 1024px;
    --wide-width: 1140px;
    --site-width: 1240px;
    --x-large-width: 1600px;
    --gutter: 2rem;
    --content-width: calc(100% - 10rem);
    --content-mobile-width: calc(100% - 4rem);
    --navigation-height: 122px;
    --button-padding: 14px 20px;
    --swiper-navigation-arrow-color: #fff
}

@media (min-width: 1024px) {
    :root {
        --navigation-height:168px
    }
}

@media (min-width: 1400px) {
    :root {
        --content-width:calc(100% - 6.25rem);
        --button-padding: 15px 21px
    }
}

@media (min-width: 1600px) {
    :root {
        --content-width:var(--site-width)
    }
}

@-webkit-keyframes bouncy {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes bouncy {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.light-themed-text-colour {
    color: #544e35;
    color: var(--light-themed-text-colour)
}

.dark-themed-text-colour {
    color: #efece2;
    color: var(--dark-themed-text-colour)
}

.text-belmont-green {
    color: #534e37;
    color: var(--belmont-green)
}

.text-belmont-cream {
    color: #efece2;
    color: var(--belmont-cream)
}

.text-gold {
    color: #cab293;
    color: var(--gold)
}

.text-greyish-blue {
    color: var(--greyish-blue)
}

.text-dark-blue {
    color: #393f4e;
    color: var(--dark-blue)
}

.text-aubergine {
    color: #593f53;
    color: var(--aubergine)
}

.text-burnt-orange {
    color: #ad8777;
    color: var(--burnt-orange)
}

.text-greyish-blue-contrast {
    color: var(--greyish-blue-contrast)
}

.text-dark-blue-contrast {
    color: #c5cecf;
    color: var(--dark-blue-contrast)
}

.text-aubergine-contrast {
    color: #cfced6;
    color: var(--aubergine-contrast)
}

.text-burnt-orange-contrast {
    color: #e6d3cb;
    color: var(--burnt-orange-contrast)
}

.bg-belmont-green {
    background-color: #534e37;
    background-color: var(--belmont-green)
}

.bg-belmont-cream {
    background-color: #efece2;
    background-color: var(--belmont-cream)
}

.bg-gold {
    background-color: #cab293;
    background-color: var(--gold)
}

.bg-greyish-blue {
    background-color: var(--greyish-blue)
}

.bg-dark-blue {
    background-color: #393f4e;
    background-color: var(--dark-blue)
}

.bg-aubergine {
    background-color: #593f53;
    background-color: var(--aubergine)
}

.bg-burnt-orange {
    background-color: #ad8777;
    background-color: var(--burnt-orange)
}

.bg-greyish-blue-contrast {
    background-color: var(--greyish-blue-contrast)
}

.bg-dark-blue-contrast {
    background-color: #c5cecf;
    background-color: var(--dark-blue-contrast)
}

.bg-aubergine-contrast {
    background-color: #cfced6;
    background-color: var(--aubergine-contrast)
}

.bg-burnt-orange-contrast {
    background-color: #e6d3cb;
    background-color: var(--burnt-orange-contrast)
}

.pb-0 {
    padding-bottom: 0!important
}

.hidden {
    display: none!important
}

@media (max-width: 1023px) {
    .laptop-up {
        display:none!important
    }
}

@media (min-width: 1024px) {
    .laptop-down {
        display:none!important
    }
}


*,body,html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

:focus {
    outline: none
}

html {
    font-size: var(--base);
    scroll-behavior: smooth
}

body {
    --swiper-pagination-bullet-size: 10px;
    background-color: #efece2;
    background-color: var(--belmont-cream);
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    width: 100%
}

body.no-scroll {
    overflow: hidden
}

main {
    min-height: 100vh
}


.content-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 10rem);
    max-width: var(--content-width);
    width: 100%
}

@media screen and (max-width: 760px) {
    .content-wrapper {
        max-width:calc(100% - 4rem);
        max-width: var(--content-mobile-width)
    }
}

#wpadminbar {
    position: fixed!important
}

@media screen and (max-width: 600px) {
    #wpadminbar {
        position:fixed!important
    }
}

@font-face {
    font-display: swap;
    font-family: GT-Walsheim-Pro-Ultra-Light;
    font-style: normal;
    font-weight: 100;
    src: url(fonts/GT-Walsheim-Pro-Ultra-Light.otf) format(fonts/GT-Walsheim-Pro-Ultra-Light.ttf) format(fonts/GT-Walsheim-Pro-Ultra-Light.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: GT-Walsheim-Pro-Thin;
    font-style: normal;
    font-weight: 200;
    src: url(fonts/GT-Walsheim-Pro-Thin.otf) format(fonts/GT-Walsheim-Pro-Thin.ttf) format(fonts/GT-Walsheim-Pro-Thin.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: GT-Walsheim-Pro-Light;
    font-style: normal;
    font-weight: 300;
    src: url(fonts/GT-Walsheim-Pro-Light.otf) format(fonts/GT-Walsheim-Pro-Light.ttf) format(fonts/GT-Walsheim-Pro-Light.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: GT-Walsheim-Pro-Regular;
    font-style: normal;
    font-weight: 400;
    src: url(fonts/GT-Walsheim-Pro-Regular.otf) format(fonts/GT-Walsheim-Pro-Regular.ttf) format(fonts/GT-Walsheim-Pro-Regular.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: GT-Walsheim-Pro-Medium;
    font-style: normal;
    font-weight: 500;
    src: url(fonts/GT-Walsheim-Pro-Medium.otf) format(fonts/GT-Walsheim-Pro-Medium.ttf) format(fonts/GT-Walsheim-Pro-Medium.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: GT-Walsheim-Pro-Bold;
    font-style: normal;
    font-weight: 700;
    src: url(fonts/GT-Walsheim-Pro-Bold.otf) format(fonts/GT-Walsheim-Pro-Bold.ttf) format(fonts/GT-Walsheim-Pro-Bold.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: "MessinaSerif-Regular";
    font-style: normal;
    font-weight: 400;
    src: url(fonts/MessinaSerif-Regular.otf) format(fonts/MessinaSerif-Regular.ttf) format(fonts/MessinaSerif-Regular.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: Wallop-Medium;
    font-style: normal;
    font-weight: 400;
    src: uurl(fonts/Wallop-Medium.otf) format(fonts/Wallop-Medium.ttf) format(fonts/Wallop-Medium.woff) format("woff")
}

ul {
    list-style: none;
    margin: 0
}

ol,ul {
    padding: 0
}

ol {
    font-size: 18px;
    list-style: outside;
    margin: 15px 0 0 15px
}

ol li {
    line-height: 1.5;
    padding-bottom: 15px
}

footer a {
    text-decoration: none!important
}

/*button {
    background: 0;
    border: 0;
    margin: 0;
    outline: none;
    padding: 0
}
*/
* {
    scrollbar-color: #534e37 transparent;
    scrollbar-color: var(--belmont-green) transparent;
    scrollbar-width: thin
}

::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-track {
    background: transparent;
    border: 1px solid rgba(84,78,53,.22)
}

::-webkit-scrollbar-thumb {
    background-color: rgba(84,78,53,.64);
    border-radius: 0
}

svg {
    width: 100%
}

.swiper-buttons-group {
    gap: 30px
}

.brand-swiper-button,.swiper-buttons-group {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.brand-swiper-button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border: 1px solid #fff;
    border: 1px solid var(--swiper-navigation-arrow-color);
    border-radius: 50px;
    cursor: pointer;
    height: 60px;
    justify-content: center;
    padding: 12px;
    width: 60px;
    z-index: 2
}

.brand-swiper-button svg {
    color: #fff;
    color: var(--swiper-navigation-arrow-color)
}

.brand-swiper-button svg path {
    stroke: currentColor
}

.brand-swiper-button.brand-swiper-button-prev svg {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.swiper-button-disabled {
    cursor: not-allowed;
    opacity: .35
}

//////

a.button--aubergine:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button--belmont-cream:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button--belmont-green:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button--burnt-orange:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button--dark-blue:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button--gold:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button--grayish-blue:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button--primary:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),button.button--aubergine:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button--belmont-cream:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button--belmont-green:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button--burnt-orange:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button--dark-blue:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button--gold:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button--grayish-blue:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button--primary:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button[type=submit],input[type=submit] {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #534e37;
    background-color: var(--belmont-green);
    border: 1px solid transparent;
    border-radius: 50px;
    color: #efece2;
    color: var(--dark-themed-text-colour);
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: Wallop-Medium;
    font-size: 11px;
    gap: 15px;
    justify-content: center;
    letter-spacing: .14em;
    line-height: 1;
    min-width: 130px;
    padding: 14px 20px;
    padding: var(--button-padding);
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: auto
}

@media (min-width: 1600px) {
    a.button--aubergine:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button--belmont-cream:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button--belmont-green:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button--burnt-orange:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button--dark-blue:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button--gold:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button--grayish-blue:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button--primary:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),a.button:not(.acf-input a.button):not(.acf-input a.button--burnt-orange):not(.acf-input a.button--aubergine):not(.acf-input a.button--dark-blue):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--gold):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green),button.button--aubergine:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button--belmont-cream:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button--belmont-green:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button--burnt-orange:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button--dark-blue:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button--gold:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button--grayish-blue:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button--primary:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button.button:not(.wp-media-buttons .button):not(.wp-media-buttons .button--burnt-orange):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green),button[type=submit],input[type=submit] {
        font-size:13px
    }
}

.site-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-gradient(linear,left bottom,left top,from(rgba(84,78,53,0)),to(rgba(84,78,53,.5)));
    background: linear-gradient(0deg,rgba(84,78,53,0),rgba(84,78,53,.5));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 122px;
    height: var(--navigation-height);
    justify-content: center;
    left: 0;
    margin: 0;
    padding: 22px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50
}

.site-header&gt;.content-wrapper {
    height: 100%
}

.site-header .header-navigation {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
    justify-content: space-between
}


footer {
    padding: 46px 0;
    position: relative;
    list-style:none !important;
}

footer .menu-item{
    list-style:none !important;
}
.social li {
    list-style:none !important;
}

footer .backdrop {
    background: #534e37;
    background: var(--belmont-green);
    z-index: -1
}

footer .backdrop,footer .backdrop img {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

footer .backdrop img {
    -o-object-fit: cover;
    object-fit: cover;
    opacity: .1;
    z-index: 1
}

footer .backdrop:after {
    background: -webkit-gradient(linear,left top,left bottom,from(#544e35),to(rgba(84,78,53,0)));
    background: linear-gradient(180deg,#544e35,rgba(84,78,53,0));
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2
}

footer .brand-logo {
    margin-bottom: 20px;
    max-width: 225px
}

footer nav ul li a {
    color: #efece2;
    color: var(--belmont-cream);
/*    font-family: GT-Walsheim-Pro-Light*/
}

footer .newsletter-sign-up-container {
    margin-bottom: 20px
}

footer .newsletter-sign-up-container p {
    color: #efece2;
    color: var(--belmont-cream);
    font-size: 19px;
    line-height: 21px;
    margin-bottom: 20px
}

footer .newsletter-sign-up-container button {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    color: #d1b392!important;
    font-family: Wallop-Medium;
    font-size: 14px;
    justify-content: space-between;
    letter-spacing: 0;
    line-height: 16px;
    padding: 13px 17px;
    text-transform: none;
    width: 100%
}

footer .newsletter-sign-up-container button span {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

footer .newsletter-sign-up-container button svg {
    width: 51px
}

footer .content-wrapper--bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: 40px
}

footer .content-wrapper--bottom,footer .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

footer .social {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #fff;
    gap: 17px;
    margin-bottom: 10px;
    padding-bottom: 23px
}

footer .social svg {
    height: 28px;
    width: 28px
}

@media (min-width: 1024px) {
    footer .brand-logo {
        margin-bottom:30px;
        max-width: 225px
    }

    footer .content-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: space-between
    }

    footer .content-wrapper--bottom {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-top: 1px solid #fff;
        margin-top: 40px;
        padding-top: 20px
    }

    footer .social {
        border-bottom: 0;
        margin: 0;
        padding: 0
    }

    footer #footer-navigation {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 50px
    }

    footer #footer-secondary-navigation {
        margin: 0
    }

    footer #footer-secondary-navigation .footer-secondary-navigation-menu {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px
    }
}

@media (min-width: 1400px) {
    footer .newsletter-sign-up-container {
        margin-bottom:0
    }

    footer .newsletter-sign-up-container p {
        font-size: 25px;
        line-height: 25px
    }

    footer .newsletter-sign-up-container button {
        font-size: 28px;
        line-height: 32px;
        max-width: 518px;
        padding: 20px 33px
    }

    footer .newsletter-sign-up-container button svg {
        width: 77px
    }

    footer #footer-navigation ul li a {
        font-size: 21px;
        line-height: 30px
    }

    footer #footer-secondary-navigation ul li a {
        font-size: 16px;
        line-height: 24px
    }
}



.objectfit {
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%
}

.curvy-arrow {
    color: #534e37;
    color: var(--belmont-green);
    display: block;
    width: 24px
}

.curvy-arrow svg path {
    stroke: currentColor
}

@media (min-width: 1600px) {
    .curvy-arrow {
        width:53px
    }
}

.button-link,.wp-block-button__link,.wp-block-buttons&gt;.wp-block-button .wp-block-button__link {
    background: #534e37;
    background: var(--belmont-green);
    border: none;
    border-radius: 0;
    border-radius: 9999px;
    color: #efece2;
    color: var(--belmont-cream);
    display: inline-block;
    font-size: clamp(.83rem,calc(.81rem + .12vw),.9rem);
    font-size: var(--step--1);
    outline: none;
    padding: .75rem 1.25rem;
    text-align: center;
    text-decoration: none;
    -webkit-transition: -webkit-filter .2s ease-in-out;
    transition: -webkit-filter .2s ease-in-out;
    transition: filter .2s ease-in-out;
    transition: filter .2s ease-in-out,-webkit-filter .2s ease-in-out
}

.button-link:hover,.wp-block-button__link:hover,.wp-block-buttons&gt;.wp-block-button .wp-block-button__link:hover {
    cursor: pointer;
    -webkit-filter: brightness(85%);
    filter: brightness(85%)
}

.is-vertically-aligned-bottom {
    -ms-flex-item-align: start;
    align-self: flex-start
}

.is-vertically-aligned-center {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center
}

.is-vertically-aligned-bottom {
    -ms-flex-item-align: end;
    align-self: flex-end
}

.has-text-align-left {
    text-align: left
}

.has-text-align-center {
    text-align: center
}

.has-text-align-right {
    text-align: right
}

.is-style-no-margin {
    margin-bottom: 0!important
}

.is-style-no-margin,.is-style-no-top-margin {
    margin-top: 0!important
}

.is-style-no-bottom-margin {
    margin-bottom: 0!important
}

.is-style-no-padding {
    padding-bottom: 0!important
}

.is-style-no-padding,.is-style-no-top-padding {
    padding-top: 0!important
}

.is-style-no-bottom-padding {
    padding-bottom: 0!important
}

ul.wp-block-list {
    list-style: none;
    margin-bottom: clamp(1rem,calc(.96rem + .22vw),1.13rem);
    margin-bottom: var(--space-s);
    margin-top: clamp(1rem,calc(.96rem + .22vw),1.13rem);
    margin-top: var(--space-s);
    padding: 0
}

ul.wp-block-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 .5rem;
    padding: 0 0 0 1.65rem
}

ul.wp-block-list li:before {
    color: var(--wp--preset--color--belmont-cream);
    content: "â€¢";
    display: inline-block;
    margin: 0 0 0 -1.65rem;
    width: 1.65rem
}

ol.wp-block-list {
    counter-reset: li;
    list-style: none;
    margin-bottom: clamp(1rem,calc(.96rem + .22vw),1.13rem);
    margin-bottom: var(--space-s);
    margin-top: clamp(1rem,calc(.96rem + .22vw),1.13rem);
    margin-top: var(--space-s);
    padding: 0
}

ol.wp-block-list li {
    counter-increment: li;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 .5rem;
    padding: 0 0 0 1.65rem
}

ol.wp-block-list li:before {
    color: var(--wp--preset--color--belmont-green);
    content: counter(li) ".";
    display: inline-block;
    margin: 0 0 0 -1.65rem;
    width: 1.65rem
}

.wp-block-quote {
    background: var(--wp--preset--color--belmont-green);
    color: var(--wp--preset--color--belmont-cream);
    font-family: "MessinaSerif-Regular";
    font-size: 25px;
    line-height: 30px;
    margin: 55px auto;
    padding: 55px 0;
    position: relative
}

.wp-block-quote p {
    margin-left: auto;
    margin-right: auto;
    max-width: 1130px
}

.wp-block-quote cite {
    display: block;
    font-family: GT-Walsheim-Pro-Medium;
    font-size: 16px;
    letter-spacing: .04em;
    line-height: 18px;
    margin: 26px 0 0
}

.wp-block-quote:before {
    background: inherit;
    content: "";
    height: 100%;
    left: -50vw;
    position: absolute;
    top: 0;
    width: 200vw;
    z-index: -1
}

@media (min-width: 1600px) {
    .wp-block-quote {
        font-size:50px;
        line-height: 65px;
        margin: 145px auto;
        padding: 235px 0
    }

    .wp-block-quote cite {
        font-size: 33px;
        line-height: 40px;
        margin-top: 75px
    }
}

.wp-block-group {
    margin-bottom: clamp(3rem,calc(2.87rem + .65vw),3.38rem);
    margin-bottom: var(--space-l);
    margin-top: clamp(3rem,calc(2.87rem + .65vw),3.38rem);
    margin-top: var(--space-l)
}

.wp-block-group&gt;:first-child {
    margin-top: 0!important
}

.wp-block-group&gt;:last-child {
    margin-bottom: 0!important
}

.wp-block-columns {
    -webkit-box-align: initial!important;
    -ms-flex-align: initial!important;
    -webkit-box-pack: justify!important;
    -ms-flex-pack: justify!important;
    align-items: normal!important;
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
    gap: 0!important;
    justify-content: space-between!important
}

.wp-block-columns.block-editor-block-list__block {
    gap: 2rem!important;
    gap: var(--gutter)!important
}

.wp-block-group .wp-block-columns {
    margin-left: auto;
    margin-right: auto
}

@media (min-width: 768px) {
    .wp-block-columns {
        -ms-flex-wrap:nowrap!important;
        flex-wrap: nowrap!important;
        gap: var(--block-gap)
    }
}

.wp-block-columns.are-vertically-aligned-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.wp-block-columns.are-vertically-aligned-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.wp-block-columns.are-vertically-aligned-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.wp-block-columns.is-not-stacked-on-mobile {
    -ms-flex-wrap: nowrap!important;
    flex-wrap: nowrap!important
}

.wp-block-columns.is-not-stacked-on-mobile&gt;.wp-block-column {
    -ms-flex-preferred-size: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-basis: 0;
    flex-grow: 1
}

.wp-block-columns.is-not-stacked-on-mobile&gt;.wp-block-column[style*=flex-basis] {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0
}

.wp-block-columns .wp-block-column {
    -ms-flex-preferred-size: 100%!important;
    flex-basis: 100%!important;
    margin-bottom: 2rem;
    margin-bottom: var(--gutter)
}

.wp-block-columns .wp-block-column&gt;:first-child {
    margin-top: 0
}

@media (min-width: 768px) {
    .wp-block-columns .wp-block-column {
        margin-bottom:0
    }

    .wp-block-columns.has-2-columns .wp-block-column {
        -ms-flex-preferred-size: calc(50% - 1rem)!important;
        -ms-flex-preferred-size: calc(50% - var(--gutter)/2)!important;
        flex-basis: calc(50% - 1rem)!important;
        flex-basis: calc(50% - var(--gutter)/2)!important
    }

    .wp-block-columns.has-3-columns .wp-block-column {
        -ms-flex-preferred-size: calc(33% - 1rem)!important;
        -ms-flex-preferred-size: calc(33% - var(--gutter)/2)!important;
        flex-basis: calc(33% - 1rem)!important;
        flex-basis: calc(33% - var(--gutter)/2)!important
    }

    .wp-block-columns.has-4-columns .wp-block-column {
        -ms-flex-preferred-size: calc(25% - 1rem)!important;
        -ms-flex-preferred-size: calc(25% - var(--gutter)/2)!important;
        flex-basis: calc(25% - 1rem)!important;
        flex-basis: calc(25% - var(--gutter)/2)!important
    }
}

.wp-block-buttons.is-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.wp-block-buttons.is-vertical&gt;.wp-block-button:last-child {
    margin-bottom: 0
}

.wp-block-buttons&gt;.wp-block-button {
    display: inline-block;
    margin: 0
}

.wp-block-buttons.is-content-justification-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.wp-block-buttons.is-content-justification-left.is-vertical {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.wp-block-buttons.is-content-justification-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.wp-block-buttons.is-content-justification-center.is-vertical {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.wp-block-buttons.is-content-justification-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.wp-block-buttons.is-content-justification-right.is-vertical {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.wp-block-buttons.is-content-justification-space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.wp-block-buttons.aligncenter {
    text-align: center
}

.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter {
    margin-left: auto;
    margin-right: auto;
    width: 100%
}

.wp-block-button.aligncenter {
    text-align: center
}

.wp-block-image {
    margin-bottom: clamp(3rem,calc(2.87rem + .65vw),3.38rem);
    margin-bottom: var(--space-l);
    margin-top: clamp(3rem,calc(2.87rem + .65vw),3.38rem);
    margin-top: var(--space-l)
}

.wp-block-image img {
    height: auto;
    vertical-align: bottom;
    width: 100%
}

.wp-block-image.aligncenter {
    text-align: center
}

.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright {
    display: table
}

.wp-block-image .aligncenter&gt;figcaption,.wp-block-image .alignleft&gt;figcaption,.wp-block-image .alignright&gt;figcaption {
    caption-side: bottom;
    display: table-caption
}

.wp-block-image .alignleft {
    float: left;
    margin: .5em 1em .5em 0
}

.wp-block-image .alignright {
    float: right;
    margin: .5em 0 .5em 1em
}

.wp-block-image .aligncenter {
    margin-left: auto;
    margin-right: auto
}

figcaption {
    display: block;
    font-size: .85rem;
    margin: 0;
    padding-top: calc(var(--padding)/4);
    position: relative
}

figcaption a {
    color: inherit;
    text-decoration: underline
}

.wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]&gt;[data-type="core/embed"],.wp-block[data-align=right]&gt;[data-type="core/embed"] {
    max-width: 360px;
    width: 100%
}

.wp-block-embed {
    margin-bottom: clamp(3rem,calc(2.87rem + .65vw),3.38rem);
    margin-bottom: var(--space-l);
    margin-top: clamp(3rem,calc(2.87rem + .65vw),3.38rem);
    margin-top: var(--space-l);
    overflow-wrap: break-word
}

.wp-block-embed .wp-block-embed__wrapper {
    position: relative
}

.wp-block-embed .wp-block-embed__wrapper iframe {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper:before {
    content: "";
    display: block;
    padding-top: 50%
}

.wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before {
    padding-top: 42.85%
}

.wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before {
    padding-top: 50%
}

.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
    padding-top: 56.25%
}

.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before {
    padding-top: 75%
}

.wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before {
    padding-top: 100%
}

.wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper:before {
    padding-top: 177.77%
}

.wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper:before {
    padding-top: 200%
}

.button-group {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center
}

@media (min-width: 1600px) {
    .button-group {
        gap:80px
    }
}

a.button--aubergine:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button--belmont-cream:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button--belmont-green:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button--burnt-orange:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button--dark-blue:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button--gold:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button--grayish-blue:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button--primary:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),button.button--aubergine:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button--belmont-cream:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button--belmont-green:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button--burnt-orange:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button--dark-blue:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button--gold:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button--grayish-blue:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button--primary:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button[type=submit],input[type=submit] {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #534e37;
    background-color: var(--belmont-green);
    border: 1px solid transparent;
    border-radius: 50px;
    color: #efece2;
    color: var(--dark-themed-text-colour);
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: Wallop-Medium;
    /*font-size: 11px; */
    gap: 15px;
    justify-content: center;
    letter-spacing: .14em;
    line-height: 1;
    min-width: 130px;
    padding: 14px 20px;
    padding: var(--button-padding);
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: auto
}

@media (min-width: 1600px) {
    a.button--aubergine:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button--belmont-cream:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button--belmont-green:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button--burnt-orange:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button--dark-blue:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button--gold:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button--grayish-blue:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button--primary:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),a.button:not(.acf-input a.button):not(.acf-input a.button--primary):not(.acf-input a.button--belmont-green):not(.acf-input a.button--belmont-cream):not(.acf-input a.button--gold):not(.acf-input a.button--grayish-blue):not(.acf-input a.button--dark-blue):not(.acf-input a.button--aubergine):not(.acf-input a.button--burnt-orange),button.button--aubergine:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button--belmont-cream:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button--belmont-green:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button--burnt-orange:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button--dark-blue:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button--gold:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button--grayish-blue:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button--primary:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button.button:not(.wp-media-buttons .button):not(.wp-media-buttons .button--primary):not(.wp-media-buttons .button--belmont-green):not(.wp-media-buttons .button--belmont-cream):not(.wp-media-buttons .button--gold):not(.wp-media-buttons .button--grayish-blue):not(.wp-media-buttons .button--dark-blue):not(.wp-media-buttons .button--aubergine):not(.wp-media-buttons .button--burnt-orange),button[type=submit],input[type=submit] {
        font-size:13px
    }
}

.button--belmont-green.button__outline,.button--primary.button__outline {
    border-color: #534e37!important;
    border-color: var(--belmont-green)!important;
    color: #534e37!important;
    color: var(--belmont-green)!important
}

.button--belmont-green.button__outline:hover,.button--primary.button__outline:hover {
    background: #534e37!important;
    background: var(--belmont-green)!important;
    color: #efece2!important;
    color: var(--dark-themed-text-colour)!important;
    opacity: 1
}

.button--belmont-cream {
    background-color: #efece2!important;
    background-color: var(--belmont-cream)!important;
    color: #544e35!important;
    color: var(--light-themed-text-colour)!important
}

.button--belmont-cream.button__outline {
    border-color: #efece2!important;
    border-color: var(--belmont-cream)!important;
    color: #efece2!important;
    color: var(--belmont-cream)!important
}

.button--belmont-cream.button__outline:hover {
    background: #efece2!important;
    background: var(--belmont-cream)!important;
    color: #544e35!important;
    color: var(--light-themed-text-colour)!important;
    opacity: 1
}

.button--gold {
    background-color: #cab293!important;
    background-color: var(--gold)!important;
    color: #efece2!important;
    color: var(--dark-themed-text-colour)!important
}

.button--gold.button__outline {
    border-color: #cab293!important;
    border-color: var(--gold)!important;
    color: #cab293!important;
    color: var(--gold)!important
}

.button--grayish-blue {
    background-color: #697a7e!important;
    background-color: var(--grayish-blue)!important;
    color: #efece2!important;
    color: var(--dark-themed-text-colour)!important
}

.button--grayish-blue.button__outline {
    border-color: #697a7e!important;
    border-color: var(--grayish-blue)!important;
    color: #697a7e!important;
    color: var(--grayish-blue)!important
}

.button--dark-blue {
    background: #393f4e!important;
    background: var(--dark-blue)!important;
    color: #efece2!important;
    color: var(--dark-themed-text-colour)!important
}

.button--dark-blue.button__outline {
    border-color: #393f4e!important;
    border-color: var(--dark-blue)!important;
    color: #393f4e!important;
    color: var(--dark-blue)!important
}

.button--aubergine {
    background-color: #593f53!important;
    background-color: var(--aubergine)!important;
    color: #efece2!important;
    color: var(--dark-themed-text-colour)!important
}

.button--aubergine.button__outline {
    border-color: #593f53!important;
    border-color: var(--aubergine)!important;
    color: #593f53!important;
    color: var(--aubergine)!important
}

.button--burnt-orange {
    background-color: #ad8777!important;
    background-color: var(--burnt-orange)!important;
    color: #efece2!important;
    color: var(--dark-themed-text-colour)!important
}

.button--burnt-orange.button__outline {
    border-color: #ad8777!important;
    border-color: var(--burnt-orange)!important;
    color: #ad8777!important;
    color: var(--burnt-orange)!important
}

.button__outline {
    background: none!important
}

.button--aubergine:hover,.button--belmont-cream:hover,.button--belmont-green:hover,.button--burnt-orange:hover,.button--dark-blue:hover,.button--gold:hover,.button--grayish-blue:hover,.button--primary:hover {
    opacity: .8
}

body.overlay-active {
    overflow-y: hidden!important
}

.overlay {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(18,23,32,.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    width: 100vw;
    z-index: -1
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
    z-index: 1000
}

.overlay--video__container {
    height: 52.438vw;
    width: 93vw
}

@media (min-width: 768px) {
    .overlay--video__container {
        height:44.4375vw;
        width: 79vw
    }
}

@media (min-width: 1024px) {
    .overlay--video__container {
        position:relative
    }
}

.overlay--video__close {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background-color: #534e37;
    background-color: var(--belmont-green);
    border-radius: 50%;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 64px;
    justify-content: center;
    padding: 12px;
    position: absolute;
    right: 22px;
    top: 22px;
    width: 64px;
    z-index: 100000
}

.overlay--video__close span {
    background: #fff;
    display: block;
    height: 1px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    width: 100%
}

.overlay--video__close span:first-child {
    top: 24px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center;
    transform-origin: center
}

.overlay--video__close span:nth-child(2) {
    bottom: 24px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center;
    transform-origin: center
}

@media (min-width: 1024px) {
    .overlay--video__close {
        right:0;
        top: 0;
        -webkit-transform: translate(50%,-50%);
        transform: translate(50%,-50%)
    }
}

.overlay--video__wrapper {
    border-radius: 20px;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
    width: 100%
}

.overlay--video__wrapper embed,.overlay--video__wrapper iframe,.overlay--video__wrapper object {
    height: 100%;
    left: 50%!important;
    position: absolute;
    top: 50%!important;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%
}

.acf-block {
    position: relative
}

.acf-block .bark-texture {
    max-width: 500px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 6
}

.acf-block .bark-texture+* {
    position: relative;
    z-index: 6
}

.acf-block .acf-content {
    padding: 60px 0;
    position: relative;
    z-index: 4
}

.acf-block .background {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1
}

.acf-block .wysiwyg {
    position: relative;
    z-index: 2
}

.acf-block .wysiwyg h2,.acf-block .wysiwyg h3,.acf-block .wysiwyg h4,.acf-block .wysiwyg h5,.acf-block .wysiwyg h6,.acf-block .wysiwyg li,.acf-block .wysiwyg p {
    color: #544e35;
    color: var(--light-themed-text-colour)
}

.acf-block .wysiwyg h2,.acf-block .wysiwyg h3 {
    margin-bottom: 25px
}

.acf-block .wysiwyg h5,.acf-block .wysiwyg h6 {
    margin-bottom: 4px
}

.acf-block .wysiwyg .cta-container {
    margin-top: 25px
}

.acf-block .wysiwyg h5 {
    font-size: 13px
}

.acf-block .wysiwyg .curvy-arrow {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: bouncy;
    animation-name: bouncy;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

.acf-block .with-scrollbar {
    max-height: 260px;
    overflow-y: auto
}

.acf-block .cta-outside-scroll {
    margin: 30px 35px 35px
}

@media screen and (max-width: 760px) {
    .acf-block .with-scrollbar {
        max-height:none
    }

    .acf-block .cta-outside-scroll {
        margin-top: -25px
    }

    .acf-block .transparent-gradient-bg {
        display: none
    }
}

.acf-block:not(.image-left) .with-scrollbar {
    direction: rtl
}

.acf-block:not(.image-left) .with-scrollbar&gt;* {
    direction: ltr
}

.acf-block.theme-dark .wysiwyg h2,.acf-block.theme-dark .wysiwyg h3,.acf-block.theme-dark .wysiwyg h4,.acf-block.theme-dark .wysiwyg li,.acf-block.theme-dark .wysiwyg p {
    color: #efece2;
    color: var(--dark-themed-text-colour)
}

.acf-block.theme-dark .wysiwyg h5,.acf-block.theme-dark .wysiwyg h6 {
    color: #cab293;
    color: var(--gold)
}

.acf-block.theme-dark * {
    scrollbar-color: #efece2 transparent;
    scrollbar-color: var(--belmont-cream) transparent
}

.acf-block.theme-dark ::-webkit-scrollbar-track {
    border: 1px solid hsla(47,30%,91%,.22)
}

.acf-block.theme-dark ::-webkit-scrollbar-thumb {
    background-color: hsla(47,30%,91%,.64)
}

.acf-block .acf-block-image-placeholder {
    background: #777;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

.acf-block .acf-block-placeholder {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    max-width: 1240px;
    max-width: var(--site-width);
    padding-left: var(--gutter-half);
    padding-right: var(--gutter-half);
    position: relative;
    width: 100%
}

.acf-block .acf-block-placeholder .placeholder-content {
    margin-left: 1rem;
    margin-left: calc(var(--gutter)/2);
    margin-right: 1rem;
    margin-right: calc(var(--gutter)/2);
    width: calc(100% - 2rem);
    width: calc(100% - var(--gutter))
}

.acf-block .acf-block-placeholder .placeholder-content&gt;* {
    text-align: center
}

@media (min-width: 1600px) {
    .acf-block .acf-content {
        padding:110px 0
    }

    .acf-block .wysiwyg h2 {
        margin-bottom: 70px
    }

    .acf-block .wysiwyg h3 {
        margin-bottom: 30px
    }
}

.acf-block-post-list {
    --gap: 20px
}

.acf-block-post-list .post-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: var(--gap)
}

.acf-block-post-list .post-list--item {
    height: 100%;
    position: relative;
    width: 100%
}

.acf-block-post-list .post-list--item .image-wrapper {
    overflow: hidden;
    z-index: 1
}

.acf-block-post-list .post-list--item .categories {
    margin: 0 0 18px
}

.acf-block-post-list .post-list--item .categories .category-link {
    color: #827d6a;
    font-size: 18px;
    line-height: 20px
}

.acf-block-post-list .post-list--item .post-date {
    color: #827d6a;
    font-size: 18px;
    line-height: 20px;
    margin-top: 18px
}

.acf-block-post-list .post-list--item .permalink {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 5
}

.acf-block-post-list .button-group--load-more {
    margin-top: 50px
}

@media (min-width: 1024px) {
    .acf-block-post-list {
        --gap:40px
    }

    .acf-block-post-list .post-list--item {
        height: auto;
        width: calc(33.33333% - var(--gap)/1.5)
    }
}

@media (min-width: 1600px) {
    .acf-block-post-list {
        --gap:70px
    }
}

.wp-block-image.alignfull {
    margin-left: 0;
    margin-right: 0
}

body {
    counter-reset: index
}

.acf-block-hero .acf-content {
    padding: 0;
    position: relative
}

.acf-block-hero .media-wrapper,.acf-block-hero .slide-media-item {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.acf-block-hero .media-wrapper {
    z-index: 1
}

.acf-block-hero .media-wrapper .slide-media-item {
    opacity: 0;
    -webkit-transition: opacity .8s;
    transition: opacity .8s
}

.acf-block-hero .media-wrapper .slide-media-item.show {
    opacity: 1
}

.acf-block-hero .content-wrapper {
    height: 100%;
    position: relative;
    z-index: 2
}

.acf-block-hero .inner-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    max-height: 900px;
    min-height: 100vh;
    padding: 22px 0
}

.acf-block-hero .inner-content .hero-title-container {
    margin: auto 0
}

.acf-block-hero .inner-content .hero-title-container .hero-title {
    text-shadow: 0 0 70px #2e2e2e
}

.acf-block-hero .inner-content .hero-title-container .hero-title em {
    color: #cab293!important;
    color: var(--gold)!important
}

.acf-block-hero .inner-content .hero-title-container .button--cta {
    margin-top: 32px
}

.acf-block-hero .bottom-content {
    bottom: 22px;
    left: 0;
    position: absolute;
    width: 100%
}

.acf-block-hero .bottom-content p {
    color: #efece2;
    color: var(--belmont-cream);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 500px;
    text-shadow: 0 0 100px #000
}

.acf-block-hero .bottom-content p+a,.acf-block-hero .bottom-content p+p&gt;a {
    margin-top: 1.25rem
}

.acf-block-hero .slide-link-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    align-items: center;
    color: #efece2;
    color: var(--belmont-cream);
    counter-increment: index;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: GT-Walsheim-Pro-Light;
    font-size: 25px;
    gap: 20px;
    line-height: 1.4;
    order: 1;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

.acf-block-hero .slide-link-item * {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.acf-block-hero .slide-link-item:before {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    background-color: #cab293;
    background-color: var(--gold);
    content: "";
    display: block;
    height: 1px;
    max-width: 127px;
    order: 2;
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transition: flex-grow .3s ease .1s,-webkit-box-flex .3s ease .1s;
    transition: flex-grow .3s ease .1s,-webkit-box-flex .3s ease .1s;
    transition: flex-grow .3s ease .1s;
    transition: flex-grow .3s ease .1s,-webkit-box-flex .3s ease .1s,-ms-flex-positive .3s ease .1s;
    width: 0
}

.acf-block-hero .slide-link-item:after {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    color: #cab293;
    color: var(--gold);
    content: counter(index);
    display: block;
    font-size: 18px;
    line-height: 1;
    opacity: 0;
    order: 3;
    text-align: right;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease
}

.acf-block-hero .slide-link-item:hover {
    color: #cab293;
    color: var(--gold)
}

.acf-block-hero .slide-link-item:hover:before {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s
}

.acf-block-hero .slide-link-item:hover:after {
    opacity: 1;
    -webkit-transition-delay: .3s;
    transition-delay: .3s
}

@media (min-width: 1024px) {
    .acf-block-hero .inner-content {
        padding:52px 0
    }

    .acf-block-hero .bottom-content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        bottom: 52px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: space-between
    }

    .acf-block-hero .bottom-content .col--left {
        max-width: 645px;
        width: 50%
    }

    .acf-block-hero .bottom-content .slide-links {
        margin-left: auto
    }

    .acf-block-hero .slide-link-item {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        font-size: 30px;
        justify-content: flex-end;
        right: -47px;
        text-align: right
    }

    .acf-block-hero .slide-link-item:hover {
        margin-left: -127px;
        right: 0
    }
}

@media (min-width: 1280px) {
    .acf-block-hero .slide-links .slide-link-item {
        font-size:35px
    }

    .acf-block-hero .slide-links .slide-link-item:after {
        font-size: 25px
    }
}

@media (min-width: 1600px) {
    .acf-block-hero .hero-title {
        margin-top:-80px
    }

    .acf-block-hero .inner-content {
        padding: 117px 0
    }

    .acf-block-hero .bottom-content {
        bottom: 117px
    }
}

.home-intro p {
    font-family: "MessinaSerif-Regular"
}

.acf-block-image-text {
    padding: 30px 0
}

.acf-block-image-text .acf-content {
    padding: 15px 0
}

.acf-block-image-text .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.acf-block-image-text .content-wrapper .col {
    width: 100%
}

.acf-block-image-text .content-wrapper h5 {
    color: #cab293;
    color: var(--gold)
}

.acf-block-image-text .with-scrollbar {
    padding: 0 35px
}

.acf-block-image-text .aspect-ratio {
    height: 0;
    padding-top: 60%;
    position: relative
}

.acf-block-image-text .title-outside-scroll {
    padding: 0 35px
}

.acf-block-image-text .transparent-gradient-bg {
    background: -webkit-gradient(linear,left top,left bottom,from(hsla(45,29%,92%,0)),to(hsla(45,29%,92%,.9)));
    background: linear-gradient(180deg,hsla(45,29%,92%,0),hsla(45,29%,92%,.9));
    height: 50px;
    margin-top: -40px;
    position: absolute;
    width: 100%;
    z-index: 5
}

@media (min-width: 1024px) {
    .acf-block-image-text .content-wrapper {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        align-items: center;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 20px;
        justify-content: center
    }

    .acf-block-image-text .content-wrapper .col-media-content {
        width: 60%
    }

    .acf-block-image-text .content-wrapper .col-text-content {
        width: 40%
    }

    .acf-block-image-text.image-right .content-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }

    .acf-block-image-text.image-left.image-bleed .media-content {
        margin-left: -5rem;
        margin-left: calc((100% - var(--content-width))/2*-1)
    }

    .acf-block-image-text.image-right.image-bleed .media-content {
        margin-right: -5rem;
        margin-right: calc((100% - var(--content-width))/2*-1)
    }
}

@media (min-width: 1600px) {
    .acf-block-image-text.image-left.image-bleed .media-content {
        margin-left:calc(-50vw - -640px)
    }

    .acf-block-image-text.image-right.image-bleed .media-content {
        margin-right: calc(-50vw - -640px)
    }
}

@media screen and (max-width: 760px) {
    .acf-block-image-text h3 {
        font-size:30px;
        line-height: 1.2
    }

    .acf-block-image-text p {
        font-size: 18px
    }

    .acf-block-image-text .with-scrollbar {
        padding: 0 35px 50px
    }
}

.square-aspect-ratio .aspect-ratio {
    height: 0;
    padding-top: 100%;
    position: relative
}

.acf-block-slider-text {
    padding-top: 0;
    position: relative
}

.acf-block-slider-text .background {
    height: 50%
}

.acf-block-slider-text .swiper {
    --swiper-navigation-arrow-color: var(--belmont-green)
}

.acf-block-slider-text .swiper .swiper-buttons-group {
    margin-top: 17px
}

.acf-block-slider-text .swiper .brand-swiper-button {
    z-index: 11
}

.acf-block-slider-text .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 80px
}

.acf-block-slider-text .content-wrapper .col {
    width: 100%
}

.acf-block-slider-text .with-scrollbar {
    padding: 0 35px
}

.acf-block-slider-text .aspect-ratio {
    height: 0;
    padding-top: 135%;
    position: relative
}

.acf-block-slider-text .title-outside-scroll {
    padding: 0 35px
}

.acf-block-slider-text .transparent-gradient-bg {
    background: -webkit-gradient(linear,left top,left bottom,from(rgba(84,78,53,0)),to(rgba(84,78,53,.9)));
    background: linear-gradient(180deg,rgba(84,78,53,0),rgba(84,78,53,.9));
    height: 50px;
    margin-top: -40px;
    position: absolute;
    width: 100%;
    z-index: 100
}

@media (min-width: 1024px) {
    .acf-block-slider-text .background {
        height:100%;
        width: 74%
    }

    .acf-block-slider-text .swiper {
        --swiper-navigation-arrow-color: #fff
    }

    .acf-block-slider-text .swiper .swiper-buttons-group {
        margin-top: 0;
        padding-top: 30px
    }

    .acf-block-slider-text .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: 0;
        height: 50px;
        left: auto;
        margin-top: 25px;
        position: relative;
        right: 5rem;
        right: calc((100% - var(--content-width))/2);
        text-align: right
    }

    .acf-block-slider-text .content-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        align-items: center;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 80px;
        justify-content: center
    }

    .acf-block-slider-text .content-wrapper&gt;.col {
        width: 50%
    }

    .acf-block-slider-text .media-content {
        margin-right: -5rem;
        margin-right: calc((100% - var(--content-width))/2*-1)
    }
}

@media (min-width: 1600px) {
    .acf-block-slider-text .media-content {
        margin-right:calc(-50vw - -640px)
    }

    .acf-block-slider-text .swiper-pagination-bullets.swiper-pagination-horizontal {
        right: 137px
    }
}

@media screen and (max-width: 760px) {
    .acf-block-slider-text h3 {
        font-size:30px;
        line-height: 1.2
    }

    .acf-block-slider-text p {
        font-size: 18px
    }

    .acf-block-slider-text .with-scrollbar {
        padding: 0 35px 50px
    }
}

.acf-block-slider-alt-text {
    overflow: hidden
}

.acf-block-slider-alt-text .background {
    height: 60%;
    -webkit-transition: height .3s;
    transition: height .3s
}

.acf-block-slider-alt-text .block-title {
    margin-bottom: 35px;
    padding-bottom: 21px;
    text-align: center
}

.acf-block-slider-alt-text .block-title .wysiwyg {
    margin: 0 auto
}

.acf-block-slider-alt-text .block-title .wysiwyg h2,.acf-block-slider-alt-text .block-title .wysiwyg h3,.acf-block-slider-alt-text .block-title .wysiwyg h4,.acf-block-slider-alt-text .block-title .wysiwyg h5,.acf-block-slider-alt-text .block-title .wysiwyg h6,.acf-block-slider-alt-text .block-title .wysiwyg li,.acf-block-slider-alt-text .block-title .wysiwyg p {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 0
}

.acf-block-slider-alt-text .swiper-main-content .slide--text {
    text-align: center
}

.acf-block-slider-alt-text .swiper-main-content .slide--text h2,.acf-block-slider-alt-text .swiper-main-content .slide--text h3,.acf-block-slider-alt-text .swiper-main-content .slide--text h4,.acf-block-slider-alt-text .swiper-main-content .slide--text h5,.acf-block-slider-alt-text .swiper-main-content .slide--text h6 {
    font-family: GT-Walsheim-Pro-Medium;
    font-size: 16px;
    letter-spacing: .14em;
    line-height: 18px;
    text-transform: uppercase
}

.acf-block-slider-alt-text .swiper-main-content .slide--text p {
    margin: 14px auto 0
}

.acf-block-slider-alt-text .swiper-main-content .slide--image {
    margin-top: 35px
}

.acf-block-slider-alt-text .swiper-thumbnails {
    --swiper-navigation-arrow-color: var(--belmont-green);
    margin-top: 20px
}

.acf-block-slider-alt-text .swiper-thumbnails .swiper-slide {
    height: auto;
    max-height: 165px
}

.acf-block-slider-alt-text .swiper-thumbnails .swiper-slide .aspect-ratio {
    border-bottom: 4px solid transparent
}

.acf-block-slider-alt-text .swiper-thumbnails .swiper-slide.with-border .aspect-ratio {
    border-color: #534e37;
    border-color: var(--belmont-green)
}

.acf-block-slider-alt-text .swiper-thumbnails .swiper-buttons-group {
    margin-top: 17px
}

.acf-block-slider-alt-text .aspect-ratio {
    height: 0;
    padding-top: 77%;
    position: relative
}

@media (min-width: 1024px) {
    .acf-block-slider-alt-text .background {
        height:110px
    }

    .acf-block-slider-alt-text .block-title {
        margin-bottom: 0;
        padding: 20px 0 70px
    }

    .acf-block-slider-alt-text .block-title .wysiwyg h2,.acf-block-slider-alt-text .block-title .wysiwyg h3,.acf-block-slider-alt-text .block-title .wysiwyg h4,.acf-block-slider-alt-text .block-title .wysiwyg h5,.acf-block-slider-alt-text .block-title .wysiwyg h6 {
        font-size: 100px;
        line-height: 100px
    }

    .acf-block-slider-alt-text .media-content {
        position: relative
    }

    .acf-block-slider-alt-text .swiper-main-content .swiper-slide {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }

    .acf-block-slider-alt-text .swiper-main-content .slide--image {
        margin-top: 0;
        width: 60%
    }

    .acf-block-slider-alt-text .swiper-main-content .slide--text {
        padding-bottom: 80px;
        padding-left: 30px;
        padding-top: 10px;
        text-align: left;
        width: 40%
    }

    .acf-block-slider-alt-text .swiper-main-content .slide--text h5 {
        font-family: GT-Walsheim-Pro-Regular;
        font-size: 40px;
        letter-spacing: 0;
        padding-bottom: 0
    }

    .acf-block-slider-alt-text .swiper-main-content .slide--text p {
        margin-left: 0;
        max-width: 75%
    }

    .acf-block-slider-alt-text .swiper-thumbnails {
        bottom: 0;
        margin-top: 0;
        padding-right: 5rem;
        padding-right: calc((100% - var(--content-width))/2);
        position: absolute;
        right: -5rem;
        right: calc((100% - var(--content-width))/2*-1);
        width: 40%
    }

    .acf-block-slider-alt-text .swiper-thumbnails .swiper-slide {
        max-height: 212px;
        max-width: 273px
    }

    .acf-block-slider-alt-text .swiper-thumbnails .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: 0;
        left: auto;
        margin-top: 42px;
        position: relative;
        right: 0;
        text-align: right
    }
}

@media (min-width: 1600px) {
    .acf-block-slider-alt-text .block-title .wysiwyg h2,.acf-block-slider-alt-text .block-title .wysiwyg h3,.acf-block-slider-alt-text .block-title .wysiwyg h4,.acf-block-slider-alt-text .block-title .wysiwyg h5,.acf-block-slider-alt-text .block-title .wysiwyg h6 {
        font-size:140px;
        line-height: 150px
    }

    .acf-block-slider-alt-text .swiper-main-content .slide--text {
        padding-bottom: 80px;
        padding-left: 66px
    }

    .acf-block-slider-alt-text .swiper-main-content .slide--text .wysiwyg h2,.acf-block-slider-alt-text .swiper-main-content .slide--text .wysiwyg h3,.acf-block-slider-alt-text .swiper-main-content .slide--text .wysiwyg h4,.acf-block-slider-alt-text .swiper-main-content .slide--text .wysiwyg h5,.acf-block-slider-alt-text .swiper-main-content .slide--text .wysiwyg h6 {
        font-size: 45px;
        line-height: 52px
    }

    .acf-block-slider-alt-text .swiper-main-content .slide--text .wysiwyg p {
        max-width: 640px
    }

    .acf-block-slider-alt-text .swiper-thumbnails {
        padding-right: 0;
        right: calc(-50vw - -700px);
        width: calc(40% + 50vw - 766px)
    }

    .acf-block-slider-alt-text .swiper-thumbnails .swiper-pagination-bullets.swiper-pagination-horizontal {
        margin-top: 30px;
        right: calc(50vw - 700px)
    }
}

.acf-block-image-tiles-slider {
    --swiper-pagination-bottom-offset: 30px
}

.acf-block-image-tiles-slider .acf-content {
    padding: 80px 0
}

.acf-block-image-tiles-slider .media-content {
    margin-top: 35px
}

.acf-block-image-tiles-slider .wysiwyg h2,.acf-block-image-tiles-slider .wysiwyg h3,.acf-block-image-tiles-slider .wysiwyg h4,.acf-block-image-tiles-slider .wysiwyg h5,.acf-block-image-tiles-slider .wysiwyg h6 {
    margin-bottom: 32px
}

.acf-block-image-tiles-slider .wysiwyg h3 {
    font-size: 40px
}

.acf-block-image-tiles-slider .wysiwyg p {
    font-size: 20px;
    line-height: 1.5;
    max-width: 720px
}

.acf-block-image-tiles-slider .wysiwyg h6 {
    color: #efece2!important
}

.acf-block-image-tiles-slider .swiper {
    margin-bottom: var(--swiper-pagination-bottom-offset);
    overflow: visible;
    position: relative
}

.acf-block-image-tiles-slider .swiper .swiper-slide {
    position: relative
}

.acf-block-image-tiles-slider .swiper .swiper-slide .aspect-ratio {
    height: 0;
    padding-top: 132%;
    position: relative
}

.acf-block-image-tiles-slider .swiper .swiper-slide .slide-text-content {
    bottom: 30px;
    left: 30px;
    position: absolute
}

.acf-block-image-tiles-slider .swiper .swiper-slide .slide-text-content h3 {
    color: #efece2;
    color: var(--dark-themed-text-colour);
    font-family: Wallop-Medium;
    font-size: 21px;
    line-height: 1.5;
    margin-bottom: 0;
    text-transform: uppercase
}

.acf-block-image-tiles-slider .swiper .brand-swiper-button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.acf-block-image-tiles-slider .swiper .brand-swiper-button-prev {
    left: 0
}

.acf-block-image-tiles-slider .swiper .brand-swiper-button-next {
    right: 0
}

.acf-block-image-tiles-slider .swiper .swiper-pagination {
    background: rgba(84,78,53,.22);
    bottom: calc(var(--swiper-pagination-bottom-offset)*-1);
    left: 0;
    right: 0;
    top: auto
}

.acf-block-image-tiles-slider.theme-dark .swiper {
    --swiper-pagination-color: hsla(47,30%,91%,.64)
}

.acf-block-image-tiles-slider.theme-dark .swiper .swiper-pagination {
    background: hsla(47,30%,91%,.22)
}

.acf-block-image-tiles-slider.theme-dark .wysiwyg {
    color: #efece2;
    color: var(--dark-themed-text-colour)
}

@media (min-width: 1400px) {
    .acf-block-image-tiles-slider {
        --swiper-pagination-bottom-offset:75px
    }

    .acf-block-image-tiles-slider .media-content {
        margin-top: 86px
    }
}

@media (min-width: 1600px) {
    .acf-block-image-tiles-slider .acf-content {
        padding:166px 0 224px!important
    }

    .acf-block-image-tiles-slider .media-content {
        margin-right: calc(-50vw - -640px)
    }

    .acf-block-image-tiles-slider .swiper .brand-swiper-button-next {
        right: 10rem;
        right: calc(100% - var(--content-width))
    }

    .acf-block-image-tiles-slider .swiper .swiper-pagination {
        width: calc(100% - 10rem);
        width: var(--content-width)
    }
}

.acf-block-full-width-slider-text .acf-content {
    margin-top: 40px;
    overflow-x: hidden;
    padding: 80px 0
}

.acf-block-full-width-slider-text .media-content {
    margin-top: 35px
}

.acf-block-full-width-slider-text .aspect-ratio {
    height: 0;
    padding-top: 60%;
    position: relative
}

.acf-block-full-width-slider-text .wysiwyg h2,.acf-block-full-width-slider-text .wysiwyg h3,.acf-block-full-width-slider-text .wysiwyg h4,.acf-block-full-width-slider-text .wysiwyg h5,.acf-block-full-width-slider-text .wysiwyg h6 {
    margin-bottom: 32px
}

.acf-block-full-width-slider-text .wysiwyg h3 {
    font-size: 60px
}

.acf-block-full-width-slider-text .wysiwyg p {
    font-size: 20px;
    line-height: 1.5;
    max-width: 720px
}

.acf-block-full-width-slider-text .wysiwyg h4 {
    font-family: "MessinaSerif-Regular";
    font-size: 30px
}

.acf-block-full-width-slider-text .wysiwyg h6 {
    color: #efece2!important
}

.acf-block-full-width-slider-text .swiper {
    position: relative
}

.acf-block-full-width-slider-text .swiper .swiper-slide .slide-text-content {
    margin-top: 35px;
    max-width: 710px;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s
}

.acf-block-full-width-slider-text .swiper .swiper-slide.swiper-slide-active .slide-text-content {
    opacity: 1
}

.acf-block-full-width-slider-text .swiper .brand-swiper-button-aspect-ratio {
    position: absolute;
    top: 0;
    width: 60px;
    z-index: 2
}

.acf-block-full-width-slider-text .swiper .brand-swiper-button-aspect-ratio-prev {
    left: 16px
}

.acf-block-full-width-slider-text .swiper .brand-swiper-button-aspect-ratio-next {
    right: 16px
}

.acf-block-full-width-slider-text .swiper .brand-swiper-button {
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.acf-block-full-width-slider-text .swiper::-webkit-scrollbar {
    display: none;
    width: 0
}

.acf-block-full-width-slider-text .swiper::-webkit-scrollbar-track {
    background: transparent!important;
    border: 0!important
}

.acf-block-full-width-slider-text .swiper::-webkit-scrollbar-thumb {
    background-color: transparent!important;
    border-radius: 0
}

.acf-block-full-width-slider-text .swiper-pagination {
    bottom: 0;
    color: #697a7e;
    color: var(--grayish-blue);
    left: auto;
    padding-right: 5rem;
    padding-right: calc((100% - var(--content-width))/2);
    right: 0;
    text-align: right
}

.acf-block-full-width-slider-text .swiper-pagination .swiper-pagination-total {
    opacity: .4
}

.acf-block-full-width-slider-text.theme-dark .slide-text-content,.acf-block-full-width-slider-text.theme-dark .swiper-pagination,.acf-block-full-width-slider-text.theme-dark .wysiwyg {
    color: #efece2;
    color: var(--dark-themed-text-colour)
}

@media (min-width: 1024px) {
    .acf-block-full-width-slider-text .swiper {
        margin-right:-5rem;
        margin-right: calc((100% - var(--content-width))/2*-1);
        overflow-x: visible
    }

    .acf-block-full-width-slider-text .swiper .brand-swiper-button-aspect-ratio {
        height: 0;
        padding-top: 32%;
        position: absolute
    }

    .acf-block-full-width-slider-text .swiper .brand-swiper-button-aspect-ratio-next {
        right: 5rem;
        right: calc((100% - var(--content-width))/2)
    }
}

@media (min-width: 1400px) {
    .acf-block-full-width-slider-text .media-content {
        margin-top:86px
    }

    .acf-block-full-width-slider-text .swiper .swiper-slide .slide-text-content {
        margin-top: 70px
    }

    .acf-block-full-width-slider-text .swiper-pagination {
        margin-top: 84px
    }
}

@media (min-width: 1600px) {
    .acf-block-full-width-slider-text .acf-content {
        padding:100px 0 150px!important
    }

    .acf-block-full-width-slider-text .swiper {
        margin-right: calc(-50vw - -50% + -5rem);
        margin-right: calc((100vw - var(--content-width))/2*-1)
    }

    .acf-block-full-width-slider-text .swiper .brand-swiper-button-aspect-ratio-next {
        right: 10rem;
        right: calc(100% - var(--content-width))
    }

    .acf-block-full-width-slider-text .swiper-pagination {
        padding-right: 10rem;
        padding-right: calc(100% - var(--content-width))
    }
}

.acf-block-large-text-with-background-blend .background-image {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

.acf-block-large-text-with-background-blend .foreground-title {
    color: #efece2;
    color: var(--belmont-cream);
    font-family: "MessinaSerif-Regular";
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 0;
    max-width: 55%;
    padding-bottom: 0;
    text-transform: uppercase
}

.acf-block-large-text-with-background-blend .foreground {
    position: relative;
    z-index: 2
}

.acf-block-large-text-with-background-blend .foreground .foreground-text-content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    left: 0;
    padding: 55px 0;
    position: absolute;
    top: 0;
    width: 100%
}

.acf-block-large-text-with-background-blend .foreground .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 27px;
    justify-content: space-between
}

.acf-block-large-text-with-background-blend .content-wrapper {
    position: relative;
    z-index: 3
}

.acf-block-large-text-with-background-blend .wysiwyg {
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.acf-block-large-text-with-background-blend .wysiwyg h2,.acf-block-large-text-with-background-blend .wysiwyg h3,.acf-block-large-text-with-background-blend .wysiwyg h4,.acf-block-large-text-with-background-blend .wysiwyg h5,.acf-block-large-text-with-background-blend .wysiwyg h6 {
    font-family: Wallop-Medium;
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 15px;
    text-transform: uppercase
}

.acf-block-large-text-with-background-blend .wysiwyg p {
    padding: 0 19%
}

.acf-block-large-text-with-background-blend .wysiwyg blockquote {
    font-family: "MessinaSerif-Regular";
    font-size: 30px;
    line-height: 1.4;
    margin: 0;
    padding: 40px 0 0
}

.acf-block-large-text-with-background-blend .wysiwyg blockquote+p {
    font-family: GT-Walsheim-Pro-Medium;
    font-size: 30px;
    letter-spacing: .04em;
    margin: 26px 0 0;
    text-transform: uppercase
}

.acf-block-large-text-with-background-blend .wysiwyg h6 {
    font-size: 16px!important;
    font-style: italic
}

.acf-block-large-text-with-background-blend .wysiwyg .curvy-arrow {
    margin-left: auto;
    margin-right: auto;
    margin-top: 23px;
    width: 30px
}

@media (min-width: 768px) {
    .acf-block-large-text-with-background-blend h2,.acf-block-large-text-with-background-blend h3,.acf-block-large-text-with-background-blend h4,.acf-block-large-text-with-background-blend h5,.acf-block-large-text-with-background-blend h6 {
        font-size:90px;
        line-height: 100px;
        margin-bottom: 65px;
        margin-top: 15px
    }
}

@media (min-width: 1400px) {
    .acf-block-large-text-with-background-blend .foreground-title {
        color:#efece2;
        color: var(--belmont-cream);
        font-family: "MessinaSerif-Regular";
        font-size: 110px;
        line-height: 110px;
        max-width: 52%;
        text-transform: uppercase
    }

    .acf-block-large-text-with-background-blend .wysiwyg h2,.acf-block-large-text-with-background-blend .wysiwyg h3,.acf-block-large-text-with-background-blend .wysiwyg h4,.acf-block-large-text-with-background-blend .wysiwyg h5,.acf-block-large-text-with-background-blend .wysiwyg h6 {
        font-size: 70px;
        line-height: 100px;
        margin-bottom: 67px
    }

    .acf-block-large-text-with-background-blend .wysiwyg p {
        font-size: 30px;
        line-height: 1.5
    }

    .acf-block-large-text-with-background-blend .wysiwyg blockquote {
        font-size: 30px
    }

    .acf-block-large-text-with-background-blend .wysiwyg blockquote p {
        font-size: 30px;
        line-height: 1.4
    }

    .acf-block-large-text-with-background-blend .wysiwyg .curvy-arrow {
        margin-top: 68px
    }

    .acf-block-large-text-with-background-blend .foreground .content-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 60px
    }
}

@media screen and (max-width: 760px) {
    .acf-block-large-text-with-background-blend .foreground-title {
        font-family:"MessinaSerif-Regular";
        font-size: 30px;
        line-height: 40px
    }

    .acf-block-large-text-with-background-blend .wysiwyg p {
        font-size: 20px;
        line-height: 1.5
    }
}

@media (min-width: 1600px) {
    .acf-block-large-text-with-background-blend .wysiwyg h2,.acf-block-large-text-with-background-blend .wysiwyg h3,.acf-block-large-text-with-background-blend .wysiwyg h4,.acf-block-large-text-with-background-blend .wysiwyg h5,.acf-block-large-text-with-background-blend .wysiwyg h6 {
        font-size:70px;
        line-height: 70px;
        margin-bottom: 77px
    }

    .acf-block-large-text-with-background-blend .wysiwyg p {
        font-size: 25px;
        line-height: 35px
    }

    .acf-block-large-text-with-background-blend .wysiwyg blockquote {
        font-size: 60px;
        line-height: 1.5
    }

    .acf-block-large-text-with-background-blend .wysiwyg blockquote+p {
        margin-top: 75px
    }

    .acf-block-large-text-with-background-blend .foreground-title {
        font-size: 140px;
        line-height: 140px;
        max-width: 70%
    }

    .acf-block-large-text-with-background-blend .foreground .foreground-text-content-wrapper {
        padding: 60px 0 100px
    }
}

.home-quote .acf-content {
    padding: 0
}

.home-quote .wysiwyg {
    padding-top: 40px
}

.home-quote .wysiwyg h6 {
    line-height: 0;
    margin-bottom: 0;
    padding-top: 50px
}

.home-quote .button--belmont-cream {
    font-size: 15px!important;
    padding: 15px 20px!important
}

.home-footer .foreground {
    margin-top: -200px
}

.home-footer .foreground-text-content-wrapper {
    padding-top: 0!important
}

@media screen and (max-width: 760px) {
    .foreground {
        margin-top:0!important
    }
}

.acf-block-large-text.has-background-image .acf-content {
    padding: 85px 0 75px
}

.acf-block-large-text .wysiwyg {
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.acf-block-large-text .wysiwyg p {
    padding: 0 15%
}

.acf-block-large-text .wysiwyg blockquote {
    font-family: "MessinaSerif-Regular";
    font-size: 25px;
    line-height: 30px;
    margin: 0;
    padding: 0
}

.acf-block-large-text .wysiwyg blockquote+p {
    font-family: GT-Walsheim-Pro-Medium;
    letter-spacing: .04em;
    margin: 26px 0 0;
    text-transform: uppercase
}

.acf-block-large-text .wysiwyg .curvy-arrow {
    margin-left: auto;
    margin-right: auto;
    margin-top: 23px;
    width: 30px
}

.acf-block-large-text.has-background-image .wysiwyg .curvy-arrow,.acf-block-large-text.has-background-image .wysiwyg h2,.acf-block-large-text.has-background-image .wysiwyg h3,.acf-block-large-text.has-background-image .wysiwyg h4,.acf-block-large-text.has-background-image .wysiwyg h5,.acf-block-large-text.has-background-image .wysiwyg h6,.acf-block-large-text.has-background-image .wysiwyg li,.acf-block-large-text.has-background-image .wysiwyg p,.acf-block-large-text.theme-dark .wysiwyg .curvy-arrow,.acf-block-large-text.theme-dark .wysiwyg h2,.acf-block-large-text.theme-dark .wysiwyg h3,.acf-block-large-text.theme-dark .wysiwyg h4,.acf-block-large-text.theme-dark .wysiwyg h5,.acf-block-large-text.theme-dark .wysiwyg h6,.acf-block-large-text.theme-dark .wysiwyg li,.acf-block-large-text.theme-dark .wysiwyg p {
    color: #efece2;
    color: var(--dark-themed-text-colour)
}

.acf-block-large-text.has-background-image .media-content .slide-text-content h2,.acf-block-large-text.has-background-image .media-content .slide-text-content h3,.acf-block-large-text.has-background-image .media-content .slide-text-content h4,.acf-block-large-text.has-background-image .media-content .slide-text-content h5,.acf-block-large-text.has-background-image .media-content .slide-text-content h6,.acf-block-large-text.theme-dark .media-content .slide-text-content h2,.acf-block-large-text.theme-dark .media-content .slide-text-content h3,.acf-block-large-text.theme-dark .media-content .slide-text-content h4,.acf-block-large-text.theme-dark .media-content .slide-text-content h5,.acf-block-large-text.theme-dark .media-content .slide-text-content h6 {
    color: #cab293;
    color: var(--gold)
}

.acf-block-large-text.has-background-image .media-content .slide-text-content p,.acf-block-large-text.theme-dark .media-content .slide-text-content p {
    color: #efece2!important;
    color: var(--belmont-cream)!important
}

@media (min-width: 1024px) {
    .acf-block-large-text .acf-content {
        padding:130px 0 120px
    }

    .acf-block-large-text.has-background-image {
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        min-height: 100vh
    }

    .acf-block-large-text .wysiwyg p {
        font-size: 25px;
        line-height: 35px
    }
}

@media (min-width: 1600px) {
    .acf-block-large-text .wysiwyg h2,.acf-block-large-text .wysiwyg h3,.acf-block-large-text .wysiwyg h4,.acf-block-large-text .wysiwyg h5,.acf-block-large-text .wysiwyg h6 {
        font-size:70px;
        line-height: 70px;
        margin-bottom: 77px
    }

    .acf-block-large-text .wysiwyg p {
        font-size: 25px;
        line-height: 35px
    }

    .acf-block-large-text .wysiwyg blockquote {
        font-size: 60px;
        line-height: 75px
    }

    .acf-block-large-text .wysiwyg blockquote+p {
        margin-top: 75px
    }

    .acf-block-large-text .wysiwyg .curvy-arrow {
        margin-top: 68px
    }
}

.acf-block-testimonials .acf-content {
    padding: 90px 0
}

.acf-block-testimonials.has-background-image .acf-content {
    padding: 140px 0
}

.acf-block-testimonials .wysiwyg {
    margin: 0 auto;
    max-width: 1000px;
    text-align: center
}

.acf-block-testimonials .wysiwyg blockquote {
    color: #efece2;
    color: var(--belmont-cream);
    font-size: 30px;
    line-height: 1.4;
    margin: 0 auto
}

.acf-block-testimonials .wysiwyg blockquote p {
    color: #efece2;
    color: var(--belmont-cream);
    font-family: "MessinaSerif-Regular"
}

.acf-block-testimonials .wysiwyg blockquote cite {
    display: block;
    font-family: GT-Walsheim-Pro-Regular;
    font-size: 21px;
    font-style: italic;
    line-height: 30px;
    margin-top: 80px
}

.acf-block-testimonials .swiper {
    padding: 0 8px;
    position: relative
}

.acf-block-testimonials .swiper-slide {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    align-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center
}

.acf-block-testimonials .brand-swiper-button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.acf-block-testimonials .brand-swiper-button.brand-swiper-button-prev {
    left: 0
}

.acf-block-testimonials .brand-swiper-button.brand-swiper-button-next {
    right: 0
}

@media (min-width: 1024px) {
    .acf-block-testimonials .acf-content {
        -webkit-box-align:center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        padding: 155px 0
    }
}

@media (min-width: 1600px) {
    .acf-block-testimonials .acf-content {
        padding:290px 0
    }
}

.education-testimonials .acf-content {
    padding: 220px 0!important
}

.partner-testimonials .acf-content {
    padding: 60px 0!important
}

.acf-block-video .acf-content {
    padding: 0
}

.acf-block-video .image-wrapper svg {
    width: 100%
}

.acf-block-history .acf-content {
    padding-bottom: 0
}

.acf-block-history .wysiwyg {
    margin: 0 auto;
    max-width: 470px;
    text-align: center
}

.acf-block-history .wysiwyg p {
    font-size: 18px;
    line-height: 1.5
}

.acf-block-history .text-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 3
}

.acf-block-history .text-content:after {
    background: #707070;
    content: "";
    height: 235px;
    margin: 60px auto;
    width: 1px
}

.acf-block-history .images {
    margin: 40px auto;
    max-width: 450px;
    width: 100%
}

.acf-block-history .images .small-image {
    margin-top: 25px
}

.acf-block-history .history-row {
    position: relative
}

.acf-block-history .history-row:last-child .text-content:after {
    height: 400px;
    margin-bottom: 0
}

@media (min-width: 1280px) {
    .acf-block-history .images {
        bottom:0;
        margin: 0;
        position: absolute;
        z-index: 2
    }

    .acf-block-history .images .large-image {
        position: relative;
        z-index: 1
    }

    .acf-block-history .images .small-image {
        bottom: 0;
        margin-top: 0;
        position: absolute;
        z-index: 2
    }

    .acf-block-history .history-row:nth-child(odd) .images {
        right: 0
    }

    .acf-block-history .history-row:nth-child(2n) .images,.acf-block-history .history-row:nth-child(odd) .images .small-image {
        left: 0
    }

    .acf-block-history .history-row:nth-child(2n) .images .small-image {
        right: 0
    }
}

@media (min-width: 1600px) {
    .acf-block-history .wysiwyg .history--subheader {
        font-size:18px;
        line-height: 21px;
        margin-bottom: 34px
    }

    .acf-block-history .wysiwyg .history-year {
        font-size: 85px;
        line-height: 1
    }

    .acf-block-history .wysiwyg p {
        font-size: 25px;
        line-height: 1.5
    }
}

.acf-block-accordion .acf-content {
    padding-top: 0
}

.acf-block-accordion .accordion-row {
    background: transparent;
    color: #534e37;
    color: var(--belmont-green);
    padding: 0 10%;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.acf-block-accordion .accordion-row:not([class*="accordion-row@"]).open&gt;.accordion-body {
    padding: 0 0 1rem
}

.acf-block-accordion .accordion-row .accordion-header-wrapper {
    padding-right: 30px
}

.acf-block-accordion .accordion-row .accordion-subheader {
    color: #a9c3ba;
    display: none;
    margin-bottom: 12px
}

.acf-block-accordion .accordion-row .accordion-head {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding: 50px 0 15px;
    position: relative
}

.acf-block-accordion .accordion-row .accordion-head .accordion-toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}

.acf-block-accordion .accordion-row .accordion-head .accordion-title {
    font-size: 30px;
    line-height: 30px
}

.acf-block-accordion .accordion-row .accordion-head .accordion-icon {
    margin-left: auto;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
    width: 21px
}

.acf-block-accordion .accordion-row .accordion-head svg {
    color: inherit
}

.acf-block-accordion .accordion-row .accordion-head svg path {
    stroke-width: 6px;
    stroke: currentColor
}

.acf-block-accordion .accordion-row .accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.acf-block-accordion .accordion-row .accordion-body .text-content {
    max-width: 1340px;
    padding-bottom: 55px;
    padding-right: 30px
}

.acf-block-accordion .accordion-row .accordion-body .text-content .wysiwyg h2,.acf-block-accordion .accordion-row .accordion-body .text-content .wysiwyg h3,.acf-block-accordion .accordion-row .accordion-body .text-content .wysiwyg h4,.acf-block-accordion .accordion-row .accordion-body .text-content .wysiwyg h5,.acf-block-accordion .accordion-row .accordion-body .text-content .wysiwyg h6,.acf-block-accordion .accordion-row .accordion-body .text-content .wysiwyg li,.acf-block-accordion .accordion-row .accordion-body .text-content .wysiwyg p {
    color: #efece2;
    color: var(--dark-themed-text-colour)
}

.acf-block-accordion .accordion-row .accordion-body .text-content .wysiwyg a {
    color: #efece2;
    color: var(--belmont-cream)
}

.acf-block-accordion .accordion-row .accordion-body .text-content p:last-of-type a,.acf-block-accordion .accordion-row .accordion-body .text-content p:last-of-type button {
    margin-top: 55px
}

.acf-block-accordion .accordion-row.open {
    background: #534e37;
    background: var(--belmont-green);
    color: #efece2;
    color: var(--belmont-cream)
}

.acf-block-accordion .accordion-row.open .accordion-subheader {
    display: block
}

.acf-block-accordion .accordion-row.open .accordion-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.acf-block-accordion .bottom-text-content {
    border-top: 2px solid #534e37;
    border-top: 2px solid var(--belmont-green);
    margin-top: 50px;
    padding-top: 50px
}

.acf-block-accordion .bottom-text-content .wysiwyg {
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.acf-block-accordion .bottom-text-content .wysiwyg .button-group {
    gap: 40px;
    margin-top: 50px
}

.acf-block-accordion .bottom-text-content .wysiwyg p {
    font-size: 25px
}

.acf-block-accordion .bottom-text-content .wysiwyg p&gt;a,.acf-block-accordion .bottom-text-content .wysiwyg&gt;a {
    color: #534e37;
    color: var(--belmont-green);
    opacity: .7;
    text-decoration: underline!important
}

.acf-block-accordion .bottom-text-content .wysiwyg p&gt;a:hover,.acf-block-accordion .bottom-text-content .wysiwyg&gt;a:hover {
    opacity: 1;
    text-decoration: none!important
}

@media (min-width: 1600px) {
    .acf-block-accordion .accordion-row .accordion-subheader {
        font-size:18px;
        line-height: 20px;
        margin-bottom: 24px
    }

    .acf-block-accordion .bottom-text-content {
        margin-top: 130px;
        padding-top: 130px
    }

    .acf-block-accordion .bottom-text-content .wysiwyg h2,.acf-block-accordion .bottom-text-content .wysiwyg h3,.acf-block-accordion .bottom-text-content .wysiwyg h4,.acf-block-accordion .bottom-text-content .wysiwyg h5,.acf-block-accordion .bottom-text-content .wysiwyg h6 {
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 20px!important
    }

    .acf-block-accordion .bottom-text-content .wysiwyg .button-group {
        margin-top: 130px
    }
}

.acf-block-map .acf-content {
    padding: 50px 0
}

.acf-block-map .col--left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
    padding: 40px 30px
}

.acf-block-map ul li {
    font-size: 25px;
    line-height: 1.3
}

.acf-block-map p {
    color: #534e37;
    color: var(--belmont-green);
    font-size: 20px
}

.acf-block-map a:not(.button--cta) {
    color: #534e37;
    color: var(--belmont-green);
    text-decoration: underline!important
}

.acf-block-map h4 {
    font-size: 16px;
    letter-spacing: .14em;
    line-height: 21px;
    margin-bottom: 19px;
    opacity: .75
}

.acf-block-map .button--cta {
    width: auto
}

.acf-block-map .acf-map {
    height: 100%;
    min-height: 400px;
    width: 100%
}

.acf-block-map .acf-map img {
    max-width: inherit!important
}

.acf-block-map .content-wrapper {
    background: #fff
}

.acf-block-map .address-details {
    margin: 0;
    max-width: 100%
}

.acf-block-map .address-details .col {
    padding-right: 125px
}

@media (min-width: 1024px) {
    .acf-block-map .content-wrapper {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .acf-block-map .col--left {
        gap: 50px;
        padding: 50px 0 50px 50px;
        width: 46%
    }

    .acf-block-map .col--right {
        width: 54%
    }
}

@media (min-width: 1600px) {
    .acf-block-map h4 {
        font-size:24px;
        line-height: 28px;
        margin-bottom: 38px
    }

    .acf-block-map .col--left {
        padding: 55px 60px 60px
    }
}

@media screen and (max-width: 1020px) {
    .acf-block-map h4 {
        margin-top:25px
    }
}

.acf-block-contact-options {
    --gap: 20px
}

.acf-block-contact-options .acf-content {
    padding-top: 0
}

.acf-block-contact-options .contact-details-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: var(--gap)
}

.acf-block-contact-options .contact-details-list--item {
    width: 100%
}

.acf-block-contact-options .contact-details-list--item .contact-detail {
    background: #fff;
    height: 100%;
    position: relative;
    text-align: center
}

.acf-block-contact-options .contact-details-list--item .text-content {
    padding: 30px 40px
}

.acf-block-contact-options .contact-details-list--item .image-wrapper {
    height: 360px;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.acf-block-contact-options .contact-details-list--item .image-wrapper img {
    height: 100%;
    left: 0;
    max-height: 360px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%
}

.acf-block-contact-options .contact-details-list--item .contact-detail--subheader {
    color: #827d6a;
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 8px
}

.acf-block-contact-options .contact-details-list--item .contact-detail--title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 8px
}

.acf-block-contact-options .contact-details-list--item .button--cta {
    margin-top: 32px
}

.acf-block-contact-options .footer-text {
    margin-top: 75px
}

.acf-block-contact-options .footer-text .wysiwyg {
    margin: 0 auto;
    text-align: center
}

.acf-block-contact-options .footer-text .wysiwyg h3 {
    text-transform: none
}

.acf-block-contact-options .footer-text p {
    font-family: "MessinaSerif-Regular"
}

.acf-block-contact-options .footer-text p:last-child a {
    margin-top: 25px
}

@media (min-width: 768px) {
    .acf-block-contact-options {
        --gap:40px
    }

    .acf-block-contact-options .contact-details-list--item {
        width: calc(50% - var(--gap)/2)
    }

    .acf-block-contact-options .contact-details-list--item .text-content {
        padding: 47px 30px 43px
    }
}

@media (min-width: 1024px) {
    .acf-block-contact-options {
        --gap:40px
    }

    .acf-block-contact-options .contact-details-list--item {
        width: calc(33.33333% - var(--gap)/1.5)
    }

    .acf-block-contact-options .contact-details-list--item .text-content {
        padding: 47px 30px 43px
    }
}

@media (min-width: 1600px) {
    .acf-block-contact-options {
        --gap:50px
    }

    .acf-block-contact-options .footer-text {
        margin-top: 148px
    }

    .acf-block-contact-options .footer-text p:last-child a {
        margin-top: 73px
    }
}

.acf-block-full-width-image .acf-content {
    padding: 0
}

.acf-block-full-width-image .image-wrapper {
    height: 500px;
    position: relative;
    z-index: 1
}

.acf-block-full-width-image .image-wrapper img {
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%
}

@media (min-width: 1600px) {
    .acf-block-full-width-image .image-wrapper {
        height:670px
    }
}

.acf-block-full-width-logo-slider .acf-content {
    padding: 55px 0
}

.acf-block-full-width-logo-slider .swiper {
    overflow: visible
}

.acf-block-full-width-logo-slider .swiper .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear
}

.acf-block-full-width-logo-slider .swiper .swiper-slide {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 140px;
    justify-content: center;
    max-width: 140px;
    width: auto
}

.acf-block-full-width-logo-slider .swiper .swiper-slide .slide-image img {
    max-height: 100px!important
}

.acf-block-posts .post-list--item {
    background: #fff
}

.acf-block-posts .post-list--item .aspect-ratio {
    height: 0;
    padding-top: 91%;
    position: relative
}

.acf-block-posts .post-list--item .text-content {
    padding: 30px 40px;
    text-align: center
}

.acf-block-posts .post-list--item .post--title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 18px
}

.acf-block-posts .post-list--item .categories {
    text-transform: uppercase
}

@media (min-width: 1024px) {
    .acf-block-posts .post-list--item:nth-child(4n-3) {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: reverse;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        min-height: 500px;
        width: 100%
    }

    .acf-block-posts .post-list--item:nth-child(4n-3) .post--title {
        margin-bottom: 130px
    }

    .acf-block-posts .post-list--item:nth-child(4n-3) .post-date {
        font-size: 18px;
        line-height: 1.5;
        margin-top: auto
    }

    .acf-block-posts .post-list--item:nth-child(4n-3) .image-wrapper {
        width: 54%
    }

    .acf-block-posts .post-list--item:nth-child(4n-3) .image-wrapper .aspect-ratio {
        height: 100%;
        padding: 0
    }

    .acf-block-posts .post-list--item:nth-child(4n-3) .text-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 158px 92px 68px;
        text-align: left;
        width: 46%
    }
}

@media (min-width: 1600px) {
    .acf-block-posts .post-list--item:nth-child(4n-3) {
        font-size:50px;
        line-height: 85px;
        margin-bottom: 40px
    }
}

.acf-block-members .post-list--item .image-wrapper {
    margin-bottom: 66px
}

.acf-block-members .post-list--item .aspect-ratio {
    height: 0;
    padding-top: 75%;
    position: relative
}

.acf-block-members .post-list--item .post--subtitle {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 24px
}

.acf-block-members .post-list--item .post--title {
    font-family: Wallop-Medium;
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 60px
}

.acf-block-supporters .supporters {
    gap: 50px
}

.acf-block-supporters .supporter,.acf-block-supporters .supporters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.acf-block-supporters .supporter {
    gap: 25px
}

.acf-block-supporters .supporter .image-wrapper {
    max-width: 376px;
    width: 100%
}

.acf-block-supporters .supporter .image-wrapper .aspect-ratio {
    height: 0;
    padding-top: 100%;
    position: relative
}

.acf-block-supporters .supporter .button--cta {
    margin-top: 72px
}

.acf-block-supporters.theme-dark .wysiwyg h3,.acf-block-supporters.theme-dark .wysiwyg p {
    color: #efece2;
    color: var(--dark-themed-text-colour)
}

@media (min-width: 1024px) {
    .acf-block-supporters .supporters {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 134px
    }

    .acf-block-supporters .supporter {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 115px
    }

    .acf-block-supporters .wysiwyg h3 {
        font-size: 40px;
        line-height: 40px
    }
}

.single .post-meta {
    font-family: GT-Walsheim-Pro-Medium;
    font-size: 16px;
    letter-spacing: .14em;
    line-height: 18px;
    margin-bottom: 55px;
    text-transform: uppercase
}

.single .post-meta .content-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    border-bottom: 1px solid var(--wp--preset--color--belmont-green);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding-bottom: 25px;
    padding-left: 5%;
    padding-right: 5%
}

.single .post-meta .post-date {
    margin-left: auto;
    text-shadow: 0 0 70px #2e2e2e
}

.single .post-meta .read-time {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    text-shadow: 0 0 70px #2e2e2e
}

.single .post-meta .read-time svg {
    color: inherit;
    height: 24px;
    width: 24px
}

.single .post-meta .read-time svg path {
    fill: currentColor
}

.single .hero {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    max-height: 900px;
    min-height: 100vh;
    padding: 22px 0;
    position: relative
}

.single .hero .image-wrapper {
    background: #777;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

.single .hero .image-wrapper img {
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%
}

.single .hero .content-wrapper {
    position: relative;
    z-index: 2
}

.single .hero h1 {
    color: #efece2;
    color: var(--belmont-cream);
    text-align: center;
    text-shadow: 0 0 70px #2e2e2e
}

.single .hero .post-meta {
    bottom: 50px;
    color: #fff;
    left: 0;
    margin-bottom: 0;
    position: absolute;
    width: 100%
}

.single .hero .post-meta .content-wrapper {
    border-bottom: 1px solid #efece2;
    border-bottom: 1px solid var(--belmont-cream);
    padding-left: 5%;
    padding-right: 5%
}

.single .wysiwyg {
    padding: 55px 0;
    text-align: left
}

.single .wysiwyg .content-wrapper {
    padding-left: 7.5%;
    padding-right: 7.5%
}

.single .wysiwyg .wp-block-image {
    margin-left: 0;
    margin-right: 0
}

.single .wysiwyg a {
    color: #534e37;
    color: var(--belmont-green);
    opacity: .75;
    text-decoration: underline!important
}

.single .wysiwyg a:hover {
    text-decoration: none!important
}

.single .categories {
    padding-bottom: 55px;
    text-align: center
}

.single .categories .category-link {
    color: var(--wp--preset--color--belmont-green);
    text-decoration: underline!important;
    text-transform: lowercase
}

@media (min-width: 1600px) {
    .single .post-meta {
        font-size:24px;
        line-height: 28px
    }

    .single .post-meta .content-wrapper {
        padding-bottom: 40px
    }

    .single .post-meta .read-time {
        gap: 30px
    }

    .single .post-meta .read-time svg {
        height: 48px;
        width: 48px
    }

    .single .hero h1 {
        font-size: 100px;
        line-height: 105px
    }

    .single .hero .post-meta {
        bottom: 130px
    }

    .single .wysiwyg {
        padding: 75px 0
    }

    .single .categories .category-link {
        font-size: 40px;
        line-height: 55px
    }
}

.page-history-of-estate .acf-block-large-text-with-background-blend .acf-content {
    padding-top: 140px
}

@media (min-width: 768px) {
    .page-history-of-estate .acf-block-large-text-with-background-blend .acf-content {
        padding-top:180px
    }
}

@media (min-width: 1024px) {
    .page-history-of-estate .acf-block-large-text-with-background-blend .acf-content {
        padding-top:300px
    }
}

@media (min-width: 1140px) {
    .page-history-of-estate .acf-block-large-text-with-background-blend .acf-content {
        padding-top:400px
    }
}

.page-history-of-estate .acf-block-large-text-with-background-blend .wysiwyg h2,.page-history-of-estate .acf-block-large-text-with-background-blend .wysiwyg h3,.page-history-of-estate .acf-block-large-text-with-background-blend .wysiwyg h4,.page-history-of-estate .acf-block-large-text-with-background-blend .wysiwyg li,.page-history-of-estate .acf-block-large-text-with-background-blend .wysiwyg p {
    color: #efece2;
    color: var(--dark-themed-text-colour)
}

:root {
    --swiper-pagination-bullet-size: 16px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-inactive-opacity: 0.2;
    --swiper-pagination-color: var(--belmont-green);
    --swiper-pagination-bullet-opacity: 1
}

.swiper-horizontal&gt;.swiper-pagination-bullets .swiper-pagination-bullet:first-child,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:first-child {
    margin-left: 0
}

.swiper-horizontal&gt;.swiper-pagination-bullets .swiper-pagination-bullet:last-child,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:last-child {
    margin-right: 0
}
</pre></body></html>