.sponsors-wrapper {
    background-color: #fff;
    margin: 50px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, 450px);
    gap: 75px;
    justify-items: center;
    padding: 75px;
    justify-content: center;
}

.sponsor {
    width: 450px;
    gap: 20px;
    display: grid;
    justify-items: center;
    text-align: center;
    align-content: start;
    cursor: pointer;
    text-decoration: none;
}

.sponsor-foto {
    width: 250px;
    height: 250px;
}

.sponsor-foto img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 150px;
}

.sponsor-title {
    font-size: 20pt;
    color: #184677;
    font-weight: 600;
}

.sponsor-desc {
    font-weight: 100;
    font-size: 13pt;
}

.color-wrapper {
    display: grid;
}

.plug {
  display: grid;
  background: white;
  padding: 40px;
  justify-content: center;
  margin: 40px;
  max-width: 600px;
  gap: 5px;
  justify-self: center;
  text-align: center;
}

.plug a {
    text-decoration: none;
    color: #1062a5;
}

.plug a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1324px) {
    .sponsors-wrapper {
        grid-template-columns: repeat(auto-fill, 310px);
    }

    .sponsor {
        width: 200px;
    }

    .sponsor-foto {
        width: 200px;
        height: 200px;
    }

    .sponsor-foto img {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 959px) {
    .sponsors-wrapper {
        grid-template-columns: repeat(auto-fill, 200px);
    }

    .sponsor {
        width: 200px;
    }

    .sponsor-foto {
        width: 200px;
        height: 200px;
    }

    .sponsor-foto img {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 724px) {
    .sponsors-wrapper {
        grid-template-columns: repeat(auto-fill, 100%);
        padding: 75px 10px;
    }

    .sponsor {
        width: 300px;
    }

    .sponsor-foto {
        width: 200px;
        height: 200px;
    }

    .sponsor-foto img {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 710px) {
    .sponsors-wrapper {
        grid-template-columns: repeat(auto-fill, 100%);
        margin: 10px;
    }
}

@media screen and (max-width: 426px) {
    .sponsors-wrapper {
        grid-template-columns: repeat(auto-fill, 100%);
    }
    
    .sponsor {
        width: 300px;
    }

    .sponsor-foto {
        width: 150px;
        height: 150px;
    }

    .sponsor-foto img {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 375px) {
    .sponsors-wrapper {
        grid-template-columns: repeat(auto-fill, 100%);
    }
}