* {
box-sizing:border-box;
}
.mySlides {
display:none;
}
.slideshow-container {
max-width:97.6562vw;
position:relative;
margin:auto;
}
.text {
color:#ddd;
font-size:1.3021vh;
position:absolute;
bottom:1.041vh;
width:95%;
text-align:right;
padding:0;
}
.numbertext {
color:#ddd;
font-size:1.3021vh;
padding:0 0 0 0.9765vw;
position:absolute;
top:0;
}
.dot {
height:1.5625vh;
width:1.5625vh;
margin:0 0.2929vw;
background-color:#39f;
border-radius:50%;
display:inline-block;
transition:background-color 0.6s ease;
}
.active {
background-color:#37f;
}
.fade {
animation-name:fade;
animation-duration:1s;
}

.m_top {
margin-top:1.3021vh
}

@keyframes fade {
from {
opacity:0.3;
}
to {
opacity:1;
}
}