*{
    border: none;
    padding: 0;
    margin: 0;
}
body{
    background: linear-gradient(270deg, #cb8181 0%, #56034c 100%);
    position: relative;
}
.wrapper{
    width: 90%;
    max-width: 900px;
    min-width: 600px;
    margin: 0 auto;
}
#slider{
    position: relative;
    margin: 40px auto 20px auto;
    height: 300px;
    background: rgba(35, 119, 161, 0.5);
    border: 5px solid;
    width: 90%;
    box-shadow: #00000074 0px 0px 10px 5px;
    -webkit-box-shadow: #00000074 0px 0px 10px 5px;
    overflow: hidden; /*++++++++++*/
}
#slider .img{
    position: absolute;
    /* display: none; */
}

#slider .nav{
    position: absolute;
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

#slider .nav.prev{
    top: 33%;
    left: 10px;
    background-image: url("https://www.svgrepo.com/show/108327/left-arrow.svg");    ;
}

#slider .nav.next{
    top: 33%;
    right: 10px;
    background-image: url("https://www.svgrepo.com/show/53698/right-arrow.svg");    ;
}

#dots ul{
    text-align: center;
}

#dots ul li{
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: #ff7300;
    border-radius: 50%;
    border: 2px solid #f1a6a6;
    cursor: pointer;
}
#dots ul li:hover{
    background: #512a0a;
}

#dots ul li:active{
    background: #4b0404;
}

#dots ul li.active{
    background: #4b0404;
}