body,h1,h2,h3,h4,h5,h6 
{
  font-family: "Lato", sans-serif
}

.w3-bar,h1 
{
  font-family: 'PT Sans', "Montserrat", sans-serif
}

.fa-anchor,.fa-coffee 
{
  font-size:200px
}

* {
  box-sizing: border-box;
/*  margin: 0;  this fucks up the margins around <p> tags AND buttons */
/*  padding: 0;*/
  font-family: "Montserrat", sans-serif;
}  
.nav-menu {
    font-family: 'PT Sans', sans-serif;
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-gap: 10px;
    list-style: none;
    text-align: center;
    width: 50vw;
    justify-content: end;
    margin-right: 2rem;
 }

  .navbar {
    background-color: #003366;
    color: #fff;
    height: 70px;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0px;
    z-index: 999;
  } 
  
  .navbar-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1500px;
  }

  .logo {
    background-color: #006699;
    background: #006699;
    justify-content: flex-start;
  }

  .logoText {
    font-size: 25px;
    line-height: 1;
  }
  .navbar-logo {
    background: #006699;
    color: #fff;
    justify-self: start;
    padding-left: 30px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .btn {
    text-decoration: none;
    margin-top:  3px;
    padding: 8px 20px;
    border-radius: 2px;
    outline: none;
    border: none;
    cursor: pointer;
  }
  .btn--outline {
    background-color: transparent;
    color: #fff;
    padding: 8px 20px;
    border: 1px solid #fff;
    transition: all 0.3s ease-out;
  }
  .btn--outline-black {
    background-color: transparent;
    /*color: #fff;*/
    padding: 8px 20px;
    border: 1px solid #000;
    transition: all 0.3s ease-out;
  }
  .btn--medium {
    padding: 8px 20px;
    font-size: 18px;
  }


  .btn--large:hover, .btn--medium:hover {
    transition: all 0.3s ease-out;
    background: #fff;
    color: #242424;
    transition: 250ms;
  }

  ul {
    margin: 0px;
    padding-inline-start:  0px;
    list-style: none;
  }

  hr {
    margin: 0px;
  }
  
  h1 {
    font-weight: 700;
  }
  .smww-bj-icon {
    height: 70px;
    margin-right: -2px;
    margin-left: 20px;
  }

  .menu-icon {
    display: none;
  }


  .hero {
    display: block;
  }
  .hero > h1 {
    color: #fff;
    font-size: 100px;
    margin-top: 30px;

  }  

  .hero > p {
    margin-top: 8px;
    color: #fff;
    font-size: 32px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }

  .center {
    margin-top: 4px;
  }

  .footer-container{
    max-width: 1170px;
    margin:auto;
  }
  .row{
    display: flex;
    flex-wrap: wrap;
  }
  .footer{
    background-color: #24262b;
      padding: 70px 0;
  }
  .footer p{
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
  }
  .footer-col{
     width: 25%;
     padding: 0 15px;
  }
  .footer-col h4{
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
  }
  .footer-col h4::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: #FF9900;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
  }
  .footer-col ul li:not(:last-child){
    margin-bottom: 10px;
  }
  .footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
  }
  .footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
  }
  .footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  .footer-col .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;
  }

  .smww-button:hover {
    color: #fff!important;
    background-color: #ff9900!important;
    border-color: #ff9900!important;
  }

  @media screen and (max-width: 992px) {
  
    .nav-menu {
      display: flex;
      justify-content: flex-start;  /* I added this */
      flex-direction: column;
      width: 100%;
      height: 90vh;
      position: absolute;
      top: 80px;
      left: -100%;
      opacity: 1;
      transition: all 0.5s ease;
    }
  
      .nav-menu.active {
      background: #006699;
      left: 0;
      opacity: 1;
      transition: all 0.5s ease;
      z-index: 1;
    }
  
    .logo {
      background: #006699;
      top: 0px;
      left: 0px;
    }

    .navbar-logo {
      position: absolute;
      top: 0px;
      left: 0;
    }
  
    .menu-icon {
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      transform: translate(-100%, 30%);
      font-size: 1.8rem;
      cursor: pointer;
    }
  
/*    .fa-times {
      color: #fff;
      font-size: 2.2rem;
    }
*/  
    .nav-links-mobile {
      display: block;
      text-align: center;
      margin: 2rem auto;
      border-radius: 4px;
      width: 80%;
      text-decoration: none;
      font-size: 1.5rem;
      background-color: transparent;
      color: #fff;
      padding: 14px 20px;
      border: 1px solid #fff;
      transition: all 0.3s ease-out;
    }
  
    .nav-links-mobile:hover {
      background: #fff;
      color: #006699;
      transition: 250ms;
    }

    .hero > h1 {
      font-size: 70px;
    }

  }  

  @media screen and (max-width: 768px) {
    .hero > h1 {
      font-size: 50px;
    }
    .hero > p {
      font-size: 30px;
    }
    .footer-col{
      width: 50%;
      margin-bottom: 30px;
    }
  }
  @media(max-width: 574px){
    .footer-col{
      width: 100%;
    }
}


  