@charset "UTF-8";

.ftc-testimonies {
    position: relative;
    padding: 60px var(--global-block-padding) 40px;
    background-color:var(--pmn--pink);
    color:white;
}

.

.ftc-testimonies__swiper {
    --swiper-wrapper-transition-timing-function: initial;
}

.ftc-testimonies__testimony {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto;
    color:white;
}

.ftc-testimonies__testimony__verbatim {
    font-size: 32px;
    line-height: 32px;
    font-weight: bold;
    margin-bottom: 35px;
    color:white;
}

.ftc-testimonies__testimony__verbatim::before {
    content: "“";
}
.ftc-testimonies__testimony__verbatim::after {
    content: "”";
}
.ftc-testimonies__testimony__img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}


.ftc-testimonies__testimony__name {
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
    color:white;
}

.ftc-testimonies[style="background-color: var(--pmn--pink);"] .ftc-testimonies__testimony__name {
    color:white;
}

.ftc-testimonies__testimony__formation {
    font-size: 14px;
    line-height: 22px;
    font-weight: bold;
}

.ftc-testimonies__testimony__position {
    font-size: 14px;
    line-height: 22px;
}

.ftc-testimonies__testimony-cta-container {
    display: flex;
    justify-content: center;    
    align-items: center;
    margin-top: 25px;
    flex-direction: column;
    gap: 10px;
}

.ftc-testimonies__testimony-button-container {
    display: none;
    justify-content: center;    
    align-items: center;
    margin-top: 50px;
}
.ftc-testimonies__testimony-prev,
.ftc-testimonies__testimony-next {
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 10px;
    position: relative;
    /*top: calc(50% - 25px);*/
    background-color: white;
    border: 1px solid white;
    cursor: pointer;
    transition: all 400ms ease-in-out;
}
.ftc-testimonies__testimony-prev:hover,
.ftc-testimonies__testimony-next:hover {
    background-color: rgb(122 162 243 / 30%);
}

.ftc-testimonies[style="background-color: var(--pmn--pink);"] .ftc-testimonies__testimony-prev:hover,
.ftc-testimonies[style="background-color: var(--pmn--pink);"] .ftc-testimonies__testimony-next:hover {
    background-color: rgb(122 162 243 / 0%);
}

.ftc-testimonies__testimony-prev {
    /*left: -75px;*/
}
.ftc-testimonies__testimony-next {
    /*right: -75px;*/
    transform: rotate(180deg);
}
.ftc-testimonies__testimony-prev svg,
.ftc-testimonies__testimony-next svg {
    fill: var(--pmn--pink);
    transition: all 400ms ease-in-out;
}

.ftc-testimonies[style="background-color: var(--pmn--pink);"] .ftc-testimonies__testimony-prev:hover svg,
.ftc-testimonies[style="background-color: var(--pmn--pink);"] .ftc-testimonies__testimony-next:hover svg{
    fill: white;
}


.ftc-testimonies__primary-cta {
}

.ftc-testimonies__secondary-cta:hover {
    background-color:white;
    color:var(--pmn--pink);
    border:2px solid white;
}

@media screen and (min-width: 768px) {
        
    .ftc-testimonies__testimony__verbatim {
        font-size: 48px;
        line-height: 52px;
        padding: 0 7vw;
    }
    
    .ftc-testimonies__testimony__formation {
        font-size: 18px;
        line-height: 28px;
    }
    
    .ftc-testimonies__testimony__position {
        font-size: 18px;
        line-height: 28px;
    }
    
    .ftc-testimonies__testimony-button-container {
        justify-content: space-between;
        margin-top: 0;
        position: absolute;
        top: calc(50% - 50px);
        left: 0;
        width: 100%;
        pointer-events: none;
        z-index: 2;
    }
    .ftc-testimonies__testimony-prev {
        left: 5%;
        pointer-events: all;
    }
    .ftc-testimonies__testimony-next {
        right: 5%;
        pointer-events: all;
    }
    .ftc-testimonies h2 {
        line-height:1.25 ;
    }
}

/* === INTERLIGNE ENTRE TITRES === */

@media screen and (max-width: 767px) {
    .ftc-testimonies h2 {
        line-height:1.3 ;
    }
}