
.slide-container{
  position: relative;
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  display: none;
}
.slideshow-container{
  width: 100%;
  max-height: 100%;
  overflow: hidden;
}
img{
  width: 100%;
  max-height: 100%;
}
.content{
  text-align: center;
  padding: 0px 40px;
  font-family: arial;
  color: #404040;
}
.content p{
  text-align: justify;
  line-height: 1.6em;
  color: grey;
}
.dot-container{
  position: absolute;
  top: 50px;
  right: 50px;
  width: 42px;
  z-index: 1;
}
.dot{
  display: none;
  margin-top: 10px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  padding: 0px;
  margin-bottom: 5px;
  box-sizing: border-box;
  box-shadow: 0px 1px 2px 1px #000;
  background: #fff;
  transition: all 0.4s ease;
}
.active{
  background-color: blue;
}
.fade{
  animation-name: fade;
  animation-duration: 3.5s;
}
@keyframes fade {
  from{
    opacity: 1.2;
  }
  to{
    opacity: 1;
  }
}

