.abonnement-banner {
    height: 50vh;
    background: linear-gradient(#79ae46, #79ae46);
    opacity: .4;
    padding-top: 125px;
    padding-bottom: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.abonnement-banner-text {
    width: 100%;
}
.abonnement-banner-text h2 {
    color: #ffffff;
    font-size: 3em;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: capitalize;
    text-align: center;
}

.abonnements-liste {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 60px 150px;
}
.abonnement-item {
    width: 28%;
    height: auto;
}

.abonnement-item img {
    width: 100%;
    height: auto;
}

.abonnement {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 60px 150px;
}


@media only screen and (max-width: 600px) {
    .abonnements-liste {
        flex-direction: column;
        padding: 20px 0;
    }

    .abonnement-item {
        width: 90%;
        margin-bottom: 10px;
    }
}