section,
header {
    margin-bottom: 8rem;
}
.bandeau {
    position: relative;
    background: var(--url) no-repeat center;
    background-size: cover;
}
.bandeau::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--color-pink);
    opacity: 0.7;
    z-index: 1;
    position: absolute;
}
/* .bandeau__text {
    position: absolute;
    z-index: 2;
    text-align: center;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    width: 100%;
} */
.bandeau__text {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 5rem 2rem;
}
.bandeau__img {
    position: absolute;
    z-index: -1;
    text-align: center;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    width: 100%;
}
.bandeau__text h2 {
    text-transform: uppercase;
}
h2.p {
    letter-spacing: 0;
    font-weight: 400 !important;
}
.text__counter {
    margin-top: 1rem;
}
.text__counter--counter {
    font-size: var(--fs-400);
}
h1 {
    text-transform: uppercase;
    margin-bottom: 2rem;
}
h1 .firstLine {
    font-size: var(--fs-1000);
}
h1 .secondLine {
    font-size: var(--fs-600);
    line-height: 1.4em;
    display: block;
}
h2.block,
h2.block--appel .firstLine,
h2.block--appel .secondLine {
    text-transform: uppercase;
}
h2.block {
    rotate: -3deg;
}
span.h2--block {
    color: var(--color-pink);
    background-color: #000;
    rotate: -3deg;
    margin-bottom: 4rem;
    padding: 0.5rem 1rem;
    line-height: 1.5em;
}
h2.block {
    margin-bottom: 4rem;
}
h2.block--appel,
h2.block--appel div {
    margin-inline: auto;
    text-align: center;
}
 h2.block--appel .firstLine span.h2--block {
    font-size: 1.5em;
    color: var(--color-pink);
    background-color: var(--color-pink);
}
h2.block--appel .secondLine {
    rotate: 4deg;
}
h2.block--appel .secondLine .outline {
  -webkit-text-stroke-color: var(--color-pink);
}
.outline {
    color: var(--color-pink);
    text-shadow:
            2px 2px 0 #000,
            -2px -2px 0 #000,  
            2px -2px 0 #000,
            -2px 2px 0 #000,
            2px 2px 0 #000;
}
.outline--invert {
    color: #000;
    text-shadow:
            2px 2px 0 var(--color-pink),
            -2px -2px 0 var(--color-pink),  
            2px -2px 0 var(--color-pink),
            -2px 2px 0 var(--color-pink),
            2px 2px 0 var(--color-pink);
}
.appel {
    display: flex;
    gap: 4rem
}
.appel__text {
    flex: 1.5 1 0;
    width: 0;
}
.appel__conclusion {
    font-size: var(--fs-500);
    margin-block: 1rem 2rem;
}
.appel__text p.appel__btn {
    margin-inline: auto;
    text-align: center;
}
.appel__signature {
    flex: 1 1 0;
    width: 0;
    position: sticky;
    align-self: flex-start;
    top: 2rem;
    padding: 3rem 2.3rem;
    background-color: var(--color-pink);
    box-shadow: 1px 10px 10px #00000026;
}
.appel__signature>p {
    text-align: center;
    font-size: var(--fs-500);
    margin-bottom: 2rem;
}
.appel__signature.valid {
    background: #edfbd8;
    padding: 2rem 1rem;
    border: 2px solid #84d65a;
    text-align: center;
}
.valid__hr {
  border: 1px solid #84d65a;
  margin-block: 0.5rem;
}
.valid__titre {
    font-size: var(--fs-400);
}
span.required {
    color: #e74c3c;
}
@media (max-width: 1080px) {
    .appel {
        flex-direction: column;
    }
    .appel__text,
    .appel__signature {
        width: unset;
    }
}
.form-element {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}
.form-element input[type="text"],
.form-element input[type="email"],
.form-element select {
    width: 100%;
    box-sizing: border-box;
    padding: 7px;
}
.form-element select {
    color: var(--color-black);
}
.form-element .email,
.form-element .qualite,
.form-element .orga,
.form-element .rgpd1,
.form-element .rgpd2 {
    grid-column: span 2;
}
.form-element .rgpd1 label,
.form-element .rgpd2 label,
label[for="orgaok"],
label[for="qualiteok"],
label[for="rgpd1"]
 {
    font-size: 0.9rem;
}
.form-element .rgpd2 {
    margin-bottom: 2rem;
}
.form__btn {
    margin-inline: auto;
    text-align: center;
}
.form-element .alert {
    padding: 0.2rem 0.5rem;
    background-color: #ef665b;
    color: var(--color-white);
    width: fit-content;
    border-radius: 5px;
    margin-top: 0.5rem;
}
.list__perso,
.list__header {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
}
.perso__nom--nom {
    text-transform: uppercase;
}
/* Blocs */
.sign__carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-inline: auto;
}

