.front-hero {
  isolation: isolate;
  position: relative;
  display: grid;
  row-gap: 40px;
  text-align: center;
  align-items: center;
  justify-items: center;
  margin: 0 0 100px;
}

.front-hero__content {
  display: grid;
  justify-items: center;
  gap: 24px;
  grid-column: 1;
  grid-row: 1;
}

.front-hero__title h1 {
  margin: 0;
}

.front-hero__title span {
  color: #f06e20;
}

.front-hero__desc {
  line-height: 1.25;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  margin: 0;
}

.front-hero__slogan {
  line-height: 1.25;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin: 0;
}

.front-hero__action {
  width: min(100%, 443px);
}

.front-hero__action a.btn.btn-primary {
  height: 40px;
  font-weight: 700;
  font-size: 16px;
}

.front-hero .field--name-field-image {
  margin: 20px 0 0;
  grid-column: 1;
  grid-row: 1;
  z-index: -1;
  filter: opacity(0.3);
}

.front-hero.clearfix::after {
  display: none;
}

.front-hero .field--name-field-image img {
  width: 100%;
  height: auto;
  max-width: 897px;
  max-height: 488px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .front-hero__content {
    gap: 32px;
  }

  .front-hero__desc {
    font-size: 20px;
  }

  .front-hero__slogan {
    font-size: 30px;
  }

  .front-hero__action a.btn.btn-primary {
    height: 48px;
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .front-hero__content {
    gap: 40px;
  }

  .front-hero__desc {
    font-size: 24px;
  }

  .front-hero__slogan {
    font-size: 36px;
  }

  .front-hero__action a.btn.btn-primary {
    height: 58px;
    font-size: 24px;
  }
}

@media (min-width: 1200px) {
  .front-hero {
    grid-template-columns: 649px 361px 160px;
    text-align: left;
    justify-items: start;
    align-items: end;
  }

  .front-hero__content {
    justify-items: start;
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .front-hero__desc {
    max-width: 648px;
  }

  .front-hero__slogan {
    max-width: 630px;
  }

  .front-hero .field--name-field-image {
    filter: opacity(1);
    position: absolute;
    bottom: 0;
    margin: 0;
    max-width: 897px;
    width: calc(50vw - 64px);
    grid-column: 2 / -1;
    grid-row: 1;
  }
}