.carousel {
	margin-top: 1rem;
	position: relative;
	height: 32rem;
	width: 80%;
	margin: 1rem auto 2rem auto;
}

.carousel__image {
	width: 100%;
	height: 90%;
	object-fit: cover;
}

.carousel__text {
	margin: 0.5rem;
	text-align: center;
	color: white;
}

.carousel__track-container {
	background: rgba(0,0,0,.75);
	height: 100%;
	position: relative;
	overflow: hidden;
}

.carousel__track {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	height: 100%;
	transition: transform 250ms ease-in;
}

.carousel__slide {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
}

.carousel__button {
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.carousel__button--left {
	left: -40px;
}

.carousel__button--right {
	right: -40px;
}

.carousel__button img {
	width: 12px;
}

.carousel__nav {
	display: flex;
	justify-content: center;
	padding: 10px 0;
}

.carousel__indicator {
	border: 0;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	background: rgba(0,0,0,.3);
	margin: 0 10px;
	cursor: pointer;
}

.carousel__indicator.current-slide {
	background: rgba(0,0,0,.75)
}

.is-hidden {
	display: none;
}