.slider-container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.slick-dots {
	display: flex;
	justify-content: center;

	margin: 0;
	padding: 10px 0;

	list-style-type: none;
	z-index: 101;
	position: relative;
	bottom: 0;

	li {
		margin: 0 7px;
	}

	button {
		display: block;
		width: 14px;
		height: 14px;
		padding: 0;

		border: none;
		background-color: transparent;

		text-indent: -9999px;
		cursor: pointer;
		position: relative;
	}

	button::before {
		content: '';
		display: block;
		position: absolute;
		width: 7px;
		height: 7px;
		top: 50%;
		left: 50%;
		translate: -50% -50%;
		background-color: var(--exp-grey);
		border-radius: 100%;
		transition: .2s;
	}

	li.slick-active button::before {
		background-color: #fff;
		width: 14px;
		height: 14px;
	}
}

.slide-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 30px;
	height: 100%;
}
