.slick-arrow {
    height: 3.75em;
    width: 3.75em;
    background-color: rgba(150, 150, 150, 0.7);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    bottom: 0px;
    z-index: 1;
    cursor: pointer;
    border-radius: 3.125em;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-arrow::before {
    content: '';
    position: relative;
    height: 2em;
    width: 18px;
    background: url(../../images/icons/arrow.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    filter: brightness(0);
}

.slick-arrow:hover {
    background-color: rgba(230, 230, 230, 0.7);;
}

.slick-arrow.slick-prev {
    right: auto;
    left: -6.3125em;
    rotate: 180deg;
    top: 40%;
}

.slider-navigation {
    display: flex;
    align-items: center;
    justify-content: end;
}

.slider-navigation .slick-dots {
    list-style: none;
    line-height: 0;
    text-align: right;
}

.slider-navigation .slick-dots li {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    margin: 0 0.25em;
}

.slider-navigation .slick-dots li button {
    padding: 0;
    border: 0;
    height: 2.66em;
    width: 26em;
    font-size: 0.0625em;
}

.slider-navigation .slick-dots li:hover button,
.slick-dots li.slick-active button {
    background-color: #000;
}