:root,
:host{
    --font-family: 'Kumbh Sans', sans-serif;
    --pretitle-font-family:  var(--font-family);
    --pretitle-font-weight: 200;
    --pretitle-font-size: 3rem;


    --title-font-family:  var(--font-family);
    --title-font-weight: 900;
    --title-font-size: 5rem;

    --subtitle-font-family:  var(--font-family);
    --subtitle-font-weight: 900;
    --subtitle-font-size: 3rem;

    --content-font-family:  var(--font-family);
    --content-font-weight: 100;
    --content-font-size: 2rem;
    font-size: 10px;

    --block-font-family:  var(--font-family);
    --block-pretitle-font-family:  var(--font-family);
    --block-pretitle-font-weight: 300;
    --block-pretitle-font-size: 1.4rem;
    --block-pretitle-text-align: left;


    --block-title-font-family:  var(--font-family);
    --block-title-font-weight: 700;
    --block-title-font-size: 2rem;
    --block-title-text-align: left;

    --block-subtitle-font-family:  var(--font-family);
    --block-subtitle-font-weight: 700;
    --block-subtitle-font-size: 1.2rem;
    --block-subtitle-text-align: left;

    --block-content-font-family:  var(--font-family);
    --block-content-font-weight: 100;
    --block-content-font-size: 1.4rem;
    --block-content-text-align: left;

    --block-button-font-family:  var(--font-family);
    --block-button-font-weight: 300;
    --block-button-font-size: 1.2rem;
    --block-button-text-align: center;

    --slides-gap: 22px;

}

[data-block="InlineSectorsBlock"]{
    padding: 64px 0;
    min-height: 300px;
    text-align: center;
    margin: 0;
    font-size: 100%;
}

section.sectors [data-value="content"],
section.sectors [data-value="pretitle"],
section.sectors [data-value="subtitle"],
section.sectors [data-value="title"]{
    text-align: inherit;
    width: 80%;
    margin: 0 auto;
    max-width: 800px;
}

section.sectors .icon {
    position: relative;
    width: 64px;
    height: 64px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 10em;
    margin: 1rem auto;
}

section.sectors [data-value="pretitle"] {
    font-family: var(--pretitle-font-family, --font-family);
    font-weight: var(--pretitle-font-weight, 300);
    font-size: var(--pretitle-font-size, 2rem);
    line-height: 0.9em;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

section.sectors [data-value="title"] {
    font-family: var(--title-font-family, --font-family);
    font-weight: var(--title-font-weight, 700);
    font-size: var(--title-font-size, 3rem);
    line-height: 0.9em;
    letter-spacing: -0.02em;
}

section.sectors [data-value="content"]{
    font-family: var(--content-font-family, --font-family);
    font-weight: var(--content-font-weight, 100);
    font-size: var(--content-font-size, 1.2rem);
    line-height: normal;
    letter-spacing: 0;
}



section.sectors [data-value="subtitle"],
section.sectors [data-value="title"]{
    margin: 0.2em auto;
}

section.sectors [data-value="title"]{
    margin: 0 auto;
}

section.sectors [data-value="content"]{
    margin-top: 1em;
}

section.sectors .splide{
    width: 90%;
    max-width: 980px;
    margin: 64px auto;
}

section.sectors .splide__arrow{
    background: transparent;
}

section.sectors .splide__arrow--prev{
    left: 0;
    transform: translate(-40px, -50%);
}

section.sectors .splide__arrow--next{
    right: 0;
    transform: translate(40px, -50%);
}

section.sectors .splide__pagination{
    transform: translate(0, 32px);
}

section.sectors .splide__pagination__page{
    width: 12px;
    height: 12px;
}

section.sectors .splide__pagination__page.is-active{
    background-color: var(--color-accented);
    transform: scale(1);
    opacity: 1;
}

section.sectors .splide__list{
    padding: 32px 0 !important;
    align-items: flex-start;
    column-gap: var(--slides-gap);
}

/*section.sectors .splide__list .splide__slide[aria-hidden="true"]{
    box-shadow: none;
}*/

section.sectors .blocks .block {
    background-color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    width: calc(33% - var(--slides-gap));
}

section.sectors .blocks .block .block-content{
    padding: 1rem;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 32px;
    position: relative;
    font-size: 100%;
}

section.sectors .blocks .block .icon{
    position: absolute;
    width: 100%;
    padding-top: 56.25%; /* 16/9*/
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
}

section.sectors .blocks .block .icon + .block-content{
    margin-top: 56.25%;
}

section.sectors .block-content{

}

section.sectors .block-content > * {
    text-align: left;
    width: 100%;
}

section.sectors .block-content .pretitle{
    font-family: var(--block-pretitle-font-family, --block-font-family);
    font-weight: var(--block-pretitle-font-weight, 700);
    font-size: var(--block-pretitle-font-size, 1.2rem);
    text-align: var(--block-pretitle-text-align, center);
    margin: 0;
    line-height: 1;
    display: inline-block;
}

section.sectors .block-content .title{
    font-family: var(--block-title-font-family, --block-font-family);
    font-weight: var(--block-title-font-weight, 700);
    font-size: var(--block-title-font-size, 1.2rem);
    text-align: var(--block-title-text-align, center);
    line-height: 1;
    letter-spacing: 0;
    margin: 0.2em 0 0;
}

section.sectors .block-content .content{
    line-height: normal;
    letter-spacing: 0;
    margin: 1em auto;
    font-family: var(--block-content-font-family, --block-font-family);
    font-weight: var(--block-content-font-weight, 500);
    font-size: var(--block-content-font-size, 1.2rem);
    text-align: var(--block-content-text-align, center);
}

section.sectors .block-content nav{
    display: flex !important;
    margin-top: 32px;
    justify-content: center;
    align-items: center;
}

section.sectors .block-content nav a {
    margin-top: 0;
    font-family: var(--block-button-font-family, --block-font-family);
    font-weight: var(--block-button-font-weight, 500);
    font-size: var(--block-button-font-size, 1rem);
    text-align: var(--block-button-text-align, center);
    text-transform: uppercase;
    padding: 0.5em 2em;
    border-radius: 10em;
}

@media all and (max-width: 980px) {
    section.sectors .blocks .block{
        width: calc(50% - var(--slides-gap));
    }
}

@media all and (max-width: 500px) {
    section.sectors .blocks .block{
        width: calc(96% - var(--slides-gap));
    }
}