.about {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 0 104px 150px;
  color: var(--color-black);
}

.about__title {
  font: var(--font-large);
  margin: 0;
  margin-bottom: 50px;
  text-align: start;
}

.about__content {
  display: flex;
  align-items: flex-start;
  column-gap: 200px;
}

.about__text-container {
  display: flex;
  flex-direction: column;
  max-width: 33%;
}

.about__text {
  font: var(--font-regular);
  text-align: start;
  margin: 0;
}

.about__image {
  width: 53%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .about {
    padding: 0 20px 60px;
  }

  .about__title {
    font-size: 28px;
    line-height: 38.25px;
    margin-bottom: 40px;
    text-align: start;
  }

  .about__text {
    font-size: 12px;
    line-height: 16px;
    max-width: 100%;
    text-align: start;
  }

  .about__content {
    flex-direction: column;
    row-gap: 40px;
  }

  .about__image {
    width: 100%;
  }

  .about__text-container {
    max-width: 100%;
  }
}
