.aboutSec2 {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-gap: 6rem;
}

.testimonialsItem {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 6rem;
  max-width: 80rem;
  margin: 4rem auto;
}

.swiper-button-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  margin-top: 2rem;
  width: 80%;
  align-self: center;
  margin: 0 auto;
  margin-top: 4rem;
}

.swiper-button-custom .custom-prev,
.swiper-button-custom .custom-next {
  cursor: pointer;
}

.swiper-button-custom .customDivide {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.scroll-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 3rem 0;
}
.scroll-content,
.scroll-content-reverse {
  display: flex;
  width: max-content;
}

.scroll-inner {
  display: flex;
}

.scroll-content {
  animation: scroll 30s linear infinite;
}

.scroll-content-reverse {
  animation: scrollReverse 30s linear infinite;
}

.scroll-container img {
  height: 10rem;
  width: auto;
  aspect-ratio: 2/1;
  margin: 0 6rem;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media screen and (max-width: 768px) {
  .aboutSec2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .testimonialsItem {
    grid-template-columns: 1fr;
  }
  .testimonialsItem img {
    max-height: 10rem;
    object-fit: contain;
    margin: 0 auto;
  }
}
