/*----------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;
	transform: rotate(90deg);
}
.slides-control-prev img {
	width: 49px !important;
	height: 40px !important;
}
.slides-control-next {
	position: absolute;
	top: 45%;
	right: 40px;
	z-index: 3;
}
/*-----Navagation for the slides ----*/

.shownav {
	/* you can add positioning properties here if needed */
	display: none;
	position: absolute;
	width: 180px; /* change as required */
	z-index: 999;
	padding: 0;
	left: 62px;
	top: 324px;
}
.shownav a {
	display: block;
	float: left;
	width: 15px;
	height: 15px;
	text-indent: -999em;
	background: none;
	margin-right: 10px;
}
.shownav a {
	background: #999999; /* optional: color when hovered */
}
.shownav a.activeSlide {
	background: #F94C07; /* color when active */
}
.slide-text {
	position: absolute;
	font-size: 18px;
	color: white;
	background: rgba(0, 0, 0, 0.75);
	display: flex;
	flex-direction: row;
	height: 100%;
	text-align: center;
	padding-top: 20px;
	align-items: center;
}
.slide-text h2 {
	font-size: 36px;
	font-family: Oswald;
}
.slideshow-cycle {
	max-width: 100%;
	width: 100% !important;
	overflow: hidden;
	position: relative;
	height: 406px;
}
.slideshow-cycle li {
	position: absolute;
	top: -100% !important;
	bottom: -100%;
	left: -100% !important;
	right: -100%;
	margin: auto;
	max-width: 100%;
}
.slideshow-cycle li img {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	max-height: 406px; /* Whatever your containing div's height is set to */
	margin: 0 auto;
	left: 0;
	right: 0;
}
.mr-service-slideshow-wrapper {
	min-width: 206px;
	margin-right: 70px;
	display: none;
}
.slideshow-cycle li .slide-text img {
	position: initial;
	top: unset;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.slideshow-cycle li .slide-text a.btn {
	border-radius: 6px;
	width: 325px;
	max-width: 100%;

}
@media (min-width: 768px) {
	.mr-service-slideshow-wrapper{
		display: block;
	}
	.slide-text {
		width: 50%;
		padding-left: 150px;
		padding-top: 70px;
		min-width: 800px;
		background: linear-gradient(100deg, rgba(0, 0, 0, 0.75) calc(100% - 70px), rgba(0, 0, 0, 0) calc(100% - 70px));
		text-align: left;
	}
}