/**
 * @file
 * Generic base elements.
 */

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1.4em;
  margin: 0;
  font-size: .875em;
}

header {
  font-size: 1.143em;
}
a {
  text-decoration: none;
  -webkit-transition: all .25s;
  transition: all .25s;
}
.region--footer a {
  text-decoration: none;
}

.node__title a:focus {
  background-size: 100% 100%;
}
.further-btn a {
  border-radius: 5px;
  padding: .5rem 2rem;
  text-transform: uppercase;
  font-size: 0.875em;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}
.paragraph .further-btn a {
  margin-bottom: 3em;
}
.site-branding .further-btn a {
  padding: .35rem 1.25rem;
  border-radius: 3px;
}
.site-footer .menu a {
  color: #7c7c7c;
  line-height: 1.4em;
}

img,
video {
  display: block;
  width: 400px;
  height: auto;
}
audio {
  display: block;
  max-width: 100%;
}

h1,
.bundle__title {
  font-weight: bold;
  font-size: 1.8em;
  letter-spacing: 0.0125em;
}
h1.page-title {
  font-size: 2em;
  line-height: 1em;
  margin: 1em 0 0.5em;
  color: #000;
  font-weight: inherit;
}

h2 {
  margin-top: .75em;
  margin-bottom: .75em;
  font-size: 1.75em;
  line-height: 1.2em;
}
h3 {
  margin-top: 1.125rem;
  margin-bottom: 1.125rem;
  font-size: 1.7em;
  line-height: 1.2em
}

@media (min-width: 43.75rem) {
  h1 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
    font-size: 3.5em;
    line-height: 0.85em
  }
  .view__group-title {
    margin-top: 1.25rem;
    margin-bottom: 2.25rem;
    font-size: 2em;
    line-height: 0.85em
  }
  h3 {
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
    font-size: 1.7em;
    line-height: 1.1em
  }
  h4 {
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
    font-size: 1.3em;
    line-height: 1em
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

.field .field__label {
  font-family: "Futura Medium";
  font-size: 2em;
  margin-bottom: 1em;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin: 0 8.55% 3rem;
  text-transform: uppercase;
  line-height: 1.125em;
}
[dir="ltr"] ul {
  margin-left: 1.5em;
}

[dir="rtl"] ul {
  margin-right: 1.5em;
}

[dir="ltr"] ul {
  margin-right: 0;
}

[dir="rtl"] ul {
  margin-left: 0;
}

[dir="ltr"] ul {
  padding-left: 0;
}

[dir="rtl"] ul {
  padding-right: 0;
}

ul {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  list-style-type: disc;
  list-style-image: none;
}

[dir="ltr"] .overlay {
  left: 0;
}

[dir="rtl"] .overlay {
  right: 0;
}

.overlay {
  position: fixed;
  top: 0;
  display: none;
  width: 100%;
  height: 100vh;
  opacity: 0.2;
}

.js-overlay-active .overlay {
  display: block;
}
