/* Start custom CSS for html, class: .elementor-element-c256000 *//*==============================
Blog Section
==============================*/

.blog-section{
    padding:90px 0;
    background:#f8fbff;
}

/*==============================
Heading
==============================*/

.blog-subtitle{
    display:inline-block;
    padding:8px 22px;
    background:#eaf2ff;
    color:#0d47a1;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.blog-title{
    font-size:42px;
    font-weight:800;
    color:#1d3557;
    margin-bottom:15px;
}

.blog-text{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/*==============================
Blog Card
==============================*/

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    border:1px solid #edf2f7;
}

.blog-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(0,0,0,.15);
}

/*==============================
Image
==============================*/

.blog-img{
    position:relative;
    overflow:hidden;
}

.blog-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.blog-card:hover .blog-img img{
    transform:scale(1.1);
}

/*==============================
Category Badge
==============================*/

.blog-category{
    position:absolute;
    left:20px;
    top:20px;
    background:#d71920;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/*==============================
Content
==============================*/

.blog-content{
    padding:28px;
}

.blog-meta{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
    color:#777;
    font-size:14px;
}

.blog-meta span i{
    color:#0d47a1;
    margin-right:6px;
}

.blog-content h4{
    font-size:24px;
    font-weight:700;
    color:#1d3557;
    line-height:1.5;
    margin-bottom:15px;
    transition:.3s;
}

.blog-card:hover h4{
    color:#d71920;
}

.blog-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:22px;
}

/*==============================
Button
==============================*/

.blog-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#0d47a1;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.blog-btn i{
    transition:.3s;
}

.blog-btn:hover{
    color:#d71920;
}

.blog-btn:hover i{
    transform:translateX(6px);
}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

.blog-section{
    padding:70px 0;
}

.blog-title{
    font-size:34px;
}

.blog-img img{
    height:230px;
}

}

@media(max-width:767px){

.blog-section{
    padding:60px 0;
}

.blog-title{
    font-size:28px;
}

.blog-text{
    font-size:15px;
}

.blog-content{
    padding:22px;
}

.blog-meta{
    flex-direction:column;
    gap:8px;
}

.blog-content h4{
    font-size:21px;
}

.blog-img img{
    height:220px;
}

}/* End custom CSS */