.trusted-section {
  padding: 80px 10px;
}

.trusted-text {
  flex: 1;
  text-align: left;
}

.trusted-text h2 {
  font-size: 32px;
  line-height: 50px;
  color: #2d1b3e;
  font-weight: 700;
  position: relative;
  padding: 0 12px;

  padding-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.trusted-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 3px;
  background: #9b4f96;
}

.client-logos {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.logos-container {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 20px 0;
  margin: 0 12px;
}

.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
}

.logo-slide-wrapper {
  width: 150px;
  height: 60px;
  flex: 0 0 auto;
  margin-right: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slide-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

@keyframes slideGroup {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-slideGroup {
  animation: slideGroup 15s linear infinite;
}

@media (max-width: 992px) {
  .trusted-section {
    padding: 50px 10px;
  }
}

@media (max-width: 768px) {
  .trusted-section {
    padding: 10px;
  }

  .trusted-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .trusted-text h2 {
    font-size: 26px;
    padding: 12px 0;

    margin-top: 10px; 
    line-height: 35px;
  }

  .client-logos {
    justify-content: center;
    margin-top: 20px;
  }

  .logo-slide-wrapper {
    width: 190px;
    height: 80px;
    margin-right: 80px;
  }

  
  .logos-container{
    margin: 0;
  }
}

@media (min-width: 640px) {
  .logo-slide-wrapper {
    width: 170px;
    height: 70px;
    margin-right: 70px;
  }

}
