.crf-testimony-slider {
    z-index: 0; /* to prevent its inner content to get over any fixed UI element */
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 50px var(--global-lateral-padding);
    overflow: hidden;
}
.crf-testimony-slider.crf-testimony-slider--blue {
    background-color: var(--crf--shiny-blue);    
    color: white;
}

.crf-testimony-slider::before,.crf-testimony-slider::after {
    content: "";
    position: absolute;
    top: 5%;
    right: 0;
    width: 100%;
    height: 90%;
    background-image: url(../../assets/images/svg/quote-bg-blue.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    pointer-events: none;
}
.crf-testimony-slider.crf-testimony-slider--blue::before, 
.crf-testimony-slider.crf-testimony-slider--blue::after {
    background-image: url(../../assets/images/svg/quote-bg-white.svg);
}

.crf-testimony-slider::after {
    transform: translate(30px);
    opacity: 0.08;
}
.crf-testimony-slider .testimony-slider {
    width: 100%;
}

.crf-testimony-slider__swiper-direction {
    position: absolute;
    top: 35%;
    left: 5%;
    display: flex;
    justify-content: space-between;
    width: 90%;
    z-index: 3;
    pointer-events: none;
}
.crf-testimony-slider__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--crf--shiny-blue);
    border-radius: 50%;
    cursor: pointer;
    transform: scale(1);
    pointer-events: all;
    transition: 400ms ease-in-out ;
    transition-property: transform opacity;
}
.crf-testimony-slider__button:hover {
    transform: scale(0.9);
}
.crf-testimony-slider__button.swiper-button-disabled {
    /* opacity: 0.5; */
    opacity: 0;
    pointer-events: none;
}

.crf-testimony-slider__button svg {
    fill: white;
}
.crf-testimony-slider--blue .crf-testimony-slider__button {
    background-color: white;
}
.crf-testimony-slider--blue .crf-testimony-slider__button svg {
    fill: var(--crf--shiny-blue);
}

.crf-testimony-slider__title {
    font-size: 32px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 25px;
}
.crf-testimony-slider--white .crf-testimony-slider__title {
    color: var(--crf--shiny-blue);
}

.testimony-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    box-sizing: border-box;
}

.crf-testimony-slider .img-block, .text-block {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.crf-testimony-slider .img-block {
    width: 90%;
    display: flex;
    flex-direction: column;
}
.crf-testimony-slider .testimony-img-container {
    margin: 0 auto;
    width: 80%;
    transform: rotate(-3deg);
}
.crf-testimony-slider .testimony-img img {
    aspect-ratio: 252/338;
    margin: 0 auto;
}

.crf-testimony-slider .quote {
    font-size: 24px;
    line-height: 28px;
    font-style: italic;
    margin-bottom: 15px;
}
.crf-testimony-slider .name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.crf-testimony-slider .name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.crf-testimony-slider--white .name  {
    color: var(--crf--shiny-blue);
}

.crf-testimony-slider .function {
    font-size: 16px;
    line-height: 16px;
}

.crf-testimony-slider .tag {
    display: inline-block;
    font-size: 13px;
    line-height: 32px;
    font-weight: 500;
    color: white;
    padding: 0 15px; 
    border-radius: 5px;
    margin-top: 15px;
}

.testimony-slide-cta-container {
    display: flex;
    margin-top: 20px;
}
.crf-testimony-slider .cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.crf-testimony-slider .cta {
    width: 100%;
}

@media screen and (min-width: 991px) {
    .crf-testimony-slider {
        padding: 70px var(--global-lateral-padding);
    }

    .crf-testimony-slider__title {
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 60px;
    }
    .crf-testimony-slider__swiper-direction {
        top: 50%;
    }
    
    .testimony-slide {
        flex-direction: row;
    }
    
    .crf-testimony-slider .img-block, .crf-testimony-slider .text-block {
        width: 50%;
    }
    
    
    .testimony-img-container {
        width: 100%;
    }
    
    .crf-testimony-slider .quote {
        font-size: 36px;
        line-height: 48px;
    }
    .crf-testimony-slider .name {
        font-size: 24px;
        line-height: 24px;
        font-weight: 500;
    }
    .crf-testimony-slider .function {
        font-size: 18px;
        line-height: 16px;
    }
    .crf-testimony-slider .cta {
        width: auto;
    }
    
}