/* Basic jQuery Slider essential styles */

ul.bjqs { 
	position:absolute; 
	list-style:none;
	padding:0;
	margin:0;
	overflow:hidden; 
	display:none;
	height: 100%;
	}
	
li.bjqs-slide{position:absolute; display:none; height: 100%;}

ul.bjqs-controls { 
	list-style: none;
	margin: 0px 5px;
	padding: 0;
	z-index: 3000;
	top: 42% !important;
	position: relative;
	}

ul.bjqs-controls.v-centered li a{position:absolute;}
ul.bjqs-controls.v-centered li.bjqs-next a{right:0;}
ul.bjqs-controls.v-centered li.bjqs-prev a{left:0;}
ol.bjqs-markers{list-style: none; padding: 0; margin: 0; width:100%;}

ol.bjqs-markers.h-centered {
	top: 102%;
  text-align: center;
  position: absolute;
  bottom: 0;
  z-index: 900;
  margin-bottom: -35px;
	}

ol.bjqs-markers li { 
	display: inline;
	}
	
	 
ol.bjqs-markers li a { 
color: rgba(255,255,255,0);
text-decoration: none;
background-color: transparent;
margin: 0 2px;
font-size: 8px;
border-radius: 20px;
height: 0;
width: 6px;
padding: 5px 0 1px 0;
font-weight: bold;
line-height: 100%;
border: 4px solid #cdcdcd;



	}
	
	ol.bjqs-markers li.active-marker a { 
color: rgba(255,255,255,0);
	text-decoration: none; 
	background-color: #ffffff;
	border: 4px solid #000000;

}

ol.bjqs-markers li a:hover { 
	color: rgba(255,255,255,0);
	text-decoration: none; 
	background-color: #ffffff;
	border: 4px solid #000000;


	}

ol.bjqs-markers li a{display:inline-block;}
p.bjqs-caption{display:block;width:96%;margin:0;padding:2%;position:absolute;bottom:0;}

#banner-fade {
width: 100%;
margin-left: auto;
margin-right: auto;

}

.bjqs {
height: 100%;
}


li.bjqs-slide a img {
	width:100%;
	height: 100%;
	object-fit: cover;
	
	/*width: 100vw;*/
	
	}
	
	
.caption-over{
	position: absolute;
	z-index: 1000;
	-webkit-animation: caption-over 0.8s ease-in-out both;
	animation: caption-over 0.8s ease-in-out both;
	}

@-webkit-keyframes caption-over {
  0% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes caption-over {
  0% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}