*{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_team{
    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 ;
}
.team_slogan{
    max-width: 742px;
    text-align: center;
    font-size: 14px;
}
.team_box{
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4 , 1fr );
    grid-column-gap: 20px ;
    grid-row-gap: 60px;

}
.people{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.people_photo{
    width: 100%;
}
.people_name{
    margin-top: 15px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans" , sans-serif;
}
.about_people{
    margin-top: 17px;
    font-size: 12px;
    line-height: 18px;
    color: #606060;
    font-weight: 400;
    font-family: "Open Sans" , sans-serif;
    text-align: center;
}
.people_media{
    margin-top: 15px;
    word-spacing: 20px;
}
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:620px) {
    .team_box{
        grid-template-columns: repeat(3 , 1fr);
    }
}
@media (max-width:430px) {
    .team_box{
        grid-template-columns: repeat(2 , 1fr);
    }
}
@media (max-width:368px) {
    .logo{
     margin:  0px 10px;
    }
}
@media (max-width:320px) {
    .team_box{
        grid-template-columns: repeat(1 , 1fr);
    }
}