:root {
  --font-body: "Gotham Light", sans-serif;
  --font-headers: "Gotham Black", sans-serif;
  --font-buttons: "Gotham", sans-serif;
  --font-size: 24px;
  --color-headers: var(--color-primary);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size);
  font-weight: 300;
  text-align: center;
  color: var(--color-text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

p,
a {
  line-height: 1.1em;
}

/* BUTTON */
button {
  font-family: var(--font-buttons);
  font-size: var(--font-size);
  font-weight: 500;
  border: none;
  border-radius: 10px;
  padding: 20px 40px;
  background-color: var(--color-primary);
  color: var(--color-button-text);
  text-transform: uppercase;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

button:hover {
  cursor: pointer;
  background-color: var(--color-accent);
}

button:disabled {
  background-color: var(--disabled-color);
  cursor: not-allowed;
  transition: none;
  box-shadow: none;
}

.buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;

  a {
    margin-right: 30px;
    align-items: center;
    flex: 1;
  }

  a:last-child {
    margin: 0;
  }

  a:only-child {
    margin: 0 auto;
  }
}

/* H */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headers);
  color: var(--color-headers);
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

h1 {
  font-size: 120px;
}

h2 {
  font-size: 54px;
  margin: 20px auto;
  text-transform: uppercase;
}

h3 {
  font-size: 32px;
  margin: 20px auto;
  color: var(--color-secondary);
}

h4 {
  font-size: 30px;
  text-transform: uppercase;
}

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: 25px;
}

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%;
  width: 800px;
  height: 450px;
  border: none;
  border-radius: 10px;
}

@media all and (max-width: 850px) {
  h1 {
    font-size: 125px;
  }

  h4 {
    margin: 25px auto;
  }

  section.section-separator-sm {
    padding: 3px 0;
  }

  section.section-separator {
    padding: 10px 0;
  }

  section.section-separator-lg {
    padding: 20px 0;
  }

  .map-frame iframe {
    width: 600px;
    height: 400px;
  }
}

@media all and (max-width: 710px) {
  h1 {
    font-size: 110px;
  }

  h2 {
    font-size: 48px;
  }

  h3 {
    font-size: 45px;
  }

  h4 {
    font-size: 28px;
    margin: 22px auto;
  }

  h5 {
    font-size: 25px;
  }

  section p,
  section a,
  section label,
  section ul li,
  section ol li {
    font-size: 25px;
  }
}

@media all and (max-width: 550px) {
  span.anchor:not(:first-child) {
    padding: 100px;
  }

  h1 {
    font-size: 85px;
  }

  h2 {
    font-size: 45px;
    margin: 15px auto;
  }

  h3 {
    font-size: 40px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 20px;
  }

  section p,
  section a,
  section label,
  section ul li,
  section ol li {
    font-size: 20px;
  }

  section.section-separator-sm {
    padding: 2px 0;
  }

  section.section-separator {
    padding: 8px 0;
  }

  section.section-separator-lg {
    padding: 15px 0;
  }
}

@media all and (max-width: 450px) {
  h2 {
    font-size: 40px;
    margin: 5px auto;
  }

  h3 {
    font-size: 38px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 18px;
  }
}