.home-hero__container {
  position: relative;
}

.home-hero__col {
  justify-content: center;
}

.home-hero__logo {
  height: 167px;
  max-height: 167px;
  max-width: 100%;
  margin-bottom: 40px;
  object-fit: contain;
}

.home-hero__heading {
  font-size: 24px;
  line-height: 1.5;
  font-family: var(--font-playfair);;
  margin-bottom: 8px;
}

.home-hero__cta-text {
  font-family: var(--font-playfair);;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 24px;
}

.home-hero__buttons {
  display: flex;
  gap: 16px;
}

.home-hero__scroll-img-text {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 115px;
  height: auto;
  transform-origin: bottom left;
}

.home-hero__scroll-img-arrow {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.home-hero__circles-img {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  width: 750px;
  z-index: -1;
}

.home-hero__image {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.home-hero__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 16px;
}

.home-hero__image--1 {
  grid-column: 1;
  grid-row: span 3;
}

.home-hero__image--2 {
  grid-column: 2;
  grid-row: 1/6;
}

.home-hero__image--3 {
  grid-column: 1;
  grid-row: 4/6;
}

@media (max-width: 768px) {
  .home-hero__logo {
    height: 129px;
    margin-bottom: 24px;
  }

  .home-hero__heading {
    font-size: 22px;
  }

  .home-hero__cta-text {
    font-size: 22px;
    margin-bottom: 16px;
  }

}