.counter-03 {
  padding: 4rem 3rem;
}
.counter-03-container {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  display: grid;
  gap: 4rem;
}
.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.counter-03-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(213deg, rgba(32, 34, 34, 0.29) -12.31%, var(--Color-Scheme-1-Accent, rgba(6, 157, 132, 0.29)) 97.64%);
  padding: 4rem 3rem;
}
.counter-03-numbers {
  margin-bottom: 0.5rem;
}
.counter-03-numbers h3 {
  color: #FFF;
  font-family: 'Poppins-Bold', Arial, sans-serif;
  line-height: 150%;
  font-size: 40px;
  text-shadow: 0px 0px 20px  #069D84;
  line-height: 120%; 
  letter-spacing: -0.4px;
}
.counter-03-headline {
  margin-bottom: 1rem;
}
.counter-03-headline h5 {
   color: #FFF;
  font-family: 'Poppins-Bold', Arial, sans-serif;
  line-height: 150%;
  font-size: 16px;
}
.counter-03-description p {
  color: #FFF;
  font-family: 'Poppins-Regular', Arial, sans-serif;
  line-height: 150%;
  font-size: 16px;
}
.counter-03-button {
  margin-top: 5rem;
  text-align: center;
}
.logo-slider-js-container {
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin: 2rem auto;
}

.logo-slider-js-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  will-change: transform;
}

.logo-slider-js-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slider-js-item img {
  width: 100%;
  height: 40px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.logo-slider-js-item img:hover {
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .counter-03-container {
   grid-template-columns: repeat(2, 1fr);
   gap: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .counter-03 {
    padding: 4rem 1rem;
  }
  .logo-slider-js-track {
    gap: 0.3rem;
  }
  .counter-03-container {
   grid-template-columns: repeat(1, 1fr);
  }
  .logo-slider-js-container {
    width: 100%;
    max-width: 250px;
  }
  .logo-slider-js-item {
    width: 70px;
  }
}







    




