:root {
  --fg-color: rgb(50, 50, 50);
  --fg-color-alt: rgb(0, 153, 0);
  --bg-color: rgb(255, 255, 255);
  --section-spacing: 50px;
}

body {
  background-color: white;
  padding: 0;
  margin: 160px 0 0 0;
  font-family: "Rosario";
  font-size: 16px;
  color: var(--fg-color);
}
body section {
  margin: 0 auto;
  max-width: 1140px;
}
body section:first-of-type {
  padding-top: var(--section-spacing);
}
body section .full {
  width: 100%;
}
body section h1 {
  font-family: "Lilita One";
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-align: center;
  color: var(--fg-color-alt);
}
body section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--fg-color-alt);
}
body section h3 {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  color: var(--fg-color-alt);
}
body section p, body section li {
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: center;
  margin: 0 0.5rem 1rem 0.5rem;
}
body .divider {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  background-image: linear-gradient(to left, white 0 10%, var(--fg-color-alt), white 90%);
  margin: var(--section-spacing) 0;
}
body img {
  max-width: 100%;
  height: auto;
}
body img.w50 {
  width: 50%;
}
body img.h100 {
  width: auto;
  max-height: 100px;
}

.convertable-table {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}
.convertable-table p {
  margin-bottom: 0;
}
.convertable-table > * {
  align-self: center;
}
.convertable-table > *.top {
  align-self: stretch;
}
.convertable-table .w100 {
  grid-column: span 12/span 12;
}
.convertable-table .w50 {
  grid-column: span 6/span 6;
}
.convertable-table .w25 {
  grid-column: span 3/span 3;
}
.convertable-table .w33 {
  grid-column: span 4/span 4;
}
.convertable-table .w66 {
  grid-column: span 8/span 8;
}
.convertable-table .r2 {
  grid-row: span 2/span 2;
}
.convertable-table .right {
  text-align: right;
}

.alt {
  color: var(--fg-color-alt);
}

a, a:visited, a:active {
  color: var(--fg-color-alt);
  text-decoration: none;
}
a:hover, a:visited:hover, a:active:hover {
  text-decoration: underline;
}

.faq .question {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--fg-color-alt);
  cursor: pointer;
}
.faq .question .opener {
  display: inline-block;
  width: 1rem;
}
.faq .question .closer {
  display: none;
}
.faq .answer {
  max-height: 0px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.faq .answer p {
  text-align: left;
  margin: 0 0 1rem 0;
}
.faq .answer p:last-child {
  margin-bottom: 0px;
}
.faq .answer .addressList {
  padding: 0 20px 0 0;
  margin: 0;
  list-style: none;
}
.faq .answer .addressList li {
  padding: 10px 0;
  margin: 10px 0;
  border-bottom: 1px solid var(--fg-color-alt);
}
.faq .answer .addressList li:last-child {
  border-bottom: none;
}
.faq.open .question .opener {
  display: none;
}
.faq.open .question .closer {
  display: inline-block;
  width: 1rem;
}
.faq.open .answer {
  max-height: 2000px;
}

footer {
  margin-top: var(--section-spacing);
  padding: calc(1.5 * var(--section-spacing)) var(--section-spacing);
  color: var(--bg-color);
  background-color: var(--fg-color-alt);
}
footer a, footer a:visited, footer a:active {
  color: var(--bg-color);
}
footer a:hover, footer a:visited:hover, footer a:active:hover {
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  height: 160px;
  background-color: var(--bg-color);
  border-bottom: 5px solid var(--fg-color-alt);
  z-index: 100;
  padding: 10px var(--section-spacing);
}

.icon {
  box-sizing: border-box;
  padding: 1rem;
  font-size: 5rem;
  color: var(--fg-color-alt);
  width: 100%;
  text-align: center;
}

[id] {
  scroll-margin-top: 200px;
}/*# sourceMappingURL=homepage.css.map */