/* #Media Queries
================================================== */

/* Desktops and laptops ----------- */
/*@media only screen and (min-width : 1224px) {}*/

/* Smaller than standard 960 (devices and browsers) */
/*@media only screen and (max-width: 959px) {}*/

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {

  .head-quotes {
    display: none;
  }

  .header {
    padding-bottom: 20px;
  }

}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
/*@media only screen and (min-width: 480px) and (max-width: 767px) {}*/

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {

  body, .header-container, .footer-container {
    background-image: none;
  }

  #footer-nav, .nav-link {
    display: block !important;
  }

  .hero-title {
    line-height: 1.5;
    font-size: 14px;
    padding: 5px 10px;
  }

  /* elements to hide */
  .nav, .head-quotes span, .h-home br, .h-page br, .services-icon, .map, #footer-services, .hero-nav  {
    display: none;
  }

  body {
    margin-top: 10px;
  }

  h2 {
    margin-bottom: 0;
  }

  .header-container {
    padding-bottom: 0;
  }

  .header {
    border-bottom: none;
  }

  .intro {
    margin-bottom: 0;
  }

  .logo {
    margin: 0 auto;
    display: block;
  }

  .head-quotes {
    text-align: center;
    margin: 0 auto;
    padding-top: 20px;
  }

  .rounded {
    margin-bottom: 20px;
  }

  .footer-col {
    margin: 0 20px;
  }

  .home-col-content {
    min-height: 1%;
  }

  .home-col {
    padding: 20px;
    text-align: left;
    margin-top: 10px;
  }

  .home-col-content p {
    padding: 0;
  }

  .h-home {
    background: none !important;
    padding: 0;
  }

  .recent-work-wrap {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .footer-copyright {
    text-align: center;
  }

}