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