.arrow_box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 20px 0 0;
    position: relative;
}

.prev-arrow,
.next-arrow {
    display: block;
    width: 30px;
    height: 30px;
    background: rgb(0, 158, 59);
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position: absolute;
}

.prev-arrow {
    transform: rotate(180deg);
    margin-right: 20px;
    top: 50%;
    left: 3px;
    z-index: 99;
}

.next-arrow {
    top: 50%;
    right: 3px;
}

.prev-arrow::before,
.next-arrow::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #FFF;
    border-top: 2px solid #FFF;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
}