.engagements{
    height: 100vh;
    width: 100vw;
    padding: 110px 80px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 88px;
    flex: 1 0 0;
    flex-wrap: wrap;
    background: url(../assets/Background/Pattern-light-up.png) no-repeat center center;
    background-size: cover;
}

.engagements .text_content{
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 36px;
}

.text_content .titre{
    font-family: "Manrope", sans-serif;
    width: 75%;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 66px; /* 117.857% */
    letter-spacing: -2px;
}
.text_content .titre span{
    background: linear-gradient(90deg, #159EA9 0%, #082459 64.51%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -2px;
}

.text_content .sous_titre{
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 142.857% */
    letter-spacing: -1px;
    width: 60%;
}

.engagements .cards_content{
    width: 35%;
    height: 90%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    align-self: stretch;

}

.engagements .cards_content .card{
    width: 285px;
    height: 285px;
    padding: 24px;
    gap: 70px;
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    align-content: center;
    border-radius: 15px;
    background: linear-gradient(90deg, #159EA9 0%, #082459 100%);
}

.engagements .cards_content .card .titre_card{
    font-family: "Manrope", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    color: white;
}


@media screen and (max-width: 1858px) {
    .engagements{
        height: auto;
        flex-direction: column;
    }

    .engagements .text_content{
        width: 100%;
        align-items: center;
    }

    .text_content .sous_titre{
        width: 75%;
    }

    .engagements .cards_content{
        width: 50%;
        margin: 0 auto;
    }

}

@media screen and (max-width: 1347px) {
    .engagements{
        flex: auto;
        padding: 70px 30px;
    }

    .engagements .cards_content {
        width: 100%;
    }

    .text_content .titre{
        width: 100%;
        font-size: 36px;
        font-weight: 400;
        line-height: 46px;
    }
    
    .text_content .titre span{
        font-size: 36px;
        font-weight: 400;
        line-height: 46px;
    }
    
    .text_content .sous_titre{
        width: 100%;
        font-size: 24px;
        font-weight: 400;
        line-height: 34px;
    }
}