:root {
  --color_accent: #C7AB6E;
  --color_accent-light: #e3d5b6;
  --content-width: 75.375rem;
  --tablet-width: 62.625rem;
  --mobile-width: 37.125rem;
  --mobile-tiny-width: 375px;
  line-height: 1.5;
  font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 1.125em;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  color: #111;
  --color-text: #111;
  --color-text-inverted: #eee;
}
.has-dark-background body {
  color: #eee;
  --color-text: #eee;
  --color-text-inverted: #111;
  font-weight: 300;
}
article:empty {
  padding: 0;
}
p,
ul {
  margin-bottom: 1rem;
}
p>a {
  text-decoration: underline !important;
}
:is(a) {
  color: currentColor;
}
h1,
.h1,
h2,
.h2 {
  font-family: 'Barlow Condensed', 'Source Sans Pro', 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 2.444444em;
  line-height: 1;
  text-transform: uppercase;
  padding-bottom: 0.3em;
  letter-spacing: 1px;
}
h1 >strong,
.h1 >strong,
h2 >strong,
.h2 >strong {
  color: var(--color_accent);
}
h2,
.h2 {
  font-size: 2em;
}
h3,
.h3 {
  font-family: 'Source Sans Pro', 'Segoe UI', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 2.125em;
}
address {
  font-style: normal;
}
section.page {
  box-sizing: border-box;
  min-height: 100vh;
  width: 100%;
  padding-bottom: 30vh;
  padding-top: 30vh;
  position: relative;
  transition: opacity .5s;
}
section.page:first-child {
  padding-top: 0;
}
section.page:last-child {
  padding-bottom: 0;
}
section.page >h2,
section.page >h3,
section.page >p {
  grid-column-start: 1;
  grid-column-end: 4;
}
.cta {
  background: transparent;
  line-height: inherit;
  color: currentColor;
  display: inline-block;
  border: 1px solid;
  padding: .35em 1em;
  border-radius: .25rem;
  transition: color .2s, background-color .2s;
  cursor: pointer;
}
.cta:hover {
  color: var(--color-text-inverted);
  background-color: var(--color-text);
}
body>.grid {
  padding-left: 4rem;
  padding-right: 4rem;
  max-width: var(--content-width);
}
body>.grid.grid-fullwidth {
  padding-left: 0;
  padding-right: 0;
}
.grid {
  --gap: 1.5rem;
  display: grid;
  grid-gap: var(--gap);
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
}
.grid .grid-fullwidth {
  grid-column-start: 1;
  grid-column-end: 7;
}
@media screen and (max-width: 700px) {
  .grid {
    --gap: 1rem;
    grid-template-columns: auto;
    grid-template-rows: 1fr auto;
  }
  .grid >* {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.button-group {
  display: flex;
  gap: 1rem;
}
@media screen and (min-width: 1700px) {
  :root {
    font-size: 1.375rem;
  }
  body>.grid {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 900px) {
  section.page {
    padding-bottom: 40vh;
    padding-top: 40vh;
  }
  section.page >h2,
  section.page >h3,
  section.page >p {
    grid-column-start: 1;
    grid-column-end: 5;
  }
  body>.grid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  article {
    max-width: unset;
  }
}
@media screen and (max-width: 700px) {
  section.page >h2,
  section.page >h3,
  section.page >p {
    grid-column-start: 1;
    grid-column-end: 7;
  }
}
@media screen and (max-width: 480px) {
  article {
    max-width: unset;
  }
  .button-group {
    flex-direction: column;
  }
}
