/* Section: What We Do */
/* Stack each item */
#what .items {
  display: block;
  padding: 1rem;
}

/* Align Icon To Left */
#what .items .item {
  display: flex;
  text-align: left;  
}

#what .items .item i {
  margin-right: 1.3rem;
  align-self: center;
  margin-bottom: 0;
}
/* ./Section: What We Do */

/* Smartphones */
@media(max-width: 500px) {
  #navbar {
    flex-direction: column;
    align-items: center;
  }

  #navbar .logo {
    margin-bottom: 0.5rem;
    text-align: center;
  }

  #navbar ul {
    padding: 0.5rem;
  }

  /* Section: Who We Are */
  #who {
    display: block;
  }

  #who .who-img {
    display: none;
  }
 /* ./Section: Who We Are */


  /* Section: Clients */
  #clients .items img {
    width: 80%;
  }

  #clients .items div:last-child {  
    display: none;
  }
  /* ./Section: Clients */

  /* Section: Contact Us */
  #contact {
    display: block;
  }

  #contact .map {
    height: 200px;
    border-top: 4px solid #333;
  }  
  /* ./Section: Contact Us */
}

/* Small Smartphones like iPhone 5/SE*/
@media(max-height: 568px) {
  #showcase .showcase-content {
    /* margin-top: -2rem; */
    /* top: 140px; */
  }  

  .l-heading {
    font-size: 3rem;
  }

  .lead {
    font-size: 1rem;
  }
}