
.image-slider .slider--container {
        position: relative;
        overflow: hidden;
}
.slider--content {
            position: relative;
            display: flex;
            transition: all .4s ease;
}
.slider--content img {
                width: 95%;
                box-sizing: border-box;
                border: 1px solid grey;
                flex-shrink: 0;
            }
.prev-btn .next-btn {
            z-index: 1;
            position: absolute;
            top: 0;
            bottom: 0;
            width: 70px;
            display: grid;
            justify-content: center;
            align-content: center;
            font-size: 36px;
            font-weight: 200;
            cursor: pointer;
            background: rgba(white, .5);
            box-shadow: 0 0 15px rgba(black, .1);
            transition: all .4s ease;
        }
        .prev-btn {
            left:-100px;
        }
        .next-btn {
            right:-100px;
        }
            .prev-btn: hover {
                left:0;
            }
            .next-btn {
                right:0;
            } 
    .dots {
        display: flex;
        justify-content: center;
        padding-top: 10px;
        margin-top: 10px;
    }
        .dot {
            cursor: pointer;
            height: 10px;
            width: 10px;
            border: 1px solid grey;
            border-radius: 50px;
            margin: 0 4px;
            box-sizing: border-box;
        }
            .current {
                background: grey;
            }
