.about-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 90px;
}

.about-section > * {
  line-height: 120%;
}
.about-img {
  display: flex;
  align-items: center;
  max-width: 520px;
  width: auto;
}
.about-section img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 5px;
}

.about-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.about-description h6 {
  font-size: 28px;
  font-weight: 700;
}

.about-description p {
  margin: 0 !important;
}

@media screen and (max-width: 991px) {
  .about-section {
    flex-direction: column;
    justify-content: center;
  }

  .about-img {
    max-width: unset;
    justify-content: center;
  }
}