
.section--why {
    padding: 41px 0 87px 0;
}
.section--why .container {
    max-width: 1550px;
}
.section--why .section__title {
    width: 100%;
    text-align: center;
    color: var(--color-purple);
}

.section--why .section__header .section__introduction {
    margin: 35px 0 70px 0;
    width: 100%;
    text-align: center;
}

.section--why .section__content .section__introduction {
    margin: 101px 0 0 0;
    width: 100%;
    text-align: center;
}
.section--why .grid--items {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.section--why .card--item {
    width: calc(100% / 6);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}
.section--why .card--item .card__icon{
    max-width: 100%;
    width: 141px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section--why .card--item .card__icon svg {
    width: 100%;
    max-width: 60%;
}
.section--why .card--item .card__icon svg *{
    fill:var(--color-white);
}
.section--why .card--item:nth-child(1) .card__icon { background:var(--color-purple); }
.section--why .card--item:nth-child(2) .card__icon { background:var(--color-pink); }
.section--why .card--item:nth-child(3) .card__icon { background:var(--color-green); }
.section--why .card--item:nth-child(4) .card__icon { background:#960161; }
.section--why .card--item:nth-child(5) .card__icon { background:#7D1069; }
.section--why .card--item:nth-child(6) .card__icon { background:var(--color-orange); }

.section--why .card--item .card__title{
    margin-top:35px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(16px, 2.7vw, 22px);
    line-height: 1.3;
    font-weight: 400;
}

.section--why .card--item:nth-child(1) .card__title { color:var(--color-purple); }
.section--why .card--item:nth-child(2) .card__title { color:var(--color-pink); }
.section--why .card--item:nth-child(3) .card__title { color:var(--color-green); }
.section--why .card--item:nth-child(4) .card__title { color:#960161; }
.section--why .card--item:nth-child(5) .card__title { color:#7D1069; }
.section--why .card--item:nth-child(6) .card__title { color:var(--color-orange); }

.section--why .card--item .card__text{
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(14px, 2.7vw, 18px);
    line-height: 1.3;
    font-weight: 400;
}

@media all and (max-width: 1350px){
    .section--why .grid--items {
        justify-content: center;
        gap:50px 20px;
    }
    .section--why .card--item {
        width: calc(100% / 4 - 20px);
    }
}
@media all and (max-width: 1080px){
    .section--why .card--item {
        width: calc(100% / 3 - 20px);
    }
}
@media all and (max-width: 750px){
    .section--why .card--item {
        width: calc(100% / 2 - 20px);
    }
}
    /** Témoignages **/
.section--temoignages {
    background: var(--color-orange);
    padding: 91px 0;
}

.section--temoignages .section__title {
    color: var(--color-white);
    width: 100%;
    text-align: center;
}

.section--temoignages .section__content {
    width: 100%;
}

.section--temoignages .slider-temoignages {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 35px 0;
}


.section--temoignages .section__footer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
}

.section--temoignages .section__footer button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    border-radius: 50%;
    transition: linear .15s;
}

.section--temoignages .section__footer button svg * {
    fill: var(--color-white);
    transition: linear .15s;
}
.section--temoignages .section__footer button:hover{
    background:var(--color-white);
}
.section--temoignages .section__footer button:hover svg * {
    fill: var(--color-orange);
}

.section--temoignages .slider-track-temoignages {
    width: calc(100% - 100px);
    min-height: 150px;
    padding: 20px;
    position: relative;
    text-align: center;
}

.section--temoignages .temoignage-item {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
}

.section--temoignages .temoignage-item .citation {
    color: var(--color-white);
    font-size: clamp(16px, 2.7vw, 18px);
    line-height: 1.3;
    font-weight: 400;
}

.section--temoignages .temoignage-item .author {
    color: var(--color-white);
    font-size: clamp(16px, 2.7vw, 18px);
    line-height: 1.3;
    font-weight: 700;
    margin-top:30px;
}

.section--temoignages  .temoignage-item.active {
    display: block;
    position: relative;
    animation: fadeInTemoignage 1s ease forwards;
}

@keyframes fadeInTemoignage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@media all and (max-width: 550px){
    .section--temoignages .slider-track-temoignages {
        width: 100%;
    }
    .section--temoignages .section__footer {
        position: relative;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap:20px;
    }
}
