/* Slideshow CSS */

img{
    width: 100%;
    height: 500px;
}
#slider{
    width: auto;
    height: auto;
    position: relative;
 }
 

/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -22px;
color: #f2f2f2;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}
/* 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);
  }
.fa-chevron-right, .fa-chevron-left{
    color:white;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}

/* Caption text */
#text {
    position: absolute;
    font-family: 'Raleway', sans-serif;
    margin-left: 10%;
    bottom: 20%;
    color: white;
    font-weight: bold;
    font-size: 140%;

}
#hreftext {
    position: absolute;
    font-family: 'Raleway', sans-serif;
    text-decoration: underline;
    margin-left: 10%;
    bottom: 12%;
    color: white;
    font-weight: bold;
    font-size: 140%;

  }
.slideshow-container{
    position: relative;
}
/* Number text (1/3 etc) */
.numbertext {
    color: white;
    background-color: black;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    font-size: 100%;
}
  
/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  .active, .dot:hover {
    background-color: #717171;
  }

  /* Produces the translucent effect for the captions in carousel.*/
.drk:after {
    content:"";
    display:block;
    position:absolute;
    top:70%;
    bottom:0;
    left:0;
    right:0;
    background: black;
    opacity:0.55;
    height: 30%;
 }
