/*----------Slideshow----------------*/
#home_slideshow {
	position: relative;
	/*height: 340px;*/
	margin: 0 auto;
}
.slideshow-cycle,
.slideshow-cycle li {
	list-style: none;
	margin: 0;
	padding: 0;
}
.slideshow-cycle li {
	display: none;
	/*overflow: hidden;*/
}
.slides-control-prev {
	position: absolute;
	top: 45%;
	left: 40px;
	z-index: 3;
}
.slides-control-next {
	position: absolute;
	top: 45%;
	right: 40px;
	z-index: 3;
}
/*-----Navagation for the slides ----*/

.shownav {
	z-index: 999;
	padding: 0;
	left: 62px;
	top: 324px;
	display: flex;
	justify-content: center;
	margin-top: 15px;
}
.shownav a {
	display: block;
	float: left;
	width: 15px;
	height: 15px;
	text-indent: -999em;
	background: none;
	margin-right: 10px;
	border-radius: 50px;
}
.shownav a {
	background: rgba(9, 88, 147, 0.3); /* optional: color when hovered */
}
.shownav a.activeSlide {
	background: #095893; /* color when active */
}
#slide-text {
	position: absolute;
	left: 12vw;
	top: 23.5vw;
	font-size: 20px;
	font-weight: bold;
	color: white;
}
#slide-text a {
	background: #00589A;
	color: white;
	padding: 15px 40px;
	border: 1px solid #00589A;
	font-size: 25px;
}
#slide-text a:hover {
	background: white;
	color: #00589A;
}
.slideshow-cycle {
	width: 100% !important;
	overflow: hidden;
	position: relative;
	height: 31vw !important;
}
.slideshows-slide {
	width: 100vw !important;
	height: 100%;
}
.slideshow-cycle li {
	position: absolute;
	top: -100% !important;
	bottom: -100%;
	left: -100% !important;
	right: -100%;
	margin: auto;
	background: white !important;
	height: 100% !important;
}
.slideshow-cycle li img {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	max-height: 600px; /* Whatever your containing div's height is set to */
	margin: 0 auto;
	left: 0;
	right: 0;
	width: 100vw;
	height: 31vw !important;
}

@media (min-width: 1860px) {
	.slideshow-cycle {
		height: 600px !important;
	}
}