
/* Slider */

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 100%;
    margin-top: -23px;

    display: block;

    width: 46px;
    height: 46px;
    padding: 3px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;

    z-index: 98;

    transition: all ease .4s; 
    -webkit-transition: all ease .4s;
}
.slick-prev:hover,
.slick-next:hover
{
    color: transparent;
    outline: none;
    background: #fff;
    border: 1px solid #fff;
}


.slick-prev:before,
.slick-next:before
{
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-size: cover;

    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: 0;
}
.slick-prev:before
{
    background: url("../image/icon03-2.png") no-repeat center;
    background-size: 30px;
    transition: all ease .4s; 
    -webkit-transition: all ease .4s;
}
.slick-prev:hover:before{
    background: url("../image/icon03-1.png") no-repeat center;
    background-size: 30px;
}


.slick-next
{
    left: 130px;
}
.slick-next:before
{
    background: url("../image/icon04-2.png") no-repeat center;
    background-size: 30px;
    transition: all ease .4s; 
    -webkit-transition: all ease .4s;
}
.slick-next:hover:before{
    background: url("../image/icon04-1.png") no-repeat center;
    background-size: 30px;
}


.slick-dots
{
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0 0 18px 50px;
    z-index: 98;
    display: flex;
}

.slick-dots li
{
    position: relative;
    width: 8px;
    height: 8px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 50%;
    
}
.slick-dots li button
{
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    cursor: pointer;
    font-size: 0;
    color: transparent;
    border: 0;
    outline: none;
    background: rgba(255,255,255,.6);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all ease .4s; 
    -webkit-transition: all ease .4s
}

.slick-dots li.slick-active button{
    background: #fff;
}
