@charset "UTF-8";

.ftc-branch-list {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 38px 0px 36px;
    position: relative;
}

.ftc-branch-list[style="background-color: var(--pmn--pink);"] .ftc-branch-list__title,
.ftc-branch-list[style="background-color: var(--pmn--pink);"] .ftc-branch-list__text {
    color:white;
}

.ftc-branch-list__title {
    color: var(--pmn--pink);
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    padding: 0 30px;
    max-width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.ftc-branch-list__text {
    margin: 0px var(--global-sides-margin); /* auto */
    width: 100%;
    /*font-size: 15px;*/
    /*line-height: 22px;*/
    margin-top: 15px;
    max-width: 115ch;
    padding: 0 30px;
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
}
.ftc-branch-list__swiper {
    width: 100%;
    padding: 35px 0;
}

.ftc-branch-list .swiper-slide {
    color: white;
}    

.ftc-branch-list__card {
    width: 207px;
    /*height: 280px;*/
    aspect-ratio: 0.74 / 1;
    border-radius: 30px;
    
    padding: 20px 27px;
    
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    text-decoration: none;
    
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    transition: 0.4s ease-in-out;
}

.ftc-branch-list__card:hover {
    transform:scale(0.97);
    transition: 0.4s ease-in-out;
}

.ftc-branch-list__card__picto {
    aspect-ratio: 1 / 1; 
    object-fit: contain;
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    max-height: 150px;
    
    order: 2;
    margin-top: auto;
}
.ftc-branch-list__card__label {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    color:black;
}
.ftc-branch-list__card__label-picto {
    margin-top: 4px;
}
.ftc-branch-list .arrow-right-svg {
    transition: transform 0.15s ease 0s;
    margin-top: 7px;
}
.ftc-branch-list__card:hover .arrow-right-svg {
    transform: translateX(25%);
}
.ftc-branch-list__cta {
    margin-top: 38px;
}
.ftc-branch-list__pagination {
   position: absolute;
   bottom: 0 !important;
   left: 50%;
   transform: translateX(-50%);
    --swiper-pagination-color: var(--pmn--blue-light);
    --swiper-pagination-bullet-inactive-color: var(--pmn--blue-light);
}

@media screen and (max-width: 767px) {
    .ftc-branch-list__title {
        align-self: flex-start;
        max-width: 100%;
    }
    .ftc-branch-list__cta {
        width: 90%;
    }
   
}

@media screen and (min-width: 576px) {
    .ftc-branch-list {
        padding-top: 80px;
        padding-bottom: 78px;
    }
    .ftc-branch-list__title {
        font-size: 48px;
        line-height: 54px;
    }
    .ftc-branch-list__text {
        text-align: center;
    }
    .ftc-branch-list__card {
        width: 277px;
        padding: 35px;
    }
    .ftc-branch-list__card__label {
        font-size: 22px;
        line-height: 26px;
    }
    
}

@media screen and (min-width: 990px) {
    /*.ftc-branch-list__swiper .swiper-wrapper {
        justify-content: center;
    }*/
}

.ftc-branch-list .swiper-wrapper.locked {
    transform: none !important;
    justify-content: center;
}

svg.ftc-branch-list__card__label-picto {
    fill:var(--pmn--blue);
}

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

@media screen and (max-width: 767px) {
    .ftc-branch-list h2 {
        line-height:1.3 ;
    }
}
@media screen and (min-width: 768px) {
    .ftc-branch-list h2 {
        line-height:1.25 ;
    }
}