*{
    margin: 0;
    padding: 0;
  }
  
  h1{
      font-family:Verdana, Geneva, Tahoma, sans-serif;
      font-weight: bold;
  }
  p{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: lighter;
  }
  
  .header{
    min-height: 10cm;
    width: 100%;
    background-image: linear-gradient(rgba(143, 143, 143, 0.212),rgba(143, 143, 143, 0.192)),url(images/aboutUsMain.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
  } 
  
  nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2% 6%;
  }
  nav a{
    text-decoration: none;
    color: aliceblue;
  }
  
  .logo_text{
    text-shadow: 5px 3px 3px black, 5px 3px 10px black, 5px 3px 15px black;
  }
  
  .nav-links{
    flex: 1;
    text-align: right;
  }
  
  .nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
  }
  
  .nav-links ul li a{
    text-decoration: none;
    font-size: 15px;
    color: aliceblue;
  }
  
  .text-box{
    color: aliceblue;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    text-shadow: 5px 3px 10px black;
  }
  
  .text-box h1{
  font-size: 30px;
  text-shadow: 5px 3px 3px black, 5px 3px 10px black, 5px 3px 15px black;

  }
  
  
  .text-box p{  
  font-weight:400;
  margin: 10px 0px 20px;
  text-shadow: 5px 3px 1px black, 5px 3px 3px black, 5px 3px 5px black,5px 3px 3px black, 5px 3px 10px black, 5px 3px 15px black;
  }
  
  
  .hero-button{
    text-decoration: none;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.466);
    text-align: center;
    border: 1px solid;
    margin-top:5% ;
    margin-bottom: 5%;
    padding: 12px 34px;
    position: relative;
    color: aliceblue;
    border-radius: 6%;
    cursor: pointer;
  }
  
  .hero-button h1{
   font-size: 15px;
  }
  
  .hero-button:hover{
  background: #16161670;
  transition: 0.5s;
  }
  
  .fa-icons{
    display: none;
  }
  
  
  
  
  
  @media(max-width: 700px){
    .text-box h1{
      font-size: 25px;
      }
      .hero-button h1{
      font-size: 15px;
      }
  
      .nav-links ul li{
      display: block;
      }
  
      .nav-links{
        display:none;
        position: absolute;
        background: rgb(110, 110, 110);
        height: 100%;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
      }
  
  
      .fa-icons{
        display: block;
        width: 17px;
        margin: 10px;
        cursor: pointer;
      }
  }

  /*section about us text*/


  .content{
    display: flex;
    margin: 20px;
    text-align: center;
    flex-direction: row;
    flex-basis:33%;
}

  .content img {
    margin: 50px;
    width: 200px;
  }

  @media(max-width: 700px){
    .content{
        flex-direction: column;
    }

    .content img {
        width: 150px;
        margin: 25px;
    }
  }




  /*section footer*/

.footer {
    background-color: rgb(129, 129, 129);
    width: 100%;
    margin-top: 50px;
    height: 200px;
  }
  
  .navigationLinks{
    margin-left: 20%;
    margin-right: 20%;
  }
  
  .footerLinks{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    justify-content: space-between;
    align-items: center;
  }
  
  .footerLinks li{
    margin: 15px;
    color: #fff;
    list-style-type: none;
  }
  
  .footerLinks li h1{
    font-weight: lighter;
    color: #fff;
  }
  
  .footerLinks li a {
    text-decoration: none;
  }
  
  
  @media(max-width:700px){
    
    .footerLinks{
      margin-top: 50px;
      display: inline;
      text-align: center;
    }
  }