:root{
    --bs-primary-rgb: 0, 47, 108;
    --bs-secondary-rgb: 252, 215, 87;
    --bs-border-width: 2px;
    --bs-border-color: var(--wp--preset--color--sisal);
    --bs-container: 100%;
    --bs-gutter-x: 1.5rem;
    --br-10: 10px;
    --br-30: 30px;

    --fs-16: 16px;
    --fs-18: clamp(1rem, 0.217vw + 0.962rem, 1.125rem);
    --fs-30: 18px;
    
    --hs-25: clamp(1.125rem, 0.761vw + 0.992rem, 1.563rem);
}

.editor-styles-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
}

ul li::marker {
    color: var(--wp--preset--color--sisal);
}

a {
    color: inherit;
}

.h1 {
    font-family: var(--wp--preset--font-family--domine);
}

h2, .h2 {
    line-height: 1.25;
}

h3, .h3 {
    line-height: 1.3333;    
}

h4, .h4 {
    line-height: 1.4;
}

h5, .h5 {
    line-height: 1.5;
}

h3, .h3, h4, .h4, h5, .h5 {
    font-family: var(--wp--preset--font-family--lato);
    font-weight: 900;
}

.fs-18 {
    font-size: var(--fs-18);
}

.fw-heavy, .fw-black {
    font-weight: 900;
}

.text-primary {
    color: rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important
}

.text-secondary {
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity))!important;
}

