.testimonials-container {
    display: flex;
    flex-flow: column nowrap;
    transition: background-color 0.5s ease;
    color: var(--color-white);
    background-color: var(--color-dark-blue);
    padding: 50px 0;
}

.testimonial__titles {
    display: flex;
    flex-flow: column nowrap;
    margin-bottom: 35px;
}

.testimonial__titles .title {
    min-width: 100%;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}

.testimonial__titles .title--primary {
    font-size: 40px;
    line-height: 120%;
}

.testimonial__titles .title--sub {
    font-size: 13px;
    line-height: 130%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.testimonial__item--active {
    z-index: 1000;
    position: relative;
}

.testimonial__item .item__inner {
    display: flex;
    height: 100%;
}

.testimonial__item .item__content-container {
    flex: 1;
    padding: 0 100px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    gap: 25px;
}

.testimonials .item__content {
    display: flex;
    flex-flow: column nowrap;
    gap: 25px;
    padding: 25px 0;
}

.testimonials .content__quote {
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 130%;
}

.testimonials .contact__name,
.testimonials .contact__split {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 130%;
}

.testimonials .contact__split {
    margin: 0 5px;
}

.testimonials .contact__title {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
}

.testimonials .content__sector-button {
    display: flex;
}

.testimonials .content__sector-button a {
    display: flex;
    gap: 10px;
    border: 2px solid var(--color-white);
    border-radius: 999px;
    background: transparent;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    color: var(--color-white);
    align-items: center;
    padding: 15px 25px;
    text-decoration: none;
    cursor: pointer;
}

.testimonials .content__sector-button .material-symbols-outlined {
    line-height: 20px;
}

.testimonials .content__sector-button span[class^="icon-"] {
    font-weight: 700;
    font-size: 22px;
}

.testimonials .item__image {
    background-color: var(--color-grey-25);
    position: relative;
    flex: 1;
    height: 400px;
    aspect-ratio: 3 / 2;
}

.testimonials .item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial__navbar-container {
    height: 70px;
    z-index: 2000;
}

.testimonial__navbar {
    display: flex;
    flex-flow: row nowrap;
    list-style: none;
    gap: 46px;
    align-items: center;
    margin: 0;
    height: 100%;
    padding: 0 100px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
}

.testimonial__navbar .navbar__item {
    padding: 10px 0;
    cursor: pointer;
    transition: box-shadow 0.5s;
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 110%;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.testimonial__navbar .navbar__item--active {
    box-shadow: inset 0px -4px 0px #ffffff;
}

.testimonials .item__navigation {
    display: flex;
}

.testimonials .navigation__numbers {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
    align-items: center;
    height: 50px;
    margin-left: 10px;
}

.testimonials .number__pagenumber {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 130%;
}

.testimonials .number__total {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
}

.testimonials .navigation__button span {
    cursor: pointer;
    font-size: 50px;
    width: 50px;
    height: 50px;
}

.testimonials .number__split {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 130%;
}

.testimonials-container .splide__arrow {
    display: none !important; /* Overrides css in editor and was still showing the nav arrows */
}

@media only screen and (max-width: 1200px) {
    .testimonial__item .item__inner {
        flex-flow: column nowrap;
    }

    .testimonial__titles {
        margin-bottom: 25px;
    }

    .testimonial__titles .title {
        text-align: left;
    }

    .testimonial__titles .title--sub {
        margin-bottom: 10px;
    }

    .testimonial__titles .title--primary {
        font-size: 25px;
        line-height: 130%;
    }

    .testimonials .content__quote {
        font-size: 18px;
        line-height: 150%;
    }

    .testimonials-container {
        padding: 35px 25px;
    }

    .testimonials .item__content {
        padding: 0;
    }

    .testimonial__item--active {
        position: relative;
        transition: opacity 0.5s;
        z-index: 1000;
    }

    .testimonial__item .item__content-container {
        padding: 0;
        gap: 0;
    }

    .testimonials .item__image {
        display: none;
    }

    .testimonial__navbar {
        padding: unset;
    }
}
