.blog-pagination {
    width: 90%;
    max-width: 450px;
    margin: 50px 5%;
    text-align: center;
}
.blog-pagination ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.blog-pagination li {
    list-style: none;
}
.blog-pagination .page-link {
    color: #f99a98;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    background: #fff;
    border: solid 2px #f99a98;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.15s linear;
}
.blog-pagination .dots .page-link {
    border: transparent;
}
.pagination-container .active .page-link{
    background-color: #f99a98;
    border-color: #f99a98;
    color: #fff;
}