.btn, .btn.menu-item>a {
    --bs-btn-padding-x: 1.25rem;
    --bs-btn-padding-y: 0.625rem;
    --bs-btn-font-family: var(--wp--preset--font-family--lato);
    --bs-btn-font-size: var(--fs-18);
    --bs-btn-font-weight: 900;
    --bs-btn-line-height: 1.333;
    --bs-btn-border-radius:var(--br-10);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    position: relative;
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

.btn-primary {
    --bs-btn-color: var(--wp--preset--color--black);
    --bs-btn-bg: var(--wp--preset--color--secondary);
    --bs-btn-border-color: var(--wp--preset--color--secondary);
    --bs-btn-hover-color: var(--wp--preset--color--black);
    --bs-btn-hover-bg: #FFE383;
    --bs-btn-hover-border-color: #FFE383;
    --bs-btn-active-bg: #E5CC75;
    --bs-btn-active-border-color: #E5CC75;
    --bs-btn-active-color: var(--wp--preset--color--black);
    --bs-btn-disabled-bg: var(--wp--preset--color--secondary);
    --bs-btn-disabled-border-color: var(--wp--preset--color--secondary);
}

.btn-outline-primary {
    --bs-btn-color: var(--wp--preset--color--primary);
    --bs-btn-border-color: var(--wp--preset--color--sisal);
    --bs-btn-hover-color: var(--wp--preset--color--primary);
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: var(--wp--preset--color--sisal);;
    --bs-btn-focus-shadow-rgb: 85, 51, 255;
    --bs-btn-active-color: var(--wp--preset--color--primary);
    --bs-btn-active-bg: transform;
    --bs-btn-active-border-color: var(--wp--preset--color--sisal);;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--wp--preset--color--primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--wp--preset--color--sisal);;
    --bs-gradient: none;
    --bs-btn-border-width: 2px;
    border: none;
    overflow: hidden;
}
.btn-outline-primary:before,.btn-outline-primary:after, .btn-outline-primary span.bottom, .btn-outline-primary span:before, .btn-outline-primary span:after {
    position: absolute;
    transition: all .2s ease-in-out;
    border-radius: var(--bs-btn-border-radius);
    border-width: 0;
    border-style: solid;
    border-color: var(--bs-btn-border-color);
}
.btn-outline-primary:before,.btn-outline-primary:after, .btn-outline-primary span.bottom:before, .btn-outline-primary span.bottom:after,
.btn-outline-primary span:not(.bottom):before {
    content: '';
}
.btn-outline-primary span {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Button Outline Top */
.btn-outline-primary:before,.btn-outline-primary:after {
    top: 0;
    border-top-width: var(--bs-btn-border-width);
    height: 100%;
}
.btn-outline-primary:before {
    left: 0;
    right: 15%;
    border-top-right-radius: 0
}
.btn-outline-primary:hover:before {
    right: 100%;
}
.btn-outline-primary:after {
    right: 0;
    left: 100%;
    border-top-left-radius: 0
}
.btn-outline-primary:hover:after {
    left: 15%;
}
/* Button Outline Bottom */
.btn-outline-primary span.bottom:before, .btn-outline-primary span.bottom:after {
    bottom: 0;
    border-bottom-width: var(--bs-btn-border-width);
}
.btn-outline-primary span.bottom:before {
    right: 0;
    left: 15%;
    border-bottom-left-radius: 0
}
.btn-outline-primary:hover span.bottom:before {
    left: 100%;
}
.btn-outline-primary span.bottom:after {
    left: 0;
    right: 100%;
    border-bottom-right-radius: 0
}
.btn-outline-primary:hover span.bottom:after {
    right: 15%;
}
/* Button Outline Left */
.btn-outline-primary span.left:before {
    left: 0;
    width: 100%;
    border-left-width: var(--bs-btn-border-width);
}
.btn-outline-primary span.left:before {
    top: 0;
    bottom: 30%;
    border-bottom-left-radius: 0;
}
.btn-outline-primary:hover span.left:before {
    top: 30%;
    bottom: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: var(--bs-btn-border-radius);
}
/* Button Outline Right */
.btn-outline-primary span.right:before {
    right: 0;
    width: 100%;
    border-right-width: var(--bs-btn-border-width);
}
.btn-outline-primary span.right:before {
    top: 30%;
    bottom: 0;
    border-top-right-radius: 0;
}
.btn-outline-primary:hover span.right:before {
    top: 0;
    bottom: 30%;
    border-top-right-radius: var(--bs-btn-border-radius);
    border-bottom-right-radius: 0
}

.btn-link, .btn-link.menu-item>a {
    --bs-btn-padding-x: 0;
    --bs-btn-padding-y: 4px;
    --bs-btn-font-size: 16px;
    --bs-btn-line-height: 1.5;
    --bs-btn-focus-shadow-rgb: transparent;
    --bs-link-color: var(--wp--preset--color--primary);
    --bs-link-hover-color: var(--wp--preset--color--primary);
    --bs-btn-border-color: var(--wp--preset--color--sisal);
    --bs-btn-border-width: 0;
    --bs-btn-active-color: currentColor;
}
.btn-link:not(.menu-item)::after, .btn-link.menu-item>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 2px solid var(--bs-btn-border-color);
    width: 25px;
    transition: width 0.3s ease-in-out;
}
.btn-link:hover::after, .btn-link:focus-visible::after, .btn-link.menu-item>a:hover::after, .btn-link.menu-item>a:focus-visible::after, .btn-link.menu-item.current-menu-item>a::after {
    width: 100%;
}

.hex-img {
    position: relative;
    display: inline-block;
}

.hex-img img:not(.hex-bg) {
    object-fit: contain;
    -webkit-mask-image: var(--mask-hexagon);
    mask-image: var(--mask-hexagon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    filter: drop-shadow(5px 5px 10px rgb(0 0 0 / 39%));
}

.hex-img .hex-img-inner {
    filter: drop-shadow(5px 5px 10px rgb(0 0 0 / 39%));
    position: absolute;
    top: 12.5%;
    left: 15%;
    width: 72%;
}

/* .hex-img:not(.gcl-sep-left-img):not(.gcl-sep-right-img) img:not(.hex-bg) {
    position: absolute;
    top: 12.5%;
    left: 15%;
    width: 72%;
    /* height: 75%; */
} */

.gcl-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gcl-bg-image, .gcl-bg-image img {
    width: 100%;
    height: 100%;
}
.gcl-bg-image {
    position: absolute;
    top: 0;
    left: 0;
}
.gcl-bg-image img {
    object-fit: cover;
}

.splide:not(.is-active) .gcl-slider-arrows {
    visibility: hidden;
}

.gcl-slider-arrows {
    display: flex;
    justify-content: center;
}

