.hero-section {
  min-height: calc(100vh - 8rem);
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 1rem;
  margin: 1rem auto;
}

.hero-section .main-heading {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.hero-section .hero-links {
  min-width: 60%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.hero-section .link {
  width: 15rem;
  height: 17rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: var(--radius-400);
  animation: flipInX;
  animation-duration: 1.5s;
  transition: all 300ms ease-in-out;
}

.hero-section .link:hover {
  background-color: var(--clr-primary-lightest);
}

.hero-section .link span {
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background-color: var(--clr-primary-lightest);
  color: var(--clr-primary);
  border-radius: var(--radius-half);
  transition: all 300ms ease-in-out;
}

.hero-section .link:hover span {
  background-color: var(--clr-primary-lighter);
  color: white;
}

.hero-section .link-text {
  color: var(--clr-accent);
  font-weight: 600;
}

.hero-section .partners {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-section .partner {
  width: 16rem;
  height: 6rem;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-400);
}

.hero-section .partner img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  transition: all 300ms ease-in-out;
}

.hero-section .partner:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

/* ABOUT US */
.about-us {
  flex-direction: column;
  align-items: center;
}

.about-us .wrapper {
  align-items: flex-start;
}

@media (max-width: 800px) {
  .about-us .wrapper {
    align-items: center;
  }

  .hero-section .partner {
    width: 13rem;
    height: 5rem;
  }
}
