@charset "UTF-8";


.ftc-content {
    --duration: 300ms;
    --timing-function: ease;
    --text-highlighted-color: var(--pmn--blue);
    --bloc-right-color: var(--evo--grey);
}
.ftc-content.grey {
    --bloc-right-color: var(--evo--black);
}
.ftc-content__title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 31px;
    color:var(--pmn--pink);
}
.ftc-content[style="background-color: var(--pmn--pink);"] h2.ftc-content__title {
    color:var(--pmn--pink);
}

.ftc-content[style="background-color: var(--pmn--pink);"] h3.ftc-content__section__title {
    color:black;
}

.ftc-content__section__title {
    border-bottom: 1px solid rgba(0,0,0,0.6);
    transition:0.4s ease-in-out;
}

.ftc-content__section__title:hover {
    color:var(--pmn--blue);
    transition:0.4s ease-in-out;
}

.ftc-content__section__title[aria-expanded="true"] {
    color: var(--text-highlighted-color);
}

.ftc-content[style="background-color: var(--pmn--pink);"] h3.ftc-content__section__title[aria-expanded="true"] {
    color: var(--text-highlighted-color);
}

.ftc-content__section__item__picto {
    width: 30px;
    height: 30px;
}
/*.ftc-content,
.ftc-content__list__item__title {
    color: white;
}*/

.ftc-content__list__item__title {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    column-gap: 15px;
}
.ftc-content[style="background-color: var(--pmn--pink);"] .ftc-content__list__item__title,
.ftc-content[style="background-color: var(--pmn--pink);"] .ftc-content__list__item__text {
    color:white;
}
.ftc-content__list__item {
    display: block;
    text-decoration: none;
    color: var(--pmn--black);
}
.ftc-content__list__item__title::before,
.ftc-content__list__item__title::after {
    content: "";
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    flex: none;
}
.ftc-content__list__item__title::before {
    width: 30px;
    height: 30px;
}
a.ftc-content__list__item .ftc-content__list__item__title::after {
    width: 22px;
    height: 22px;
    background-image: var(--arrow-right-icon);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: auto;
    align-items: flex-start;
    
    animation: 300ms ease 0s shake-it both alternate infinite paused;
}

.ftc-content[style="background-color: var(--pmn--pink);"] a.ftc-content__list__item .ftc-content__list__item__title::after {
    background-image: var(--pmn--icon--arrow--right--white);
}

.ftc-content__list__item:hover .ftc-content__list__item__title::after {
    animation-play-state: running;
}

.ftc-content__list__item__text a {
    text-decoration: none;
    color: var(--text-highlighted-color);
    font-weight: 700;
}

@media screen and (max-width: 1199px) {
    .ftc-content {
        padding: 56px var(--global-block-padding) 55px;
    }
    .ftc-content__section__title {
        font-size: 24px;
        line-height: 28px;
        
        padding-bottom: 24px;
        margin-bottom: 20px;
        
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
        
        cursor: pointer;
    }
    .ftc-content__section__title::after {
        flex: none;
        content: "";
        width: 30px;
        height: 30px;
        background-image: var(--ftc--icon--chevron--blue);
        transition: transform var(--duration) var(--timing-function) 0s;
    }
    .ftc-content__section__title[aria-expanded="true"]::after {
        transform: rotateZ(180deg);
        background-image: var(--ftc--icon--chevron--blue);
    }
    .ftc-content__list {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows var(--duration) var(--timing-function) 0s;
    }
    .ftc-content__section__title[aria-expanded="true"] + .ftc-content__list {
        grid-template-rows: 1fr;
    }
    .ftc-content__list > div {
        overflow: hidden;
    }
    .ftc-content__list__item {
        font-size: 14px;
        line-height: 22px;
        margin-top: 20px;
    }
    .ftc-content__list__item:last-child {
        margin-bottom: 24px;
    }
    .ftc-content__list__item__title {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 8px;
    }
}
@media screen and (min-width: 1200px) {
    .ftc-content {
        display: grid;
        grid-template-areas:
            ". list"
            ". list"
            ". list"
            ". list";
        grid-template-columns: 1fr auto;
    }
    
    .ftc-content .sticky-container {
        position: sticky;
        top: 150px;
        padding:0 var(--global-block-padding);
        background-color:white;
    }
    
    .ftc-content__section__title {
        font-size: 32px;
        line-height: 38px;
        padding-bottom: 37px;
        margin-bottom: 37px;
        cursor: pointer;
    }
    .ftc-content__section__title:last-of-type {
        margin-bottom: 72px;
    }
    .ftc-content__list {
        grid-area: list;
        width: 594px;
        padding: 83px 0 46px;
        color:var(--pmn--black);
        
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease 0s;
    }
    /*.ftc-content__section__title[aria-expanded="true"] + .ftc-content__list {*/
    .ftc-content__list[data-open="true"] {
        opacity: 1;
        pointer-events: all;
    }
    
    .ftc-content__list__item {
        font-size: 18px;
        line-height: 28px;
        padding: 0 77px 0 76px;
        margin-bottom: 38px;
    }
    .ftc-content__list__item__title {
        font-size: 24px;
        line-height: 28px;
    }
    .ftc-content__list__item__text {
        margin: 0 80px 0 45px;
    }
    
    /* CLIC IMG */
     .ftc-content__section__title,
     .ftc-content__section__title span {
         position: relative;
         z-index: 5;
     }  
         
     .ftc-content__section__title .cursor {
        position: absolute;
        top: 50%;
        right: 0;
        width: 0;
        height: 0;
        pointer-events: none;
        transition: all 0.1s linear, top 0ms linear, left 0ms ease-in-out;
        z-index: 1;
    }
    .ftc-content__section__title .cursor-image-show {
        width: 200px;
        height: 200px;
        border-radius: 50px;
        transform: translateY(-60%) rotate(5deg);
        background-size: cover;
        transition: all 0.2s linear, top 0ms linear, left 0ms ease-in-out;
        border: none;
        mix-blend-mode: normal;
        background-size: cover;
    }
}

@media screen and (min-width: 769px) {
    .ftc-content__title {
        font-size: 48px;
        line-height: 52px;
        margin-top: 45px;
        margin-bottom: 40px;
    }
    
   
}

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

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