*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
.container{
    max-width: 1100px;
    margin: 30px auto;
}
.container1{
    max-width: 1200px;
    margin: 0px auto;
}
body{
    font-family: montserrat;
}
.head{
  padding-top: 10px;
  padding-bottom: 5px;
text-align: center;
    color: black;
    font-size: 15px;
    
}
.head span{
    color: red;
}
nav{
    background-color: #0082e6;
    padding-left: 40px;
    padding-right: 10px;
    height: 80px;
    width: 100%;
    position: sticky;
    top: 0;
}
nav .logo{
    width: 120px;
    padding-left: 30px;
    margin-left: 80px;
    text-align: center;
    padding-top: 10px;
}
nav ul{
    float: right;
    margin-right: 70px;
}
nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}
nav ul li a{
    color:white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}
nav a.active {
  color: red;
  font-weight: bold;
  
}
.checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check{
    display: none;
}

.info{
    display: flex;
}.contact{
    text-align: center;
}
.contact h1{
    padding-top: 50px;
    font-size:40px ;
}
.contact p{
    font-size: 24px;
    color: #7e8181;
    padding-bottom: 20px;
}
.maps{
    width: 100%;
    height: auto;
    margin: 10px;
    display: flex;
    padding: 10px 0px;
    margin-right: 100px;
 }
 .maps iframe{
     width: 100%;
     height: auto;
     flex: 40%;
  }
  .container {
    max-width: 1100px;
    margin: 30px auto;
}
.media p{
    font-size: 22px;
    color: #7e8181;
}
.media strong{
    font-size: 25;
    color: black;
}
.media i{
    font-size: 18px;
}
.media{
    display: flex;
    flex-direction: column;
    padding-right: 120px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.line{
    max-width: 1300px;
    margin: 30px auto;
    margin-bottom: 30px;
    padding-right: 20px;
    box-shadow: 0px 4px 3px;
    border: 1px solid #5f6368;
}
.reseaux{
    padding-top: -20px;
    text-align: center;
    font-size: 22px;
}
.reseaux span{
    color: #0082e6;
}
.mail{
    margin-top: 10px;
    font-size: 15;
}
/* @media query for */
@media (max-width: 858px){
    nav .logo{
        width: 100px;
        padding-left: 10px;
        margin-left: -50px;
        padding-top: 5px;
    }
    .head{
        display: none;
    }
   .checkbtn{
    padding-top: 20px;
    display: block;
   }
   ul{
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #2c3e50;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all .5s;

   }
   nav ul li{
    display: block;
    margin: 50px;
    line-height: 30px;
   }
   nav ul li a{
    font-size: 20px;
   }
  
   #check:checked ~ ul{
    left:0;
   }
   
.contact h1{
    padding-left: 20px;
    font-size: 30px;
}
.contact p{
    font-size: 20px;
}
.maps{
    width: 80%;
    height: auto;
    margin: auto;
    display: flex;
    padding: 0px;
    padding-right: 20px;
 }
 .maps iframe{
     width: 100%;
     height: auto;
     flex: 50%;
  }
.info{
    display: flex;
    flex-direction: column;
}
.media p{
    font-size: 20px;
    color: #7e8181;
}
.media h1{
    color: black;
}
.media i{
    font-size: 25px;
}
.media{
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    padding-top: 50px;
}
.line{
    max-width: 900px;
    margin: 10px auto;
    margin-bottom: 30px;
  margin-right: 30px;
  margin-left: 20px;
    box-shadow: 0px 4px 3px;
    border: 1px solid #5f6368;
}
.reseaux{
    padding-top: -20px;
    text-align: center;
    font-size: 22px;
}
.reseaux span{
    color: #0082e6;
}
.mail{
    margin-top: 10px;
    font-size: 15;
}
 
}
@media (min-width: 952px) and (max-width:1190px){
    .head{
        display: none;
    }
    nav.logo{
        width: 100px;
        padding-left: 30px;
    }
    nav ul li a{
        font-size: 16px;
    } 
}
@keyframes slideInLeft {
    from{
        transform: translateX(-300px);
    }
    to{
        transform: translateX(0);
    }
}
.contact{
    animation-name:slideInLeft ;
    animation-duration:1s ;
    animation-timing-function:ease-in ;
    animation-delay:1s ;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode:none ;
}