section.heroservices {
  height: 80vh;
  position: relative;
  background-color: var(--sustainable-400);
  color: var(--white);
}
@media screen and (min-width: 1280px) {
  section.heroservices:not(.admin):first-child .img-wrapper {
    top: var(--header-height);
  }
}
@container main (max-width: 64rem) {
  section.heroservices {
    height: auto;
    display: -ms-grid;
    display: grid;
    row-gap: 2.5rem;
  }
}
section.heroservices .heroservices-grid {
  height: 100%;
}
@container main (max-width: 89.9375rem) {
  section.heroservices .heroservices-grid {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
}
@container main (max-width: 64rem) {
  section.heroservices .heroservices-grid {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
section.heroservices .heroservices-grid .hero-text {
  margin-bottom: 5rem;
}
section.heroservices .heroservices-grid .hero-text h1 {
  color: var(--white);
}
@container main (max-width: 47.9375rem) {
  section.heroservices .heroservices-grid .hero-text h1 {
    -ms-hyphens: auto;
        hyphens: auto;
  }
}
section.heroservices .img-wrapper {
  width: 50%;
  position: absolute;
  right: 0;
  top: 0;
  height: calc(80vh - var(--header-height));
}
@media screen and (max-width: 1280px) {
  section.heroservices .img-wrapper {
    height: 80vh;
  }
}
@container main (max-width: 64rem) {
  section.heroservices .img-wrapper {
    width: 100%;
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 30.75rem;
    margin-top: 1.5rem;
  }
}
section.heroservices .img-wrapper:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
section.heroservices .img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem 0 0 0;
}
@container main (max-width: 64rem) {
  section.heroservices .img-wrapper img {
    margin-left: var(--gutter);
    border-radius: 0.625rem 0 0 0.625rem;
  }
}