.home-hero {
  padding-left: 30px;
  padding-right: 30px;
}

.home-hero + .wp-block-columns {
  margin-bottom: 0;
}


.home-hero__wrapper {
  max-width: 1140px;
  min-height: 607px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--il-orange) 57%, #fff 43%);
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 615px);
  column-gap: 34px;
  align-items: center;
  position: relative;
}

.home-hero__wrapper:before {
  content: "";
  display: block;
  width: 700px;
  height: 100%;
  background: linear-gradient(135deg, #fff 50%, var(--il-orange) 50%);
  position: absolute;
  top: 0;
  transform: translateX(-100%);
}

.home-hero__pattern {
  display: block;
  position: absolute;
  bottom: 0%;
  left: 100px;
  transform: translateY(50%);
  width: 165px;
  height: 35px;
  background-image: url("../assets/white-ascending-lines.svg");
  background-repeat: no-repeat;
}

.home-hero__heading {
  font-family: var(--il-font-montserrat);
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  color: #fff;
}

.home-hero__subheading {
  font-size: 36px;
  line-height: 44px;
  max-width: 347px;
}

.home-hero__video-wrapper {
  position: relative;
}


.home-hero video {
  max-width: 100%;
  display: block;
  border-radius: 25px;
}

.home-hero__controls {
  background: none;
  border: 0;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 5;
}

.home-hero__play-button, .home-hero__pause-button {
  width: 60px;
  height: 60px;
  display: block;
  cursor: pointer;
}

.home-hero__controls svg {
  fill: #fff;
}

.home-hero__controls:focus-visible {
  background-color: var(--il-arches-90);
  border-bottom: 3px solid var(--il-blue);
  color: var(--il-blue);
}

.home-hero__controls:focus-visible svg, .home-hero__controls:hover svg {
  fill: var(--il-blue);
}


@media screen and (max-width: 1280px) {
  .home-hero__wrapper:before {
    background: var(--il-orange);
  }
}


@media screen and (max-width: 855px) {
  .home-hero {
    padding-left: 0;
    padding-right: 0;  
  }

  .home-hero__wrapper {
    min-height: 0;
    grid-template-columns: 1fr;
    row-gap: 22px;
    padding: 80px 70px;
  }

  .home-hero__pattern {
    display: none;
  }

  .home-hero__subheading {
    max-width: 370px;
  }
  
  .home-hero video {
    width: 100%;
  }
}


@media screen and (max-width: 550px) {
  .home-hero__wrapper {
    padding: 0;
    background: var(--il-orange);
  }

  .home-hero__text {
    padding: 40px 20px 30px;
    order: 2;
  }

  .home-hero__heading {
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 10px;
  }

  .home-hero__subheading {
    font-size: 26px;
    line-height: 35px;
  }

  .home-hero video {
    border-radius: 0px;
  }

  .home-hero__video-wrapper {
    position: relative;
  }

  .home-hero__video-wrapper:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 20px;
    background-image: url("../assets/white-ascending-lines.svg");
    width: 165px;
    height: 35px;
    background-repeat: no-repeat;
    transform: translateY(50%);
  }
}