

/* ------- Intro text section ------- */

.intro-text-section {
    position: relative;
    background-color: #FFFFFF;
}

.intro-text-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.intro-text-wrap > div {
    flex: 0 0 100%;
}

@media screen and (min-width: 768px) {

    .intro-text-wrap > div {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media screen and (min-width: 1200px) {

    .intro-text-wrap {
        flex: 0 0 calc(50% - 1.75rem);
    }
}

.intro-text {
    margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {

    .intro-text {
        margin-bottom: 0;
    }
}

.key-concept-box {
    padding: 1.375rem 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.key-concept-box {
    border-bottom: 1px solid var(--neutral-color-dark);
}

.key-concept-box + .key-concept-box {
    margin-top: 1rem;
}

.key-concept-box > div:first-child {
    flex-basis: 50px;
}

.key-concept-box > div:last-child {
    flex-basis: calc(100% - 50px - 1rem);
}

.key-concept-box > div:first-child img {
    width: 100%;
}

@media screen and (min-width: 576px) {

    .key-concept-box > div:first-child {
        flex-basis: 64px;
    }

    .key-concept-box > div:last-child {
        flex-basis: calc(100% - 64px - 1rem);
    }
}

.key-concept-box h3 {
    margin-bottom: 0;
}

.key-concept-box p {
    margin-bottom: 0;
}



/* ------- Model banner section ------- */

.model-banner-section {
    position: relative;
    background-color: var(--primary-color);
}

.model-banner-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .model-banner-content > div {
        flex: 0 0 100%;
    }

@media screen and (min-width: 992px) {

    .model-banner-content > div {
        flex-basis: calc(50% - 1rem);
    }
}

.model-banner-figure {
    margin-bottom: 3.5rem;
}

    .model-banner-figure img {
        display: block;
        max-width: 100%;
        margin: 0 auto;
    }

@media screen and (min-width: 992px) {

    .model-banner-figure {
        margin-bottom: 0;
    }

        .model-banner-figure img {
            margin: 0 auto;
        }
}

.model-banner-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

    .model-banner-background video,
    .model-banner-background img {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 2;
        filter: grayscale(1);
    }

.model-banner-overlay {
    z-index: 5;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background: rgba(0, 43, 77, 0.8);
}

.model-banner-content {
    position: relative;
    z-index: 15;
    align-items: center;
}

    .model-banner-content h2,
    .model-banner-content p {
        color: var(--text-white);
        text-align: center;
        text-wrap: pretty;
    }

.model-banner-text p.ingress {
    padding-bottom: 1rem;
    border-bottom: 1px solid #FFFFFF;
    margin-bottom: 1rem;
}

.model-banner-text {
    text-align: center;
}

@media screen and (min-width: 992px) {

    .model-banner-text,
    .model-banner-content h2,
    .model-banner-content p,
    .model-banner-content li {
        color: var(--text-white);
        text-align: left;
    }

    .model-banner-content a.theme-btn {
        margin-left: 0;
    }
}

ul.model-banner-list {
    display: flex;
    flex-direction: column;
}

    ul.model-banner-list li {
        width: fit-content;
        color: var(--text-white);
    }

@media screen and (min-width: 992px) {

    ul.model-banner-list {
        align-items: flex-start;
    }

        ul.model-banner-list li {
            width: 100%;
        }
}

.model-banner-content a.theme-btn {
    margin-top: clamp(1.5rem, 1.361rem + 0.602vw, 2rem);
}

ul.model-banner-list:has(+ a.theme-btn) {
    margin-bottom: 0;
}


@media screen and (min-width: 992px) {

    .model-banner-content a.theme-btn {
        margin-left: 0;
    }
}

ul.plus-list, .banner-content ul.plus-list, .intro-text ul.plus-list {
    list-style: none;
    padding-left: 0;
}

ul.white-plus-list li, .banner-content ul.white-plus-list li {
    background-image: url(/media/hmrnuqnf/circle-plus-white.svg);
    background-repeat: no-repeat;
    background-position: top clamp(0.188rem, 0.17rem + 0.075vw, 0.25rem) left;
    padding-left: clamp(1.375rem, 1.34rem + 0.15vw, 1.5rem);
    background-size: clamp(0.875rem, 0.84rem + 0.15vw, 1rem);
    text-align: left;
}


/* ------- Image & icon card -------*/

.image-icon-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
}

    .image-icon-cards > a {
        flex: 0 0 100%;
    }

@media screen and (min-width: 768px) {



    .image-icon-cards > a {
        flex-basis: calc(33.33% - 1rem);
    }
}

@media screen and (min-width: 1700px) {

    .image-icon-cards {
        gap: 3rem;
    }

        .image-icon-cards > a {
            flex-basis: calc(33.33% - 2rem);
        }
}

a.image-icon-card {
    text-decoration: none;
    color: var(--offblack);
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2), 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

    a.image-icon-card:hover {
        box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    }

.image-icon-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.image-icon-icon {
    position: absolute;
    display: flex;
    justify-content: center;
    top: -60px;
    left: 0;
    right: 0;
}

.image-icon-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.image-icon-icon img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
}

.image-icon-caption {
    padding: 2.75rem 1.5rem 2rem;
    position: relative;
    flex-grow: 1;
}

    .image-icon-caption h3 {
        color: var(--labs-offblack);
        font-weight: 600;
        font-size: clamp(1.125rem, 1.0231rem + 0.5016vw, 1.625rem);
        margin: 0 0 0.5rem;
    }

    .image-icon-caption p {
        font-weight: 300;
    }

/* ------- Key numbers -------*/

.key-number-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.key-numbers {
    z-index: 15;
    position: relative;
}


.key-numbers .section-header h2 {
    color: #fff;
    z-index: 1;
    position: relative;
}



.key-box {
    background-color: #ffffff;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 220px;
    
}

@media (max-width: 992px) {
    .key-number-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .key-box {
        padding: 1rem;
    }
}


.key-divider {
    width: 45px;
    height: 3px;
    background-color: #0084c9;
    margin: 12px 0;
}

.key-label {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.key-number {
    font-size: clamp(2rem, 1.7453rem + 1.2539vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
}

.key-unit {
    font-size: 1.25rem;
    font-weight: 600;
    vertical-align: baseline;
}


/* ------- Companies banner -------- */

.companies-section {
    position: relative;
    background-color: #FFFFFF;
}

.company-logo-boxes {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 0 auto;
}


@charset "UTF-8";

.company-logo-boxes {
    overflow: hidden;
    padding: 0 40px;
    position: relative;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: auto !important;
    display: flex !important;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
}

.slick-list {
    margin: -0.5rem -1rem;
}

.logo-block {
    display: flex;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.25), 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #fff;
    flex-grow: 1;
    padding: 1rem;
}

.logo-block img {
    filter: grayscale(1);
}

.slick-prev {
    left: 0;
    z-index: 1;
}

.slick-next {
    right:0;
    z-index: 1;
}

.slick-arrow svg {
   font-size: 1.5rem;
}

.slick-arrow:hover {
    background: transparent;
    color: var(--secondary-color);
}

/* ---------- Banner section ---------- */

.banner-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    justify-content: center;
}

.banner-text {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(8px);
    width: 100%;
}


@media (min-width: 992px) {

    .banner-text {
        padding: 2rem;
        width: 50%;
    }

    .banner-section {
        justify-content: flex-start;
    }
}


/* ------- News section -------- */

.news-banner-section {
    position: relative;
    background-color: var(--neutral-color-light);
}

.news-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .news-banner-background img {
        height: 90%;
    }

.news-banner-content {
    position: relative;
    z-index: 2;
}

.news-boxes {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

    .news-boxes .news-box {
        flex: 0 0 240px;
        scroll-snap-align: center;
    }

@media screen and (min-width: 360px) {

    .news-boxes .news-box {
        flex-basis: 280px;
    }
}

@media screen and (min-width: 576px) {

    .news-boxes > div {
        flex-basis: 360px;
    }
}

@media screen and (min-width: 992px) {

    .news-boxes {
        gap: 1rem;
    }

        .news-boxes .news-box {
            flex-basis: calc(33.33% - 0.6667rem);
        }
}

@media screen and (min-width: 1200px) {

    .news-boxes {
        gap: 2rem;
    }

        .news-boxes .news-box {
            flex-basis: calc(33.33% - 1.3333rem);
        }
}

@media screen and (min-width: 1700px) {

    .news-boxes {
        gap: 3rem;
    }

        .news-boxes .news-box {
            flex-basis: calc(33.33% - 2rem);
        }
}

.news-box {
    padding: clamp(1rem, 0.794rem + 0.429vw, 1.25rem);
}

.news-box-caption {
    padding: 0;
}

.news-box-image {
    border-radius: 0;
}

    .news-box-image + .news-box-caption {
        margin-top: 1rem;
    }

.news-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media (min-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ---------- Theme card ---------- */

.theme-card {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.25), 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
}

.theme-card-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

    .theme-card-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.theme-card-caption {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1rem, 0.794rem + 0.429vw, 1.25rem);
}

p.theme-card-tag {
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--secondary-color);
}

    p.theme-card-tag + h2,
    p.theme-card-tag + h3 {
        margin-top: 0.25rem;
    }

.theme-card-text h2,
.theme-card-text h3 {
    margin-bottom: 0.5rem;
}

    .theme-card-text h2:last-child {
        margin-bottom: 0;
    }

.read-more {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

    .read-more svg {
        transition: all ease 0.2s;
    }

    .read-more img {
        transition: all ease 0.2s;
        height: 0.75em;
        margin-left: 0.25em;
    }

    .read-more a:hover,
    .read-more:hover {
        color: var(--neutral-color-dark);
    }

        .read-more:hover img,
        .read-more a:hover img {
            filter: grayscale(1);
            opacity: 0.58;
        }

/* Linked box */

a.theme-card {
    display: flex;
    color: var(--text-dark);
}



/* ------- CTA banner -------- */

.cta-banner {
    position: relative;
    background: linear-gradient(0deg, rgba(0, 43, 77, 0.80) 0%, rgba(0, 43, 77, 0.80) 100%), url(<path-to-image>) lightgray -413px -412.308px / 123.047% 245.178% no-repeat;
    width: 100%;
    aspect-ratio: 3 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-banner-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

    .cta-banner-background video,
    .cta-banner-background img {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 2;
        filter: grayscale(1);
    }

.cta-banner-overlay {
    z-index: 5;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background: rgba(0, 43, 77, 0.8);
}

.cta-banner-content {
    position: relative;
    z-index: 15;
}

    .cta-banner-content * {
        color: var(--text-white);
    }

    .cta-banner-content p {
        margin-bottom: 0;
        margin-right: auto;
        margin-left: auto;
        max-width: 80ch;
    }


    .cta-banner-content .btn {
        margin-top: clamp(1.5rem, 1.083rem + 1.805vw, 3rem);
        margin-right: 1rem;
    }


/* ------- Text & image section-------- */


.text-image-container {
    flex-direction: column;
}

.text-image-container .text-content {
    padding: 2rem;
}

.text-image-container .text-content,
.text-image-container .image-content {
    flex-basis: 50%;
}

.text-image-container:nth-child(odd) .image-content {
    order: 1;
}

.text-image-container:nth-child(odd) .text-content {
    order: 2;
}

.text-image-container:nth-child(even) .text-content {
    order: 2;
}

.text-image-container:nth-child(even) .image-content {
    order: 1;
}


@media screen and (min-width: 992px) {

    .text-image-container {
        flex-direction: row;
    }

        .text-image-container:nth-child(odd) .image-content {
            order: 2;
        }

        .text-image-container:nth-child(odd) .text-content {
            order: 1;
        }

        .text-image-container:nth-child(even) .text-content {
            order: 2;
        }

        .text-image-container:nth-child(even) .image-content {
            order: 1;
        }
        .text-image-container .text-content {
            padding: 3rem;
        }
}

.text-image-container .image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
}

.text-image-container .text-content ul li {
    background-image: url(/media/urwn3llt/circle-plus.svg);
    background-repeat: no-repeat;
    background-position: top clamp(0.188rem, 0.17rem + 0.075vw, 0.25rem) left;
    padding-left: clamp(1.375rem, 1.34rem + 0.15vw, 1.5rem);
    background-size: clamp(0.875rem, 0.84rem + 0.15vw, 1rem);
}

    .text-image-container .text-content ul li p{
        margin-bottom: 0;
    }

.text-image-container .text-content ul {
    list-style: none;
    padding-left: 0;
}

.content-block {
    position: relative;
    z-index: 1;
}
.content-block:nth-child(even) .text-image-container {
    background: var(--primary-color-light) !important;
}
.content-block:nth-child(odd) .text-image-container {
    background: #fff !important;
}

.content-block:nth-child(odd) .primary-text {
    background: #fff !important;
}

.content-block:nth-child(odd) .icon-box {
    background: #fff !important;
}

.content-block:nth-child(even) .primary-text {
    background: var(--primary-color-light) !important;
}

.content-block:nth-child(even) .icon-box {
    background: var(--primary-color-light) !important;
}

.content-block:nth-child(even) {
    background: #fff !important;
}

.content-block:nth-child(odd) {
    background: var(--primary-color-light) !important;
}

    .content-block.after-positions:nth-child(even) {
        background: #fff !important;
    }

.content-block.after-positions:nth-child(odd) {
    background: var(--primary-color-light) !important;
}

/* ------- Image & icon text section-------- */

.primary-section {
    padding-bottom: 2rem;
}

.primary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.image-icon-text-section .primary-image,
.image-icon-text-section .primary-text {
    flex-basis: 50%;
}
.image-icon-text-section .icon-box {
    padding: 1rem;
}


@media screen and (min-width: 1700px) {

    .image-icon-text-section .icon-box {
        padding: 2rem;
    }

}

.icon-box-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}




@media (min-width: 767px) {
    .icon-box-grid.three-block {
    
        grid-template-columns: repeat(3, 1fr);
      
    }

    .icon-box-grid.four-block {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (min-width: 992px) {
    .icon-box-grid.three-block {
        grid-template-columns: repeat(3, 1fr);
    }
    .icon-box-grid.four-block {
        grid-template-columns: repeat(4, 1fr);
    }

}


.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .icon-box img {
        max-width: 80px;
        height: auto;
        margin-bottom: 15px;
    }

    .icon-box p {
        margin: 0;
    }



/* ------- Quote banner -------- */

.quote-banner-section {
    position: relative;
}

.quote-banner-wrap {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    align-items: center;
}

@media screen and (min-width: 992px) {
    .quote-banner-wrap {
        gap: 0;
    }
}

@media screen and (min-width: 992px) {
    .quote-banner-image {
        order: 1;
    }
}



.quote-banner-wrap .quote-banner-image,
.quote-banner-wrap .quote-banner-text {
    flex: 0 0 100%;
}

@media screen and (min-width: 992px) {
    .quote-banner-wrap .quote-banner-image,
    .quote-banner-wrap .quote-banner-text {
        flex-basis: 50%;
    }
}

@media screen and (min-width: 992px) {
    .quote-banner-image {
        order: 2;
    }
}

.quote-banner-text {
    padding: clamp(2rem, 1.444rem + 2.406vw, 4rem) clamp(1.25rem, 0.485rem + 3.308vw, 4rem);
}

.quote-banner-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.quote-banner-text-wrap {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.quote-banner-text a.btn {
    margin-top: 2rem;
}

.quote-banner-text p {
    font-size: clamp(1.125rem, 1.022rem + 0.215vw, 1.25rem);
    font-weight: 400;
}

    p.quote-name,
    .quote-banner-text p.quote-name {
        font-weight: 700;
        font-size: clamp(1rem, calc(1rem + ((1vw - 0.36rem) * 0.1488)), 1.125rem);
        margin: 0;
    }

    p.quote-title,
    .quote-banner-text p.quote-title {
        font-size: clamp(1rem, calc(1rem + ((1vw - 0.36rem) * 0.1488)), 1.125rem);
        font-weight: 300;
        margin: 0;
    }

    .quote-banner-text p:last-child {
        margin-bottom: 0;
    }

@media screen and (min-width: 992px) {

    .quote-banner-image {
        order: 1;
    }

    .quote-banner-text {
        order: 2;
    }

    .quote-banner-text-wrap {
        border-left: 6px solid var(--primary-color);
    }
}

.content-block:nth-child(odd) .quote-banner-wrap {
    background: #fff !important;
}

.content-block:nth-child(even) .quote-banner-wrap {
    background: var(--primary-color-light) !important;
}



/* ------- Text box section -------- */


.text-box-section .section-header {
    position:relative;
    z-index: 3;
}

.box-columns {
    gap: 2rem;
    z-index: 15;
    position: relative;
}


.grid-item {
    background: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .grid-item h2 {
        color: #0C2D3B;
        font-size: 1.8rem;
        margin-bottom: 20px;
        border-left: 4px solid var(--primary-color);
        padding-left: 15px;
    }

@media (max-width: 1024px) {
    .box-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-item:nth-child(n) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .box-grid {
        grid-template-columns: 1fr;
    }

    .grid-item:nth-child(n) {
        grid-column: span 1;
    }

    .grid-item {
        padding: 1rem;
    }
}


/* ------- Our process section ------- */

.our-process-section {
    position: relative
}

.our-process-background-image {
    z-index: 2;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.7;
    mix-blend-mode: soft-light;
}

    .our-process-background-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

.our-process-overlay {
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #fcc088 -28.21%, var(--linearColor2) 59.26%, var(--linearColor1) 117.58%);
}

.our-process-text {
    z-index: 3;
    position: relative;
}

    .our-process-text *,
    .our-process-text p,
    .our-process-text li,
    .our-process-text h3 {
        margin-bottom: 0;
    }

.our-process-step {
    border-top: 1px solid var(--neutral-color);
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

    .our-process-step:last-child {
        padding-bottom: 0;
    }

    .our-process-step > div {
        flex: 0 0 100%;
    }

@media screen and (min-width: 768px) {

    .our-process-step > div {
        flex-basis: calc(50% - 1rem);
    }
}

.our-process-step-headline-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.our-process-step-number {
    flex-basis: 30px;
}

    .our-process-step-number p {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        background-color: var(--labs-orange);
        height: 30px;
        width: 30px;
        font-size: 1.25rem;
        font-weight: 800;
        border-radius: 50%;
    }

@media screen and (min-width: 768px) {

    .our-process-step-number p {
        height: 44px;
        width: 44px;
        font-size: 1.75rem;
    }
}

.our-process-step-headline h3 {
    margin-top: 0;
}

.our-process-step-text {
    margin-top: 0.5rem;
    padding-left: calc(30px + 1rem);
}

@media screen and (min-width: 768px) {

    .our-process-step-text {
        margin-top: 0;
        padding-left: 0;
    }
}

/* ------- AREAS PAGE ------- */

.company-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 600px) {
    .company-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .company-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.company-item {
    background: var(--neutral-light, #F8F8F8);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15), 0 0 2px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    text-align: center;
}

.company-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 40px;
}

    .company-logo-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.company-details {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #fff;
}

.company-unit {
    font-size: 0.875rem;
    color: var(--neutral-color-dark);
    text-transform: uppercase;
}

.company-name {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
    font-weight: 500;
}



/* ------- AREA PAGE ------- */

.text-image-section .company-logo {
    width: 160px;
    margin-bottom: 2rem;
}

.text-image-section .company-logo {
    width: 160px;
    margin-bottom: 2rem;
}


/* 
-----------------------------------------
Contact Page
-----------------------------------------
*/

.contact-info-section > div {
    flex-basis: 100%;
}

.contact-image {
    order: 1;
}
.contact-info {
    order: 2
}
.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-section ul {
    list-style: none;
    padding-left: 0;
}

.contact-info-section svg {
    color: var(--primary-color);
    font-size: 1rem;
}

.contact-info-section .sm-icons svg {
    color: var(--primary-color);
    font-size: 2rem;
}


.contact-info-section .contact-info span {
    margin-right: .25rem;
    font-weight: 700;
}

.contact-info-section a {
    color: var(--text-dark);
}

    .contact-info-section a:hover {
        color: var(--primary-color);
    }


.staff .title {
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

.staff a {
    color: var(--text-dark);
}

.staff a:hover {
    text-decoration: underline;
}

.contact-info-section .contact-info {
    padding: 1rem;
}

@media(min-width: 576px) {


    .staff .cards-container > div > .person {
        flex-basis: calc(50% - 0.75rem);
    }
}

@media(min-width: 992px) {
    .contact-info-section > div {
        flex-basis: 50%;
    }

    .staff .cards-container > div > .person {
        flex-basis: calc(33% - 1rem);
    }

    .contact-info{
        order: 1;
    }

    .contact-image {
        order: 2;
    }
}

@media(min-width: 1200px) {
    .contact-info-section .contact-info {
        padding: 3rem;
    }

    .staff .cards-container > div > .person {
        flex-basis: calc(25% - 1.125rem);
    }
}

@media(min-width: 1600px) {
    .contact-info-section .contact-info {
        padding: 4rem;
    }

}


.card {
    border-radius: 0;
    border: none;
    background: var(--white-color);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
}

    .card .card-body {
        background-color: var(--lightgrey-color);
        padding: 1rem;
    }

    .card .card-img img {
        width: 100%;
        height: auto;
        aspect-ratio: 3/2;
        object-fit: cover;
        object-position: center;
    }

.cards-container > div {
    gap: 1.5rem;
}

.news-grid .news-box:hover, a.card:hover {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}


/*
-----------------------------------------
NEWS
-----------------------------------------
*/

.date {
    color: var(--primary-color);
}

.news-page .news-img {
    max-width: 100%;
}

.news-page .news-text {
    background: var(--lightgrey-color);
}

.news-page .news-item,
a.card {
    transition: all ease-in-out .1s;
}

    .news-page .news-item:hover,
    a.card:hover {
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    }

        .news-page .news-item:hover h3,
        a.card:hover h3 {
            text-decoration: underline;
            text-decoration-thickness: 2px;
        }

.news-page .news-text h3 {
    line-height: 1;
}

.news-page .news-text p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-page .pagination .active > .page-link, .page-link.active {
    color: var(--text-white);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.news-page .pagination .page-link {
    color: var(--text-dark);
    border-radius: 0 !important;
}

/* Text section */

.content-block .text-section,
.news-content-block {
    max-width: 1000px;
    margin: 0 auto;
}

.content-block .text-section img {
    width: 100%;
    height: auto;
}

.content-block .text-section p:last-child,
.news-content-block p:last-child {
    margin-bottom: 0;
}

.content-block .text-section p,
.news-content-block p {
    max-width: unset;
}

.news-content-block:first-child {
    padding-top: 0 !important;
}

.news-content-block:last-child {
    padding-bottom: 0 !important;
}

/* 
-----------------------------------------
Career & Applications
-----------------------------------------
*/
/* Career */
/* 
-----------------------------------------
Cards Container
-----------------------------------------
*/
.cards-container .news-item {
    flex-basis: 100%;
}

.cards-container > div {
    gap: 1.5rem;
}

.cards-container .small-cards {
    justify-content: center;
}

.card {
    border-radius: 0;
    border: none;
}

    .card .card-body {
        background-color: var(--lightgrey-color);
        padding: 1rem;
    }

    .card .card-img img {
        width: 100%;
        height: auto;
        aspect-ratio: 3/2;
        object-fit: cover;
        object-position: center;
    }

    .card .card-body.with-product-count {
        padding: 1.75rem 1rem;
    }

@media (min-width: 768px) {
    .cards-container .card {
        flex-basis: calc(50% - .75rem);
    }

    .card .card-body {
        padding: 1.5rem;
    }

    .card-body h3 {
        color: var(--text-dark);
    }

    .card-body h3 {
        color: var(--text-dark);
    }


        .card .card-body.with-product-count {
            padding: 1.75rem 1.5rem;
        }
}

@media (min-width: 1200px) {
    .cards-container .card {
        flex-basis: calc(33% - 1rem);
    }

    .cards-container .small-cards .card {
        flex-basis: 33%;
    }
}

@media (min-width: 1600px) {
    .cards-container .card {
        flex-basis: calc(33% - .75rem);
    }

    .cards-container .small-cards .card {
        flex-basis: calc(25% - 1.5rem);
    }

        .cards-container .small-cards .card .card-body {
            padding: 1rem;
        }
}

.applications-list .position .card-body {
    background-color: var(--background-white);
}

/*.applications-list .position.closed,
.applications-list .position.closed .card-body {
    background-color: var(--transparent);
}
*/
.applications-list .position.closed {
    filter: grayscale();
}

.applications-list .toggle-positions[aria-expanded="true"] .open,
.applications-list .toggle-positions[aria-expanded="false"] .close {
    display: none;
}

.applications-list .toggle-positions[aria-expanded="false"] .open,
.applications-list .toggle-positions[aria-expanded="true"] .close {
    display: inline;
}

/* Application form */

.application-form .application-form-container {
    gap: 1.5rem;
}

.umbraco-forms-form .application-form input.text,
.umbraco-forms-form .application-form textarea {
    max-width: 100% !important;
    padding: 10px;
    display: block;
    width: 100% !important;
    margin: 0;
    background-color: #F8F8F3;
    border: none;
}

    .umbraco-forms-form .application-form input.text::placeholder,
    .umbraco-forms-form .application-form textarea::placeholder {
        color: #666;
        text-align: left;
        font-family: Archivo;
        font-size: 1rem;
        font-style: normal;
        font-weight: 300;
        line-height: 150%; /* 1.5rem */
    }

.umbraco-forms-form .application-form fieldset {
    padding: 0;
    margin: 0;
}

.umbraco-forms-form .application-form .umbraco-forms-container .message,
.umbraco-forms-form .application-form .umbraco-forms-container .message > .umbraco-forms-field-wrapper,
.umbraco-forms-form .application-form .umbraco-forms-container .message > .umbraco-forms-field-wrapper > textarea {
    height: 100%;
}

.umbraco-forms-form .application-form label {
    color: #140728;
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 1.5rem */
}

.umbraco-forms-form .application-form .umbraco-forms-container .dataconsent,
.umbraco-forms-form .application-form .umbraco-forms-container .files {
    margin-top: 1.5rem;
}

.umbraco-forms-form .application-form .umbraco-forms-navigation {
    padding: 1.5rem 0;
}

.umbraco-forms-form .application-form .umbraco-forms-container {
    flex-basis: 100%;
}

@media (min-width: 992px) {
    .umbraco-forms-form .application-form .umbraco-forms-container {
        flex-basis: calc(50% - .75rem);
    }
}

.umbraco-forms-submitmessage-html {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--lightgrey-color);
}

    .umbraco-forms-submitmessage-html h2 {
        color: var(--primary-color);
    }

/* Custom file upload styling */
.custom-file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
    background-color: #F8F8F3;
    /*border-radius: 5px;*/
}

.custom-file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.custom-file-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

    .custom-file-label .btn {
        margin-right: 1rem;
        padding: .35rem 1rem !important;
        /*border-width: 1px !important;*/
        /*color: #140728 !important;*/
        font-weight: 500 !important;
        /*text-transform: unset !important;*/
        /*border-radius: 5px 0 0 5px !important;*/
        /*border: 2px solid var(--primary-color);
        color: var(--primary-color);
        background-color: #fff;
        border-radius: 0;*/
    }

.file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 1rem;
}



/* Text and image banner */

.text-image-banner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}


.text-image-banner .row {
    width: 100%;
    z-index: 1;
}
    .text-image-banner .banner-image {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }



.banner-content {
    padding: clamp(2rem, 1.444rem + 2.406vw, 4rem) clamp(1.25rem, 0.485rem + 3.308vw, 4rem);
    z-index: 1;
    background: rgba(243, 242, 240, 0.89);
    backdrop-filter: blur(4px);
    width: 100%;
}

    .banner-content p:has(+ a.theme-btn) {
        margin-bottom: 0;
    }

    .banner-content a.theme-btn {
        margin-top: clamp(1.5rem, 1.361rem + 0.602vw, 2rem);
    }

.banner-image .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.banner-icon {
  padding: 2rem;
  max-height: 400px;
}
@media screen and (min-width: 992px) {

    .banner-image .banner-img {
        height: 100%;
    }

}

/* Text image banner on gray background*/

.content-blocks .text-image-banner-section:nth-child(2n) .text-image-banner {
    background-color: #FFFFFF;
}

.content-blocks .text-image-banner-section:nth-child(2n) .banner-image img {
    border-radius: 0;
}

@media screen and (min-width: 992px) {

    .banner-image {
        order: 2;
    }

    .banner-content {
        order: 1;
    }

    .text-image-banner-section.alternate-order .banner-image {
        order: 1;
    }

    .text-image-banner-section.alternate-order .banner-content {
        order: 2;
    }
}


.text-split-block {
    gap: 2rem;
}

    .text-split-block > div {
        flex-basis: 100%;
    }

@media (min-width: 1200px) {
    .text-split-block > div {
        flex-basis: calc(50% - 1rem);
    }
}

.text-split-block iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}


.text-split-block p,
.text-split-block h2,
.text-split-block h3 {
    margin-bottom: 0;
}


/* Quote Block */
.quote {
}

.quote .quote-text-container {
    flex-grow: 1;
}

    .quote .quote-text-container .quote-text {
        font-size: clamp(1.25rem, calc(1.25rem + ((1vw - 0.36rem) * 0.1488)), 1.375rem);
        font-weight: 400;
    }

.quote .quote-text-container,
.quote .quote-img-container {
    flex-basis: 100%;
}

.quote .quote-img-container {
    max-height: 300px;
    max-width: 300px;
}

    .quote .quote-img-container > img {
        height: 100%;
        width: auto;
        object-fit: contain;
        max-width: 100%;
    }


/* Contact banner */

.contact-banner-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 auto;
    max-width: 1000px;
}

.contact-banner-wrap > div {
    flex: 0 0 100%;
}

    .contact-banner-wrap > div:first-child {
        margin-bottom: 1.5rem;
    }

@media screen and (min-width: 768px) {

    .contact-banner-wrap > div:first-child {
        flex-basis: 250px;
        margin-bottom: 0;
    }

    .contact-banner-wrap > div:last-child {
        flex-basis: calc(100% - 250px);
    }
}

@media screen and (min-width: 992px) {

    .contact-banner-wrap > div:first-child {
        flex-basis: 344px;
        margin-bottom: 0;
    }

    .contact-banner-wrap > div:last-child {
        flex-basis: calc(100% - 344px);
    }
}

.contact-banner-image img {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%
}

.contact-person-wrap {
    margin-top: 1.25rem;
}

    .contact-person-wrap h3 {
        margin-bottom: 0;
        padding-top: calc(1.25rem + 4px);
        position: relative;
    }

        .contact-person-wrap h3::before {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            left: calc(50% - 62px);
            height: 4px;
            width: 124px;
            border-top: 4px solid var(--primary-color);
        }

.contact-banner-text {
    text-align: center;
}

ul.contact-person-contact-info {
    list-style: none;
    padding: 0;
}

p.contact-person-title {
    font-size: clamp(1.125rem, 1.09rem + 0.15vw, 1.25rem);
    font-weight: 400;
}

ul.contact-person-contact-info li {
    font-size: clamp(1.125rem, 1.09rem + 0.15vw, 1.25rem);
    font-weight: 400;
}

    ul.contact-person-contact-info li a {
        color: var(--text-dark);
    }

        ul.contact-person-contact-info li a:hover {
            color: var(--primary-color);
        }

    ul.contact-person-contact-info li svg {
        width: 1em;
        margin-right: 0.375rem;
    }

@media screen and (min-width: 768px) {
    .contact-banner-text {
        text-align: left;
        padding-left: 2rem;
    }

    .contact-person-wrap {
        border-left: 4px solid var(--primary-color);
        padding-left: clamp(0.875rem, 0.771rem + 0.451vw, 1.25rem);
    }

    .contact-person-wrap {
        margin-top: 2rem;
    }

        .contact-person-wrap h3 {
            margin-bottom: 0;
            padding-top: 0;
        }

            .contact-person-wrap h3::before {
                display: none;
            }
}



.limit-1-line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.limit-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.limit-3-lines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ------ Process grid ------ */
.process-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 576px) {
    .process-grid.full-width {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }

    .process-grid.half-width {
        grid-template-columns: 1fr 1fr;
    }
}

.process-item {
    padding: 2rem;
    position: relative;
    background-color: var(--secondary-color-dark);
    border-radius: .5rem;
    background-image: url(/media/1j3dab00/volito-waterstamp.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
}

.process-grid.hide-numbers .process-item-number {
    display: none;
}

.process-item-number {
    position: absolute;
    top: -16px;
    left: -16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.75rem;
    line-height: 0;
    text-align: center;
    font-weight: 700;
    color: #45483A;
    background-color: #ffffff;
    border: 4px solid var(--primary-color-dark);
}


/* ─── Process banner ─────────────────────────────────────────────── */

.process-model {
    padding: 2rem;
    background-color: var(--secondary-color-dark);
    max-width: 1504px;
    margin: 0 auto;
}

    .process-model header {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        color: #F8F8F8;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 2px solid #888888;
    }

        .process-model header p {
            color: var(--text-white);
            font-size: 1.125rem;
            margin-bottom: 0;
        }

/* ─── Scroll wrapper (mobile) ─────────────────────────────── */
.process-grid-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ─── Grid ────────────────────────────────────────────────── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    min-width: 720px;
}

/* ─── Cell base ───────────────────────────────────────────── */
.cell {
    background: transparent;
}

/* ─── Row 1: Column headers ───────────────────────────────── */
.cell-header {
    padding-left: 1rem;
    border-left: 2px solid #888888;
}

    .cell-header h3 {
        color: var(--text-white);
        font-size: 1.25rem;
        font-weight: 500;
        line-height: 1.2;
    }

/* ─── Row 2: Full-width span ──────────────────────────────── */
.cell-span {
    grid-column: 1 / -1;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cell-span img {
        width: 100%;
        height: auto;
    }

/* ─── Row 3: Bullet lists ─────────────────────────────────── */
.cell-bullets {
    padding-left: 1rem;
    border-left: 2px solid #888888;
}

    .cell-bullets ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

        .cell-bullets ul li {
            position: relative;
            padding-left: 14px;
            font-size: 1rem;
            line-height: 1.4;
            color: var(--text-white);
        }

        .cell-bullets p {
            color: var(--text-white);
        }

            .cell-bullets ul li::before {
                content: '▸';
                position: absolute;
                left: 0;
            }

/* ─── Highlight modifier (3rd column) ────────────────────── */
.cell--highlight {
    border-left: 3px solid #0693d9;
}