.blog header{
    text-align: center;
    margin: 20px 0;
    border-radius: 0.25rem;
    background-color: #002C52;
    display: flex;
    align-items: center;
    padding: 20px;
    width: 100%;
}
.blog header .image{
    width:30%;
}
.blog header .image img{
    width: 100%;
    object-fit: cover;
    border-radius: 0.25rem;
    border: 1px solid #fff;
}
.blog header .title{
    font-family: 'Montserrat Semibold','serif';
    color: #fff;
    font-size: 16px;
    padding-bottom : 20px;
    margin:0;
}
.blog header .sub-title{
    font-family: 'Montserrat Semibold','serif';
    color: #fff;
    font-size: 14px;
    margin:0;
}
.blog header .social-links{
    display: flex;
    justify-content: center;
    margin: 20px 0;
    list-style-type: none;
    padding: 0;
}
.blog header .social-links li{
    padding: 0 10px;
}
.blog header .text-block{
    margin: auto;
    padding: 10px;
    width: 70%;
}
.blog header .text-block .text{
    font-family: 'Montserrat Semibold','serif';
    color: #fff;
    font-size: 14px;
}
.blog header .text-block  .text-author{
    font-family: 'Lobster-Regular',serif;
    text-align: right;
    color: #fff;
}
.blog-content .title{
    font-family: 'Montserrat Light','serif';
    font-size: 26px;
    font-weight: 600;
    text-align:center;
    /*color: #747475;*/
}
.nav-tabs a{
    text-decoration: none;
    color: #1b1e21;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #1b1e21;
    background-color: #f8f9fa;
    border-color: #dee2e6 #dee2e6 #fff;
}

/*.nav-tabs .nav-link {*/
/*    margin-bottom: -1px;*/
/*    border: 1px solid transparent;*/
/*    border-top-left-radius: 0.25rem;*/
/*    border-top-right-radius: 0.25rem;*/
/*}*/

.comment-list{
    list-style-type: none;
    padding: 0;
}
.comment-list-child{
    list-style-type: none;
}
.comment{
    font-family: 'PT Serif Regular','serif';
    font-size: 14px;
}
.title {
    font-family: 'PTSerif-Bold', 'sans-serif';
    font-size: 24px;
    /* line-height: 51px; */
    text-align: left;
    font-weight: 700;
    color: #002C52;
    text-transform: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 1200px) {
    .blog header{
       flex-direction: column;
    }
    .blog header .text-block{
        width: 100%;
    }
    .blog header .image{
        width:unset;
        margin-bottom: 20px;
    }
}