.hero-wrapper {
  background: url("/wp-content/themes/tl/assets/imgs/hero-home.webp") center
      bottom / 780px auto no-repeat,
    -webkit-gradient(linear, left bottom, left top, from(#091624), to(#091624));
  background: url("/wp-content/themes/tl/assets/imgs/hero-home.webp") center
      bottom / 780px auto no-repeat,
    -o-linear-gradient(bottom, #091624, #091624);
  background: url("/wp-content/themes/tl/assets/imgs/hero-home.webp") center
      bottom / 780px auto no-repeat,
    linear-gradient(0deg, #091624, #091624);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 500px;
  position: relative;
}
.hero-wrapper::after {
  content: "";
  position: absolute;
  top: calc(100% - 140px);
  left: 0;
  width: 100%;
  height: 300px;
  background: url("/wp-content/themes/tl/assets/pseudo/after-banner.webp")
    center top no-repeat;
  z-index: -1;
}

.hero-wrapper .brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero-wrapper .brand .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 48px;
}
.hero-wrapper .brand .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: clamp(320px, 60vw, 700px);
}

.hero-wrapper .description {
  color: #ffffff;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  margin: 20px 0 0;
}

.hero-wrapper .cta-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.hero-wrapper .btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 230px;
  text-decoration: none;
  border-radius: 8px;
  padding: 13px 25px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-family: Manrope;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.15px;
}
.hero-wrapper .btn.primary {
  background: #069ba4;
}
.hero-wrapper .btn.secondary {
  background: #081622;
}
.hero-wrapper svg {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.hero-wrapper .btn:hover svg {
  -webkit-transform: translateX(5px);
      -ms-transform: translateX(5px);
          transform: translateX(5px);
}
.hero-wrapper .button_arrow {
  fill: #ffffff;
}

@media screen and (min-width: 760px) {
  .hero-wrapper {
    min-height: 690px;
    background: url("/wp-content/themes/tl/assets/imgs/hero-home.webp")
      center/cover no-repeat;
  }
  .hero-wrapper .description {
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
    margin-top: 30px;
  }
  .hero-wrapper .cta-wrapper {
    gap: 20px;
    margin: 80px 0 80px;
  }
  .hero-wrapper .btn {
    font-size: 18px;
    letter-spacing: 0.18px;
  }
}