/* hero */

.hero {
  display: flex;
  align-items: center;
}

.hero-right {
  margin-top: 170px;
}

.hero-img {
  max-width: 100%;
  height: auto;
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  /* top: 100%; */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 1;
}

#carouselHeroControls .service-card {
  width: 100%;
  height: auto;
}

#carouselHeroControls .service-card-title {
  width: auto;
  min-height: auto;
}

#carouselHeroControls .service-card-description {
  width: auto;
  height: unset;
}

.carousel-arrows {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
}

.carousel-arrows .carousel-control-prev {
  left: 40%;
}

.carousel-arrows .carousel-control-next {
  right: 40%;
}

/* stats-section */

.stats-section {
  background-color: rgb(239 245 242);
  padding-top: 30px;
  padding-bottom: 50px;
}

.stats-heading {
  color: #242424;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.stats {
  margin-top: 40px;
  text-align: center;
}

.stat-item {
  margin-bottom: 25px;
  position: relative;
}

.stat-item-border::before{
  content: "";
  display: inline-block;
  width: 1px;
  height: 100px;
  background: linear-gradient(90deg, #25935F 0%, var(--Color-w, #F5BD02) 100%);
  position: absolute;
  right: 95px;
  top: 45px;
}

.stat-item .stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(
    180deg,
    #25935f 58.19%,
    var(--Color-w, #f5bd02) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item .stat-name {
  color: #242424;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

/* services */

.services-section {
  margin-top: 135px;
  margin-bottom: 170px;
}

.services-section-heading {
  color: #242424;
  text-align: right;
  font-size: 36px;
  font-weight: 700;
  line-height: 60px; /* 166.667% */
}

/* news */

.news-section {
  /* height: 700px; */
}

.news-heading {
  color: var(--Color-st-1, #9da4ae);
  font-size: 18px;
  font-weight: 400;
}

.news-title {
  color: #242424;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px; /* 122.222% */
  margin-bottom: 80px;
}

.news-list-all {
  color: #25935f;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; /* 150% */
  text-decoration: none;
  float: left;
  margin-top: -100px;
}

.news-container {
  background: rgb(165 206 180 / 30%);
  /* height: 300px; */
  padding-top: 100px;
  margin-top: 120px;
}

.news-data {
  margin-top: -133px;
}

.news-section .card {
  display: inline-flex;
  padding: var(--Global-spacing-xl, 16px);
  border-radius: var(--radius-lg, 16px);
  border: 1px solid var(--Border-border-neutral-primary, #d2d6db);
  background: var(--Background-background-card, #fff);
  margin-bottom: 25px;
}

.news-section .card img {
  min-height: 300px;
  max-height: 300px;
}

.news-section .card-title {
  color: var(--Color-st-2, #384250);
  text-align: right;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px; /* 160% */
}

.news-section .card-text {
  color: var(--Color-st-1, #9da4ae);
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px; /* 143.75% */
}

.news-section .card-body {
  flex: 1 1 auto;
  padding: 0.5rem 0.5rem;
}

/* how to start */

.how-to-start-section {
  margin-bottom: 100px;
}

.how-to-start-section-heading {
  margin-top: 15px;
  color: #242424;
  text-align: right;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px; /* 122.222% */
}

.how-to-start-section-description {
  color: var(--Color-st-1, #9da4ae);
  text-align: right;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 50px;
}

.how-to-start-body {
  /* display: flex; */
  /* justify-content: space-between; */
}

.how-to-start-step {
  display: flex;
}

.step-icon {
  margin-left: 10px;
}

.step-icon:not(.last-child):after {
  display: block;
  content: "";
  height: 40px;
  width: 10px;
  background: #25935f;
  margin-right: 20px;
}

.step-info {
}

.step-title {
  margin-bottom: 5px;
  color: var(--Color-st-2, #384250);
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px; /* 187.5% */
}

.step-description {
  color: var(--Color-st-1, #9da4ae);
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 15px; /* 107.143% */
}

.how-to-start-images {
  text-align: end;
}

.how-to-start-images img {
  width: auto;
}


/* help section */

.help-section {
  margin-top: 135px;
}

.help-body {
  display: flex;
  padding: var(--Global-spacing-xl, 16px);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--Card-card-lg-gap, 24px);
  flex: 1 0 0;

  border-radius: var(--radius-lg, 16px);
  border: 1px solid var(--Border-border-neutral-primary, #d2d6db);
  background: var(--Background-background-card, #fff);
}

/* responsive */

@media (max-width: 992px) {
  /* hero */
  .hero-right {
    margin-top: 50px;
  }

  .hero-right .lead {
    font-size: 18px;
  }

  .hero-img {
    display: none;
  }

  #carouselHeroControls {
    margin-top: 50px;
  }

  .carousel-arrows {
    margin-bottom: 60px;
  }

  /* how-to-start */
  .how-to-start-images img {
    margin-top: 20px;
    width: 100%;
  }

  /* services */
  .services-section {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .nav-tabs-header {
    position: relative;
  }

  .all-servcies-link {
    position: absolute;
    top: -46px;
    left: 0;
  }

  /* how-to-start-section */
  .how-to-start-section {
    margin-bottom: 30px;
  }

  /* news */
  .news-title {
    font-size: 30px;
  }

  .news-list-all {
    margin-top: -70px;
  }

  /* faq-section */

  .faq-section {
    margin-top: 60px;
  }
}
