.hero {
  height: 100svh;
  position: relative;
  margin-bottom: 8.75rem;
}
.hero .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .image-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  opacity: 0.8;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
}
.hero .image-wrapper:after {
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -40px;
  background: url("../../assets/image-overlay-4.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  z-index: 0;
}
@media screen and (max-width: 1860px) {
  .hero .image-wrapper:after {
    bottom: -20px;
  }
}
@media (max-width: 64rem) {
  .hero .image-wrapper:after {
    bottom: -10px;
  }
}
.hero .icon-chevron-right {
  width: 1.5625rem;
  height: 2.6875rem;
}
.hero .icon-chevron-right:after {
  background: var(--yellow);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 1.5625rem;
  height: 2.6875rem;
  bottom: 80px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
}
@media (max-width: 64rem) {
  .hero .icon-chevron-right:after {
    bottom: 40px;
    width: 1.125rem;
    height: 2.1875rem;
  }
}
.hero .icon-chevron-right:hover:after {
  background: var(--white);
}
@media (max-width: 47.9375rem) {
  .hero {
    margin-bottom: 3.75rem;
  }
}

.hero .hero-grid {
  color: var(--white);
  z-index: 5;
  position: relative;
}
.hero .hero-grid .hero-wrapper {
  -ms-grid-column: 4;
  -ms-grid-column-span: 6;
  grid-column: 4/10;
  height: 80vh;
}
.hero .hero-grid .hero-wrapper h1 {
  text-align: center;
  text-transform: uppercase;
}
.hero .hero-grid .hero-wrapper h1 .line:nth-child(1) {
  color: var(--yellow);
}
@media (max-width: 64rem) {
  .hero .hero-grid .hero-wrapper {
    -ms-grid-column: 1;
    -ms-grid-column-span: 8;
    grid-column: 1/9;
  }
}
@media (max-width: 47.9375rem) {
  .hero .hero-grid .hero-wrapper {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/5;
  }
}
.hero a {
  z-index: 5;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
}