.single-service {
    margin-top: 92px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.single-service__head {
    height: 400px;
    background-color:bisque; /* A modifier en background image */
    margin: 0px -20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    position: relative;
}

.single-service__head::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.single-service__head h1 {
    font-family: 'Kalam';
    color: var(--orange);
    font-size: 60px;
    font-weight: bold;
    z-index: 1;
}

.single-service__head h2 {
    font-family: 'Lato';
    color: var(--bleu);
    font-size: 30px;
    font-weight: bold;
    z-index: 1;
}


.single-service__infos {
    display: flex;
    flex-direction: row;
    padding: 100px 150px;
    justify-content: space-around;
}

.service-info__img {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-info__img img {
    box-shadow: rgba(237, 108, 83, 1) -20px 20px 0px;
}

.service-info__content {
    width: 55%;
}

.service-info__content__head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.service-info__content__head p {
    color: var(--grey);
    font-size: 18px;
}

.service-info__description {
    margin: 10px 0;
}

.service-info__logiciels p:first-child {
    color: var(--orange);
    font-weight: bold;
}

.service-info__color {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.service-info__color p {
    width: 18%;
    text-align: center;
    padding: 10px 0;
}

.single-service__gallery {
    background-color: var(--orange);
    padding: 100px;
    margin: 0 -20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.single-service__gallery img {
    width: 80%;
    height: 100%;
    margin: auto;
}

.single-service__content {
    padding: 100px 150px;
}

.single-service__content h2, .single-service__similaire h2, .realisation-contenu h2  {
    font-family: 'Kalam';
    color: var(--orange);
    font-size: 35px;
    font-weight: bold;
    text-align: center;
}

.realisation-contenu {
    padding: 70px 15% 50px 15%;
}

.realisation-contenu h2 {
    margin-bottom: 30px;
}

.single-service__similaire {
    background-color: #F6E6D1;
    margin: 0px -20px;
    padding: 70px 0px;
}

.similaires-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.projet-item {
    width: 32%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    padding: 30px;
    margin: 25px 0;
}

.projet-item h3 {
    font-size: 25px;
    text-align: center;
    color: var(--bleu);
}

.projet-item__img {
    margin: 20px 0;
}

.projet-item__img img {
    border-radius: 10px;
}

.projet-item__infos {
    display: flex;
    justify-content: space-between;
}

.projet-item__infos p {
    line-height: normal;
    margin-bottom: 10px;
    font-size: 16px;
}

.projet-item__infos p:first-child {
    color: var(--orange);
    font-weight: bold;
}

.projet-item__infos p:last-child {
    color: var(--grey);
}

.projet-item p {
    font-size: 18px;
}

.projet-item__button {
    text-align: center;
}

.text-light {
    color: #000;
}

.text-dark {
    color: #fff;
}

@media screen and (max-width: 950px) {
    .single-service {
        margin-top: 50px;
    }
    
    .single-service__head {
        margin: 0px;
        padding: 0 20px;
    }

    .single-service__head h1 {
        font-size: 45px;
        text-align: center;
    }

    .single-service__infos {
        flex-direction: column;
        padding: 0px;
        margin-top: 50px;
    }

    .service-info__img {
        width: 80%;
        margin: auto;
    }

    .service-info__content {
        width: 90%;
        margin: auto;
        margin-top: 50px;
    }

    .service-info__color {
        flex-wrap: wrap;
    }

    .service-info__color p {
        width: 45%;
    }

    .realisation-contenu {
        padding: 50px 5% 30px 5%;
    }

    .slick-slide {
        width: 300px !important;
    }

    .single-service__gallery {
        padding: 40px;
    }

    .projet-item {
        width: 90%;
        margin: 25px auto;
    }
}