:root {
    --global-font-size: 1rem;
    --global-width: 102.5rem;
    --grid-container: var(--global-width);
    --body-font-family: 'Montserrat', Arial, sans-serif;
    --header-font-family: var(--body-font-family);

    --brand-pink: #F48389;
    --brand-yellow: #D9C35F;
    --brand-slate: #606A7A;
    --brand-black: #2C2F31;
    --brand-grey: #ABABAA;

    --black: #000;
    --white: #fff;

    --body-font-color: var(--black);

    --global-weight-normal: 400;
    --base-line-height: 1.2;

    --space: var(--global-font-size);

    --base-timing: 0.2s;
    --base-transition: ease-in-out;
}

body {
    background-color: #F2F2F2;
    font-size: 1.25rem;
}

html {
    font-size: 100%;
}

.swiper-container {
    overflow: hidden;
}

html {
    font-size: 80%;
}

/* /* Custom breakpoints to match Foundation's defaults, powered by postcss-custom-media */

/* https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media */

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap') format('woff2');
}

h1, .utl-heading-alpha, h2, .utl-heading-beta, h3, .utl-heading-gamma, h4, .utl-heading-delta, h5, .utl-heading-epsilon, h6, .utl-heading-zeta {
    font-family: var(--header-font-family);
    font-size: var(--global-font-size);
    font-weight: 700;
    line-height: var(--base-line-height);
}

h1, .utl-heading-alpha {
    color: var(--black);

    font-size: clamp(3.125rem, 2.6705rem + 2.2727vw, 5rem);
}

h2, .utl-heading-beta {

    font-size: clamp(2.5rem, 2.3485rem + 0.7576vw, 3.125rem);
    color: var(--brand-pink);
    font-weight: 400;
}

h3, .utl-heading-gamma {
    color: var(--brand-slate);

    font-size: clamp(1.875rem, 1.7992rem + 0.3788vw, 2.1875rem);
}

h4, .utl-heading-delta {
    color: var(--brand-slate);

    font-size: 1.375rem;
}

h5, .utl-heading-epsilon {
    color: var(--brand-slate);

    font-size: 1.125rem;
}

h6, .utl-heading-zeta {
    color: var(--brand-slate);

    font-size: 1.125rem;
}

b, strong {
    font-weight: 700;
}

i {
    font-family: var(--body-font-family);
    font-weight: 400;
    font-style: italic;
}

blockquote {
    margin: calc(var(--space) * 2) 0;
    border: none;
    border-left: solid rem-calc(5) black;

    font-family: var(--body-font-family);
    font-size: clamp(1.125rem, 1rem + 0.625vw, 1.625rem);
    font-style: normal;
    font-weight: 500;
    line-height: var(--base-line-height);
    color: black;
}

@media screen and (max-width: 39.9375em) {

blockquote {
        padding: 0 0 0 calc(var(--space) * 2)
}
    }

@media screen and (min-width: 40em) {

blockquote {
        padding: 0 0 0 calc(var(--space) * 4)
}
    }

blockquote cite {
        margin-top: var(--space);

        font-weight: var(--body-font-family);
        font-size: clamp(1.125rem, 1rem + 0.625vw, 1.625rem);
        font-style: normal;
        font-weight: 400;
    }

blockquote cite:before {
            display: none;
        }

a {
    display: inline-block;

    color: var(--body-font-color);
    text-decoration: underline;

    transition: color var(--base-timing) var(--base-transition);
}

a:hover, a:focus {
        color: var(--body-font-color);
    }

sub, sup {
    font-size: 0.875rem;
}

.c-button, input[type=submit], button[type=submit] {
    padding: 0.625rem 1.25rem;
    display: inline-block;

    position: relative;

    font-family: var(--header-font-family);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    color: var(--white);

    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    vertical-align: top;
    white-space: normal;
    outline: none;
    overflow: hidden;

    transition: all var(--base-timing) var(--base-transition);
}

.c-button:hover, .c-button:active, input[type=submit]:hover, input[type=submit]:active, button[type=submit]:hover, button[type=submit]:active {
        border-color: black;

        color: white;

        background-color: black;
    }

.c-button:disabled, input[type=submit]:disabled, button[type=submit]:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.c-button:disabled:hover, input[type=submit]:disabled:hover, button[type=submit]:disabled:hover {
            background-color: var(--dark-gray);
        }

.c-slideout .c-button, .c-slideout input[type=submit], .c-slideout button[type=submit] {
        margin-top: 0.9375rem;
    }

@media screen and (max-width: 39.9375em) {

.c-nav .c-button, .c-nav input[type=submit], .c-nav button[type=submit] {
            display: none
    }
        }

