.block-testimonial {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.block-testimonial .slide-container {
    overflow: hidden;
    padding-bottom: 3rem;
}
.block-testimonial .slide.show {
    display: block;
    pointer-events: auto;
    opacity: 1;
    position: relative;
    padding-top: 200px;
}
.block-testimonial .slide-holder {
    overflow: hidden;
    box-shadow: 0px 0px 16px #00000029;
    position: relative;
}
.block-testimonial .slide-row {
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
}
.block-testimonial .slide-item {
     background-color: var(--white);
    padding: 30px 80px 30px 40px;
 }
.block-testimonial .row.control {
    position: absolute;
    bottom: 42px;
    right: 30px;
    flex-direction: column;
    gap: 4px;
}
.block-testimonial .slide.show .control svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.block-testimonial .slide.show .control .deact svg {
    fill: #D1D3D4;
}
.block-testimonial .slide.show .control .prev, .block-testimonial .slide.show .control .next {
    display: inline-block;
    height: 52px;
    width: 52px;
    border: 2px solid white;
    background-color: var(--primary-blue-light);
    border-radius: 26px;
    position: relative;
}
.block-testimonial .slide.show .control .prev {
    transform: rotate(180deg);
}
.block-testimonial .slide.show .control .prev.deact, .slide.show .control .next.deact {
    background-color: #e4e6e8;
    cursor: default;
}
.block-testimonial .slider-arrow-path {
    fill: #fff;
}
.block-testimonial .dots {
    position: absolute;
    right: 33px;
    bottom: 16px;
    display: flex;
    gap: 4px;
}
.block-testimonial .dot {
    width: 14px;
    height: 14px;
    background-color: #CFCFCF;
    border-radius: 50%;
    padding: 0;
    margin: 0;
}
.block-testimonial .dot.active,
.block-testimonial .dot.dot-active {
    background-color: var(--primary-blue-light);
}
.block-testimonial__item-quote {
    font-family: 'TheSansSpire-light', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}
.block-testimonial__item-person {
    font-family: 'TheSansSpire-bold', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}
.block-testimonial__item-link-holder {
    margin-bottom: 1rem;
    margin-right: 26px;
}
.block-testimonial__item-link {
    text-decoration: none;
    font-family: 'TheSansSpire-bold', sans-serif;
    position: relative;
}
.block-testimonial__item-link::after {
    content: '';
    background-image: url('../../images/icons/menu-arrow.png');
    width: 18px;
    height: 10px;
    position: absolute;
    display: block;
    right: -24px;
    bottom: 7px;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: right 0.4s ease;
}
.block-testimonial__item-link:hover::after, .block-testimonial__item-link:focus::after {
    right: -36px;
}
.block-testimonial__item-links {
    display: inline-block;
}
.block-testimonial__img-outer {
    position: absolute;
    top: 0;
    right: -42px;
    z-index: -1;
}
.block-testimonial__img {
    width: 344px;
    height: 344px;
    object-fit: cover;
    border-radius: 50%;
}

/* Responsive styles */
@media (min-width: 400px) {

}
@media (min-width: 576px) {

}
@media (min-width: 768px) {
    .block-testimonial .slide.show {
        padding-top: 60px;
        padding-bottom: 60px;
        margin: 0 30px;
        min-height: 344px;
    }
    .block-testimonial .slide-holder {
        width: 80%;
    }
    .block-testimonial__img-outer {
        top: 50%;
        transform: translateY(-50%);
    }
    .block-testimonial .slide-item {
        padding: 30px 60px 30px 60px;
    }
    .block-testimonial__item-quote {
        font-size: 2.4rem;
    }
    .block-testimonial .row.control {
        flex-direction: row;
        width: calc(80% + 50px);
        justify-content: space-between;
        bottom: 50%;
        transform: translateY(50%);
        right: auto;
        left: -14px;
    }
    .block-testimonial__item-link-holder {
        display: inline;
        margin-right: 52px;
    }

}
@media (min-width: 992px) {

}
@media (min-width: 1200px) {

}