*{
    /* box-sizing: border-box; */
}
body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mySlides{
    display: none;
}
img{
    vertical-align:middle;
}
.slideshow-container{
   
    max-width: 70%;
    position: relative;
    margin:auto;
    /* border: 1px solid black; */
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.564);

}
.prev, .next{
    cursor:pointer;
    position:absolute;
    top:50%;
    width: auto;
    padding:16px;
    margin-top:-22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    /* border: 1px solid rgba(255, 255, 255, 0.129); */
    border-radius: 0 3px 3px 0;
    
}
.next{
    right: 0;
    border-bottom: 3px 0 0 3px;
}
.prev:hover , .next:hover{
    color:rgba(255, 255, 255, 0.596);
    background-color: rgba(0, 0, 0, 0.085);
}

.text{
    color: rgb(255, 255, 255);
    font-size:20px;
    padding:8px 12px;
    position:absolute;
    width: 100%;
    text-align: center;
    bottom:9px;
}
.numbertext{
    color:rgb(255, 28, 28);
    font-size: 14px;
    padding:8px 12px;
    position:absolute;
    top:0;
    right:50%;
}
.dot{
    cursor: pointer;
    height: 15px;
    width:15px;
    font-size: 40px;
    margin:0 2px;
    background-color:rgba(0, 0, 0, 0.164);
    border-radius: 50%;
    display:inline-block;
    transition: background-color 0.6 ease;
}
.active, .dot:hover{
    background-color: rgba(0, 0, 0, 0.762);
}
.fade{
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5;

}
@-webkit-keyframes fade{
    from{opacity: 0.4}
    to{opacity:1}
}
@keyframes fage {
    form{
        opacity:0.4;
        
    }
    to{opacity: 1;}
}
@media screen and (max-width:600px) {
    .prev, .next, .text{
        font-size:3x;
    }
    .dot{
        height: 10px;
        width:10px;
    }
    .slideshow-container{
        max-width: 85%;
    }
}