.c-button--primary {
    background-color: var(--brand-pink);
}

.c-button--block, input[type=submit], button[type=submit] {
    width: 100%;
    display: block;
}

label, legend {
    margin-bottom: 0.5rem;
    display: block;

    font-family: var(--header-font-family);
    font-weight: 700;
    color: var(--body-font-family);
}

fieldset {
    padding: 0;
    border: none;
    box-sizing: border-box;
}

[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color], textarea {
    width: 100%;
    margin-bottom: 1.25rem;
    padding: calc(var(--space) / 2);
    border: solid 0.125rem var(--brand-grey);
    display: block;

    font-size: 1.25rem;
    line-height: 1.4;
    color: black;

    background-color: white;

    transition: border-color var(--base-timing) var(--base-transition);

    /* Remove default iOS form elements */
    /* https://samuelchopard.ch/wiki/library/remove-ios-safari-input-shadow-mobile-css/ */

    -webkit-appearance: none;

       -moz-appearance: none;

            appearance: none;
}

[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus, textarea:focus {
        border-color: black;
    }

[type=text][type=file], [type=password][type=file], [type=date][type=file], [type=datetime][type=file], [type=datetime-local][type=file], [type=month][type=file], [type=week][type=file], [type=email][type=file], [type=number][type=file], [type=search][type=file], [type=tel][type=file], [type=time][type=file], [type=url][type=file], [type=color][type=file], textarea[type=file] {
        padding: 0;
        border: none;
    }

[type=text][type=search], [type=password][type=search], [type=date][type=search], [type=datetime][type=search], [type=datetime-local][type=search], [type=month][type=search], [type=week][type=search], [type=email][type=search], [type=number][type=search], [type=search][type=search], [type=tel][type=search], [type=time][type=search], [type=url][type=search], [type=color][type=search], textarea[type=search] {
        /* Standardise iOS border radius */
        /* https: //stackoverflow.com/questions/2918707/turn-off-iphone-safari-input-element-rounding */
        -webkit-appearance: none;
    }

[type=text]::-moz-placeholder, [type=password]::-moz-placeholder, [type=date]::-moz-placeholder, [type=datetime]::-moz-placeholder, [type=datetime-local]::-moz-placeholder, [type=month]::-moz-placeholder, [type=week]::-moz-placeholder, [type=email]::-moz-placeholder, [type=number]::-moz-placeholder, [type=search]::-moz-placeholder, [type=tel]::-moz-placeholder, [type=time]::-moz-placeholder, [type=url]::-moz-placeholder, [type=color]::-moz-placeholder, textarea::-moz-placeholder {
        color: var(--body-font-family);
    }

[type=text]::placeholder, [type=password]::placeholder, [type=date]::placeholder, [type=datetime]::placeholder, [type=datetime-local]::placeholder, [type=month]::placeholder, [type=week]::placeholder, [type=email]::placeholder, [type=number]::placeholder, [type=search]::placeholder, [type=tel]::placeholder, [type=time]::placeholder, [type=url]::placeholder, [type=color]::placeholder, textarea::placeholder {
        color: var(--body-font-family);
    }

.c-post-filter__filter-item [type=text], .c-post-filter__filter-item [type=password], .c-post-filter__filter-item [type=date], .c-post-filter__filter-item [type=datetime], .c-post-filter__filter-item [type=datetime-local], .c-post-filter__filter-item [type=month], .c-post-filter__filter-item [type=week], .c-post-filter__filter-item [type=email], .c-post-filter__filter-item [type=number], .c-post-filter__filter-item [type=search], .c-post-filter__filter-item [type=tel], .c-post-filter__filter-item [type=time], .c-post-filter__filter-item [type=url], .c-post-filter__filter-item [type=color], .c-post-filter__filter-item textarea {
        margin-bottom: 0;
    }

textarea {
    min-height: 6.25rem;
}

select {
    width: 100%;
    margin-bottom: 1.25rem;
    padding: calc(var(--space) / 2);
    border: solid 0.125rem var(--brand-grey);
}

input[type=submit], button[type=submit] {

    margin-bottom: 0;
}

@media screen and (max-width: 39.9375em) {

.o-flexible-module {
        margin-bottom: 2.5rem
}
    }

@media screen and (min-width: 40em) {

.o-flexible-module {
        margin-bottom: 5rem
}
    }

.o-flexible-module--flush {
        margin-bottom: 0;
    }

@media screen and (min-width: 40em) {

.o-flexible-module--pull-up {
            margin-bottom: -5rem;
            position: relative;
            z-index: -1
    }
        }

@media (min-width: 40em) {

.o-flexible-module:last-child {
            margin-bottom: 0
    }
        }

@media screen and (min-width: 40em) {

.o-job-grid__categories-container {
            padding-bottom: 3.125rem
    }
        }

@media screen and (min-width: 40em) {

.o-category-grid__grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-gap: 1.25rem;

            margin-bottom: 3.125rem
    }
        }

