
.sectionBlocs3{
    margin-bottom: 180px;
}

@media (max-width: 992px) {
   .sectionBlocs3{
    margin-bottom: 130px;
    } 
}

/* --------------------------------- EN TETE --------------------------------- */

.sectionBlocs3 .entete{
    margin-bottom: 40px;
}

.sectionBlocs3 .entete .titre{
    font-size: 43px;
    line-height: 50px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: bold;
}

.sectionBlocs3 .entete .paragraphe{
    max-width: 700px;
}

.sectionBlocs3 .entete .btn{
    margin-top: 16px;
}

@media (max-width: 1500px) {
    .sectionBlocs3 .entete .titre{
        font-size: 42px;
        line-height: 50px;
    }
}

@media (max-width: 992px) {
    .sectionBlocs3 .entete{
        margin-bottom: 24px;
    }
    .sectionBlocs3 .entete .titre{
        font-size: 30px;
        line-height: 35px;
    }
}

/* --------------------------------- BLOCS --------------------------------- */

.sectionBlocs3 .blocs{
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.sectionBlocs3 .blocs .bloc{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.sectionBlocs3 .blocs .bloc img{
    aspect-ratio: 680 / 510;
    border-radius: 24px;
    height: 100%;
}

.sectionBlocs3 .blocs .bloc:nth-child(odd) img {
    order: 2;
}

.sectionBlocs3 .blocs .bloc figcaption{
    border-radius: 24px;
    background-color: var(--tertiary);
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding: 70px 100px 70px 220px;
}

.sectionBlocs3 .blocs .bloc figcaption .titre{
    font-size: 32px;
    line-height: 38px;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 16px;
    z-index: 1;
}

.sectionBlocs3 .blocs .bloc figcaption .paragraphe{
    z-index: 1;
}

.sectionBlocs3 .blocs .bloc figcaption .chiffre{
    color: #BDDAF3;
    font-size: 300px;
    line-height: 300px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    z-index: 0;
    font-family: "alwyn-new-web", sans-serif;
}

.sectionBlocs3 .blocs .bloc figcaption .btn{
    margin-top: 24px;
    z-index: 1;
}

@media (max-width: 1600px) {
   .sectionBlocs3 .blocs .bloc figcaption .chiffre{
        font-size: 250px;
        line-height: 250px;
        left: 40px;
    } 
    .sectionBlocs3 .blocs .bloc figcaption .titre{
        font-size: 28px;
        line-height: 34px;
    }
    .sectionBlocs3 .blocs .bloc figcaption{
        padding: 70px 70px 70px 200px;
    }
}

@media (max-width: 1200px) {
   .sectionBlocs3 .blocs .bloc figcaption .chiffre{
        font-size: 200px;
        line-height: 200px;
    } 
    .sectionBlocs3 .blocs .bloc figcaption{
        padding: 70px 70px 70px 180px;
    }
}

@media (max-width: 992px) {
    .sectionBlocs3 .blocs{
        gap: 40px;
    }
    .sectionBlocs3 .blocs .bloc{
        grid-template-columns: 1fr;
    }
    .sectionBlocs3 .blocs .bloc img{
        border-radius: 12px;
        order: 2 !important;
    }
    .sectionBlocs3 .blocs .bloc figcaption{
        border-radius: 12px;
        padding: 80px 30px;
    }
    .sectionBlocs3 .blocs .bloc figcaption .titre{
        font-size: 24px;
        line-height: 28px;
    }
    .sectionBlocs3 .blocs .bloc figcaption .chiffre{
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.3;
    }
}