.sectionContact{
    padding-inline: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
}

.sectionContact::before,
.sectionContact::after{
    content: "";
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0px;
    position: absolute;
    background-repeat: no-repeat;
    z-index: -1;
}

.sectionContact::before{
    background-image: url('./../img/decoCubesGauches.png');
    background-position: top left;
}

.sectionContact::after{
    background-image: url('./../img/decoCubesDroits.png');
    background-position: bottom right;
}

.sectionContact .titre{
    font-size: 60px;
    line-height: 65px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.sectionContact .paragraphe{
    margin-bottom: 50px;
    max-width: 440px;
}

.sectionContact .paragraphe,
.sectionContact .paragraphe p{
    font-size: 20px;
    line-height: 26px;
    text-align: center;
}

@media (max-width: 992px){
    .sectionContact{
        padding-inline: 80px;
    }
    .sectionContact::before,
    .sectionContact::after{
        display: none;
    }
    .sectionContact .paragraphe{
        margin-bottom: 32px;
        max-width: none;
    }
    .sectionContact .titre{
        font-size: 46px;
        line-height: 51px;
        margin-bottom: 19px;
    }
}

@media (max-width: 800px){
    .sectionContact{
        padding-inline: 36px;
    }
    .sectionContact .paragraphe,
    .sectionContact .paragraphe p{
        font-size: 18px;
        line-height: 22px;
    }
}