.pagination {
    margin: 60px auto 0 auto;
    width: fit-content;
}

.pagination ul {
    display: flex;
    gap: 15px;
    align-items: center;
}

.pagination ul li {
    width: 50px;
    height: 50px;
    border: 1px solid #F8B324;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    color: #F8B324;
}

.pagination ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.pagination ul li.bx-active {
    background-color: #F8B324;
    color: #fff;
}

.pagination ul li.bx-pag-prev,
.pagination ul li.bx-pag-next {
    border: 1px solid #FFFFFF80;
}

.bx-pag-prev>svg path,
.bx-pag-next>svg path {
    fill: #F8B32480;
}

@media only screen and (max-width : 576px) {
    .pagination ul li {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}