@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400;500;600;700;800&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
.page-container {
  margin: 0 20px;
}

.contact {
  padding-bottom: 5em;
}
.contact__container .map {
  border-radius: 15px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.12), 0 2px 3px rgba(0, 0, 0, 0.24);
}
.contact__container .map iframe {
  border: none;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.contact__container .directions {
  display: flex;
  display: -webkit-flex;
  flex-direction: column-reverse;
  margin-top: 1em;
  position: relative;
}
.contact__container .directions h2 {
  position: absolute;
  top: 1em;
  display: block;
  text-align: center;
  z-index: 100;
}
.contact__container .directions__tabs {
  display: flex;
  display: -webkit-flex;
  justify-content: space-evenly;
  padding: 0 1em;
}
.contact__container .directions__tabs button {
  border: none;
  font-size: 200%;
  padding: 0.5em;
  background: transparent;
  border-radius: 0 0 15px 15px;
  background: linear-gradient(to top, transparent 50%, #fff8eb 50%);
  background-size: 100% 200%;
  background-position: center bottom;
  transition: all 200ms ease;
  width: 80px;
}
.contact__container .directions__tabs button.active {
  background-position: center top;
}
.contact__container .directions__content {
  background: #fff8eb;
  border-radius: 15px;
  box-sizing: border-box;
  min-height: 450px;
  padding: 1em;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
}
.contact__container .directions__content p {
  font-weight: 300;
  line-height: 150%;
}
.contact__container .directions__content div {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  background: white;
  border-radius: 15px;
  box-sizing: border-box;
}
.contact__container .directions__content .active {
  max-height: 400px;
  opacity: 1;
  padding: 1em;
}
.contact__container .contact-details {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  margin: 1em 0;
}
.contact__container .contact-details__content {
  background: rgba(250, 250, 250, 0.7);
  border-radius: 10px;
  padding: 0 0.5em;
}
.contact__container .contact-details__hours {
  margin-top: 3em;
}
.contact__container .contact-details > div {
  padding: 0 1em;
  margin-bottom: 1em;
}
.contact__container .contact-details button {
  border: none;
  background: #2F4858;
  color: white;
  border-radius: 100px;
  width: 100%;
  padding: 0.5em 2em;
  font-family: "Baloo Bhai 2", cursive;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 150%;
  max-width: 300px;
}
.contact__container .contact-details p {
  font-weight: 300;
  line-height: 150%;
}

/* Mobile Styling */
@media screen and (min-width: 480px) {
  .directions h2 {
    width: 100%;
    left: 0;
  }
}
/* Tablet Styling */
@media screen and (min-width: 768px) {
  .page-container {
    width: 90%;
  }

  .contact {
    width: 80%;
    margin: 0 auto;
  }
}
/* Desktop Styling */
@media screen and (min-width: 992px) {
  .page-container {
    width: 80%;
  }

  .contact__container {
    display: grid;
    grid-template-columns: calc(65% - 30px) 35%;
    grid-template-rows: 450px 450px;
    grid-gap: 30px;
  }
  .contact .directions {
    grid-column-start: 1;
    grid-row-start: 2;
    margin-left: -80px;
    flex-direction: row;
  }
  .contact .directions__tabs {
    padding: 1em 0;
    flex-direction: column;
  }
  .contact .directions__tabs button {
    border-radius: 15px 0 0 15px;
    background: linear-gradient(to right, transparent 50%, #fff8eb 50%) left bottom;
    background-size: 200% 100%;
  }
  .contact .directions__tabs button.active {
    background-position: right bottom;
  }
  .contact .directions__content {
    min-height: initial;
  }
  .contact .contact-details {
    margin: 0;
    grid-column-start: 2;
    grid-row: 1/span 2;
  }
  .contact .contact-details h2 {
    margin-top: 0;
  }
}

/*# sourceMappingURL=contact.css.map */
