* {box-sizing: border-box}
.mySlides {display: none}
img {vertical-align: middle;}

/* Common styles for all slideshows */
.slideshow-container {
    max-width: 65%;
    position: relative;
    margin: auto;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 3px 0 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Dots/bullets/indicators */
.dot-container {
    text-align: center;
    padding: 10px 0;
}

.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;
}

/* Caption text */
.text, .downtext {
    color: gold;
    font-size: 1em;
    padding: 4px 6px;
/*    position: absolute; */
    width: auto;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
}

.text {
    top: 8px;
}

.downtext {
    bottom: 8px;
}

.offtext {
    color: gold;
    font-size: 1em;
    padding: 4px 6px;
    text-align: center;
    background-color: black;
 //   background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
}

.none {
     display: none;
}

@media (max-width: 750px) {
.slideshow-container {
	max-width: 95%;	
    }
.text, .downtext, .offtext {
	font-size: 3vw;
    }
}

@media (min-width: 1500px) {
    .text, .downtext, .offtext {
        font-size: 1.3vw; /* Font size for screens 1500px or more */
    }
