/*BLOG PAGINATION STYLES*/
.pagination {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    margin-left: -3px;
    margin-right: -3px;
    justify-content: center;
}
.pagination .page-numbers {
    font-size: 20px;
    line-height: 39px;
    font-weight: 500;
    color: #06a9e4;
    height: 42px;
    width: 42px;
    display: inline-block;
    text-decoration: none;
    margin: 0 3px;
    border-radius: 50%;
    text-align: center;
    background-color: white;
    box-shadow: 0px 5px 15px -15px rgb(43 43 43 / 49%);
}
.page-numbers.current {
    background-color: #06a9e4;
    color: white;
}
@media (max-width: 480px) { 
    /*BLOG PAGINATION STYLES*/
    .pagination {
        margin-top: 20px;
        justify-content: center;
    }
    .pagination .page-numbers {
        font-size: 18px;
        line-height: 39px;
        height: 40px;
        width: 40px;
        margin-bottom: 5px;
    }
}