.container {
    width: 100%;
    /* max-width: 1140px; */
    margin: auto;
    padding: 0;
}
.heading_sec{
    margin-bottom: 20px;
    text-align: center;
}
.heading_sec h2{
    color: var(--heading-color);
    font-size: var(--f50);
    line-height: 1;
    margin-bottom: 25px;
}
.divider {
    background-image: linear-gradient(84deg, #2488e5 30%, #c4c4c4 41%);
    height: 4px;
    width: 185px;
    display: flex;
    margin: auto;
}
.heading_sec h5{
    font-size: 22.4px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 22px;
}
/*Banner css*/
section.banner-section {
    height: 650px;
    background: url(../images/blog-banner.jpg);
   background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0px;
    position: relative;
}
section.banner-section .banner-overlay {
    background-color: rgba(3, 10, 27, .61);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(0deg, rgb(0 0 0 / 50%), rgb(255 255 255 / 50%));
}
section.banner-section h1{
	font-size: 4.37rem;
	margin-bottom: 120px;
}
section.banner-section .container{
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

/*Blog section css*/
section.blog-section {
    padding: 0px;
    background-color: #fafafa;
    z-index: 1;
    position: relative;
    padding-top: 1px;
}
section.blog-section .inner-blog {
    padding: 110px 98px 200px 98px;
    background: #fff;
    margin-top: -140px;
}
section.blog-section .col-6 {
    padding: 0 15px;
    padding-bottom: 80px;
}
section.blog-section img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
section.blog-section .blog-image{
    height: 292px;
    overflow: hidden;
    margin-bottom: 20px;
}
section.blog-section .blog-content {
    padding: 20px 20px 0;
}
section.blog-section p.blog-date{
    line-height: 1;
    margin-bottom: 20px;
}
section.blog-section p.blog-date a{
    color: var(--heading-color);
}
section.blog-section h4{
    font-size: var(--f30);
    line-height: 1;
    margin-bottom: var(--m30);
    font-weight: 600;
}
section.blog-section h4 a{
    color: var(--heading-color);
    font-family: var(--heading-font);
}

section.blog-section h4 a:hover{
    color: var(--secondary-color);
}
section.blog-section .blog-para{
    margin-bottom: 40px;
}
section.blog-section a.blog-btn{
color: var(--primary-color);
font-weight: 500;
text-decoration: underline;
}
section.blog-section a.blog-btn:hover{
    color: var(--secondary-color);
}