.hero-banner {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  margin-top: 20px;
}

.hero-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 35, 0.88) 0%, rgba(7, 18, 35, 0.72) 30%, rgba(7, 18, 35, 0.26) 60%, rgba(7, 18, 35, 0.12) 100%);
}

.hero-banner__inner {
  align-items: center;
  display: flex;
  margin: 0 auto;
  max-width: 1440px;
  padding: 90px 66px;
  position: relative;
  z-index: 1;
}

.hero-banner__content {
  max-width: 540px;
}

.hero-banner__eyebrow {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #A7B0B8;
  margin-bottom: 29px;
}

.hero-banner__brand {
  align-items: center;
  backdrop-filter: blur(4px);
  background: #00DBDD0D;
  border: 1px solid #00DBDD4D;
  display: inline-flex;
  gap: 12px;
  margin-bottom: 28px;
  min-height: 54px;
  padding: 19px 20px;
}

.hero-banner__brand-image {
  max-height: 28px;
  width: auto;
  display: block;
}

.hero-banner__brand-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}

.hero-banner__title {
  margin: 0 0 29px;
  font-size: 48px;
  line-height: 53px;
  font-weight: 600;
  letter-spacing: -0.96px;
  color: #E9EEF2;
}

.hero-banner__description {
  font-size: 20px;
  line-height: 32px;
  color: #A7B0B8;
  max-width: 540px;
}

.hero-banner__description p:last-child {
  margin-bottom: 0;
}

.hero-banner__actions {
  margin-top: 32px;
}

.hero-banner__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;  
  transition: all 0.25s ease;
}

@media (max-width: 991px) {
  .hero-banner__title {
    font-size: 32px;
    line-height: 38px;
  }

  .hero-banner__description {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .hero-banner {
    margin-top: 15px;
    min-height: 570px;
  }  

  .hero-banner__inner {
    min-height: 570px;
    padding: 30px 27px;
    align-items: flex-end;
  }

  .hero-banner__content {
    max-width: 100%;
  }

  .hero-banner__brand {
    margin-bottom: 20px;
    padding: 10px 14px;
    min-height: 49px;
  }

  .hero-banner__brand-text {
    font-size: 16px;
  }

  .hero-banner__description {
    font-size: 16px;
    line-height: 25px;
  }

  .hero-banner__actions {
    margin-top: 24px;
  }
  .hero-banner__eyebrow {
    font-size: 13px;
    line-height: 13px;
    margin-bottom: 21px;
}
  
.btn_arrow span{ display: inline-block; padding-right: 10px; }
.no_arrow .btn_arrow span{ padding-right: 0; }
.btn_arrow .button_arrow{ width: 26px; height: 18px; position: relative; overflow: hidden; } 
.btn_arrow .button_arrow .arrow_container{ transform: translate3d(26px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d; width: 104px; height: 18px; position: absolute; top: 0%; bottom: 0%; left: auto; right: 0%; -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease; }
.btn_arrow:hover .button_arrow .arrow_container{ transform: translate3d(78px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d; }
.btn_arrow .button_arrow .arrow_container div{ line-height: 0; width: 52px; }

@media(max-width: 767px){
  .btn_arrow .button_arrow{ width: 20px; height: 14px; }
  .btn_arrow .button_arrow .arrow_container{ width: 80px; height: 14px; transform: translate3d(20px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); }
  .btn_arrow:hover .button_arrow .arrow_container{ transform: translate3d(60px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); }
  .btn_arrow .button_arrow .arrow_container div{ line-height: 0; width: 40px; }
  .btn_arrow .button_arrow .arrow_container div svg{ width: 20px; height: 14px; }
}