/* Home About Section */
.about-wrapper .column-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-wrapper .column-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-wrapper .column-left p {
  max-width: 360px;
}

.tagline {
  font-size: 3.15em;
  line-height: 120%;
  font-weight: 400;
  letter-spacing: -0.25px;
}

.tagline strong {
  font-weight: 700;
}

/* XXL Screens (1800px and up) */
@media (min-width: 1800px) {
}

/* XL Screens (1600px-1799px) */
@media (min-width: 1600px) and (max-width: 1799px) {
}

/* Large Screens (1400px-1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
}

/* Medium-Large Screens (1200px-1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
}

/* Small-Medium Screens (max-width: 1199px) */
@media (max-width: 1199px) {
}

/* Small Screens (max-width: 992px) */
@media (max-width: 992px) {
}

/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
  #about .about-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .about-wrapper .column-left {
    gap: 8px;
  }

  .tagline {
    font-size: 1.77em;
    line-height: 120%;
    font-weight: 400;
    letter-spacing: -0.25px;
  }
}
