.payme_carusel .rahmat_section__title {
	margin-bottom: 20px;
}
.payme_carusel .rhmt-swiper {
	max-width: 1408px;
	margin: 0 auto;
	overflow: hidden;
	background: transparent !important; /* как на скрине */
	padding: 20px 0;
	height: auto !important;
}

.payme_carusel  .infinite-track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: scroll 30s linear infinite;
	gap: 10px;
}

.payme_carusel  .slide {
	flex: 0 0 auto;

	display: flex;
	align-items: center;
	background: #f4f4f4;
	padding: 20px;
	border-radius: 14.27px;
}

.payme_carusel  .slide img { /* одинаковая высота */
	width: auto;
	filter: grayscale(100%) brightness(0);
	opacity: 0.9;
	height: 22.55px;
}
.payme_carusel .rhmt-sign {
	margin-top: 20px;
	padding: 20px;
	width: 100%;
	text-align: center;
	font-size: 24px;
	font-weight: 500;
}

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