:root {
  --font-body: "Poppins", sans-serif;
  --font-headers: "Poppins", sans-serif;
  --font-buttons: "Poppins", sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 23px;
  font-weight: 300;
  text-align: center;
  color: var(--color-text);
  overflow-x: hidden;
}

/* IMG */
img {
  max-width: 100%;
}

/* A */
a {
  text-decoration: none;
}

/* BUTTON */
button {
  font-family: var(--font-buttons);
  border: none;
}

button:hover {
  cursor: pointer;
}

button:disabled {
  background-color: var(--disabled-color);
  cursor: not-allowed;
}

/* H */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headers);
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  color: var(--color-accent);
}

h1 {
  font-size: 120px;
}

h2 {
  font-size: 41px;
  margin: 20px auto;
  text-transform: uppercase;
}

h3 {
  font-size: 39px;
  margin: 20px auto;
  color: var(--color-accent);
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 28px;
  margin: 5px auto;
  font-weight: 800;
}

h6 {
  font-weight: 600;
  font-size: 22px;
  color: var(--color-secondary);
  text-transform: uppercase;
}

/* MAIN */
main {
  margin-bottom: 50px;
}

span.anchor:not(:first-child) {
  padding: 50px;
}

/* SECTION */
section {
  position: relative;
  z-index: 1;
}

section.section-separator-sm {
  padding: 5px 0;
}

section.section-separator {
  padding: 15px 0;
}

section.section-separator-lg {
  padding: 30px 0;
}

section a {
  text-decoration: underline;
  color: var(--color-accent);
}

section ul.align-left,
section ol.align-left {
  text-align: left;
}

section ul,
section ol {
  list-style-position: inside;
  margin: 40px auto;
}

section ul li:not(:first-child),
section ol li:not(:first-child) {
  margin-top: 10px;
}

section ul li:not(:last-child),
section ol li:not(:last-child) {
  margin-bottom: 45px;
}

section ul p,
section ol p {
  margin: 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 85%;
  width: 1000px;
  margin: 0 auto;
}

.content-boxed {
  width: 950px;
  max-width: 85%;
  margin: 0 auto;
}

.video-frame-container {
  max-width: 560px;
  margin: 0 auto;
}

.map-frame iframe {
  max-width: 100%;
}

.action-button {
  width: 16em;
  height: auto;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.action-button img {
  width: 100%;
  height: auto;
  object-fit: cover;
}