.pagination {
    width: 100%;
    margin: 70px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.pagination .pn_item,
.pagination .arrow {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    background-color: white;
    border: solid 1.5px #2f2f2d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2f2f2d;
}
.pagination .pn_item.active {
    background-color: #4381d2;
    border-color: #4381d2;
    color: white;
}

.pagination .arrow.disabled {
    display: none;
}

.pagination .arrow a {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .arrow img {
    width: 10px;
}

.pagination .dot {
    color: #4381d2;
}

@media screen and (max-width: 600px) {
    .pagination {
        gap: 5px;
        margin-top: 65px;
    }

    .pagination .pn_item,
    .pagination .arrow {
        width: 35px;
        height: 35px;
        border-radius: 5px;
        font-size: 18px;
    }

    .pagination .arrow a {
        border-radius: 5px;
    }

    .pagination .arrow img {
        width: 7px;
    }
}
