.rt-food-cards {
	background: #fff;
	padding: 55px 0 65px;
}

.rt-food-cards__title {
	margin: 0 0 70px;
	color: #000;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
}

.rt-food-cards__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 76px;
}

.rt-food-cards__item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.rt-food-cards__logo {
	display: block;
	max-width: 160px;
	max-height: 72px;
	width: auto;
	height: auto;
	object-fit: contain;
}

@media (max-width: 767px) {
	.rt-food-cards {
		padding: 42px 0 48px;
	}

	.rt-food-cards__title {
		margin-bottom: 36px;
		font-size: 25px;
	}

	.rt-food-cards__list {
		flex-wrap: wrap;
		gap: 28px 42px;
	}

	.rt-food-cards__logo {
		max-width: 135px;
		max-height: 60px;
	}
}