/* apply swiper style */
.swiper-container {
	width: 100%;
	max-height: 100%;
	/* hide contents sticking out */
	overflow: hidden;
}

.swiper-slide {
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: space-around;
	-ms-flex-pack: space-around;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.swiper-slide > * {
	text-align: center;
	font: italic 4em "Fira Sans", courier;
}

.swiper-slide i {
	font-family: "Font Awesome 5 Free";
	font-size: 0.6em;
	font-weight: 900;
}

/* hide default Swiper buttons */
.swiper-button-prev::after, .swiper-button-next::after {
	content: none !important;
}