* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
width:100%;
display: flex;
flex-direction: column;
align-items: stretch;
    max-width: 260px;;
    margin-left: auto;
    margin-right: auto;
  position: relative;
}


.title-text {
    margin: 0em 0 2em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    margin-bottom:0px;
    color: rgba(0, 0, 0, 0.644);
}

/* Hide the images by default */
.mySlides {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    /* background-color: yellow; */
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 42%;
  width: auto;
  margin-left: 0px !important;
  margin-right: 0px !important;
  padding: 16px;
  color: rgba(121, 121, 121, 0.603);
  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 */
.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.048);
  color: rgb(3, 189, 34);
}

/* Caption text */
.text {
  color: #222121;
  font-size: 15px;
  padding: 3px 0px;
  width: 100%;
  text-align: center;
}

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

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 5px;
  width: 5px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.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}
}