.o-footer {
    background-color: var(--white);
}

@media (min-width: 40em) {

.o-footer__logo {
            padding-right: 3.125rem
    }
        }

@media (max-width: 39.9375em) {

.o-footer__logo {
            text-align: center;
            padding-bottom: 1.5625rem;
            width: 100%
    }

            .o-footer__logo img {
                display: inline-block;
            }
        }

@media screen and (max-width: 39.9375em) {

.o-footer__nav {
            text-align: center
    }
        }

@media screen and (min-width: 40em) {

.o-footer__nav {
            text-align: right
    }
        }

@media (min-width: 40em) {

.o-footer__container {
            max-width: 76.5625rem;
            width: 100%;
            margin: 0 auto
    }
        }

.o-footer__top {
        padding: 3.125rem 0;
    }

.o-footer__bottom {
        padding: 1.5625rem 0;
    }

.o-footer__bottom {
        background-color: #F4F4F4;
        text-align: center;
    }

.o-footer__bottom p {
            color: var(--brand-grey);
        }

@media screen and (min-width: 40em) {

.o-team-members__profiles {
            display: grid
    }
        }

@media screen and (min-width: 40em),screen and (max-width: 63.9375em) {

.o-team-members__profiles {
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 1rem
    }
        }

@media screen and (min-width: 64em) {

.o-team-members__profiles {
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 2rem
    }
        }

@media screen and (max-width: 39.9375em) {

.o-team-members__team-member {
            margin-bottom: 12rem
    }
        }

@media screen and (max-width: 39.9375em) {

.o-wysiwyg {
        padding: 1rem 0
}
    }

@media screen and (min-width: 40em),screen and (max-width: 63.9375em) {

.o-wysiwyg {
        padding: 2rem 0
}
    }

.c-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 11;
}

@media screen and (max-width: 39.9375em) {

.c-header__inner {
            padding: 0.9375rem 0
    }
        }

.c-header__nav {
        padding: var(--space) 0;
    }

.c-header__social {
        display: inline-block;
        vertical-align: middle;
    }

@media screen and (max-width: 39.9375em) {

.c-header__logo img {
            width: 75%
    }
        }

.c-header::after {
        content: '';

        display: block;

        aspect-ratio: 1920 / 8.8;

        background-image: url('/wp-content/themes/saffron-vantage/dist/img/header-line.svg');
        background-repeat: no-repeat;
        background-size: calc(100% + 0.3125rem) auto;
        background-position: center;

        width: 100%;
    }

.c-nav {
    margin: 0;
}

@media (max-width: 83.0625rem) {

.c-nav {
        text-align: right;
        padding-right: 1.25rem
}
        
        .c-nav__link {
            display: none;
        }
    }

@media (min-width: 83.125rem) {

.c-nav {
        display: flex;
        justify-content: space-around;
        align-items: center
}

        .c-nav__link {
            text-decoration: none;
            color: var(--brand-slate);
            font-weight: bold;
            letter-spacing: -0.0313rem;
        }

            .c-nav__link.is-active {
                text-decoration: underline;
            }
    }

.c-hero {
    position: relative;
    text-align: center;

    display: flex;
    justify-content: center;
}

@media screen and (min-width: 40em) {

.c-hero--taxonomy {
            margin-bottom: 3.75rem
    }
        }

@media screen and (max-width: 39.9375em) {

.c-hero--taxonomy {
            margin-bottom: 1.5625rem
    }
        }

@media screen and (min-width: 40em) {

.c-hero {
        padding: 2.5rem 0
}
    }

@media screen and (max-width: 39.9375em) {

.c-hero {
        padding: 1.5625rem 0;
        min-height: 45vw
}
    }

@media screen and (min-width: 40em) {

.c-hero--shorter {
            min-height: 30vh
    }
        }

@media screen and (min-width: 40em) {

.c-hero--taller {
            min-height: 50vh
    }
        }

.c-hero::after, .c-hero::before {
        content: '';

        position: absolute;
        z-index: 1;

        background-size: contain;
        background-repeat: no-repeat;
    }

.c-hero::before {
        top: 0;
        left: 0;

        aspect-ratio: 2/1;
        background-image: url('/wp-content/themes/saffron-vantage/dist/img/shapes/semi-circle-pink.svg');
    }

@media screen and (min-width: 40em) {

.c-hero::before {
            width: 10.3125rem
    }
        }

