.seventh-section {
  width: 100%;

  display: flex;
  justify-content: center;

  padding: 4rem 0;
}

.seventh-section > div {
  width: 100%;
  max-width: 1200px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.seventh-section > div h2 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
.seventh-section > div > p {
  font-size: 1.2rem;
}
.seventh-section > div > p strong {
  font-weight: 600;
}

.seventh-section > div p:nth-child(2) {
  margin-bottom: 1rem;
}
.seventh-section > div p {
  color: var(--blue9);
}

.seventh-section-cards {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 2rem;

  margin-top: 2rem;
}

.seventh-section-cards img {
  width: 100%;
}

.seventh-section-card {
  display: flex;
  flex-direction: column;

  overflow: hidden;
  border-radius: 0.5rem;

  transition: .3s ease;

  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
}
.seventh-section-card:hover {
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.3);
}

.seventh-section-card h3 {
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;

  color: var(--black9);
}
.seventh-section-card p {
  font-size: 0.9rem;
  padding: 0 1rem 1rem 1rem;
}

@media (max-width: 1270px) {
  .seventh-section {
    padding: 4rem 1rem;
  }
}

@media (max-width: 770px) {
  .seventh-section-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

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