header .burger-menu-nav .burger-menu-nav-content nav ul #contact a {
  color: var(--accent);
}

#contact-faqs {
  padding: var(--m) var(--gutter) var(--xl);
}
#contact-faqs .heading {
  margin-bottom: 0.5em;
}
#contact-faqs .faq {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* align-items: flex-start; */
  align-items:stretch;
  background-color: var(--primary-alt2);
  padding: var(--s);
  margin-bottom: var(--m);
}
#contact-faqs .faq:last-of-type {
  margin-bottom: 0px;
}
#contact-faqs .faq .subheading {
  position: relative;
  text-align: left;
  width: max-content;
  max-width: 100%;
  display: inline-block;
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
}
#contact-faqs .faq .subheading::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 50%;
  max-width: 6em;
  height: 1px;
  background-color: var(--accent);
}
@media (max-width: 768px) {
  #contact-faqs .faq .subheading {
    font-size: 24px;
  }
}
#contact-faqs .faq .post-content:has(+ *) {
  margin-bottom: var(--s);
}
#contact-faqs .faq .post-content p {
  margin-bottom: 0.25em;
}
#contact-faqs .faq .locations {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--m);
}
#contact-faqs .faq .locations .location {
  position: relative;
}
#contact-faqs .faq .locations .location::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(50%, -50%);
  translate: calc(var(--m) / 2);
  width: 1px;
  height: 80%;
  background-color: var(--secondary-alt2);
}
#contact-faqs .faq .locations .location:last-of-type::after {
  content: none;
}
#contact-faqs .faq .locations .location .name {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.5em;
  line-height: 1em;
}
#contact-faqs .faq .locations .location .address {
  color: var(--secondary);
  opacity: 0.9;
  font-size: 16px;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  #contact-faqs .faq .locations .location .address {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  #contact-faqs .faq .locations {
    gap: var(--s);
  }
  #contact-faqs .faq .locations .location::after {
    translate: calc(var(--s) / 2);
  }
  #contact-faqs .faq .locations .location .name {
    font-size: 14px;
  }
  #contact-faqs .faq .locations .location .address {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #contact-faqs .faq .locations {
    display: grid;
    grid-template-columns: auto auto;
    gap: var(--m);
  }
  #contact-faqs .faq .locations .location:nth-of-type(2n + 1)::after {
    content: none;
  }
  #contact-faqs .faq .locations .location:nth-of-type(2n + 2)::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 1px;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    translate: 0px calc(0px - var(--m) / 2);
    background-color: var(--secondary-alt2);
  }
  #contact-faqs .faq .locations .location:nth-of-type(2n + 2)::after {
    content: "";
    top: 50%;
    left: 0px;
    transform: translate(-50%, -50%);
    translate: calc(0px - var(--m) / 2);
  }
  #contact-faqs .faq .locations .location:nth-of-type(2n + 3)::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 1px;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    translate: 0px calc(0px - var(--m) / 2);
    background-color: var(--secondary-alt2);
  }
  #contact-faqs .faq .locations .location:nth-of-type(2)::before {
    content: none;
  }
}
@media (max-width: 450px) {
  #contact-faqs .faq .locations {
    display: flex;
    flex-direction: column;
    gap: var(--m);
    max-width: max-content;
  }
  #contact-faqs .faq .locations .location {
    width: 100%;
  }
  #contact-faqs .faq .locations .location::before {
    content: none !important;
  }
  #contact-faqs .faq .locations .location::after {
    content: "" !important;
    width: 80% !important;
    height: 1px !important;
    top: 100% !important;
    left: 50% !important;
    transform: translate(-50%, 50%) !important;
    translate: 0px calc(var(--m) / 2) !important;
  }
  #contact-faqs .faq .locations .location:last-of-type::after {
    content: none !important;
  }
}
#contact-faqs .faq .button-container {
  justify-content: center;
  gap: calc(var(--xs) * 2) var(--s);
}
@media (max-width: 768px) {
  #contact-faqs .faq .button-container {
    flex-direction: column;
  }
  #contact-faqs .faq .button-container .button {
    min-width: 14em;
    font-size: 14px;
  }
}
#contact-faqs .faq .social-media {
  margin-bottom: var(--s);
}
@media (max-width: 768px) {
  #contact-faqs .faq .button {
    font-size: 14px;
  }
}/*# sourceMappingURL=contact.css.map */