.c-hero::after {
        bottom: 0;
        right: 0;

        aspect-ratio: 1/1;
        background-image: url('/wp-content/themes/saffron-vantage/dist/img/shapes/triangle-slate.svg');
    }

@media screen and (min-width: 40em) {

.c-hero::after {
            width: 14.875rem
    }
        }

.c-hero.is-pink::after {
        background-image: url('/wp-content/themes/saffron-vantage/dist/img/shapes/triangle-pink.svg');
    }

.c-hero.is-yellow::after {
        background-image: url('/wp-content/themes/saffron-vantage/dist/img/shapes/triangle-yellow.svg');
    }

.c-hero__background-image, .c-hero__background-image img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

.c-hero__background-image img {
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
    }

.c-hero__inner {
        position: relative;
        z-index: 1;
    }

.c-hero--shorter .c-hero__inner {
            display: flex;
            align-items: center;
        }

.c-hero__heading {
        color: var(--white);
    }

.c-hero__sub-heading {
        color: var(--black);
        font-weight: bold;
    }

.c-hero__copy {
        padding-top: 1.25rem;
        margin: 0 auto;
        color: inherit;
    }

@media screen and (min-width: 40em) {

.c-hero__copy {
            width: calc(100% - 21.875rem);
            padding-bottom: 1.875rem
    }

            .is-pull-up .c-hero__copy {
                padding-bottom: 6.25rem;
            }
        }

@media screen and (max-width: 39.9375em) {

.c-hero__copy {
            padding-bottom: 1.25rem
    }
        }

.c-hero.utl-bg-colour-slate, .c-hero.utl-bg-colour-black, .c-hero.utl-bg-colour-grey {
        color: var(--white);
    }

.c-testimonials {
    position: relative;
    text-align: center;
}

.c-testimonials * {
        width: 100%;
    }

.c-testimonials__outer {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12.5vh 0;
    }

.c-testimonials::after, .c-testimonials::before {
        content: '';

        display: block;
        position: relative;
        z-index: 1;

        aspect-ratio: 1920 / 9;

        background-image: url('/wp-content/themes/saffron-vantage/dist/img/header-line.svg');
        background-repeat: no-repeat;
        background-size: 100% auto;

        width: 100%;
    }

.c-testimonials__background-image, .c-testimonials__background-image img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

.c-testimonials__background-image img {
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
    }

.c-testimonials__inner {
        position: relative;
        z-index: 1;
    }

.c-testimonials__inner::before, .c-testimonials__inner::after {
            content: '';
            display: inline-block;
            width: 5rem;

            aspect-ratio: 4/3;

            background-size: contain;
            background-repeat: no-repeat;
        }

.c-testimonials__inner::before {
            background-image: url('/wp-content/themes/saffron-vantage/dist/img/icon-quote-opening.svg');
            margin-bottom: 1.25rem;
        }

.c-testimonials__inner::after {
            background-image: url('/wp-content/themes/saffron-vantage/dist/img/icon-quote-closing.svg');
            margin-top: 1.25rem;
        }

.c-testimonials__content {
        margin-bottom: var(--space);
    }

@media screen and (min-width: 40em) {

.c-post-filter {
        padding-top: 7.5rem;
        padding-bottom: 7.5rem
}
    }

@media screen and (max-width: 39.9375em) {

.c-post-filter {
        padding-top: 1.5625rem;
        padding-bottom: 3.125rem
}
    }

@media screen and (max-width: 39.9375em) {

.c-post-filter__filter-item {
            margin-bottom: 0.9375rem
    }
        }

@media screen and (min-width: 40em) {

.c-post-filter__filter-item {
            padding-bottom: 1.25rem
    }
        }

@media screen and (max-width: 39.9375em) {

.c-post-filter__filter {
            padding-top: 1.5625rem;
            padding-bottom: 1.5625rem
    }
        }

.c-post-filter__posts {
        margin: 0;
    }

@media screen and (max-width: 39.9375em) {}

.c-post-filter__checkbox {
        position: absolute;
        left: -624.9375rem;
        right: -624.9375rem;
        opacity: 0;
    }

.c-post-filter__input-label {
        color: var(--brand-grey);
    }

.c-post-filter__input-label::before {
            content: '';

            width: 2.5rem;
            aspect-ratio: 1 / 1;
            border: 0.125rem solid var(--brand-grey);
            display: inline-block;
            vertical-align: middle;
            margin-right: 0.9375rem;
        }

input[type=checkbox]:checked + .c-post-filter__input-label::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            color: var(--brand-primary);
            font-size: 1.1rem;
            line-height: 2.25rem;
            text-align: center;
        }

.c-post-filter li {
        list-style: none;
    }

