.professionnel_du_massage{
    display: flex;
    gap: 3rem;
}
.professionnel_du_massage *{
    box-sizing: border-box;
}

.professionnel_du_massage .left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(50% - 5rem);
    gap: 2rem;
    text-align: left;
}
.professionnel_du_massage .left .strong{
    font-family: var(--police-Quicksand-Bold);
}
.professionnel_du_massage .left .buttons{
    display: flex;
    align-items: center;
    gap: 2rem;
}

.professionnel_du_massage .left .buttons a{
    background-color: var(--couleur-11);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    border-radius: 2rem;
    font-family: var(--police-Quicksand-Bold);
    color: var(--couleur-12);
    white-space: nowrap;
}

.professionnel_du_massage  .right{
    width: 50%;
}

.professionnel_du_massage  .right h2{
    display: none;
}
.professionnel_du_massage  .right img{
    width: 45rem;
}

@media screen and (max-width: 1200px) {
    .professionnel_du_massage{
        flex-direction: column-reverse;
        align-items: center;
    }

    .professionnel_du_massage  .left,
    .professionnel_du_massage  .right{
        width: 100%;
        text-align: center;
    }

    .professionnel_du_massage  .left h2{
        display: none;
    }
    .professionnel_du_massage  .right h2{
        display: block;
    }

    .professionnel_du_massage  .right{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .professionnel_du_massage  .left{
        align-items: center;
    }

}

@media screen and (max-width: 415px) {

    .professionnel_du_massage .left .buttons{
        gap: 0.5rem;
    }
    .professionnel_du_massage .left .buttons a{
        padding: 0.5rem 1.5rem;
    }
}