.second-section-container {
  width: 100%;

  display: flex;
  justify-content: center;

  padding: 0 1rem;
}

.second-section-content {
  width: 100%;
  max-width: 1100px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.second-section-content h2 {
  width: 100%;
  max-width: 620px;

  font-size: 2.3rem;
  font-weight: 600;
  line-height: 2.5rem;
  text-align: center;
}
.second-section-content h2 strong {
  font-size: 2.3rem;
  font-weight: 600;

  color: var(--blue8);
}

.second-section-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.second-section-card {
  width: 100%;
  max-width: 250px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}
.second-section-card div {
  width: 100%;

  overflow: hidden;
  border-radius: 2rem;
}
.second-section-card div img {
  width: 100%;
  height: 358px;

  display: flex;

  transition: .3s ease;
}
.second-section-card div img:hover {
  transform: scale(1.1);

  border-radius: 2rem;
}

.second-section-card span {
  font-weight: 700;
}
.second-section-card span strong {
  font-weight: 700;

  color: var(--blue8);
}

.second-section-card p {
  font-size: 0.9rem;
  font-weight: 500;
}

.second-section-card a {
  display: flex;
  align-items: center;
  gap: 0.3rem;

  font-size: 0.8rem;
  font-weight: 600;

  transition: .3s ease;

  color: var(--blue7);
}
.second-section-card a:hover {
  transform: translateX(5px);
}