.about {
  position: relative;
  padding-top: 12rem;
  overflow: hidden;
}

.about:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 105vw;
  height: 50rem;
  background: linear-gradient(0deg, var(--secondary) 0%, transparent 100%);
  transform: translateX(-50%);
}

.about__container {
  position: relative;
}

.about__title {
  margin-bottom: 8rem;
}

.about__row {
  display: flex;
  gap: 17.3rem;
  margin-bottom: 8rem;
}

.about__left {
  width: 45.5rem;
  padding-bottom: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about__left-image {
  overflow: hidden;
  aspect-ratio: 455/642;
  width: 100%;
  margin-bottom: 8rem;
}

.about__right {
  width: 61.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about__right .about__text {
  margin-bottom: 8rem;
}

.about__right-image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 612/1200;
}

.about__text > * {
  max-width: 29.8rem;
}

.about__text h1,
.about__text h2,
.about__text h3,
.about__text h4,
.about__text h5,
.about__text h6 {
  max-width: 100%;
}

.about__bottom {
  position: relative;
}

.about__bottom-image {
  position: relative;
  aspect-ratio: 1240/600;
}

.about img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.about .btn {
  margin-top: 1em;
}

.about .btn._mob {
  display: none;
}

@media (max-width: 1260px) {
  .about__title {
    margin-bottom: 60px;
  }

  .about__row {
    gap: initial;
    justify-content: space-between;
    margin-bottom: 60px;
  }

  .about__left {
    width: 360px;
    padding-bottom: 0;
  }

  .about__left-image {
    margin-bottom: 60px;
  }

  .about__right {
    width: 360px;
  }

  .about__right .about__text {
    margin-bottom: 60px;
  }
}

@media (max-width: 760px) {
  .about {
    padding: var(--sp) 0;
  }

  .about__title {
    margin-bottom: 40px;
  }

  .about__row {
    gap: 0px;
    flex-direction: column;
  }

  .about__left {
    width: 100%;
    padding-bottom: 0;
  }

  .about__left-image {
    aspect-ratio: 3/4;
    margin-bottom: 40px;
  }

  .about__right {
    width: 100%;
  }

  .about__right .about__text {
    margin-bottom: 40px;
  }

  .about__right-image {
    aspect-ratio: 3/4;
  }

  .about__text > * {
    max-width: 100%;
  }

  .about__bottom {
    display: none;
  }

  .about .btn {
    display: none;
  }

  .about .btn._mob {
    display: block;
  }
}