/* Arrows */
.slick-prev,
.slick-next
{
    z-index: 99;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: none;
    outline: none;
}

.slick-prev {
    left: -45px;
    width: 60px;
    height: 60px;
    background: url(../../img/back.svg) #faa519 center center no-repeat;
    background-size: 60% 60%;
}

.slick-next {
    right: -45px;
    width: 60px;
    height: 60px;
    background: url(../../img/next.svg) #faa519 center center no-repeat;
    background-size: 60% 60%;
}

.slick-prev:hover {
    background: url(../../img/back.svg) #060D17 center center no-repeat;
    background-size: 60% 60%;
}

.slick-next:hover {
    background: url(../../img/next.svg) #060D17 center center no-repeat;
    background-size: 60% 60%;
}

/* Dots */
.slick-dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
    text-align: center;
    z-index: 9;
}

.slick-dots li {
    display: inline-block;
    margin: 0 10px;
}

.slick-dots li button {
    display: block;
    margin: 0;
    padding: 0;
    background: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-indent: -9999px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 2px solid #ddd;
}

.slick-dots li button:hover {
    background: #d3120d;
}

.slick-dots li.slick-active button {
    background: #d3120d;
}

.slick-dots li button:focus
{
    outline: none;
}