.c-post-filter input, .c-post-filter select {
        color: var(--brand-grey);
        font-weight: 700;
    }

.c-job {
    background-color: var(--white);
}

.c-job--listed, .c-job--grid {
        text-decoration: none;
    }

.c-job--listed, .c-job--single {
        border-left: 0.9375rem solid var(--brand-slate);
        box-shadow: 0 0.5625rem 0.9375rem rgb(0 0 0 / 20%);
    }

.c-job--listed {
        display: block;
    }

@media screen and (min-width: 40em) {

.c-job--listed {
            padding: 2.5rem 4.375rem 2.5rem 5.625rem;
            margin-bottom: 1.25rem
    }
        }

@media screen and (max-width: 39.9375em) {

.c-job--listed {
            margin-bottom: 1.5625rem;
            padding: 0.9375rem 1.5625rem 0.9375rem 1.5625rem
    }
        }

.c-job--single {
        display: inline-block;
        width: calc(100% - 3.125rem);

        padding: 3.125rem;
    }

.c-job--grid {
        position: relative;
        box-shadow: 0 0.5625rem 0.9375rem rgb(0 0 0 / 20%);
        display: block;
        text-align: center;
        padding: 0 0.9375rem;
    }

@media (max-width: 1023px) {

.c-job--grid {
            aspect-ratio: 1 / 0.75;
            margin-bottom: 1.5625rem
    }
        }

@media (min-width: 1024px) {

.c-job--grid {
            aspect-ratio: 1 / 0.55;
            height: 100%
    }
        }

.c-job--grid {

        display: flex;
        justify-content: center;
        flex-direction: column;
}

.c-job--grid::before {
            content: '';
    
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0.9375rem;
            display: block;

            transition: width 200ms ease-out;
        }

@media screen and (min-width: 40em) {
        }

.c-job__pre-title {
        color: #ABABAA;
        font-weight: bold;
        margin-bottom: 0;
        font-size: clamp(1.875rem, 1.875rem + 0vw, 1.875rem);
    }

.c-job__location {
        font-weight: 400;
    }

.c-job__title {
        font-size: clamp(2.1875rem, 1.9792rem + 0.5208vw, 2.5rem);
    }

.c-job--grid .c-job__title { 
            font-size: clamp(1.5625rem, 1.3542rem + 0.5208vw, 1.875rem);
        }

.c-job__salary {
        font-size: clamp(1.25rem, 1.0417rem + 0.5208vw, 1.5625rem);
    }

.c-job--grid .c-job__salary {
            margin-bottom: 1.5625rem;
        }

.c-job--single .c-job__salary {
            margin-bottom: 0.9375rem;
        }

.c-job--single .c-job__location, .c-job--single .c-job__sector {
            color: var(--brand-grey);
        }

.c-job--single .c-job__location, .c-job--single .c-job__sector, .c-job--single .c-job__salary {
            font-weight: bold;
            font-size: 1.875rem;
        }

.c-job--grid .c-job__button {
            position: absolute;
            bottom: 0;
            left: 0;

            padding: 0.625rem 0;
            width: 100%;

            color: var(--white);
            text-transform: uppercase;
            font-weight: bold;
        }

.c-job--grid:hover .c-job__button {
            z-index: 2;
            background-color: var(--white) !important;
        }

.c-job--grid .c-job__cover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: calc(100% - 3.125rem);

            opacity: 0;
            transition: opacity 400ms linear;

            display: flex;
            flex-direction: column;
            overflow: hidden;
            align-items: center;
            justify-content: center;
        }

.c-job--grid:hover .c-job__cover {
            opacity: 1;
        }

.c-job__description {
        padding: 1.25rem;
        
        font-size: 1.125rem;
    }

.c-menu-toggle {
  width: 3.75rem;
  height: 2.8125rem;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.65);
  z-index: 12;
}

@media (min-width: 1330px) {

.c-menu-toggle {
    display: none
}
  }

.c-menu-toggle__line {
    display: block;
    position: absolute;
    height: 0.5625rem;
    width: 50%;
    background: var(--brand-pink);
    opacity: 1;
    transition: 0.25s ease-in-out;
  }

.c-menu-toggle__line:nth-child(even) {
      left: 50%;
      border-radius: 0 0.5625rem 0.5625rem 0;
    }

.c-menu-toggle__line:nth-child(odd) {
      left: 0rem;
      border-radius: 0.5625rem 0 0 0.5625rem;
    }

.c-menu-toggle__line:nth-child(1), .c-menu-toggle__line:nth-child(2) {
    top: 0rem;
  }

.c-menu-toggle__line:nth-child(3), .c-menu-toggle__line:nth-child(4) {
    top: 1.125rem;
  }

