

/* Slideshow container */
.slideshow-container {
 	max-width: 1000px;
    position: relative;
    margin: auto;
    height: 420px;
	margin-bottom:52px;
}
.sliderImage{
	max-width: 100%;
    height: 100%;
    object-fit: contain;
}
.slider-iframe-youtube{
	 height:420px;
	max-width: 100%;
}
/* Hide the images by default */
.mySlides {
	height: 100%;
	text-align:center;
  display: none;
}

/* Next & previous buttons */
.sliderprev, .slidernext {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.slidernext {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.sliderprev:hover, .slidernext:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.slidertext {
  color: #000000;
  font-size: 15px;
  padding: 8px 12px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.slidernumbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.sliderdots{
	text-align:center;	
	 position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
	
}
/* The dots/bullets/indicators */
.sliderdot {
	 margin-top: -22px!important;
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.slideractive, .sliderdot:hover {
  background-color: #717171;
}

/* Fading animation */
.sliderfade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes sliderfade {
  from {opacity: .4}
  to {opacity: 1}
}