.hvr,
.hvr__images {
    position: relative;
    cursor: pointer;
}

.hvr__sectors {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
}

.hvr__sector {
    flex-grow: 1;
}

.images {
    position: relative;
    display: flex;
    overflow: hidden;
    height: 160px;
    border-radius: 0.75rem;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    border-bottom: none;
    margin-bottom: 5px;
}

.image {
    display: block;
    height: 160px;
}

.hvr__dots {
    display: flex;
    width: 90%;
    align-items: center;
    position: absolute;
    bottom: 5px;
    left: 10px;
}

.hvr__dot {
    width: inherit;
    height: 5px;
    margin: 10px 4px 0;
    border-radius: 10px;
    background: #d6dbe0;
}

.hvr__dot--active {
    background: #6747E5;
}