@media screen and (max-width: 700px) {
  header .brand-area {
    display: none;
  }

  .hero .sec-logo {
    display: block;
    width: 140px;
  }

  .header-top {
    display: none;
  }

  #navigation {
    max-width: 100vw;
    width: 100vw;
    border-radius: 0;
    height: 50px;
    background-color: var(--green);
  }

  #navigation .hamburger-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  #navigation .hamburger-container .hamburger {
    width: fit-content;
    margin: 0 20px;
  }

  #navigation .hamburger-container img {
    width: 100px;
  }

  #navigation .hamburger .line {
    width: 50px;
    height: 5px;
    background-color: #ecf0f1;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  #navigation .hamburger:hover {
    cursor: pointer;
  }

  #navigation .references {
    display: none;
  }

  #navigation.expanded {
    flex-direction: column;
    font-size: 26px;
    height: 200px;
  }

  #navigation.expanded .references {
    display: flex;
    flex-direction: column;
    margin: 20px 0 0 0;
  }

  #navigation.expanded .references a {
    color: #fff;
  }

  #navigation.expanded .hamburger .line:nth-child(2) {
    opacity: 0;
  }

  #navigation.expanded .hamburger .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
  }

  #navigation.expanded .hamburger .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
  }

  .hero {
    align-items: center;
    padding-right: 0px;
  }

  .fb-widget-container .facebook-button {
    display: none;
  }
}

@media (max-width: 900px) {
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr !important;
  }

  .footer-inner .footer-col {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .contact-map iframe {
    height: 300px;
  }

  .description {
    padding: 10px 20px;
  }

  .description-subline {
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
    color: var(--text-dim);
  }
}
