.rent__list {
	display: flex;
	align-items: start;
	flex-wrap: wrap;
	gap: 30px;
	margin: 0 0 -18px;
}
.rent__block {
	flex: 0 0 calc(33% - 16px);
	height: 306px;
	background: #000;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	margin: 0 0 16px;
}
.rent__image {
	width: 100%;
	height: 100%;
}
.rent__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform .5s linear;
}
.rent__image:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44.05%, rgba(0, 0, 0, 0.3) 81.94%);
}
.rent__block:hover .rent__img {
	transform: scale(1.2);
}
.rent__capt {
	font-family: 'Inter-SemiBold', sans-serif;
	font-size: 24px;
	color: #fff;
	position: absolute;
	bottom: 28px;
	left: 28px;
	width: calc(100% - 56px);
}

/*rent-page*/
.section_rent-page {
	margin: 48px 0 0;
}
.rent_page .rent__block {
	flex: 0 0 calc(33% - 17px);
	height: 210px;
}
.rent_page .rent__capt {
	font-size: 20px;
	bottom: 16px;
	left: 16px;
}
/*.rent slide*/
.rent__slider {
	margin: 28px 0 0;
}

@media screen and (max-width: 1440px) {
	.rent__list {
		margin: 0;
	}
	.rent__block {
		margin: 0;
		flex: 0 0 calc(33% - 1.5%);
	}
	.rent__list {
		gap: 20px;
	}
}
@media screen and (max-width: 1240px) {
	.rent__block {
		flex: 0 0 calc(33% - 1.8%);
		height: 270px;
	}
	.rent__capt {
		font-size: 22px;
		bottom: 22px;
		left: 22px;
	}
}
@media screen and (max-width: 1024px) {
	.rent__block {
		flex: 0 0 calc(50% - 2.5%);
	}
}
@media screen and (max-width: 768px) {
	.rent__list {
		gap: 16px;
	}
	.rent__block {
		flex: 0 0 calc(50% - 1.5%);
	}
	.rent_page .rent__block {
		flex: 0 0 calc(50% - 17px);
	}
	.section_feedback .section__col_img {
		display: none !important;
	}
	.section_feedback .section__col_form {
		width: 100%;
		max-width: 100% !important;
	}
}
@media screen and (max-width: 640px) {
	.rent__block {
		flex: 0 0 100%;
	}
}
@media screen and (max-width: 480px) {
	.rent_page .rent__block {
		flex: 0 0 100%;
	}
}