/* =========================
   Hero Home
   ========================= */
.hero-home {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
}
.hero-home > .image {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 10px;
    right: 10px;
    bottom: 0;
    width: calc(100% - 20px);
    height: calc(100% - 45px);
    border-radius: 20px;
    overflow: hidden;
    max-width: 2000px;
}
.hero-home > .image .background {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-home > .image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 35, 60, 0.25);
}
.hero-home .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-home__content {
  max-width: 900px;
  padding-top: 110px;
  padding-bottom: 90px;
}
.hero-home h1 {
  margin: 0 0 24px;
  color: #fff;
}
.hero-home__intro {
  max-width: 700px;
  margin-bottom: 36px;
  color: #fff;
}
.hero-home__intro p {
  margin-top: 0;
}
.hero-home__intro p:last-child {
  margin-bottom: 0;
}
.hero-home__impact {
  display: flex;
  align-items: stretch;
  margin-bottom: 36px;
}
.hero-home__impact-item {
  display: flex;
  align-items: center;
  min-height: 55px;
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.hero-home__impact-item:first-child {
  padding-left: 0;
  border-left: 0;
}
.hero-home .buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 991px) {
  .hero-home__content {
    padding-top: 80px;
    padding-bottom: 70px;
  }
  .hero-home__impact {
    flex-wrap: wrap;
  }
  .hero-home__impact-item {
    width: 50%;
    margin-bottom: 20px;
  }
  .hero-home__impact-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .hero-home {
    min-height: auto;
    margin: 0 3px;
    border-width: 3px;
  }
  .hero-home__content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero-home__intro {
    margin-bottom: 28px;
  }
  .hero-home__impact {
    display: block;
    margin-bottom: 30px;
  }
  .hero-home__impact-item {
    display: none;
  }
  .hero-home__impact-item:last-child {
    border-bottom: 0;
  }
  .hero-home .buttons {
    flex-wrap: wrap;
  }
  .hero-home .buttons a {
    padding: 15px !important;
  }
}

/* Gradient overlay */
.hero-home > .image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 35, 60, 0.75) 0%,
        rgba(0, 35, 60, 0.5) 40%,
        rgba(0, 35, 60, 0.15) 70%,
        rgba(0, 35, 60, 0) 100%
    );
}
@media (max-width: 991px) {
    .hero-home > .image::after {
        background: linear-gradient(
        180deg,
        rgba(0, 35, 60, 0.75) 0%,
        rgba(0, 35, 60, 0.6) 50%,
        rgba(0, 35, 60, .2) 100%
    );
}