.image-ticker {
  overflow: hidden;
  position: relative;
}
.image-ticker__track {
  border-top: solid 1px black;
  border-bottom: solid 1px black;
  height: 100%;
}
.image-ticker__group {
  position: relative;
  left: -80px;
  transform: translateX(0); /* Initial position */
  transition: transform 0.1s ease-out; /* Smooth movement */
  margin-bottom: 0!important;
}
.image-ticker__image {
  flex-shrink: 0;
  margin: 35px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: solid 1px black;
  width: 165px;
}
.image-ticker__image img {
  width: auto;
  max-width: calc(100% - 40px);
  height: auto;
  max-height: 70px;
  object-fit: cover;
}
@media screen and ( max-width: 1200px ){
  .image-ticker__image{
    width: 165px;
  }
}
