.content-page h1 {
    margin-top: 90px;
    margin-bottom: 30px;
    text-align: center;
    color: #ED6C53;
    font-family: "Kalam", Sans-serif;
    font-size: 3rem;
}

.content-page p {
    text-align: center;
    margin-bottom: 70px;
}

.service-archive {
    margin: 0 -20px -70px 0;
}

.service-item {
    display: flex;
    padding: 100px 10% 70px 10%;
    justify-content: space-around;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.service-item:nth-child(2n+1) {
    flex-direction: row;
    background-color: var(--blanc);
}

.service-item:nth-child(2n) {
    flex-direction: row-reverse;
    background-color: var(--beige);
}

.service-item__text {
    width: 50%;
    display: flex;
    flex-direction: column;
    vertical-align: middle;
}

.service-item__img {
    width: 30%;
}

.bloc-text {
    padding: 50px 30px;
    margin: 30px;
}

.bloc-text h2 {
    font-family: "Kalam", sans-serif;
    font-size: 2rem;
    color: var(--text);
}

.bloc-text p {
    text-align: left;
}

.service-archive .service-item:nth-of-type(odd) .bloc-text {
    background-color: var(--beige);
}

.service-archive .service-item:nth-of-type(even) .bloc-text {
    background-color: var(--blanc);
}

.service-item__button {
    margin: 0 30px;
}

.service-item__img img:first-child {
    max-height: 500px;
}

.service-item__img img:last-child {
    max-width: 300px;
    position: relative;
    margin-bottom: -80px;
}

.service-archive .service-item:nth-of-type(odd) .service-item__img .realisation-logo {
    top: -20%;
    left: -30%;
}

.service-archive .service-item:nth-of-type(even) .service-item__img .realisation-logo {
    top: -20%;
    right: -50%;
}

@media screen and (max-width: 950px) {
    .ast-separate-container #primary {
        padding: 0;
    }

    .content-page h1 {
        margin-top: 150px;
        margin-bottom: 40px;
    }

    .service-archive {
        margin: 0;
    }

    .service-item:nth-child(2n+1) {
        flex-direction: column-reverse;
    }

    .service-item {
        padding: 0px 5% 70px 5%;
    }

    .bloc-text {
        padding: 50px 30px 10px 30px;
        margin: 30px 0;
    }

    .service-item__text, .service-item__img {
        width: 100%;
    }

    .service-item__img img:first-child {
        display: none;
    }

    .service-archive .service-item:nth-of-type(odd) .service-item__img .realisation-logo {
        top: 0px;
        left: 50%;
        max-width: 200px;
    }

    .service-archive .service-item:nth-of-type(even) .service-item__img .realisation-logo {
        max-width: 200px;
        right: 5%;
        left: 0%;
    }

    .service-item:nth-child(2n) {
        flex-direction: column-reverse;
    }

    .service-item__img img:last-child {
        margin-bottom: -110px;
    }

}