@import url('https://fonts.googleapis.com/css?family=Catamaran|Montserrat');
.color-slider{
}

/* Slideshow container */
.slideshow-container {
  display:flex;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin:0px;
  padding-bottom: 45px;
  background-color:white;
}

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

/* Position the "next button" to the right */
.next {
  right: -10px;
  border-radius: 3px 0 0 3px;
}
.prev{
  left:-10px;
}
/* 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 */
.text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height:40px;
  position: absolute;
  padding-top:2.5px;
  padding-bottom: 2.5px;
  color: #f2f2f2;
  font-size: 1em;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  background-color: rgba(0,0,0,0.5);
}

/* Number text (1/3 etc) */
.numbertext {
  color: black;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
   font-family: "Montserrat", sans-serif;
  
}

/* The dots/bullets/indicators */
.dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: black;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.dotgroup{
    display: flex;
    align-content: space-around;
    justify-content: center;
}
.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.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}
}
/***************************************************For Larger Screens ****************************************************/

.fotos{ display:block;
        margin-bottom: 40px;
        float:left;
        width:40vw;
} 

/***************************************************For Medium Screens ****************************************************/
@media only screen and (min-width:701px) and (max-width: 1000px) {
 .fotos{
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    }
}

/**********************************************For smaller Screens ********************************************************/
@media only screen and (min-width:250px) and (max-width: 700px)  {
/****** fotos Slideshow/Gallery *****/
.gallery, .fotos{
        width:90vw;
        padding:5vw;
    }
}
