* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato';
}
.container {
    display: flex;
    margin: 0 auto;
    width: 70%;
    height: 100vh;
}
.slider-wrapper {
    position: relative;
    margin: auto;
    width: 100%;
    height: 80%;
}
.slider-wrapper .images {
    height: 100%;
    text-align: center;
}
.slider-wrapper .images img {
    display: none;
    height: 100%;
}
.slider-wrapper .images img.active {
    display: inline-block;
}
.prev, .next {
    position: absolute;
    color: #565a5c;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 40px;
    cursor: pointer;
}
.next {
    left: auto;
    right: 0;
}
.nav {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    padding: 20px;
    border-radius: 999px;
    background: rgba(0,0,0,.7);
    color: white;
}
.nav > i {
    margin: 0 20px;
}
.nav > i.active {
    color: blue;
}
