.sponsors-block {
    padding: 5% 10%;
    background: #f4f4f4;
    color: #000;
    text-align: center;
}

.sponsors-block h2,
.sponsors-block h3,
.sponsors-block h4,
.sponsors-block h5 {
    color: #0B5F72;
    text-align: center;
}

.sponsorship .level {
    margin: 5% auto;
}

.level h3 {
    font-family: 'Untitled Sans', sans-serif;
    font-size: 24px;
    color: black;
    margin-bottom: 1em;
}

.spon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.level:first-child .spon-grid .spon {
    flex: 0 0 500px;
}

.level:nth-child(2) .spon-grid .spon {
    flex: 0 0 400px;
}

.level:nth-child(3) .spon-grid .spon {
    flex: 0 0 300px;
}

.spon-grid .spon {
    flex: 0 0 220px;
    aspect-ratio: 10/8;
    padding: 2em;
    border-radius: 10px;
    background: white;
    margin: 1em;
    display: flex;
    flex-direction: column;
}

.spon-grid .spon .spon-logo {
    margin: auto;
}

.spon-grid .spon.no-logo h4 {
    margin: auto;
    font-size: 35px;
    font-weight: 500;
    padding: 0px;
}

.spon-grid .spon .spon-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.spon-grid .spon h4 {
    font-family: 'Untitled Sans', sans-serif;
    font-size: 18px;
    padding: 25px 0px 0px;
}

@media screen and (max-width: 500px) {
    .level:first-child .spon-grid .spon {
        flex: 0 0 calc(100% - 1em);
        width: calc(100% - 1em);
    }

    .spon-grid .spon {
        margin: 0.5em;
    }

    .level:nth-child(2) .spon-grid .spon {
        flex: 0 0 calc(50% - 2em);
    }

    .level:nth-child(3) .spon-grid .spon {
        flex: 0 0 calc(50% - 2em);
    }

    .spon-grid .spon {
        width: 40%;
        flex: 0 0 calc(50% - 2em);
    }
}