.flex-section {
    display: flex;
    gap: 32px;
    padding: 96px 0px;
}
.flex-left {
    gap: 12px;
}
.flex-left, .flex-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-title-single {
    font-size: 48px;
    font-family: 'Red Rose', serif;
    font-weight: 700;
    line-height: 120%;
    margin-top: 4px;
    color : #7A5AF8;
}
.service-desc {
    color: #564C68;
    font-size: 16px;
    font-family: 'Rethink Sans', sans-serif;
    line-height: 140%;
}
.img-br {
    border-radius: 16px 16px 0px 0px;
    width: 100%;
    /*height: 640px;*/
    display: block;
    max-width: 100%;
    object-fit: cover;
}
/* TABLETTE (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    /*.img-br {*/
    /*    height: 250px;*/
    /*}*/
    .flex-section {
        gap: 24px;
        padding: 64px 0;
    }
    .service-title-single {
        font-size: 36px;
    }
    .service-desc {
        font-size: 15px;
    }
}

/* MOBILE (max-width: 768px) */
@media screen and (max-width: 768px) {
    /*.img-br {*/
    /*    height: 240px !important;*/
    /*}*/
    .flex-section {
        gap: 16px;
        padding: 0px 0px 28px 0px;
        display: block;
    }
    .service-title-single {
        font-size: 28px;
    }
    .service-desc {
        font-size: 14px;
    }
}