* {
  box-sizing: border-box;
}

html,
body {
  font-size: 16px;
}

html {
  --width: 1240px;
  --purple: #411363;
  --white: #ffffff;
  --black: #222222;
  --notch-pad-top: 20px;
  --notch-pad-bottom: 5px;
  --notch-pad-left: 40px;
  --section-hpad: 30px;
  --section-vpad: 20px;
  --highlight: #FFDD65;
  --accent: hsl(91, 75%, 28%);
}
@media (max-width: 400px) {
  html {
    --section-hpad: 15px;
  }
}

body {
  overflow-x: hidden;
  line-height: 1.35;
  font-family: "Source Sans 3", sans-serif;
  background-color: var(--purple);
  color: #fff;
  margin: 0;
  padding: 0;
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
}
body main {
  flex: 1 1 auto;
}

h1 {
  font-size: 32px;
  line-height: 32px;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 500;
}

h2,
details > div::before {
  font-size: 20px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
}

a {
  color: var(--highlight);
}

li:not(:last-child) {
  padding-bottom: 10px;
}

img {
  max-width: 100%;
  display: block;
}

main.main-home {
  max-width: var(--width);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: max(410px, 40%) auto;
  grid-template-rows: auto 60px auto;
}

#intro-text {
  padding-left: var(--section-hpad);
  position: relative;
  background-color: var(--white);
  color: var(--black);
  grid-column: 1;
  grid-row: 1;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 15px;
}
#intro-text h1 {
  color: #333;
  font-weight: 600;
  text-shadow: 1px 1px 0px var(--highlight);
  text-align: center;
}
#intro-text::before {
  position: absolute;
  right: 100%;
  height: 100%;
  width: 100vw;
  top: 0;
  content: "";
  background-color: var(--white);
}
#intro-text > *:first-child {
  margin-top: 0;
}
#intro-text > *:last-child {
  margin-bottom: 0;
}
#intro-text ul {
  list-style-position: outside;
  padding-left: 15px;
}

#intro-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding-top: 20px;
}
#intro-cta a {
  display: block;
  background-color: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 8px 30px;
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Alegreya Sans SC", sans-serif;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}
#intro-cta a i {
  padding-right: 10px;
}
#intro-cta a:hover {
  box-shadow: 2px 2px 0 var(--highlight);
  color: #fff8e2;
}

#intro-map {
  grid-column: 2;
  grid-row: 1/span 2;
  padding: 40px var(--section-hpad) 20px 35px;
  position: relative;
  background-color: white;
}
#intro-map::after {
  position: absolute;
  left: 100%;
  height: 100%;
  width: 100vw;
  top: 0;
  content: "";
  background-color: var(--white);
}
#intro-map iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 40px;
  padding-right: var(--section-hpad);
  padding-bottom: 40px;
  padding-top: 40px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

#faq-heading {
  grid-column: 1;
  position: relative;
  /* padding-left: var(--section-hpad);
  padding-right: 20px; */
  padding-top: var(--notch-pad-top);
  padding-bottom: var(--notch-pad-bottom);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
  /* box-shadow: 4px 2px 0 -2px rgba(0, 0, 0, 0.2); */
}
#faq-heading h1 {
  margin: 0;
  text-align: center;
}

#faq-questions {
  position: relative;
  grid-column: 1;
  padding-bottom: 10px;
  padding-left: var(--section-hpad);
}
#faq-questions > ol {
  margin-top: 30px;
  padding-left: 20px;
}
#faq-questions summary {
  list-style: none;
  cursor: pointer;
}
#faq-questions summary::-webkit-details-marker {
  display: none;
}
#faq-questions summary:hover,
#faq-questions li.open summary {
  color: var(--highlight);
}
#faq-questions > ol > li:hover,
#faq-questions > ol > li.open {
  color: var(--highlight);
}
#faq-questions > ol > li:hover details > div,
#faq-questions > ol > li.open details > div {
  color: var(--white);
}
#faq-questions details > div {
  position: absolute;
  left: 100%;
  top: 0;
  width: var(--faq-answer-width);
  padding-top: 27px;
  padding-left: var(--notch-pad-left);
  padding-right: var(--section-hpad);
  font-weight: 300;
}
#faq-questions details > div::before {
  content: attr(data-heading);
}
#faq-questions details > div > *:first-child {
  margin-top: 10px;
}
#faq-questions details > div ul {
  list-style-type: disc;
}
#faq-questions details > div ul ul {
  list-style-type: square;
}
#faq-questions details > div ul ul li:first-child {
  padding-top: 10px;
}

#faq-answers {
  grid-column: 2;
}

@media (max-width: 800px) {
  main.main-home {
    display: flex;
    flex-direction: column;
  }

  #intro-text::before {
    left: calc(-1 * var(--section-hpad));
    right: calc(-1 * var(--section-hpad));
    bottom: 0;
    top: 0;
    width: auto;
    z-index: -1;
  }

  #intro-map::after {
    left: calc(-1 * var(--section-hpad));
    right: calc(-1 * var(--section-hpad));
    bottom: 0;
    top: 0;
    width: auto;
    z-index: -1;
  }

  #intro-map {
    padding: 0;
  }

  #intro-map iframe {
    position: relative;
    max-height: calc(100vh - 40px);
    height: 500px;
    box-shadow: none;
    padding: 0 var(--section-hpad) var(--section-vpad) var(--section-hpad);
  }

  #intro-text {
    padding-right: var(--section-hpad);
  }

  #faq-heading {
    padding-left: var(--section-hpad);
    padding-right: var(--section-hpad);
    margin-top: 10px;
    padding-bottom: 0;
  }

  #faq-questions {
    padding-right: var(--section-hpad);
  }

  #faq-questions details > div {
    position: static;
    padding: 0;
    width: auto;
    padding-right: var(--section-hpad);
  }
  #faq-questions details > div::before {
    display: none;
  }
  #faq-questions details > div > ul {
    padding-left: 20px;
  }
}
footer {
  background-color: var(--black);
  font-size: 12px;
  color: #eee;
}

#footer-inside {
  max-width: var(--width);
  margin: 0 auto;
  padding: var(--section-vpad) var(--section-hpad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  --footer-padding: 20px;
}
#footer-inside p {
  margin: 0;
}
#footer-inside a {
  color: #eee;
  text-decoration: none;
  padding-bottom: 1px;
}
#footer-inside a:hover {
  color: var(--highlight);
}
#footer-inside #footer-logos {
  padding: 0 var(--footer-padding);
}

#footer-copyright {
  white-space: nowrap;
}

#footer-logos {
  display: flex;
  align-items: center;
}
#footer-logos img {
  max-height: 60px;
  filter: brightness(0) invert(1);
}
#footer-logos a:not(:first-child) {
  padding-left: calc(2 * var(--footer-padding));
}
#footer-logos img:last-child {
  max-width: 150px;
}

@media (max-width: 1060px) {
  #footer-about br {
    display: none;
  }
}
@media (max-width: 940px) {
  #footer-copyright {
    min-width: 150px;
  }

  #footer-logos a:not(:first-child) {
    padding-left: var(--footer-padding);
  }
}
@media (max-width: 800px) {
  #footer-inside {
    flex-direction: column;
    gap: 20px;
  }

  #footer-about {
    max-width: 550px;
    text-align: center;
  }

  #footer-logos {
    order: 1;
    padding: 20px 0;
  }

  #footer-copyright {
    order: 2;
    text-align: center;
  }
}

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