*{padding: 0;margin: 0;border: 0; }
*,*:before,*:after{-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}
nav,footer,header,aside{display: block;}
html,body{height:100%;width:100%;font-size:100%;line-height:1;font-size:14px;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input,button,textarea{font-family:inherit;}
input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a,a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: inherit;  font-family: 'Lato', sans-serif;}
.content{
    max-width: 1000px;
    margin: auto;
    padding: 0px 10px;
}
header,.main_menu{
    /* box-sizing: content-box; */
    top: 0;
    background: black; 
}
.l,.r{
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;

}

nav{
    min-height: 80px;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}
nav a{
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    color: #979898;
    margin-top: 10px;
}
.active{
    color: #3788be ;
}
.logo{
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-weight:900;
    text-transform: uppercase;
    color: white;
    margin:  0px 60px;
}
.our_blog{
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: 'Open Sans' , sans-serif;
    max-width: 1024px;
}
h1{
   font-family: 'lato' , sans-serif; 
   font-size: 44px ;
   font-weight: 300;
   margin-top: 60px;
}
.line{
    height: 1px;
    width: 150px;
    background-color: #979898;
    margin: 40px 0px ;
}
.blog_slogan{
    max-width: 742px;
    text-align: center;
    font-size: 14px;
}
.blog_box{
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2 , 1fr );
    grid-column-gap: 40px ;
    grid-row-gap: 60px;
}
.post{
    display: flex;
    flex-direction: column;
}
.post_img{
    width: 100%;
    max-width: 500px;
    max-height: 240px;
    margin: auto;
}
.post_h{
    margin-top: 15px;
    font-size: 20px;
    font-weight:700;
    font-family: "Lato";
    color: #000;
}
.post_text{
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
    color: #606060;
    font-weight: 400;
    font-family: "Open Sans";
}
.read_more{
    line-height: 40px;
    color: #606060;
    font-weight: 400;
    font-family: "Open Sans";
    text-decoration: underline;
}
footer{
    margin-top: 100px;
    min-height: 65px;
    background-color: black;
    width: 100%;
    flex: 0 0 auto;
    
}
.media{
    color: white;
    display: flex;
    justify-content: space-between ;
    align-items: center;
    min-height: 65px;
}
.social{
    display: flex;
    width: 170px;
    justify-content: space-between;
}
.comand_email{
    font-family:  'Open Sans', sans-serif ;
    font-size: 12px;
    text-align: right;
}
@media (max-width:800px) {
    .blog_box{
        grid-template-columns: 1fr;
    }
 }
@media (max-width:368px) {
    .logo{
     margin:  0px 10px;
    }
}