.c-menu-toggle__line:nth-child(5), .c-menu-toggle__line:nth-child(6) {
    top: 2.25rem;
  }

.is-active .c-menu-toggle__line:nth-child(1), .is-active .c-menu-toggle__line:nth-child(6) {
      transform: rotate(45deg);
    }

.is-active .c-menu-toggle__line:nth-child(2), .is-active .c-menu-toggle__line:nth-child(5) {
      transform: rotate(-45deg);
    }

.is-active .c-menu-toggle__line:nth-child(1) {
      left: 0.3125rem;
      top: 0.4375rem;
    }

.is-active .c-menu-toggle__line:nth-child(2) {
      left: calc(50% - 0.3125rem);
      top: 0.4375rem;
    }

.is-active .c-menu-toggle__line:nth-child(3) {
      left: -50%;
      opacity: 0;
    }

.is-active .c-menu-toggle__line:nth-child(4) {
      left: 100%;
      opacity: 0;
    }

.is-active .c-menu-toggle__line:nth-child(5) {
      left: 0.3125rem;
      top: 1.8125rem;
    }

.is-active .c-menu-toggle__line:nth-child(6) {
      left: calc(50% - 0.3125rem);
      top: 1.8125rem;
    }

@media (max-width: 83.125rem) {

.c-slideout {
        position: fixed;
        right: 0;
        top: 0;
        background-color: #fff;
        height: 100vh;
        z-index: 10;

        transition: 200ms ease-out right;
        right: -100%
}

        .c-slideout__link {
            display: block;
            padding: 1.25rem 0;
            text-decoration: none;
            font-weight: bold;
        }

        .c-slideout.is-open {
            right: 0;
        }
    }

@media (max-width: 1330px) and (min-width: 768px) {

.c-slideout {
        width: 40%;
        padding-top: 5.4375rem
}
    }

@media screen and (max-width: 39.9375em) {

.c-slideout {
        width: 100%;
        padding-top: 3.125rem
}
    }

@media (min-width: 1331px) {

.c-slideout {
        display: none
}
    }

.c-category {
    background-color: var(--white);
    text-decoration: none;
    text-align: center;
}

@media screen and (max-width: 39.9375em) {

.c-category--listed {
            padding: 3.125rem 0;
            margin-bottom: 1.5625rem
    }
        }

@media screen and (min-width: 40em) {

.c-category--listed {
            height: 100%;

            padding: 6.25rem 1.25rem;

            box-shadow: 0 0.5625rem 0.9375rem rgb(0 0 0 / 20%)
    }
        }

.c-category--tabbed {
        position: relative;
        padding: 1.875rem 0;
        width: 100%;
    }

.c-category--tabbed::before {
            content: '';
    
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0.9375rem;
            display: block;

            transition: width 200ms ease-out;
        }

.c-category--tabbed:hover::before {
            width: 100%;
        }

@media (min-width: 769px) {

.c-category--tabbed {
            height: 100%
    }
        }

@media screen and (max-width: 39.9375em) {

.c-category--tabbed {
            margin-bottom: 1.5625rem
    }
        }

.c-category--tabbed .c-category__icon {
            display: inline-block;
            aspect-ratio: 1/1;
            width: 3.125rem;
    
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
        }

.c-category--tabbed:hover .c-category__icon {
            filter: brightness(0) invert(1);
        }

.c-category--tabbed .c-category__title {
            margin-bottom: 0;
        }

.c-category--tabbed:hover .c-category__title {
            color: var(--white);
        }

.c-category--tabbed .c-category__icon, .c-category--tabbed .c-category__title {
            position: relative;
            z-index: 1;
        }

.c-category--listed .c-category__name {          
            padding-bottom: 1.25rem;
            margin-bottom: 0.625rem;
        }

.c-category--listed .c-category__name::after {
                content: '';
                display: block;
                height: 0.625rem;
                width: 9.375rem;
                margin: 1.25rem auto 0;
            }

.c-footer-nav {
    margin: 0;
}

@media screen and (min-width: 40em) {

.c-footer-nav {
        display: flex;
        justify-content: space-around
}
    }

.c-footer-nav__link {
        color: var(--brand-grey);
        text-decoration: none;
    }

@media screen and (max-width: 39.9375em) {

.c-footer-nav__link {
            width: 100%;
            margin-bottom: 1.5625rem
    }

            .c-footer-nav__link:last-child {
                margin-bottom: 0;
            }
        }

@media screen and (min-width: 40em) {

.c-footer-nav__link {
            padding-right: 1.25rem
    }

            .c-footer-nav__link:last-child {
                padding-right: 0;
            }
        }

