/* Blog Page CSS */
.blog-header{
    background: #fff;
}
.blog-header .blog-header_container{
    padding: 16px 0px;
    margin-bottom: 16px;
    border-bottom: 1px solid #CBCBCB;
}
.blog-header .blog-nav{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}
.blog-header .blog-nav li{
    flex: 1 0 auto;
  display: flex;
}
.blog-header .blog-nav li a{
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.4px;
    padding-bottom: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    text-wrap: nowrap !important;
    width: fit-content;
    white-space: normal;
}
.blog-header .blog-nav li a.active:before{
    content: " ";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    display: block;
}
.blog-header .blog-nav li a:hover:before{
    content: " ";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    display: block;
}
.blog-header .blog-header_container{
    display: flex;
     width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}
.blog-header .blog-count{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.blog-header .blog-nav::-webkit-scrollbar {
    width: 0px;
  }



/* Hero Blog */
.single-blog-post{
    margin-bottom: 16px;
}

.single-blog-post .single-blog-post_img{
    width: 100%;
    display: block;
    height: 578px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}
.single-blog-post .single-blog-post_img .img-ab{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-blog-post .single-blog-post_content .title-main a{
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
}
.single-blog-post .single-blog-post_content .title{
    margin-bottom: 4px;
    font-family: 'Inter';
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
}
.single-blog-post .single-blog-post_content .title a{
    font-family: 'Inter';
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
}
.single-blog-post .single-blog-post_content p{
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 4px;
}


/* Blog Block Section */
.bb-section{
    padding: 64px 0px;
}
.bb-section .bb-title{
    text-transform: capitalize;
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -0.6px;
    margin-bottom: 32px;
}
.bb-section .blog-grid-cols-4{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* grid-template-rows: repeat(2, 1fr); */
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}
.bb-section .blog-grid-cols-4 .single-blog-post .single-blog-post_img{
    height: 195px;
}
.bb-section .blog-grid-cols-4 .single-blog-post .title{
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}
.blog-grid .single-blog-post .single-blog-post_img{
    height: 316px;
}
.blog-content{
    padding-bottom: 52px;
}
.title-blog  {
    padding: 15px 0px 20px 0px;
   
}
.title-blog h1 {
    font-size: 22px;
    font-weight: 700;
}