.section-generic-banners {
    position: relative;
    background-color: #FFF;
    padding: 50px 0;
}

.section-generic-banners .container {
    padding-bottom: 30px;
    overflow: visible;
}

.section-generic-banners .container h2 {
    font-family: 'Baloo 2', sans-serif;
    color: #9349DE;
    font-size: 2rem;
    font-weight: 700;
    line-height: 36px;
    z-index: 99;
    margin: 0 0 40px;
    text-align: center;
}

.section-generic-banners .wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    margin-right: -2%;
}

.section-generic-banners .wrapper .card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
    z-index: 1;
}

.section-generic-banners .wrapper .card img {
    width: 100%;
}

.section-generic-banners .wrapper .card .content {
    position: relative;
    display: flex;
    padding: 30px;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.section-generic-banners .wrapper .card .content h3 {
    font-family: 'Baloo 2', sans-serif;
    margin-top: 0;
}

.section-generic-banners .wrapper .card .content p {
    margin-top: 0;
}

.section-generic-banners .wrapper .card .content a {
    margin-top: 30px;
    width: fit-content;
    color: #9349DE;
    border-color: #9349DE;
}

@media only screen and (min-width: 768px) {  
    
    .section-generic-banners .container {
        padding: 0 100px;
    }

    .section-generic-banners .wrapper .card {
        width: 49%;
    }

}

@media only screen and (min-width: 1200px) {

    .section-generic-banners .wrapper:after {
        display: block;
    }

    .section-generic-banners .wrapper .card {
        width: 23%;
    }

}