.gcl-slider-arrows .splide__arrow {
    background: transparent;
    border-style: solid;
    border-color: var(--wp--preset--color--sisal);
    border-radius: 0;
    height: 60px;
    opacity: 1;
    position: relative;
    top: auto;
    transform: none;
    width: 60px;
}

.gcl-slider-arrows .splide__arrow svg {
    fill: var(--wp--preset--color--primary);
    width: auto;
    height: auto;
}

.gcl-slider-arrows .splide__arrow.splide__arrow--prev {
    left: auto;
    border-right-width: 1px;
}
.gcl-slider-arrows .splide__arrow.splide__arrow--next {
    right: auto;
    border-left-width: 1px;
}

.gcl-splide {
    --gcl-splide-mb: 60px;
    margin-bottom: var(--gcl-splide-mb);
}
.gcl-splide .gcl-slider-arrows {
    position:absolute;
    bottom:calc(var(--gcl-splide-mb) * -1);
    left:50%;
    transform:translateX(-50%);
}

.gcl-separator {
    margin-top: 20px;
    margin-bottom: 26px;
}

.gcl-logos-wrapper:after, .gcl-logos-wrapper .gcl-quote-marks {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.gcl-logos-wrapper:after {
    content:'';
    background: var(--bg-texture) center bottom/auto 100% no-repeat;
    height: 80px;
}
.gcl-logos-wrapper svg {
    width: 50px;
    fill: var(--wp--preset--color--sisal);
}
.gcl-logo {
    display:flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 286px;
    height: 128px;
    padding: 12px;
    border-radius: var(--br-10);
    background: var(--wp--preset--color--white);
    transition: box-shadow 0.3s ease;
    position: relative;
    margin-bottom: -60px;
}
.gcl-logo.is-visible, .is-visible .gcl-logo {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.gcl-card {
    overflow: hidden;
    border-radius: var(--br-10);
    background: var(--wp--preset--color--white);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.098);
}

.gcl-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.gcl-card-img {
    width: 100%;
    flex-shrink: 0;
}

.gcl-card-link, .gcl-card-link:hover {
    color: inherit;
}

.gcl-insights .gcl-card .gcl-insight-content {
    flex: 1;
    padding: 30px 18px 30px 30px
}

.gcl-insights .gcl-card .gcl-card-meta {
    color: var(--wp--preset--color--primary);
    font-family: var(--wp--preset--font-family--domine);
    margin-bottom: 25px;
}

.gcl-insights .gcl-card .gcl-card-bottom {
    padding: 18px;
}

.gcl-row .gcl-card, .gcl-card-link {
    height: 100%;
}

.gcl-hex {
    --b: 2px;
    --clip-path-hex-border: polygon(0 50%,50% -50%,100% 50%,50% 150%,0 50%,
    var(--b) 50%,
    calc(25% + var(--b)*cos(60deg)) calc(100% - var(--b)*sin(60deg)),
    calc(75% - var(--b)*cos(60deg)) calc(100% - var(--b)*sin(60deg)),
    calc(100% - var(--b)) 50%,
    calc(75% - var(--b)*cos(60deg)) calc(var(--b)*sin(60deg)),
    calc(25% + var(--b)*cos(60deg)) calc(var(--b)*sin(60deg)),
    var(--b) 50%);
    --clip-path-hex-bg: polygon(50% -50%,100% 50%,50% 150%,0 50%);
    --clip-path-hex-bg-color: var(--wp--preset--color--white);
    position: relative;
    display: inline-block;
}

.gcl-hex-big {
    --w: 80px;
    --h: 71px;
}

.gcl-hex-small {
    --w: 48px;
    --h: 43px;
}

.gcl-hex .gcl-hex-bg:before, .gcl-hex .gcl-hex-bg:after {
    content: '';
    display: block;
    aspect-ratio: 1/cos(30deg);
}

.gcl-hex .gcl-hex-bg:before {
    -webkit-clip-path: var(--clip-path-hex-bg);
    clip-path: var(--clip-path-hex-bg);
    background: var(--clip-path-hex-bg-color);
    width: var(--w);
    height: var(--h);
}

.gcl-hex .gcl-hex-bg:after {
    background-color: var(--wp--preset--color--sisal);
    transition: all 0.3s ease-in-out;
    -webkit-clip-path: var(--clip-path-hex-border);
    clip-path: var(--clip-path-hex-border);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.gcl-hex.has-hover:hover .gcl-hex-bg:after {
    background: var(--wp--preset--color--sisal);
}

.gcl-hex .gcl-hex-icon {
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.gcl-acf-block, .gcl-acf-block.gcl-no-bg .gcl-container {
    position: relative;
}

.gcl-acf-block {
    overflow: hidden;
}

.gcl-acf-block.gcl-no-bg:after,.gcl-acf-block .gcl-bg-image:after, .gcl-acf-block .gcl-bg-video:after {
    content: '';
    background: var(--gcl-overlay, transparent);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gcl-acf-block.gcl-no-bg .gcl-container {
    z-index: 1;
}

.gcl-acf-block ul {
    padding-left: 20px
}

.gcl-acf-block ul li {
    margin-bottom: 1rem
}

.accordion-button-icon {
    content: '';
    display: flex;
    max-width: 40px;
    width: 100%;
    height: 40px;
    background: var(--wp--preset--color--secondary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transform: rotate(90deg);
    transition: all 0.3s ease;
}

.accordion-button[aria-expanded="true"] .accordion-button-icon {
    transform: rotate(270deg);
}

@media (min-width:360px) {
    :root {
        --fs-30: 20px;
        --fs-20: 18px;

        --hs-55: 35px;
        --hs-40: 30px;
        --hs-30: 20px;
        --hs-25: 18px;
    }

    h1, .h1 {
        font-size: var(--hs-55);
    }

    h2, .h2 {
        font-size: var(--hs-40);
    }

    h3, .h3 {
        font-size: var(--hs-30);
    }

    h4, .h4 {
        font-size: var(--hs-25);
    }

    h5, .h5 {
        font-size: var(--fs-20);
    }
}

@media (min-width:481px) {
    .gcl-logos-wrapper:after {
        background: linear-gradient(90deg, #fff 0%, #FFFFFF00 50%), linear-gradient(270deg, #FFFFFF 0%, #FFFFFF00 50%), var(--bg-texture) center bottom/100% auto no-repeat;
        height: 150px;
        margin-top: -10px;
    }
    .gcl-logos-wrapper svg {
        width: auto;
    }
    .gcl-logo {
        max-width: 312px;
        height: 140px;
        margin-bottom: -100px;
    }
}

@media (min-width:576px) {
    :root {
        --bs-container: 540px;
    }
}

@media (min-width:768px) {
    :root {
        --bs-container: 720px;

        --gcl-spacing-xs: calc(var(--bs-gutter-x) * .25);
        --gcl-spacing-s: calc(var(--bs-gutter-x) * .5);
        --gcl-spacing-m: calc(var(--bs-gutter-x));
        --gcl-spacing-l: calc(var(--bs-gutter-x) * 1.5);
        --gcl-spacing-xl: calc(var(--bs-gutter-x) * 3);

        --fs-20: 20px;

        --hs-30: 30px;
        --hs-55: clamp(2.125rem, 1.852vw + 1.236rem, 2.625rem);
    }

    .hex-img.left {
        margin-right: 40%
    }
    .hex-img.right {
        margin-left: 40%
    }
}

@media (min-width:992px) {
    :root {
        --bs-container: 960px;

        --fs-30: 30px;
    }

    .gcl-insights .gcl-card .gcl-insight-content {
        padding-top: 34px;
        padding-right: 28px;
        padding-bottom: 40px
    }

    .gcl-insights .gcl-card .gcl-card-bottom {
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (min-width:1200px) {
    :root {
        --bs-container: 1140px;

        --fs-18: 18px;
        --fs-20: 20px;

        --hs-25: 25px;
        --hs-40: 40px;
        --hs-55: 50px;
    }

    .hex-img.left {
        margin-right: 50%
    }
    .hex-img.right {
        margin-left: 50%
    }
}

@media (min-width:1400px) {
    :root {
        --bs-container: 1320px;

        --hs-55: 55px;
    }
}

.acf-block-preview .gcl-insights .gcl-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.acf-block-preview .gcl-row .gcl-col {
    flex: 1 0;
}