.sign__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #000;
    color: white;
    border: none;
    /* padding: 1rem; */
    height: 3rem;
    width: 3rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 60%;
    font-size: 1.5rem;
    user-select: none;
}

.sign__arrow--left {
    left: 10px;
}

.sign__arrow--right {
    right: 10px;
}

.sign__arrow:hover {
    background-color: var(--color-pink);;
}

.sign__carousel-1,
.sign__carousel-2 {
    display: flex;
    gap: 3rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    padding-bottom: 3rem;
    margin-bottom: 4rem;
    justify-content: center;
    justify-content: flex-start;
    /* padding-left: 20%; */
    mask-image: linear-gradient(to right,
                rgba(0, 0, 0, 0),
                rgba(0, 0, 0, 1) 10%,
                rgba(0, 0, 0, 1) 90%,
                rgba(0, 0, 0, 0));
}
.sign__carousel-1.active,
.sign__carousel-2.active {
    cursor: grabbing;
}
.sign__slide--c,
.sign__slide--v {
    flex: 0 0 auto;
    width: 80%;
    max-width: 35rem;
    scroll-snap-align: center;
    padding: 32px 16px;
    user-select: none;
    height: fit-content;
}
@media (max-width: 1024px) {
    /* .sign__carousel-container {
        max-width: 70%;
    } */
}
@media (max-width: 600px) {
    .sign__slide--c,
    .sign__slide--v {
        flex: 1 0 85%;
    }
    .sign__carousel-container {
        max-width: 100%;
    }
}

.testi__citation {
    padding-inline: 4rem;
    margin-bottom: 0;
}
.testimonial {
    margin-bottom: 0;
}
@media (max-width: 650px) {
    .testi__citation {
        padding-inline: 0;
    }
}
.citation__svg {
    text-align: center;
}
.big__text {
    font-size: var(--fs-400);
}
.citation__block {
    padding: 1rem 2rem;
    background-color: var(--color-white);
    box-shadow: 1px 10px 10px #00000026;
    height: fit-content;
}
.citation__block blockquote {
    margin-bottom: 2rem;
}
.citation__block figcaption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
@media (max-width: 768px) {
    .citation__block figcaption {
        flex-direction: column-reverse;
    }
}
@media (max-width: 550px) {
    .citation__block {
        padding: 1rem;
    }
    .sign__arrow--left {
        left: 0;
    }
    .sign__arrow--right {
        right: 0;
    }
}
.author__poste {
    color: #999;
}
.author__img {
    max-width: 5rem;
}
.testi__video {
    text-align: center;
}
.video__testi {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.video__hr {
    color: var(--color-red);
    margin-block: 0.5rem;
}
.video__video {
    max-width: 25rem;
    aspect-ratio: 9/16;
}
.video__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 65ch;
}
.video__video video {
    width: 100%;
    height: auto;
}
.text__video {
    font-size: var(--fs-400);
}
/* .testi__images {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.images__image {
    max-width: 25rem;
} */
.testi__images {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.images__image img {
    box-shadow: 5px 10px 20px #0000001c;
    border: 5px solid var(--color-pink);
}
.images__image figcaption {
    margin-top: 0.5rem;
    text-align: center;
}
@media (max-width: 1440px) {
    .testi__video {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 990px) {
    .testi__citation {
        flex-direction: column;
    }
    .citation__svg,
    .citation__block {
        width: unset;
    }
}
@media (max-width: 600px) {
    .testi__images {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
/* Fin blocs */
.signataires h2 {
    margin-bottom: 5rem;
}
/* .list__perso {
    overflow-y: scroll;
    height: 20rem;
} */
.list__perso .item {
    border-bottom: 2px solid #0000000D;
}
.list__header .header,
.list__perso .perso__nom.item,
.list__perso .perso__qualite.item,
.list__perso .perso__commune.item
 {
    padding: 1rem 1rem 0.5rem 1rem;
}
.list__perso .perso__nom.item:nth-child(1),
.list__perso .perso__qualite.item:nth-child(2),
.list__perso .perso__commune.item:nth-child(3)
 {
    padding-top: 2rem;
}
.list__header {
    border-bottom: 2px solid var(--color-red);
    box-shadow: 5px 10px 20px #0000001c;
    top: 0;
    position: sticky;
    background-color: var(--color-background);
}
@media (max-width: 972px) {
    .list__perso {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 500px) {
    .list__perso,
    .list__header {
        grid-template-columns: 1fr;
        position: static;
    }
    .list__perso .header {
        display: none;
    }
    .list__perso .perso__nom.item,
    .list__perso .perso__qualite.item {
        border: unset;
    }
}
.list__pagination {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.pagination__disable {
    color: #999;
}