main {
  background-color: var(--Primary, #0078e8);
  font-family: Lato;
  width: 100%;
}

.hero-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  flex-wrap: nowrap;
  height: 24rem;
  padding: 2rem 5vw;
}

.hero-content-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 40%;
  gap: 1rem;
}

.hero-header {
  color: white;
  font-size: 2rem;
  margin: 0;
}

.hero-content {
  color: white;
  font-size: 1.125rem;
  margin: 0;
}

.hero-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: right;
}

.hero-image {
  max-height: 20rem;
}

.sponsors-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 3rem 5vw;
  background-color: #ffffff;
}

.sponsors-header {
  font-size: 2.25rem;
  text-align: center;
  margin: 0;
  color: var(--Primary, #0078e8);
}

.sponsors-content {
  font-size: 1.5rem;
  text-align: center;
  width: 50%;
  margin: 0;
  color: var(--Dark-Gray, #333333);
}

.sponsors-logos-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 3rem;
  gap: 5rem;
  width: 100%;
}

.sponsors-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 32rem;
  max-width: 100%;
  gap: 1rem;
}

.sponsor-logo-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20rem;
  max-width: 100%;
  height: 10rem;
  aspect-ratio: 1;
}

.sponsor-logo-image-container img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

.sponsors-logo-name {
  font-size: 1.125rem;
  color: var(--Gray, #afafaf);
  margin: 0;
}

@media (max-width: 768px) {
  .hero-container {
    padding: 3rem 5vw;
  }

  .hero-image-container {
    display: none;
  }

  .hero-content-container {
    width: 100%;
  }

  .sponsors-content {
    width: 100%;
  }
}
