@media (max-width: 1600px) {
  :root {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  header .mobileMenu {
    position: fixed;
    left: -250px;
    top: 0;
    height: 100vh;
    background-color: var(--primary);
    z-index: 99;
    width: 250px;
    opacity: 0;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
  }
  header .mobileMenu.open {
    left: 0;
    opacity: 1;
  }
  header .layerTwo nav ul {
    padding-top: 2em;
  }
  header .layerTwo nav ul li a {
    padding: 1em;
  }
  .heroSection img {
    height: 300px;
  }
}

@media (max-width: 575px) {
  header .layerTwo .logo img {
    height: 34px;
    margin: 0;
  }
  header .layerTwo .logo span {
    display: none;
  }
  .heroSection img {
    height: 250px;
  }
  footer .download img {
    width: 150px;
  }
}
/*# sourceMappingURL=responsive.css.map */