.banner_cate_banner{
    position: relative;
}
.page_header .page-title{
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 56px; /* 140% */
}
.page_header{
    max-width: 676px;
    width: 100%;
    margin: 0 auto;
}
.page_header hr{
    height: 2px;
    margin-bottom: 1.5em;
    width: 120px;
    background: var(--Green, #6EBE13);
    opacity: 1;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 1.5em;
}
.post_btn_readmore{
    position: relative;
    display: flex;
    gap: 5px;
}
.post_btn_readmore::after{
    content: "\f178";
    position: relative;
    right: 0;
    top: 3px;
    font-size: 14px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-1979F7);
}
a{
    color: #0A1F44;
}
.post_item .post-thumb img{
    transform: scale(1) ;
    transition: 0.3s ease-in-out;
}
.post_item:hover .post-thumb img{
    transform: scale(1.1) ;
    transition: 0.3s ease-in-out;
}
.post-thumb{
    overflow: hidden;
}
.pagination.navigation {
    justify-content: center;
}
.pagination.navigation .nav-links{
    display: flex;
    gap: 5px;
}
.pagination.navigation .nav-links .page-numbers{
    display: flex;
width: 40px;
height: 40px;
padding: 12px;
justify-content: center;
align-items: center;
flex-shrink: 0;
align-self: stretch;
border-radius: 8px;
text-decoration: none;
}
.pagination.navigation .nav-links .page-numbers.current{
    background: var(--Blue, #1979F7);
    color: #fff;
    border-radius: 0px;
}
.pagination.navigation .nav-links .page-numbers:hover{
    background: var(--Blue, #1979F7);
    color: #fff;
    border-radius: 0px;
}
.single-post-header {
    padding: 60px 0;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    height: 400px;
    display: flex;
    align-items: center;
}

.single-post-header .overlay, .contact-page .page-banner .overlay {
    background: linear-gradient(0deg, rgba(9, 34, 80, 0.80) 0%, rgba(9, 34, 80, 0.80) 100%);
    opacity: 1;
}

.post-meta {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.post-meta i {
    font-size: 5px;
    color: #fff
}
.share-box{
    position: relative;
    width: 100%;
    height: 100%;
    
}
.share-item{
    position: sticky;
    top: 50px;
    display: flex;
    gap: 5px;
}
.share-item .share-button{
    display: flex;
    background-color: var(--color-1979F7);
    border-radius: 4px;
    color: #fff;
    align-items: center;
justify-content: center;
width: 28px;
height: 28px;
text-decoration: none;
}
@media screen and (min-width:1200px) {

    .share-box{
    position: absolute;
    width: fit-content;
    height: 100%;
    left: calc(100% - 180px);
    top: 0;
}
}
@media screen and (min-width:990px) {
    .single-post-header h1 {
        font-size: 36px;
        line-height: 48px;
    }
    .share-item{
        flex-direction: column;
    }
}
@media screen and (max-width:989px) {
    .share-box{
        display: flex
;
flex-wrap: wrap;
gap: 10px;
    }
}