@CHARSET "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --font-family--default: "Inter", serif;
    --font-family--heading: "Inter", serif;

    --font-weight--thin: 100;
    --font-weight--extra-light: 200;
    --font-weight--light: 300;
    --font-weight--regular: 400;
    --font-weight--medium: 500;
    --font-weight--weight-semi-bold: 600;
    --font-weight--bold: 700;
    --font-weight--black: 900;

    --font-size--h1: 36px;
    --font-size--h2: 30px;
    --font-size--h3: 26px;
    --font-size--h4: 20px;
    --font-size--h5: 18px;
    --font-size--h6: 16px;

    --colour--body: var(--wp--preset--color--black);
    --wp--preset--color--link: var(--wp--preset--color--ocean);
    --colour--selection: var(--wp--preset--color--ocean);

    /* Navbar */
    --navbar--background-colour: #FFF;
    --navbar--height: 100px;
    --navbar--item--colour: var(--wp--preset--color--azure-blue);
    --navbar--item--font-family: var(--font-family--default);
    --navbar--dropdown-item--colour: var(--wp--preset--color--azure-blue);

    /* Footer */
    --footer--background-colour: transparent linear-gradient(180deg, #114467 0%, #0D334D 100%) 0% 0% no-repeat padding-box;
    --footer--colour: #FFF;
    --footer--link--colour: #FFF;
}

.has-dark-background-color {
    color: #FFF !important;
}
.has-light-background-color {
    color: var(--colour--body);
}
.wp-block-quote,
.wp-block-quote *,
.has-dark-background-color table tbody,
.has-dark-background-color table tbody * {
    color: var(--colour--body) !important;
}
.has-dark-background-color .wp-block-quote {
    border-color: var(--wp--preset--color--azure-blue);
    color: var(--wp--preset--color--azure-blue) !important;
}
.wp-block-group.container {
    padding: 1.25em 2.375em;
}
a {

}
.has-white-color a {
    color: #FFF !important;
}
figure.img-fluid img {
    height: auto !important;
    width: 100% !important;
}
.video-wrapper > .wp-block-embed__wrapper {
    position: relative;
    margin-top: 45px;
    /* margin-bottom: 200px; */
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}
.video-wrapper > .wp-block-embed__wrapper > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.wp-block-pullquote.full-stop blockquote p::after {
    content: '.';
}

/* Custom styles */
.group--gold {
    background: transparent linear-gradient(180deg, #8C793B 0%, #B49D5A 100%) 0% 0% no-repeat padding-box;;
    border-radius: 20px;
    display: inline-block;
    padding: 44px;
    position: relative;
    z-index: 1;
}
.group--gold::before {
    border: 2px solid #FFF;
    border-radius: 15px;
    bottom: 12px;
    content: '';
    left: 12px;
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: -1;
}

/* Very small devices (landscape phones, 576px and up) */
@media (max-width: 320px) {
    .group--gold {
        padding: 33px !important;
    }
    .group--gold p:first-child {
        font-size: 30px !important;
    }
    .group--gold p:not(:first-child) {
        font-size: 24px !important;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)).container {
        max-width: 720px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)).container {
        max-width: 960px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    :root {
        --font-size--h1: 52px;
        --font-size--h2: 42px;
        --font-size--h3: 30px;
        --font-size--h4: 26px;
        --font-size--h5: 20px;
        --font-size--h6: 16px;
    }
    body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)).container {
        max-width: 1140px;
    }
    
}

/* Extra xl large devices (large desktops, 1400px and up) */
@media (min-width: 1400px) {
    body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)).container {
        max-width: 1320px;
    }
}

/* Publishing Bureau xxl large devices (large desktops, 1600px and up) */
@media (min-width: 1600px) {

}