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

  display: flex;
  justify-content: center;

  padding: 0 1rem;
}

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

  display: flex;
  align-items: center;
  gap: 2rem;
}

.third-section-descs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.third-section-descs h2 {
  width: 100%;
  max-width: 560px;

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

  color: var(--blue8);
}

.third-section-descs p {
  font-size: 1.1rem;
  line-height: 1.6rem;
  text-align: center;
}

.third-section-descs p strong {
  font-weight: 600;
}

/* PHONES */
@media (max-width: 600px) {}

/* TABLETS */
@media (max-width: 768px) {}

/* LAPTOPS */
@media (max-width: 992px) {
  .third-section-content {
    flex-direction: column;
  }
  .third-section-chart {
    order: 2;
  }
  .third-section-descs {
    order: 1;
  }
}