.blog_details{
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}
.blog_detail{
width: calc(98% - 380px);
border-radius: 36px;
border: 1px solid #BFBFBF;
padding: 30px 40px;
min-height: 40vh;
}
.blog_detail_header{
    color: #C2C2C2;


font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 26px; 
}
.blog_detail_header b{
    color: black;
}
.blog_detail img{
    width: 100%;
    max-height: 45vh;
    border-radius: 23px;

}
.blog_detail h2{
  color: #2A2A2A;

font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 80px
}
.blog_detail p{
    color: #636363;

text-align: justify;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 26px; 
}
.blog_detail h4{
    color: #2A2A2A;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 100%;
}
.blog_detail ol{
    text-align: justify;
  color: #636363;
  counter-reset: section;
  list-style-type: none;
  margin: 0%;
  padding: 0%;
}
.blog_detail ol li{
    color: #636363;
font-size: 14px;
font-style: normal;
  display: block;
font-weight: 400;

line-height: 36px;
}
.blog_detail ol li::before{
    counter-increment: section;
  content: counters(section,".") " -";
  font-size: 18px;
  font-weight: bold;
  color: #343333;
}
.blogs_sidebar{
    width: 380px;
    display: flex;
    flex-direction: column;
}
.more_blogs{
    height: 94px;
    width: 100%;
border-radius: 19px;
border: 1px solid #BFBFBF;
display: flex;
padding: 0 30px;
align-items: center;
justify-content: space-between;
}
.more_blogs h6{
    color: #013565;
margin: 0%;
font-size: 18px;
font-style: normal;
font-weight: 800;
}
.more_blogs a{
    width: 150px;
    height: 55px;
    border-radius: 9px;
background: #EFF8FF;
display: flex;
align-items: center;
justify-content: center;
transition: .3s;
}
.more_blogs a:hover{
    background-color: var(--blue);
    color: white;
}
.more_blog{
   
    height:101px ;
    display: flex;
    margin-top: 30px;
}
.more_blog img{
    max-width:120px ;
    object-fit: cover;
     min-width: 120px;
    height: 100%;
border-radius: 18px;
object-fit: cover;
}
.more_blog_title{
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100%;
padding-right: 10px;
}
[dir="ltr"] .more_blog_title{

padding-right: unset;
padding-left: 10px;
}
.more_blog h6{
    color: #081035;
margin: 0%;
font-size: 13px;
font-style: normal;
font-weight: 600;
}
.more_blog p{
color: #081035;
max-height: 45px;
overflow: hidden;
text-align: justify;
font-size: 10px;
font-style: normal;
font-weight: 300;
margin: 0%;
}
.more_blog_title span{
    width: 40px;
    height: 40px;
    border-radius: 10px;
background: #EFF8FF;
display: flex;
align-items: center;
justify-content: center;
}
@media (max-width:1200px) {
    .blogs_sidebar{
        width: 354px;
    }
    .blog_detail{
          width: calc(99% - 354px);
    }
}
@media (max-width:992px) {
    .blog_details {
        flex-direction: column;
    }
    .blog_detail {
        width: 100%;
    }
    .blogs_sidebar {
        width: 100%;
        margin-top: 30px;
    }
    .more_blog_title{
       padding-top: 10px;
    }
}
@media (max-width:768px) {
    .blog_detail h2{
        font-size: 16px;

    }
    .blog_detail p{
        font-size: 12px;

    }
    .blog_detail h4{
        font-size: 16px;
    }
    .blog_detail ol li{
        font-size: 12px;
    }
    .blog_detail{
        padding: 30px 20px;
        border-radius: 16px;

    }
}