/*.swiper-container 
{
	width: 100vw;
	height: calc(100vh - 50px);
	z-index: 999;
	position: absolute;
	top: 50px;
}
*/

.swiper-container 
{
	position: fixed;
	top: 0; 
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

.swiper-slide 
{
	text-align: center;
	font-size: 18px;
	color: #3c3c3c;
	background-color: #fff;
	
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.swiper-slide > img, .swiper-slide > a > img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-slide > a
{
	width: 100%;
	height: 100%;
}