.sponsors-and-faq {
  width: 100%;
  max-width: 1300px;

  padding: 0 10px;
  margin: 30px auto;
}

.sp-faq-container {
  position: relative;
  width: 100%;
  padding: 20px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background: linear-gradient(
    180deg,
    rgba(225, 220, 255, 0.47) 0%,
    rgba(211, 233, 255, 0.39) 100%
  );
}

.sponsors {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}

.sponsor-container {
  background-color: white;
  height: 350px;
  width: 370px;
  border-radius: 60px;
  display: grid;
  place-items: center;
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
}

.sponsors-container {
  margin-top: 5%;
  width: 100%;
  display: flex;
  justify-content: space-around;
}

@media screen and (max-width: 1024px) {
  .sponsor-container {
    height: 300px;
    width: 310px;
  }
}

@media screen and (max-width: 768px) {
  .sp-faq-container {
    border-radius: 30px;
  }

  .sponsor-container {
    width: 300px;
    height: 300px;
    margin-bottom: 5vh;
  }
  .sponsors-container {
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
  }
  .sponsors {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 400px) {
  .sponsor-container {
    height: 200px;
    width: 210px;
  }
}
