/* explore  */

.explore {
  padding: 2rem 6rem;
  align-items: center;
  justify-content: center;
}

.explore-heading h1 {
  padding-bottom: 1.5rem;
  color: var(--secondary, #ffcd39);
  font-size: 1.5rem;
  font-family: var(--font-title);
  font-weight: 700;
  text-align: center;
}

.explore-infra-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.explore-infra {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.explore-infra img {
  width: 6rem;
  height: 6rem;
  border-radius: 60px;
}

.explore-infra p {
  color: var(--primary-color);
  font-size: 1rem;
  font-family: var(--font-title);
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .explore {
    padding: 1.5rem 3rem;
  }

  .explore-infra-list {
    gap: 2.5rem;
  }

  .explore-infra img {
    width: 6.5rem;
    height: 6.5rem;
  }

  .explore-infra p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .explore {
    padding: 1rem 2rem;
  }
  .explore-infra-list {
    gap: 1.5rem;
  }

  .explore-infra img {
    width: 5rem;
    height: 5rem;
  }

  .explore-infra p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 426px) {
  .explore {
    padding: 1.5rem 0.5rem;
  }

  .explore-heading h1 {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
    padding-bottom: 0.7rem;
  }
  .explore-infra-list {
    gap: 0.75rem;
    justify-content: space-between;
  }

  .explore-infra img {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 8px;
  }
  .explore-infra p {
    font-size: 0.75rem;
  }
}
