.ninthSectionimg {
  /* width: 60%; */
  margin: auto;
  padding: 30px 0 0;
}

/* new slider  */

.marquee-container {
  overflow: hidden;
  width: 100%;
}

.marquee {
  display: flex;
  justify-content: space-between;
  animation: animate_text 25s linear infinite;
  white-space: nowrap;
}

@keyframes animate_text {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-250%);
  }
}

.marquee-container2 {
  overflow: hidden;
  width: 100%;
}

.marquee2 {
  display: flex;
  justify-content: space-between;
  animation: animate_text2 25s linear infinite;
  white-space: nowrap;
}

@keyframes animate_text2 {
  0% {
    transform: translateX(-250%);
  }

  100% {
    transform: translateX(0%);
  }
}

.GARNEREDImg {
  padding-right: 70px;
}

.ininthSectionImgMobile {
  display: none !important;
}

.ininthSectionImgDesktop {
  width: 150px !important;
  margin-bottom: 20px;
}

@media (max-width: 580px) {
  .ininthSectionImgMobile {
    display: block !important;
    width: 76% !important;
  }
  .marquee {
    display: flex;
    justify-content: space-between;
    animation: animate_text 5s linear infinite !important;
    white-space: nowrap;
  }

  .marquee2 {
    display: flex;
    justify-content: space-between;
    animation: animate_text2 5s linear infinite;
    white-space: nowrap;
  }

  .ininthSectionImgDesktop {
    width: 90px !important;
    margin-bottom: 20px;
  }
}
