/* === Custom Block Styling === */
.testimonialsBlock{
    padding: var(--CB-padding-top) var(--CB-padding-right) var(--CB-padding-bottom) var(--CB-padding-left);
    margin: var(--CB-margin-top) var(--CB-margin-bottom);
    background-color: var(--CB-background-color);
    background-image: var(--CB-background-image);
    background-position: var(--CB-background-position);
    background-size: cover;
}

.testimonialsBlock::after{
    content: '';
    background-color: var(--FC-primary-color);
    mix-blend-mode: multiply;
    opacity: 60%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonials__quote{
    font-size: var(--FC-font-size-32);
    color: var(--FC-white);
    text-align: center;
    font-weight: 600;
}

.testimonials__name{
	color: var(--FC-white);
    font-size: var(--FC-font-size-28);
    font-weight: 600;
    font-style: italic;
    text-align: center;
}

.testimonials__quoteWrapper{
    padding: 32px 0px;
}


.testimonials__paginationRow{
    justify-content: center;
}

.testimonials__paginationWrapper .swiper-button-prev::after, .testimonials__paginationWrapper .swiper-button-next::after{
    color: var(--FC-white);
    font-size: 16px;
}

.testimonials__progressBar {
    width: 85%;
    height: 1px;
    background: var(--FC-white);
    position: relative;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials__progressBarFill {
    width: 0;
    height: 100%;
    background: var(--FC-secondary-color);
    transition: width 0.3s ease-out;
}

.testimonials__paginationWrapper .swiper-pagination{
    display: none;
}

@media screen and (max-width: 991.98px){
    .testimonials__progressBar{
        width: 75%;
    }
}

@media screen and (max-width: 575px){
    .testimonials__paginationWrapper .swiper-pagination{
        display: block;
    }
    .testimonials__progressBar, .testimonials__paginationWrapper .swiper-button-prev, .testimonials__paginationWrapper .swiper-button-next{
        display: none;
    }
    .testimonials__paginationWrapper .swiper-pagination-bullet{
        background-color: transparent;
        border: solid 1px var(--FC-white);
        opacity: 1;
        width: 12px;
        height: 12px;
    }
    .testimonials__paginationWrapper .swiper-pagination-bullet-active{
        background-color: var(--FC-white);
    }
    .testimonialsBlock{
        padding-top: calc(var(--CB-padding-top)/2);
        padding-bottom: calc(var(--CB-padding-top)/2);
    }
}