.service-hero p {
  max-width: 540px;
}

.service-hero .service__banner-img {
  margin-top: -80px;
  position: relative;
  z-index: -1;
}
.service-hero .service__banner-img--mobile{
  display: none;
}

@media (max-width: 991px) {
  .service-hero .service__banner-img {
    margin-top: -40px;
  }
}

@media (max-width: 767px) {
  .service-hero .service__banner-img {
    display: none;
  }
  .service-hero .service__banner-img--mobile{
    display: block;
  }
}

@media (max-width: 575px) {
  .hero__title br {
    display: none;
  }
}

/* LEVERAGE EXPERTS SECTION START */



/* Desktop Grid */
.partners-wrapper {
  max-width: 1100px;
  margin: auto;
}

.partners-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
}

.partner-item {
  text-align: center;
}

.partner-item-img-card {
  width: 72px;
  height: 72px;
  border-radius: 50px;
  border: 1px solid #2A292E;
  margin: auto;
  display: flex;
  margin-bottom: 8px;
  transform: scale(1);
  transition: 0.30s;
  background: transparent;
}
.partner-item:hover .partner-item-img-card{
    transform: scale(1.07);
    background: #202020;
}
.partner-item {
  border-right: 1px solid #2A292E;
}

.partner-item:last-child {
  border-right: none;
}

.partner-item img {
  max-width: 100px;
  margin: auto;
  display: block;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}

.partner-item-title {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}

.partner-item img:hover {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .leverage__experts .leverage__experts--desc br {
    display: none;
  }

  .stats-container {
    gap: 12px;
  }

  .project__success .project__success--desc br {
    display: none;
  }
}

/* MOBILE SLIDER */
@media (max-width: 767px) {
  .partners-wrapper {
    overflow: hidden;
    position: relative;
  }

  .partners-track {
    display: flex;
    gap: 20px;
    animation: slide 15s linear infinite;
  }

  .partner-item {
    min-width: 120px;
  }

  .leverage__experts .leverage__experts--desc br {
    display: none;
  }
}

/* Auto sliding animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* LEVERAGE EXPERTS SECTION END  */


/* STATS SECTION START */


.stats-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

/* Stat Items */
.stat-item {
  width: 175px;
}

.stat-item h3 {
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 32px;
  color: var(--color-text-primary);
  font-weight: 500;
}

.stat-item p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Rating Card */
.rating-card {
  display: flex;
  align-items: center;
  gap: 46px;
  background: #141516;
  padding: 36px 43px;
  border-radius: 18px;
  width: 347px;
}

.rating-left img {
  height: 32px;
  width: 100%;
}

.rating-text {
  font-size: 14px;
  line-height: 20px;
  color: 8A8F98;
  margin-bottom: 4px;
}

.stars {
  font-size: 16px;
  color: gold;
}

.stars span {
  color: var(--color-text-primary);
  margin-left: 5px;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .stats-container {
    flex-direction: column;
    text-align: center;
  }

  .rating-card {
    justify-content: center;
  }
}
@media (max-width: 575px) {
     .stats-container {
        flex-direction: unset;
        text-align: center;
        flex-wrap: wrap;
    }
    .stat-item {
    width: 160px;
    text-align: left;
}
}
/* STATS SECTION END */



/* services-challenge start */

.challenge__card-media {
  height: 348px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenge__card-media img {
  height: 214px;
}

/* services-challenge end */


@media screen and (max-width: 1199px) {
  .challenge__card-media {
    height: 300px;
  }

  .challenge__card-media img {
    height: 190px;
  }
}

@media screen and (max-width: 991px) {
  .challenge__card-media {
    height: 260px;
    padding: 30px;
  }

  .challenge__card-media img {
    height: 150px;
  }

  .challenge__card-title {
    margin-bottom: 0;
  }
}