.gallery {
	height: 500px;
	width: 100%;
	position: relative;
	background-color: #f0eae1;
}

.gallery .slide {

	height: 500px;
	width: 100%;
	position: absolute;
	opacity: 0;
	z-index: 0;
	transition-duration: 1s;
	z-index: 0;
}

.gallery .slide img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: 40% 0%;
}

.gallery .slide.current {
	opacity: 1.0;
}

.gallery .next, .gallery .prev {
	width: 80px;
	z-index: 1;
	position: absolute;
	height: 100%;
	cursor: pointer;
}

.gallery .prev {
	left: 0;
}

.gallery .next {
	right: 0;
}

.gallery .next img, .gallery .prev img {
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	width: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 0;
}

.gallery .select {
	position: absolute;
	bottom: 10px;
	z-index: 1;
	left: 50%;
	transform: translateX(-50%);
}

.gallery .select .dot {
	width: 16px;
	height: 16px;
	border-radius: 8px;
	border: 2px solid #9d1350;
	display: inline-block;
	margin: 0 5px;
	float: left;
	cursor: pointer;
	transition-duration: 0.2s;
	transition-timing-function: ease-in-out;
}

.gallery .select .dot:hover, .gallery .select .dot.current {
	background-color: #9d1350;
}