
/* Slider */

/* Arrows */
.slick-prev,
.slick-next
{
    z-index: 999;
    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 {
    margin: 0;
    left: 0;
    width: 64px;
    height: 64px;
    background: url(../../img/left.png) #283c90;
    background-size: 100% 100%;
}

.slick-next {
    margin: 0;
    right: 0;
    width: 64px;
    height: 64px;
    background: url(../../img/right.png) #283c90;
    background-size: 100% 100%;
}

.slick-prev:hover {
    background: url(../../img/left.png) #e80000;
    background-size: 100% 100%;
}

.slick-next:hover {
    background: url(../../img/right.png) #e80000;
    background-size: 100% 100%;
}

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

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

.slick-dots li button {
    display: block;
    margin: 0;
    padding: 0;
    background: #22272e;
    width: 60px;
    height: 30px;
    text-indent: -9999px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 2px solid white;
}

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

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

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