/* footer */
.site-footer{
	width: 100vw;
	margin-left: calc(50% - 50vw);
}
/* footer */

@media (min-width:1200px){.ast-primary-header-bar,
.ast-above-header-bar {
  padding-left: clamp(0px, calc(34px - (100vw - 1200px) * 0.5), 34px) !important;
  padding-right: clamp(0px, calc(34px - (100vw - 1200px) * 0.5), 34px) !important;
}
}


/* logo slider */
.om-logo-marquee{
  overflow: hidden;
  width: 100%;
  position: relative;
}

.om-logo-track{
	  height: 318px;
  display: flex;
  width: max-content;
  will-change: transform;
  animation: om-marquee 55s linear infinite;
		padding-top:30px;
	padding-bottom:30px;
}

.om-logo-track img{
  display: block;
  height: 258px;
  width: auto;
  flex: 0 0 auto;

}

/* Бесшовный луп: едем ровно на ширину первого изображения (50% трека) */
@keyframes om-marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* пауза при наведении */
.om-logo-marquee:hover .om-logo-track{
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce){
  .om-logo-track{ animation: none; }
}