
.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  padding-top: 50px;
}

.hero-section {
  padding: 250px 18px 0px 18px;
  margin-top: -200px;
  background-image:  linear-gradient(180deg, var(--lightHelper) 55%, var(--lightHelper));
  position: relative;
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x:left;
  color: var(--white);
}

.hero-section::before {
  content: "";
  /* background-image: url("../img/shiny-back.webp"); */
  background-size: cover;
  position: absolute;
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.text-start{
  text-align: start;
}
.hero-content {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;

}

.hero-title {
  font-size: 30px;
  font-weight: 700;
  margin-block: 16px;

}
.hero-title.h1{
  font-size: 30px;
  font-weight: 700;
  margin-block: 16px;
  position: relative;
  text-align: center;
}
.hero-title.h2{
  margin-right: 0px;
  text-align: center;


}
.hero-content .none{
  display: none;
}

.hero-title.h1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  border-radius: 25px;
  bottom: -11%;
  left: 0;
  background-color: var(--white);


}

/* .hero-title.h1::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 5px;
  border-radius: 25px;
  bottom: -25%;
  right: 0;
background-color: var(--white);

} */
.hero-section ul {
  width: 100%;
  margin: 0 auto;
}
.hero-section ul li {
/* justify-content: center; */
  /* margin-right: 10px; */
  margin-bottom: 10px;
 color: var(--white);
 display: flex;
 gap: 10px;
 font-size: 17px;
}
.hero-section ul li  svg{
  margin-top: 6px;
 color: var(--white);
 width: 20px !important;
 height: 20px !important;
}


.hero-subtitle {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-content .btn{
  justify-self: center;
  margin-top: 30px;
  width: 60%;
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  padding: 8px;
  border-radius: 20px;
border: 3px solid var(--white);
  background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--lightHelper) 100%);
}

/* .hero-content a:hover {
  border-radius: 20px 2px 20px 2px;
} */

.hero-image-card {
  width: 50%;
  /* border-radius: 5px 30px 5px 30px; */

}

.image-card {
  overflow: hidden;
}

.image-card img {
  border-radius: 5px 30px 5px 30px;
  width: 100%;
  display: block;
}

/* ========== responsive additions for hero.css ========== */

/* reduce big paddings on medium screens */
@media (max-width: 1200px) {
  .hero-section {
    padding: 250px 16px 80px 16px;
  }

  .hero-title {
    font-size: 34px;
  }
}

/* tablets */
@media (max-width: 900px) {
  .hero-section {
    padding: 180px 12px 80px 12px;
    margin-top: -120px;
    background-position-x: center;
  }
  .hero-section ul {
    width: 100%;
    margin: 0 auto;
  }
  .hero-content,
  .hero-image-card {
    width: 100%;
  }

  .hero-content {
    order: 2;
    padding: 0 8px;
  }

  .hero-image-card {
    order: 1;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: 28px;
  }
  .hero-title.h1{
    font-size: 28px;
  }

  .hero-content .btn{
    width: 80%;
    margin: 18px auto 0;
    font-size: 16px;
    padding: 10px;
  }

  .image-card img {
    max-width: 360px;
    margin: 0 auto;
  }
}

/* small phones */
@media (max-width: 576px) {
  .hero-content .none{
    display: block;
  }
  .hero-section ul li {
    text-align: start;
justify-content: start;
}
  
  .hero-section {
    padding: 150px 10px 20px 10px;
    margin-top: -90px;
    background-image: linear-gradient(180deg, var(--lightHelper) 55%, var(--lightHelper));
    position: relative;
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: left;
  }
  .image-card {
    padding: 20px 0;
  }
  .hero-title {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
  }
  .hero-title.h1{
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .hero-title.h2{
    margin-top: 20px;
    text-align: start;
   
  }
  .hero-container {
    max-width: 100%;
    padding: 0px;
    flex-direction: column-reverse;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .hero-content {
    width: 100%;
    margin-bottom: 10px;
  }
  .hero-content .btn{
    width: 100%;
    font-size: 15px;
    padding: 10px;
  }

  .image-card {
    width: 100%;
  }
  .image-card img {
    max-width: 260px;
  }
}