.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: rgba(50, 50, 50, 1);
    fill: black;
    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: 20px;
    position: relative;
    top: -30px;
    text-align: center;
}

.dot{
    display: inline-block;
    width: 20px;
    height: 20px;
    //background: rgba(50, 50, 50, 1);
    background: #816640;
    //border: 2px solid rgba(50, 50, 50, 1);
    border: 2px solid black;
    z-index: 10;
    border-radius: 50%;
    margin: 0px 10px;
    transition: all 250ms ease;
}

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

.dot.active{
    background: white;
    //background: transparent;
    //border-color: rgba(50, 50, 50, 1);
    border-color: black;
}