.slider {
	user-select: none;
}
.slider__item {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	height: 520px;
}
.slider__left {
	color: #fff;
}
.slider__left h1 {
	color: #fff;
}
.slider__left ul {
	padding: 0;
	margin: 0 0 20px 0;
	list-style: none;
	font-size: 16px;
}
.slider__left li {
	background: url("/local/templates/icecream/images/arrow.svg") 0 0 no-repeat;
	background-size: 21px 21px;
	padding-left: 30px;
	line-height: 21px;
}
.slider__right {}
.slider__nav {
	width: 260px;
	height: 80px;
	line-height: 80px;
	display: flex;
	border-radius: 40px;
	position: absolute;
	bottom: -40px;
	left: 0;
	background-color: #fff;
	color: #000;
	justify-content: space-around;
}
.slider__pagination {
	width: auto;
}
.slider__current {
	font-size: 24px;
	color: var(--bs-danger);
	font-weight: 500;
}
@media screen and ( max-width: 782px ) {
	.slider__nav {
		border-radius: 20px;
		left: 50%;
		margin-left: -140px;
		height: 40px;
		line-height: 40px;
		bottom: -20px;
	}
	.slider__item {
		grid-template-columns: 1fr;
		height: auto;
		grid-gap: 20px;
	}
	.slider__left h1 {
		font-size: 28px !important;
	}
}