/* START listServices  */
.listServices .uniformSpacing {
    display: flex;
    flex-direction: column;
    gap: 2.5em;
}

.listServices{
    overflow: hidden;
}

.listServices .containerImgText .imgText {
    display: flex;
    gap: 2.5em;
    align-items: center;
}

.listServices .containerImgText .imgText:nth-child(even) {
    flex-direction: row-reverse;
}

.listServices .containerImgText .imgText img {
    width: 50%;
    height: auto;
    aspect-ratio: 3/2;
}

.listServices .containerImgText .imgText .introText {
    width: 50%;
    height: auto;
}

.listServices .containerImgText .imgText .containerLink{
    display: flex;
    flex-direction: row;
    gap: 1em;
    flex-wrap: wrap;
}

.listServices .containerSvg {
    position: absolute;
    top: 0;
    height: 100%;
    width: auto;
}

.listServices .containerSvg {
    position: absolute;
    top: 50%;
    height: 105%;
    width: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.listServices .containerSvg .chemin svg {
    height: 100%;
    width: auto;
}

.listServices .containerSvg .chemin svg path {
    fill: var(--basicColor2);
}

@media screen and (max-width: 550px) {
    .containerImgText{
        display: flex;
        flex-direction: column;
        gap: 2em;
    }

    .listServices .containerImgText .imgText,
    .listServices .containerImgText .imgText:nth-child(even){
        flex-direction: column;
    }

    .listServices .containerImgText .imgText img,
    .listServices .containerImgText .imgText .introText{
        width: 100%;
    }

    .listServices .containerSvg{
        height: 100%;
    }
}

/* END listServices  */

/* START imgText */
.imgText .uniformSpacing {
    display: flex;
    gap: 2.5em;
    align-items: center;
}

.imgText .uniformSpacing .introText{
    width: 50%;
}

.imgText .uniformSpacing img {
    width: 50%;
    height: auto;
    aspect-ratio: 3/2;
}

@media screen and (max-width: 800px) {
    .imgText .uniformSpacing{
        flex-direction: column;
    }

    .imgText .uniformSpacing .introText,
    .imgText .uniformSpacing img{
        width: 100%
    }
}


/* END imgText */

/* START bandeauImg */

.bandeauImg  > img {
    position: absolute;
    bottom: 0;
    right: 4em;
    height: 70%;
    width: auto;
}

.bandeauImg .introText {
    padding: 2em 0;
    width: 70%;
}

.bandeauImg .smallUniformSpacing{
    z-index: 60;
}

@media screen and (max-width: 800px) {
    .bandeauImg  > img {
        height: 50%;
    }
}

@media screen and (max-width: 650px) {
    .bandeauImg  > img {
        display: none;
    }

    .bandeauImg .introText{
        width: 100%;
    }
}

/* END bandeauImg */


/* START bigImgText */
.bigImgText .uniformSpacing {
    display: flex;
    align-items: center;
    gap: 8em;
}

.bigImgText .uniformSpacing > img,
.bigImgText .uniformSpacing > .editor-img {
    width: 50%;
    height: -webkit-fill-available;
    object-fit: cover;
}

.bigImgText .uniformSpacing > .editor-img img {
    width: 100%
}

.bigImgText .uniformSpacing .introText {
    width: 50%;
    padding: 3em 0;
}

.bigImgText .uniformSpacing .introText img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--basicRadius);
}

@media screen and (max-width: 1000px) {
    .bigImgText .uniformSpacing{
        gap: 4em;
    }
}

@media screen and (max-width: 700px) {
    .bigImgText .uniformSpacing{
        flex-direction: column;
        gap: 2em;
    }

    .bigImgText .uniformSpacing > img,
    .bigImgText .uniformSpacing > .editor-img{
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        padding-top: 3em;
    }

    .bigImgText .uniformSpacing .introText{
        width: 100%;
        padding-top: 0;
    }

}


/* END bigImgText */