.about-hero {
  overflow: hidden;
}

.about-hero__container {
  position: relative;
}

.about-hero__col {
  justify-content: center;
}

.about-hero__logo {
  height: 167px;
  max-height: 167px;
  max-width: 100%;
  margin-bottom: 40px;
  object-fit: contain;
}

.about-hero__heading {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 500;
  font-family: var(--font-playfair);
  margin-bottom: 16px;
}

.about-hero__cta-text {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 24px;
}

.about-hero__buttons {
  display: flex;
  gap: 16px;
}

.about-hero__scroll-img-text {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 115px;
  height: auto;
  transform-origin: bottom left;
}

.about-hero__scroll-img-arrow {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.about-hero__circles-img {
  position: absolute;
  top: -70px;
  left: 0;
  transform: translateX(-50%);
  height: 600px;
  z-index: -1;
}

.about-hero__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: calc(54% - 16px) 46%;
  gap: 16px;
}

.about-hero__image-wrap {
  position: relative;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-hero__image-wrap--1 {
  grid-column: 1;
  grid-row: span 2;
}

.about-hero__image-wrap--2 {
  grid-column: 2;
  grid-row: 1;
}

.about-hero__image-wrap--3 {
  grid-column: 2;
  grid-row: 2;
}

.about-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about-hero__image-text {
  position: absolute;
  left: 32px;
  bottom: 32px;
  width: calc(100% - 64px);
  font-family: var(--font-playfair);
  font-size: 40px;
  line-height: 1.3;
  color: var(--cream);
  font-style: italic;
  z-index: 5;
}

@media (max-width: 1200px) {
  .about-hero__image-text {
    font-size: 29px;
  }
}

@media (max-width: 991px) {
  .about-hero__cols {
    flex-direction: column;
  }

  .about-hero__col {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-hero__logo {
    height: 129px;
    margin-bottom: 24px;
  }

  .about-hero__heading {
    font-size: 22px;
  }

  .about-hero__heading {
    font-size: 32px;
  }

  .about-hero__cta-text {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

@media (max-width: 500px) {
  .about-hero__image-text {
    font-size: 20px;
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }
}