/*@media (min-width: 1201px) */
/*{*/
/*    div[id="allrecords"] {*/
        padding-left: 10% !important; /*Ширина закрытого меню*/
/*    }*/
/*}*/

.marquee-logos .t-container {
  overflow: hidden;
}

.marquee-logos .t-row {
  display: flex;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-logos .t-col {
  flex: 0 0 auto;
  margin-right: 40px;
}

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