#section-sponsor {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: #000;
    color: #fff;
}
#section-sponsor:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}
#section-sponsor > .container {
    z-index: 5;
}
.squadre-cards {
    gap: 50%;
}
#section-sponsor .card {
    overflow: hidden;
    background: none;
    border: none;
    border-radius: 0;
    text-align: center;
    color: #fff;
}
#section-sponsor .card img {
    width: auto;
    height: 110px;
    object-fit: contain;
}
#section-sponsor .sponsor-frase {
    margin-top: 4rem;
    text-align: center;
}
#section-sponsor .card .card-body {
    padding: 1rem 0;
}
#section-sponsor .card .card-text {
    font-size: 14px;
}
@media (max-width: 767px) {
    .squadre-cards {
        justify-content: space-between !important;
        align-items: anchor-center;
        padding: 0 30px;
        gap: 20px;
    }
    #section-sponsor .sponsor-frase {
        max-width: 235px;
        margin: 4rem auto 0;
    }
}
@media (min-width: 768px) {
    #section-sponsor {
        height: 100dvh;
        min-height: 880px;
        padding: 100px 0;
    }
    #section-sponsor .sponsor-frase {
        margin-top: 7rem;
        font-size: 28px;
    }
    #section-sponsor .card .card-body {
        padding: 1rem;
    }
    #section-sponsor .card img {
        height: 250px;
    }
    #section-sponsor .card .card-text {
        font-size: 18px;
    }

}