/* START hero */
.hero  {
    height: 80vh;
}

.hero .uniformSpacing{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* END bigHero */

/* START listeText */
.listeText > img{
    position: absolute;
    bottom: 0;
    right: 0;
    height: 120%;
    width: auto;
    transform: scaleX(-1) translateY(20%);
    opacity: .2;
}

.listeText .listeTextContainer{
    width: 70%;
}

.listeText .listeTextContainer{
    width: 75%;
}

.listeText .listeTextContainer .containerText{
    display:flex;
    gap: 2.5em;
    flex-wrap: wrap;
}

.listeText .listeTextContainer .containerText .element{
    width: calc((100% - 2.5em * 2) / 3);
    display: flex;
    flex-direction: column;
    gap: .5em;
}

@media screen and (max-width: 1200px) {
    .listeText .listeTextContainer .containerText .element{
        width: calc((100% - 2.5em) / 2);
    }
}
@media screen and (max-width: 650px) {
    .listeText .listeTextContainer .containerText .element{
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .listeText .listeTextContainer{
        width: 100%;
    }
}


/* END listeText */


/* START presentationCards */
.presentationCards{
    display: flex;
    flex-wrap: wrap;
}

.presentationCards .element{
    width: calc(100% / 2);
    height: auto;
    padding: 5em;
    background: transparent linear-gradient(301deg, #F1F1F1 0%, #E1E1E1 100%) 0% 0% no-repeat padding-box;
}

.presentationCards .element div{
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    position: relative;
    z-index: 3;
}

.presentationCards .element .personne{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: auto;
    z-index: 2;
}

.presentationCards .element .imgBackground{
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    z-index: 1;
}
@media screen and (max-width: 1200px) {
    .presentationCards .element {
        width: 100%;
    }

    .presentationCards .element .personne{
        height: 85%;
        width: auto;
        max-width: 40%;
        object-fit: cover;
    }
}

@media screen and (max-width: 700px) {
    .presentationCards .element{
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 1.5em;
        padding-bottom: 0;
    }

    .presentationCards .element .personne{
        position: absolute;
        bottom: 0;
        right: 0;
        height: 15em;
        width: auto;
    }

    .presentationCards .element div{
        width: 100%;
        margin-bottom: 16em;
    }

    .presentationCards .element{
        padding: 2em;
    }
}


/* END presentationCards */


/* START doubleImgText */
.doubleImgText .uniformSpacing {
    display: flex;
    gap: 2.5em;
    align-items: center;
}

.doubleImgText.reverse .uniformSpacing {
    display: flex;
    flex-direction: row-reverse;
    gap: 2.5em;
    align-items: center;
}

.doubleImgText .uniformSpacing > div {
    width: 50%;
    padding-bottom: 0;
}

.doubleImgText .uniformSpacing .check_list {
    display: flex;
    gap: 1em;
    width: 80%;
    flex-wrap: wrap;
}

.doubleImgText .uniformSpacing .check_list .element {
    display: flex;
    gap: .5em;
    width: calc((100% - 1em) / 2);
    align-items: center;
}

.doubleImgText .uniformSpacing .check_list .element .svgContainer {
    padding: .1em;
    border-radius: 100%;
}

.doubleImgText .uniformSpacing .check_list .element .svgContainer span {
    display: flex;
}

.doubleImgText .uniformSpacing .check_list .element .svgContainer svg {
    width: 1em;
    height: 1em;
}

.doubleImgText .uniformSpacing .textContainer {
    position: relative;
    height: auto;
    aspect-ratio: 4/3;
}

.doubleImgText .uniformSpacing .introText .signature {
    font-family: "lindsey-signature", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.doubleImgText .uniformSpacing .introText .newsLetter {
    display: flex;
    justify-content: space-between;
}

.doubleImgText .uniformSpacing .introText .newsLetter > div{
    display: flex;
    flex-direction: column;
    gap: .5em;
}

.doubleImgText .uniformSpacing .introText .newsLetter .qualicert {
    width: 10em;
    height: 10em;
    border-radius: 100%;
    object-fit: cover;
    background-color: var(--basicWhite);
    padding: .5em;
    box-shadow: 0px 3px 15px #00000029;
}

.doubleImgText .uniformSpacing .introText .newsLetter .qualicert img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.doubleImgText .uniformSpacing .introText .newsLetter #newsLetter{
    display: flex;
    gap: .5em;
    align-items: stretch;
}

.doubleImgText .uniformSpacing .introText .newsLetter input {
    background-color: #F6F6F6;
    border: 1px solid #CFCFCF;
    padding: .5em 1em;
}

.doubleImgText .uniformSpacing .introText .newsLetter #newsLetter button{
    padding: 0 1em;
    border: none;
}

.doubleImgText .uniformSpacing .introText .newsLetter #newsLetter button svg{
    width: 1.5em;
    height: auto;
    display: flex;
}

.doubleImgText .uniformSpacing .textContainer img,
.doubleImgText .uniformSpacing .textContainer span {
    position: absolute;
    width: 55%;
    height: 80%;
    object-fit: cover;
}

.doubleImgText .uniformSpacing .textContainer img:first-child,
.doubleImgText .uniformSpacing .textContainer span:first-child {
    top: 0;
    left: 0;
    z-index: 1;
}

.doubleImgText .uniformSpacing .textContainer img:last-child,
.doubleImgText .uniformSpacing .textContainer span:last-child {
    bottom: 0;
    right: 0;
}

@media screen and (max-width: 1000px) {
    .doubleImgText .uniformSpacing, .doubleImgText.reverse .uniformSpacing {
        flex-direction: column;
    }

    .doubleImgText .uniformSpacing > div {
        width: 100%;
    }

    .doubleImgText .uniformSpacing .check_list {
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .doubleImgText .uniformSpacing .check_list .element {
        width: 100%;
    }
}

/* END doubleImgText */

/* START certifications*/
.certifications .sliderWrapper {
    width: 100%;
    justify-content: center;
}

.certifications .sliderWrapper div {
    width: 200px;
    display: flex;
    align-items: center;
    aspect-ratio: 1/1;
}

.certifications .sliderWrapper div img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

@media screen and (max-width: 1200px) {
    .certifications .sliderWrapper {
        justify-content: initial;
    }
}

/* END certifications*/