/* BLOG HEADER */

.blog-header{
padding:40px 0 20px;
background:#fff;
border-bottom:1px solid #eee;
}

/* breadcrumb */

.breadcrumb{
font-size:14px;
color:#777;
margin-bottom:10px;
}

.breadcrumb a{
color:#1a73e8;
text-decoration:none;
}

.breadcrumb span{
margin:0 5px;
}

/* title */

.blog-title{
font-size:27px;
font-weight:600;
margin-bottom:10px;
color:#008080;
}

/* meta */

.blog-meta{
display:flex;
gap:15px;
align-items:center;
font-size:14px;
margin-bottom:10px;
}

.category{
color:#008080;
text-decoration:none;
}

.blog-meta i{
margin-right:5px;
color:#777;
}

/* share */

.share-section{
display:flex;
align-items:center;
gap:10px;
margin-top:10px;
}

.social{
width:35px;
height:35px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
text-decoration:none;
font-size:14px;
}

.fb{
background:#3b5998;
}

.insta{
background:#e4405f;
}

.linkedin{
background:#0077b5;
}

.youtube{
background:#ff0000;
}

/* BLOG MAIN SECTION */

.blog-wrapper{
padding:70px 0;
background:#f9fafc;
}

.blog-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
}

/* BLOG CONTENT */

.blog-content{
background:#fff;
padding:35px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.blog-content h2{
font-size:23px;
margin-top:30px;
margin-bottom:15px;
font-weight:600;
color:#008080;
}

.blog-content h3{
font-size:22px;
margin-top:25px;
margin-bottom:12px;
font-weight:600;
color:#008080;
}

.blog-content p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:18px;
}

/* BLOG CONTENT ICON BULLETS */

.blog-content ul{
padding-left:0;
list-style:none;
margin-bottom:20px;
}

.blog-content ul li{
font-size:16px;
margin-bottom:10px;
color:#444;
position:relative;
padding-left:28px;
}

.blog-content ul li::before{
content:"✔";
position:absolute;
left:0;
top:0;
color:#008080;
font-size:16px;
font-weight:bold;
}

/* BLOG IMAGE */

.blog-section-image{
margin-bottom:25px;
}

.blog-section-image img{
width:100%;
border-radius:8px;
height: 450px;
}

/* SIDEBAR */

.blog-sidebar{
display:flex;
flex-direction:column;
gap:25px;
}

.side-box{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.side-box h3{
font-size:20px;
margin-bottom:15px;
color:#008080;
}

.side-box ul{

padding:0;
margin:0;
}

.side-box ul li{
padding:10px 0;
border-bottom:1px solid #eee;
font-size:15px;

}

.side-box ul li:last-child{
border-bottom:none;

}

/* CONSULTATION FORM */

.side-box form input,
.side-box form textarea{
width:100%;
padding:10px;
margin-bottom:10px;
border:1px solid #ddd;
border-radius:5px;
font-size:14px;
}

.side-box form button{
width:100%;
background:#008080;
color:#fff;
border:none;
padding:12px;
border-radius:5px;
font-size:15px;
cursor:pointer;
transition:.3s;
}

.side-box form button:hover{
background:#006666;
}

/* RESPONSIVE */

@media(max-width:991px){

.blog-grid{
grid-template-columns:1fr;
}

.blog-main-title{
font-size:32px;
}

.blog-meta{
flex-direction:column;
gap:8px;
}

}

@media(max-width:768px)
{
    .blog-title
    {
        font-size:18px;
    }
    .blog-content h2
    {
        font-size:21px;
    }
    
    .blog-wrapper 
    {
        padding:19px 0;
    }
    
.blog-section-image img{

height: auto;
}
}