.slider {
    box-shadow: #888888 0px 4px 40px -19px;
    position: relative;
    width: 325px;
    height: 210px;
    margin: 5px 0px;
    overflow: hidden;
}

.slides {
    list-style: none;
    transition: 1s;
    position: absolute;
    left: 0px
}

.slides .slide {
    width: 325px;
    height: inherit;
    display: table-cell;
    height: 210px;
  }

.slides img {
    width: 100%;
    height: 100%;
    object-position: left;
    object-fit: cover;
    cursor:zoom-in
}

.prev {
    width: 0;
    height: 0;
    border: 12px solid white;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    position: absolute;
    top: 50%;
    cursor: pointer;
}

.next {
    width: 0;
    height: 0;
    border: 12px solid white;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-top-color: transparent;
    position: absolute;
    right: 0;
    top: 50%;
    cursor: pointer;
}

.prev, .next {
    mix-blend-mode: exclusion;
}
.pagination {
    position: absolute;
    bottom: 3px;
    width: 100%;
    text-align: center;
}

.bullet {
    background-color: #ffffff;
    border: 1px solid #000;
    cursor: pointer;
    display: inline-block;
    height: 6px;
    width: 6px;
    margin: 0 2px;
    box-shadow: 0 0 1px 1px white;
    transition: 1s
}

.bullet.active {
    background-color: rgb(0, 0, 0) !important;
}