* {
	box-sizing:border-box;
	margin: 0;
	
  }

/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.8s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.slider_content_container {
  color: #f2f2f2;
  padding: 100px;
  position: absolute;  
  top: 0;
  left: 0;
  width: 100%;  
  height: 100%;
  z-index: 101;
  display: flex;
  align-items: center;
  
}



.slider_content
{
  max-width: 850px !important;
}

.slider_content h1
{
	color: #fff;
  font-size: 60px;
  margin: 20px 0 50px 0;
} 


@media only screen and (max-width: 1000px)
{
    .thumbnail_btn_container {
      display: none;
    }
    
}


@media only screen and (max-width: 642px)
{
    .slider_content_container {
      padding: 40px 20px;
    }

    .slider_content
    {
      padding: 0;
      width: 100%;
    } 
    .slider_content h1
    {
      font-size: 40px;
       width: 100%;
    } 
}


/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */


.thumbnail_btn_container
{
    padding: 20px 50px;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    z-index: 102;
}

.thumbnail_btn
{
   display: flex;
    justify-content: center;
    border-top: 1px solid #bbb;
    margin: 0;
}

.dot {
  cursor: pointer;
  height: 3px;
  width: 100%;
  background-color: #bbb;
  transition: background-color 0.1s ease;
 
}



.active, .dot:hover {
  background-color: #ff0000;
}

.dot_content
{
  flex: 1;
  
}

.dot_content:not(:last-child)
{
  padding-right: 40px;
}


.dot_content p
{
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  margin-top: 10px;
}



/* Fading animation */
.slide_fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}







