html, body {
	position: relative;
	height: 100%;
}

body {
	background: #eee;
	margin: 0;
	padding: 0;
}

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	height: 100%;
	object-fit: cover;
	border: 1px solid #f5f5f5;
}

@media screen and (max-width: 480px) {
	.swiper-slide img {
		width: 100%;
		height: auto;
	}
}