.arrows span{
    position: absolute;
    z-index: 10;
    top: 47%;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 250ms cubic-bezier(0.25, 0.1, 0, 1.16);
}

.arrows span svg{
    fill: #fff;
    transition: all 200ms ease;
}

.arrows span.prev{
    left: 5%;
}

.arrows span.next{
    right: 5%;
}

.arrows span:hover svg{
    transform: scale(0.95)
}

.dot_nav{
    display: block;
    height: 15px;
    position: relative;
    top: -30px;
    text-align: center;
}

.dot{
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #fff;
    border: 2px solid #fff;
    z-index: 10;
    border-radius: 50%;
    margin: 0px 10px;
    transition: all 250ms ease;
}

.dot:hover{
    background: transparent;
    cursor: pointer;
}

.dot.active{
    background: transparent;
    border-color: #FFCC00;
    background: #FFCC00;
}
