.qp-split-hero{
  position: relative;
  padding: 90px 0;
  background-color: #0f1420;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

.qp-split-hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 20, 32, 0.78) 0%, rgba(15, 20, 32, 0.45) 55%, rgba(15, 20, 32, 0.25) 100%);
}

.qp-split-hero__inner{
  position: relative;
  z-index: 1;
}

.qp-split-hero__grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 34px;
}

.qp-split-hero--reverse .qp-split-hero__grid{
  grid-template-columns: 0.9fr 1.1fr;
}

.qp-split-hero--reverse .qp-split-hero__left{
  order: 2;
}

.qp-split-hero--reverse .qp-split-hero__right{
  order: 1;
}

.qp-split-hero--content-right .qp-split-hero__overlay{
  background: linear-gradient(270deg, rgba(15, 20, 32, 0.78) 0%, rgba(15, 20, 32, 0.45) 55%, rgba(15, 20, 32, 0.25) 100%);
}

.qp-split-hero--content-right .qp-split-hero__grid{
  grid-template-columns: 1fr;
}

.qp-split-hero--content-right .qp-split-hero__left{
  justify-self: end;
  width: min(720px, 100%);
}

@media (max-width: 900px){
  .qp-split-hero{
    padding: 70px 0;
  }
  .qp-split-hero__grid{
    grid-template-columns: 1fr;
  }
  .qp-split-hero__right{
    order: -1;
  }
}

.qp-split-hero__title{
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f3f3f3;
  margin-bottom: 20px;
  position: relative;
  padding-left: 18px;
  line-height: 1.1;
}

.qp-split-hero__title::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgb(57 186 201);
  border-radius: 3px;
}

.qp-split-hero__description{
  max-width: 70ch;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.65;
}

.qp-split-hero__list{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  font-size: 14px;
}

.qp-split-hero__list-col{
  list-style: none;
  margin: 0;
  padding: 0;
}

.qp-split-hero__list-col li{
  position: relative;
  padding-left: 26px;
}

.qp-split-hero__list-col li::before{
  content: "\f00c";
  font-family: "Font Awesome 6 Free","Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15em;
  color: #2ad5ff;
  transition: color 0.3s;
}

.qp-split-hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 12px 22px;
  border-radius: 30px 30px 30px 30px;
  color: var(--e-global-color-19a9565, #ffffff);
  font-weight: 700;
  text-decoration: none;
  border: 0;
  background-color: transparent;
  background-image: radial-gradient(at left top, rgb(57, 223, 216) 0%, rgb(58, 32, 139) 95%);
  text-transform: uppercase;
  min-width: 150px;
}
a.qp-split-hero__btn:focus {
  color: #ffffff !important;
}
.qp-split-hero__btn:hover,
.qp-split-hero__btn:focus-visible{
  filter: brightness(1.06);
  text-decoration: none !important;
  color: var(--e-global-color-19a9565, #ffffff) !important;
}

.qp-split-hero__image{
  width: min(520px, 100%);
  height: auto;
  display: block;
  margin-left: auto;
}

