.about {
  background-color: #0D253F;
  color: #ffffff;
  padding: 4.8rem 0;
}

.about__inner {
  display: flex;
  flex-direction: column;
}

.about__content {
  display: flex;
  flex-direction: column;
  max-width: 64rem;
}

.about__title {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.about__subtitle {
  font-size: 1.6rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
  max-width: 47rem;
  margin: 1.6rem 0;
}

.about__stats {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 2.8rem;
}

.about__stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: rgba(13, 37, 63, 0.2);
  border-radius: 2.4rem;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.about__stat-value-group {
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  min-width: 10rem;
}

.about__stat-title {
  font-size: 1.6rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  max-width: 34.6rem;
  width: 100%;
}

.about__image {
  display: none;
}

.about__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media only screen and (min-width: 768px) {
  .about {
    padding: 12rem 0;
  }

  .about__inner {
    flex-direction: row;
    gap: 4.8rem;
  }

  .about__title {
    font-size: 2.4rem;
    line-height: 1;
  }

  .about__subtitle {
    margin: 2.4rem 0;
  }

  .about__stats {
    gap: 1.2rem;
    margin-top: auto;
  }

  .about__stat-value-group {
    font-size: 4.8rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
  }

  .about__image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 67.2rem;
    max-height: 63.5rem;
    width: 100%;
    height: 100%;
    border-radius: 2.4rem;
    overflow: hidden;
    position: sticky;
    top: 11rem;
    height: 100%;
  }
}

@media only screen and (min-width: 1280px) {
  .about__image {
    aspect-ratio: 1.0582677165;
  }

@supports not (aspect-ratio: 1/1) {
    .about__image::before {
      float: left;
      padding-top: calc(100% * 63.5 / 67.2);
      content: "";
    }

    .about__image::after {
      display: block;
      content: "";
      clear: both;
    }
}
}