.c-team-member {
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0.5625rem 0.9375rem rgb(0 0 0 / 20%);

    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5625rem 1.5625rem;

    border-left-width: 0.9375rem;
    border-left-style: solid;

    margin-top: 8.5rem;
}

.c-team-member__profile {
        aspect-ratio: 1/1;

        background-size: cover;
        background-repeat: no-repeat;
        background-position: center top;

        width: 17rem;
        margin-top: -8.5rem;

        margin-bottom: 1.25rem;

        overflow: hidden;
        border-radius: 50%;

        display: inline-block;
    }

.c-team-member__email {
        color: var(--brand-pink);
        font-size: 1.25rem;
        font-weight: bold;

        padding-bottom: 1.25rem;
    }

.c-team-member__email, .c-team-member__phone {
        text-decoration: none;
    }

.c-team-member__phone {
        font-size: 1.875rem;
        font-weight: bold;
        color: var(--brand-slate);
    }

/* @import 'pages/style-guide'; */

@media screen and (max-width: 39.9375em) {

.job-category-taxonomy__intro-container {
            padding-bottom: 1.5625rem
    }
        }

@media screen and (min-width: 40em) {

.job-category-taxonomy__intro-container {
            padding-bottom: 5rem
    }
        }

.job-category-taxonomy__intro {
        border-left: 0.9375rem solid var(--brand-pink);
        padding-left: 1.25rem;
    }

@media screen and (min-width: 40em) {

.job-category-taxonomy__intro {
            display: block;
            height: 100%;
            font-size: 3.4375rem
    }
        }

@media screen and (max-width: 39.9375em) {

.job-category-taxonomy__intro {
            margin-bottom: 1.5625rem;
            font-size: 2.5rem
    }
        }

@media screen and (max-width: 39.9375em) {

.job-category-taxonomy__grid {
            padding-bottom: 1.5625rem
    }
        }

@media screen and (min-width: 40em) {

.job-category-taxonomy__grid {
            padding-bottom: 3.125rem
    }
        }

@media screen and (max-width: 39.9375em) {

.job-category-taxonomy__pagination {
            padding: 1.5625rem 0
    }
        }

@media screen and (min-width: 40em) {

.job-category-taxonomy__pagination {
            padding: 3.125rem 0
    }
        }

.job-category-taxonomy__pagination .page-numbers {
            text-decoration: none;
            padding-right: 0.625rem;
            color: var(--brand-slate);
            font-weight: bold;
        }

.job-category-taxonomy__pagination .page-numbers:last-child {
                padding-right: 0;
            }

.job-category-taxonomy__pagination .page-numbers.current {
                color: var(--brand-pink);
            }

.job-category-taxonomy__pagination .next, .job-category-taxonomy__pagination .prev {
            color: var(--brand-pink);
        }

.single-job__title {
        padding: 3.125rem 0;
        color: var(--brand-grey);
    }

.single-job__related {
        padding-top: 3.125rem;
        padding-bottom: 3.125rem;
    }

.contact__outer {
        text-align: center;
        background-color: var(--white);
        position: relative;
    }

@media screen and (min-width: 40em) {

.contact__outer {
            height: calc(100vh - 5rem);
            display: flex;
            justify-content: center;
            align-items: center
    }
        }

@media screen and (min-width: 40em) {

.contact__inner {
            width: 100%
    }
        }

.contact__shape {
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
    }

@media screen and (min-width: 40em) {

.contact__shape.is-left {
                background-image: url('/wp-content/themes/saffron-vantage/dist/img/shapes/white-red-group.svg');
                aspect-ratio: 1 / 1;

                width: 25rem;
                transform: translateX(-20%);

                opacity: 0.5
        }
            }

@media screen and (min-width: 40em) {

.contact__shape.is-top {
                background-image: url('/wp-content/themes/saffron-vantage/dist/img/shapes/semi-circle-pink.svg');
                aspect-ratio: 1 / 1;

                width: 10.3125rem;
                top: 0;
                left: 0
        }
            }

@media screen and (min-width: 40em) {

.contact__shape.is-right {
                background-image: url('/wp-content/themes/saffron-vantage/dist/img/shapes/triangle-slate.svg');
                aspect-ratio: 1 / 1;
                transform: rotate(180deg) translateX(-56%);
                transform-origin: center;
                opacity: 0.15;

                width: 18.125rem;
                bottom: 0;
                right: 0;
                top: 30%
        }
            }

@media screen and (min-width: 40em) {

.contact__shape.is-bottom {
                background-image: url('/wp-content/themes/saffron-vantage/dist/img/shapes/triangle-slate.svg');
                aspect-ratio: 1 / 1;

                width: 14.875rem;
                bottom: 0;
                right: 0
        }
            }

