.pix-wrapper-bandeau-services {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
    background-color: #f2eee8;
    padding: 50px 100px;
    position: relative;
    z-index: 2;
}

.pix-wrapper-bandeau-services::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1vw;
    background: url(i/brush.svg) no-repeat bottom center;
    background-size: 100% 100%;
}

.pix-wrapper-bandeau-services .deco-services-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 310px;
    transform: translateY(-20%);
    background: url('i/deco-services-left.svg') no-repeat center left;
    background-size: contain;
    pointer-events: none;
}
.pix-wrapper-bandeau-services .deco-services-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 350px;
    transform: translateY(-40%);
    background: url('i/deco-services-right.svg') no-repeat center right;
    background-size: contain;
    pointer-events: none;
}



.pix-wrapper-service {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.pix-service-icone {
    width: 130px;
    height: 130px;
}

.pix-service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 15px;
    margin: 0 auto;
    max-width: 370px;
}

.pix-service-title {
    font-family: "Averia Serif Libre", serif;
    font-weight: 700;
    font-size: 26px;
    color: #632e48;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 8px;
    line-height: 1;
    transition: color 0.2s ease;
}
.pix-service-description {
    font-weight: 500;
    line-height: 1.2;
    font-size: 20px;
    color: #401e2f;
    margin: 0;
    transition: color 0.2s ease;
}


.pix-service-icone img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 1450px) {
    .pix-service-icone {
        width: 100px;
        height: 100px;
    }
    .pix-service-title {
        font-size: 22px;
    }
    .pix-service-description {
        font-size: 18px;
    }
}

@media (max-width: 1100px) {
    .pix-wrapper-bandeau-services {
        padding: 50px 60px;
    }
    .pix-wrapper-bandeau-services .deco-services-left {
        width: 80px;
        height: 250px;
    }
    .pix-wrapper-bandeau-services .deco-services-right {
        width: 100px;
        height: 270px;
    }
}

@media (max-width: 950px) {
    .pix-wrapper-bandeau-services {
        flex-wrap: wrap;
        padding: 30px 0px;
    }

    .pix-wrapper-bandeau-services .pix-wrapper-service-2,
    .pix-wrapper-bandeau-services .pix-wrapper-service-3 {
        width: 50%;
    }

    .pix-wrapper-bandeau-services::before {
        height: 2vw;
        background-size: 150% 100%;
    }
}


@media (max-width: 550px) {

    .pix-wrapper-bandeau-services .pix-wrapper-service-2,
    .pix-wrapper-bandeau-services .pix-wrapper-service-3 {
        width: 100%;
    }

    .pix-wrapper-bandeau-services {
        padding: 30px 20px;
    }
    .pix-wrapper-bandeau-services .deco-services-left {
        width: 40px;
        height: 125px;
    }
    .pix-wrapper-bandeau-services .deco-services-right {
        width: 60px;
        height: 160px;
    }

    .pix-wrapper-service {
        padding: 20px 10px;
    }

    .pix-service-icone {
        width: 80px;
        height: 80px;
    }
    .pix-service-title {
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .pix-service-icone {
        width: 60px;
        height: 60px;
    }

    .pix-wrapper-service {
        padding: 10px 10px;
    }
}