.about {
  padding-top: 50px;
  padding-bottom: 30px;
  overflow: clip;
}

.about__title {
  margin-bottom: 70px;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
}

.about__content {
  max-width: var(--container-size);
  width: 90%;
  display: flex;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}

.about__title-story {
  width: 50%;
  font-size: 36px;
  font-weight: 700;
}
.about__description {
  padding-right: 56px;
  width: 50%;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.about__images {
  max-width: var(--container-size);
  width: 90%;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}

.about__images-detail {
  width: calc(50% - 10px);
}

@media screen and (max-width: 900px) {
  .about__title {
    width: 90%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
    margin-bottom: 30px;
  }

  .about__title-story {
    width: 100%;
    font-size: 20px;
    margin-bottom: 15px;
  }

  .about__content {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
  .about__description {
    width: 100%;
    padding-right: 0px;
  }

  .about__images {
    flex-direction: column;
    gap: 20px;
  }

  .about__images-detail {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
