/* Slideshow container */
.slideshow-container {
  position: relative;
  background: #f1f1f1f1;
  height: 500px;
}

/* Slides */
.mySlides {
  display: none;
  padding: 3%;
  text-align: left;
  height: 500px;
}

/* Expand and contract button */
.svgexpand {
  position: absolute;
  right: 0;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 90%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "prev button" to the left */
.prev {
  position: absolute;
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  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);
  color: white;
}

/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
  padding: 20px;
  background: #ddd;
}

/* The dots/bullets/indicators 
   border-radius: 50%;
*/
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
  background-color: #717171;
}

div.jumbotron {
  height: 98%;
  width: 100%;
  padding-top: 0%;
}

.slideshow-container p {
  font-size: 35px;
  padding-left: 4%;
  font-size: 3vw;
}

.jumbotron p {
  font-size: 45px;
  padding-left: 4%;
  font-size: 3.2vw;
}

.slideshow-container ul {
  font-size: 30px;
  padding-left: 10%;
  font-size: 2.6vw;
}

.slideshow-container li {
  font-size: 30px;
  list-style-type: square;
  font-size: 2.6vw;
}

.slideshow-container h1 {
  font-size: 55px;
  font-variant: small-caps;
  font-size: 4.2vw;
}

.slideshow-container h2 {
  text-align: left; 
  padding-left: 1%;
  padding-bottom: 3px;
  font-size: 50px;
  font-size: 4vw;
}

.toggle-content {
    display: none;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 2000ms ease-in-out, opacity 2500ms ease-in-out;
}

.toggle-content.is-visible {
    display: block;
    height: auto;
    opacity: 1;
}