.partenaires{
    height: 100vh;
    width: 100vw;
    background: url(../assets/Background/Pattern-light-down.png) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 110px 128px;
    align-items: center;
    align-content: center;
    gap: 10px;
    align-self: stretch;
    flex-wrap: wrap;
}

.partenaires .texte_partenaire{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 33%;
}

.partenaires .texte_partenaire span{
    background: linear-gradient(90deg, #159EA9 0%, #082459 64.51%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partenaires .titre_txt_partenaire{
    color: #1E1D22;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -2px;
}

.partenaires .sous_titre_txt_partenaire{
    color: #1E1D22;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -1px;
}

.partenaires .carousel_partenaire {
    width: 100%;
    max-width: 1240px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.partenaires .fleche {
    width: 40px;
    height: 40px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s;
}

.partenaires .fleche:hover {
    transform: scale(1.1);
}

.partenaires .fleche i {
    font-size: 32px;
    color: #001242;
}

.partenaires .carousel_content {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 80%;
    gap: 32px;
}

.carousel_item {
    flex: 0 0 300px;
    height: 200px;
    border-radius: 16px;
    background: linear-gradient(135deg, #159EA9, #082459);
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
}

.carousel_item.active {
    height: 225px;
    opacity: 1;
}