.contact__details-container {
        padding-top: 1.5625rem;
    }

.contact__details {
        text-align: left;
        list-style-type: none;
    }

.contact__detail {
        padding-bottom: 2.1875rem;
    }

.contact__phone i, .contact__email i {
        font-size: 1.875rem;
        vertical-align: middle;
        padding-right: 0.625rem;
    }

.contact__phone, .contact__email {
        text-decoration: none;
        font-weight: bold;
    }

.contact__phone {
        color: var(--brand-slate);
        font-size: 1.875rem;
    }

.contact__email {
        color: var(--brand-pink);
        font-size: 1.25rem;
    }

.contact__social i {
        font-size: 3.125rem;
        display: inline-block;
        vertical-align: bottom;
        color: var(--brand-slate);

        padding-right: 1.875rem;
    }

.contact__cta-container {
        padding-top: 3.125rem;
    }

.contact::after {
        content: '';

        display: block;

        aspect-ratio: 1920 / 9;

        background-image: url('/wp-content/themes/saffron-vantage/dist/img/header-line.svg');
        background-repeat: no-repeat;
        background-size: 100% auto;

        width: 100%;
    }

.s-wp-cms p:last-child, .s-wp-cms ul:last-child, .s-wp-cms ol:last-child {
        margin-bottom: 0;
    }

.s-wp-cms ol, .s-wp-cms ul {
        margin-bottom: var(--space);
        margin-left: 0;
        padding-left: 1.25rem;
    }

.s-wp-cms ol li, .s-wp-cms ul li {
            padding-left: calc(var(--space) / 2);
        }

.s-wp-cms ol li:not(:last-child), .s-wp-cms ul li:not(:last-child) {
                margin-bottom: calc(var(--space) / 2);
            }

.s-wp-cms ol li::marker, .s-wp-cms ul li::marker {
                font-size: 1.5em;
                color: black;
            }

.s-wp-cms ol li ul, .s-wp-cms ul li ul {
                margin-top: var(--space);
            }

.s-wp-cms ol li ul li::marker, .s-wp-cms ul li ul li::marker {
                    color: black;
                }

.s-wp-cms ol {
        padding-left: 0;

        list-style-type: decimal;
        list-style-position: inside;
    }

.s-wp-cms ol ol {
            padding-left: 1.25rem;
        }

.s-wp-cms img, .s-wp-cms .wp-caption {
        width: auto;
        height: auto !important;
        margin-bottom: var(--space);
    }

.s-wp-cms .wp-caption {
        margin: 0 0 var(--space);
    }

.s-wp-cms .wp-caption img {
            margin-bottom: 0;
            border-bottom: none;
        }

.s-wp-cms .wp-caption .wp-caption-text {
            margin-top: 0;

            font-size: 0.875rem;
            text-align: left;
        }

.s-wp-cms img.alignleft, .s-wp-cms img.alignright {
            width: auto !important;
        }

@media screen and (max-width: 39.9375em) {

.s-wp-cms img.alignleft, .s-wp-cms img.alignright {
                margin: var(--space) auto;
                display: block
        }
            }

@media screen and (min-width: 40em) {

.s-wp-cms img.alignleft {
                margin-right: var(--space);
                float: left
        }
            }

@media screen and (min-width: 40em) {

.s-wp-cms img.alignright {
                margin-left: var(--space);
                float: right
        }
            }

.s-wp-cms img.aligncenter {
            margin: 0 auto var(--space);
            display: flex;
        }

.s-wp-cms blockquote p {
            line-height: inherit;
            color: inherit;
        }

.s-wp-cms p {
        line-height: inherit;
    }

.s-wp-cms p a:not(.c-button) {
            color: inherit;
        }

.s-wp-cms p iframe {
            max-width: 100%;
        }

.s-contact-form h3 {
        display: none;
    }

.s-contact-form .nf-before-form-content {
        display: none;
    }

.s-contact-form .nf-field-label {
        display: none;
    }

.s-contact-form .nf-form-content input:not([type=button]) {
        background-color: transparent;

        border-width: 0 0 0.1875rem 0;
        border-style: solid;
        border-color: #F4F4F4;

        color: var(--brand-slate);
        font-size: 1.875rem;
        font-weight: bold;
    }

.s-contact-form .nf-row:last-child {
        display: none;
    }

/* Clearfix shorthand powered by postcss-clearfix */

/* https://github.com/madeleineostoja/postcss-clearfix */

.utl-clearfix:after {
    content: '';
    display: block;
    clear: both;
}

.utl-hide {
    display: none;
}


/*# sourceMappingURL=styles.css.map*/