.swiper {
  width: 100%;
/*  max-width: 1325px; */
  height: 750px;
}

.swiper-slide img {
/*	width: 100%; */
	height: 75%;
	position: absolute;
	left: 50%;
	border-radius: 10px;
	transform: translate(-50%, 0);
	box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.swiper-slide-caption {
	color: white;
	background: rgba(51, 51, 51, 0.6);
	text-align: center;
/*	width: 100%; */
	position: absolute;
	top: 25px;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 5px 20px 5px 20px;
	font-size: 1.5em;
	border-radius: 5px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination.bullets.swiper-pagination-horizontal {
	bottom: 27%; /* this might need to change when the 'height' attribute for the 'img' element is changed */
}

.swiper-button-prev {
	left: 20px;
	top: 37.5%;
}

.swiper-button-next {
	right: 20px;
	top: 37.5%;
}

@media only screen and (max-width: 1325px) {
	.swiper-slide img {
		width: 100%;
		height: unset;
		position: unset;
		transform: unset;
		padding: 0 5px 0 5px;
		box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
	}
}

@media only screen and (max-width: 1325px) {
	.swiper {
/* 		height: 100%; */
	}
	
	.swiper-button-prev {
		display: none;
	}
	
	.swiper-button-next {
		display: none;
	}
	
	.swiper-horizontal > .swiper-pagination-bullets {
		display: none;
	}
}