.quotes-slider {
    position: relative;
    background-color: transparent;
    overflow: hidden;
    margin-bottom: -40px;
    position: relative;
    z-index: 3;
}

.quotes-slider__container {
    position: relative;
}

.quotes-slider__slide {
    display: flex;
    flex-flow: row wrap;
    width: 100%;


}

@media (min-width: 801px) {
    .quotes-slider.padded {
        padding-right: 0;
        margin-bottom: -80px;

    }


}

.quotes-slider__content {
    display: flex;
    flex-direction: column;

    padding: 40px 0px;
}

@media (min-width: 801px) {
    .quotes-slider__content {
        padding: 58px 40px 0px 0;
        width: 66%;
    }
}

.quotes-slider__label {
    width: 100%;
    font-weight: 600;
    margin-bottom: 13px;
    max-width: 765px;
    margin-left: auto;
    color: var(--color-green);

}

.quotes-slider__quote-wrapper {
    position: relative;
    margin-bottom: 18px;
    max-width: 765px;
    margin-left: auto;
    width: 100%;
}

.quotes-slider__quote-wrapper svg {
    position: absolute;
    top: 0;
    left: -50px;
}

.quotes-slider__icon {
    width: 30px;
    height: 30px;
    fill: #A0B0B9;
    opacity: 0.5;
    margin-bottom: 15px;
    display: block;
}

.quotes-slider__text {

    position: relative;
    margin: 0;
    max-width: 600px;

}

.quotes-slider__text svg {
    position: absolute;
    top: 11px;
    left: -46px;
}


.quotes-slider__author {
    margin-top: 10px;
    max-width: 765px;
    margin-left: auto;
    width: 100%;
}

.quotes-slider__name {

    font-weight: 600;

}

.quotes-slider__role {
    color: rgba(39, 52, 67, 0.60);
}

.quotes-slider__image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
}

@media (min-width: 801px) {
    .quotes-slider__image-wrapper {
        height: 490px;
        width: 34%;
    }
}

.quotes-slider__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Controls */
.quotes-slider__controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    pointer-events: auto;
}

/* Pagination */
.quotes-slider .swiper-pagination-custom {
    display: flex;
    gap: 6px;
    position: static;
    width: auto;
    margin-right: 8px;
}



.quotes-slider__nav-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.quotes-slider__nav-btn.swiper-button-disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.quotes-slider__controls-static>* {
    margin: 0;
}

.quotes-slider__controls-static {
    z-index: 10;
    pointer-events: none;
    position: absolute;
    bottom: 157px;
    left: 0;
    width: 60.5%;
    display: flex;
    justify-content: flex-end;
    padding-right: 0;


    /* Let clicks pass through if overlapping, but buttons need pointer-events auto */
}

.quotes-slider__controls-static .swiper-controls {
    pointer-events: all;
}



@media (min-width: 801px) {
    .quotes-slider__controls-static {
        position: absolute;
        bottom: 135px;
        left: 0;
        width: 60.5%;
        display: flex;
        justify-content: flex-end;
        padding-right: 0;
        z-index: 50;
    }
}

@media (max-width: 800px) {
    .quotes-slider blockquote:before {
        top: -71px;
    }

    .quotes-slider__image-wrapper {
        border-radius: 8px;
    }

    .quotes-slider__controls-static {
        left: auto;
        right: 0;
        width: 100%;
        bottom: 0;
    }

    .quotes-slider__controls-static:after {
        content: '';
        display: block;
        padding-bottom: 450px;
    }

    .quotes-slider__image-wrapper {
        height: 350px;
    }
}