.pagi_links {
    display: flex;
    margin-bottom: 80px;
}

.post_container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-bottom: 45px;
    position:relative;
}

.post_container:after{
    content: '';
    position: absolute;
    height: 85px;
    width: 85px;
    right: -30px;
    top: 30px;
    border-right: 11px solid #D6032E;
    border-top: 11px solid #D6032E;
}

.post_container p {
    width: 100%;
    padding: 0 10px;
    margin-top: -20px;
    padding-bottom: 5px;
    font-family: "sofia-pro";
    font-size: 18px;
    line-height: 24px;
    text-align: justify;
    color: #575757;
    font-weight: 500;
}

.post_title {
    width: 100%;
    font-family: "sofia-pro";
    color: #b2b2b0;
    font-weight: bold;
    opacity: 0.369;
    font-size: 60px;
}

.post_btn {
    border:none;
    background-color: #05477B;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    border-radius: 30px;
    width: 195px;
    height: 45px;
    position: relative;
    margin-right: 10px;

    font-size: 24px;
    line-height: 36px;
    color: #ffffff;
    font-weight: 500;
    font-family: "sofia-pro";
}

.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E5E5E4;
    height: 30px;
    width: 30px;
    margin-right: 12px;
    border-radius: 50%;

    font-size: 18px;
    color: #575757;
    font-weight: 500;
    font-family: "sofia-pro";
}

button {
    cursor: pointer;
}

.current {
    background-color: #D6032E;
    color: #ffffff;
}

.next, .prev {
    display: none;
}

.pagi_links:after{
    z-index: -10;
    content: '';
    position: absolute;
    height: 85px;
    width: 90px;
    left: -45px;
    bottom: 35px;
    border-left: 11px solid #05477B;
    border-bottom: 11px solid #05477B;
}

@media screen and (max-width: 1250px) {
    .post_container, .pagi_links {
        margin-left: 40px;
        margin-right: 40px;
    }
    
    .pagi_links:after{
        left: 0;
    }
}