  .title-heading {
  font-weight: 700;
  font-size: clamp(40px, 8vw, 80px);
  margin-bottom: 10px;
  white-space: nowrap;
  color: ;
}

.text-gradian strong {
  background: linear-gradient(90deg, #8f20c8 0%, #2945bc 12.02%, #08a2f5 50.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}



.hero__ctas .btn{
  border: 1px solid !important;
}



.hero__background {
  background-color: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
  margin-left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.hero__background img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.hero__background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*   background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%); */
  z-index: 2;
}


.subtitle-heading {
  font-weight: 400;
  font-size: clamp(20px, 6vw, 56px);
  margin: 0 0 30px 0;
  white-space: nowrap;
  color: ;
}

.hero__description {
  font-size: 24px;
  line-height: 36px;
  margin-top: 40px;
  color: ;
}

.hero__list-card {
  display: flex;
  flex-direction: row;
  gap: 4px 12px;
  margin: 40px 0;
}

.hero__list-card-item {
  width: 100%;
  border-radius: 10px;
  background: var(--color-light-gray);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.hero__list-card-item-subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: var(--color-black);
}

.hero__list-card-item-subtitle strong {
  background: var(--color-primary);
  font-weight: 500;
  padding: 4px 3px;
}

.hero__list-card-item-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  color: var(--color-black);
}

.hero__ctas {
  position: relative;
  flex-direction: row;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px 28px;
  margin-top: 32px;
}

.hero__ctas.--hidden {
  display: none;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero__description {
    font-size: 20px;
    line-height: 30px;
    margin-top: 20px;
  }
  
  .hero__ctas {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .title-heading, .subtitle-heading {
    white-space: normal;
  }
  
  .hero__list-card {
    flex-direction: column;
    margin: 20px 0 0;
  }
  
  .hero__list-card-item {
    padding: 10px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 100% !important;
  }
  
  .hero__list-card-item-title {
    font-size: 16px;
    line-height: normal;
  }
  
  .hero__ctas {
    flex-direction: column;
    align-items: center;
    display: none;
  }
  
  .hero__ctas .btn {
    width: 100%;
    border: 1px solid !important;
    background: red !important;
}