@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Math&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

body {
  overflow-x: hidden;
}

footer {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto 50px;
  background-color: #0f0f0f;
  border-top: 1px solid grey;
  gap: 0;
}
footer .footer-section-1 {
  padding: 20px;
  border-right: 1px solid grey;
}
footer .footer-section-1 h2 {
  font-family: "Zalando Sans Expanded", sans-serif;
  margin-top: 10px;
}
footer .footer-section-1 p {
  width: 60%;
  margin-top: 10px;
}
footer .footer-section-1 ul {
  display: flex;
}
footer .footer-section-1 ul li {
  margin-top: 10px;
}
footer .footer-section-1 ul li a {
  color: white;
}
footer .footer-section-1 ul .hours-title {
  font-family: "Zalando Sans Expanded", sans-serif;
}
footer .footer-section-2 {
  padding: 15px;
  display: flex;
  gap: 10px;
  justify-content: space-around;
  line-height: 1.9;
}
footer .footer-section-2 .business-info iframe {
  border-radius: 5px;
  height: 200px;
  width: 300px;
}
footer .footer-section-3 {
  grid-column: span 2;
  border-top: 1px solid grey;
  color: rgba(187, 185, 189, 0.3);
  text-align: center;
  padding: 5px;
}

/*-------MEDIA QUERIES---------*/
@media (max-width: 768px) {
  footer {
    display: block;
  }
  footer .footer-section-1 {
    border-right: none;
    border-bottom: 1px solid grey;
  }
  footer .footer-section-2 {
    display: block;
  }
  footer .footer-section-2 div {
    margin: 10px 0;
  }
  footer .footer-section-3 {
    height: 50px;
  }
}/*# sourceMappingURL=footer.css.map */