.third-section {
  width: 100%;

  display: flex;
  justify-content: center;

  padding: 5rem 0;
}
.third-section > div {
  width: 100%;
  max-width: 1200px;
}
.third-section > div h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}
.third-section > div p {
  font-size: 1.2rem;

  color: var(--blue9);
}
.third-section > div p strong {
  font-weight: 600;
}
.third-section > div h2 strong {
  font-weight: 700;
  color: var(--red9);
}

.cards {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;

  margin-top: 2rem;
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;

  padding: 0.5rem;
  border-radius: 0.5rem;

  border: 2px solid var(--black5);
  background: var(--black4);
}
.card span {
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1450px) {
  .third-section {
    padding: 5rem 1rem;
  }
}

@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 775px) {
  .cards {
    width: 100%;

    display: flex;
    gap: 1rem;

    overflow: hidden;
    overflow-x: scroll;

    padding-bottom: 1rem;
  }

  .cards::-webkit-scrollbar {
    height: 6px;
  }
  .cards::-webkit-scrollbar-track {
    border-radius: 0 0.3rem 0.3rem 0;

    background: var(--black4);
  }
  .cards::-webkit-scrollbar-thumb {
    border-radius: 1rem;

    background: var(--blue9);
  }
  .cards::-webkit-scrollbar-thumb:hover {
    background: var(--black9);
  }
}

@media (max-width: 480px) {
  .third-section > div h2 {
    line-height: 3.5rem;
    margin-bottom: 3rem;
  }
}