.main-slider {
	margin: 56px 0 0;
}
.main-slider__slide {
	width: 100%;
	height: 724px;
	border-radius: 16px;
	overflow: hidden;
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	transform: scale(1);
	transition: background-size 5s linear;
}
.main-slider__slide:hover {
	background-size: 120%;
}

/*текст*/
.main-slider__info {
	width: 100%;
	height: 244px;
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 72px 0 36px;
}
.main-slider__title {
	width: 48%;
	font-family: 'Inter-Bold', sans-serif;
	font-size: 36px;
	color: #fff;
	display: flex;
	align-items: start;
	gap: 14px;
	text-decoration: none;
}
.main-slider__title:before {
	content: '';
	width: 12px;
	height: 12px;
	background-color: #DD1E31;
	border-radius: 100%;
	display: block;
	flex-shrink: 0;
}

/*пагинация*/
.main-slider__pagination {
	position: absolute;
	bottom: 180px !important;
	z-index: 100;
	text-align: center;
}
.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #ADB5BD !important;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background: #DD1E31 !important;
}

@media screen and (max-width: 1440px) {
	.main-slider__slide {
		background-size: cover;
	}
	.main-slider__slide:hover {
		background-size: cover;
	}
}
@media screen and (max-width: 1240px) {
	.main-slider__title {
		width: 60%;
		font-size: 26px;
	}
	.main-slider__pagination {
		bottom: 10px !important;
	}
	.main-slider__info {
		padding: 0 30px;
	}
}
@media screen and (max-width: 768px) {
	.main-slider__slide {
		height: 400px;
	}
	.main-slider {
		margin: 30px 0 0;
	}
}
@media screen and (max-width: 640px) {
	.main-slider__info {
		flex-direction: column;
		gap: 0;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.main-slider__title {
		width: 100%;
		font-size: 26px;
		line-height: 32px;
	}
	.main-slider__info {
		height: auto;
		bottom: 55px;
		gap: 10px;
	}
	.main-slider__btn {
		display: flex;
		width: 100%;
		justify-content: flex-end;
	}
}
@media screen and (max-width: 480px) {
	.main-slider__title {
		font-size: 18px;
		line-height: 24px;
	}
}