/* Partials
================================================ */
* {
  box-sizing: border-box;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --primary: #050505;
  --green: #8DE5C0;
  --orange: #e55c00;
  --cream: #faf5eb;
}

#wpadminbar {
  position: fixed;
}

.animate.fadeinright {
  opacity: 0;
}
.animate.fadeinright.animateelement {
  animation: fadeInRight 0.5s forwards ease-in-out;
}
.animate.fadein {
  opacity: 0;
}
.animate.fadein.animateelement {
  animation: fadeIn 0.5s forwards ease-in-out;
}
.animate.fadeinup {
  opacity: 0;
}
.animate.fadeinup.animateelement {
  animation: fadeInUp 0.5s forwards ease-in-out;
}
@media only screen and (min-width: 768px) {
  .animate.delay {
    animation-delay: 0.5s !important;
  }
  .animate.lg-delay {
    animation-delay: 0.75s !important;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes translateUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
/* Font stacks
================================================ */
:root {
  --body_font: 'aktiv-grotesk', sans-serif;
  --headings_font: 'Signifier-Extralight', sans-serif;
}

/* Base Typography
================================================ */
html {
  font-size: 62.5%;
}

body {
  font-family: var(--body_font);
  color: var(--primary);
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: none;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

h1, h2, h3, h4, h5 {
  font-family: var(--headings_font);
}

h1 {
  line-height: 1.2;
  font-size: 4.5rem;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 7.5rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 5rem;
  }
}

h3 {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 2.2rem;
  }
}

h4 {
  font-size: 2.4rem;
}

p {
  line-height: 2;
  margin-bottom: 2rem;
}
p:last-of-type {
  margin-bottom: 0;
}
p:last-child {
  margin-bottom: 0;
}
p:only-child {
  margin-bottom: 0;
}

strong {
  font-weight: 500;
}

em {
  font-style: italic;
}

.body-style .image-credit a {
  background: none !important;
}
.body-style .image-credit a:hover {
  background: none !important;
  color: inherit !important;
}
.body-style h1, .body-style h2, .body-style h3, .body-style h4, .body-style h5 {
  margin-bottom: 20px;
  margin-top: 20px;
}
.body-style h1:first-child, .body-style h2:first-child, .body-style h3:first-child, .body-style h4:first-child, .body-style h5:first-child {
  margin-top: 0;
}
.body-style h1:only-child, .body-style h2:only-child, .body-style h3:only-child, .body-style h4:only-child, .body-style h5:only-child {
  margin-bottom: 0;
}
.body-style h1 em, .body-style h2 em, .body-style h3 em, .body-style h4 em, .body-style h5 em {
  font-style: italic;
}
.body-style h2 + h3 {
  margin-top: 0;
}
.body-style p:last-child {
  margin-bottom: 0;
}
.body-style ul {
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 30px;
}
.body-style ul li {
  line-height: 2;
  margin-bottom: 15px;
}
.body-style ul li:last-of-type {
  margin-bottom: 0;
}
.body-style ul:last-child {
  margin-bottom: 0;
}

/* Links
================================================ */
a, a:visited {
  color: inherit;
  text-decoration: none;
}

a[href=""] {
  pointer-events: none;
}

@font-face {
  font-family: "Signifier-Extralight";
  src: local("Signifier-Extralight.woff"), url("../library/fonts/Signifier-Extralight.woff") format("woff");
}
@font-face {
  font-family: "Signifier-Extralight";
  font-style: italic;
  src: local("Signifier-ExtralightItalic.woff"), url("../library/fonts/Signifier-ExtralightItalic.woff") format("woff");
}
a.btn, .btn, button {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in-out;
  display: inline-flex;
  font-weight: 500;
  background: var(--orange);
  border: 1px solid var(--orange);
  color: var(--cream);
  border-radius: 5rem;
  height: 5rem;
  padding: 0 4rem;
  gap: 0.3rem;
  font-family: var(--body_font);
  line-height: 1;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  a.btn:hover, .btn:hover, button:hover {
    background: none;
    color: var(--orange);
  }
}
@media screen and (min-width: 1024px) {
  a.btn, .btn, button {
    min-width: 18.9rem;
  }
}

body.noscroll {
  overflow: hidden;
}

.wrap {
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
  max-width: 111rem;
}

img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

a.image-credit, .image-credit {
  transition: all 0.25s ease-in-out;
  position: absolute;
  z-index: 5;
  white-space: nowrap;
  color: #FFF;
  transform: rotate(-90deg);
  transform-origin: left;
  padding: 0;
  left: calc(100% - 3rem);
  bottom: 1.5rem;
  font-size: 1.2rem;
  z-index: 99;
}
a.image-credit a, .image-credit a {
  text-decoration: none !important;
}
a.image-credit a:hover, .image-credit a:hover {
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  a.image-credit, .image-credit {
    transform: none;
    bottom: 1rem;
  }
  a.image-credit span, .image-credit span {
    display: none;
  }
}
a.image-credit:hover, .image-credit:hover {
  text-decoration: none;
}

/* Third Party Payload
================================================ */
/* Layout
================================================ */
footer {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 5;
  color: #FFF;
  font-size: 1.2rem;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 2rem;
  }
}
footer p {
  line-height: 1.2;
}

body:not(:has(.login-page)) footer {
  background-color: #000;
  margin-top: 2rem;
  position: static;
}

/* Components Payload
================================================ */
.admin-label {
  position: absolute;
  top: 0;
  left: 0;
  background: red;
  color: #FFF;
  padding: 1rem;
  font-size: 1.2rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .admin-label {
    display: none;
  }
}

input:not([type=submit]), select, textarea {
  display: block;
  background: #FFF;
  border: 1px solid #FFF;
  -webkit-appearance: none;
  width: 100%;
  height: 5rem;
  outline: 0;
  padding-left: 2rem;
  font-family: var(--body_font);
  border-radius: 0.8rem;
  font-weight: 300;
  font-size: 1.6rem;
}
input:not([type=submit]):focus, select:focus, textarea:focus {
  border: 1px solid var(--orange);
}

button {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  height: 5rem;
  -webkit-appearance: none;
  font-size: 1.4rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 4rem;
}
@media screen and (min-width: 768px) {
  button {
    font-size: 1.8rem;
    height: 5.3rem;
    padding: 0 4rem;
  }
}

form:has(.error) input {
  border-color: red;
}

/* Blocks Payload
================================================ */
/* Pages Payload
================================================ */
.login-page {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.login-page:after {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.login-page .background-image, .login-page .background-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.login-page iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.login-page .wrap {
  position: relative;
  z-index: 5;
}
.login-page .wrap .login-content {
  background-color: var(--cream);
  border-radius: 0.5rem;
  padding: 6rem;
  text-align: center;
  max-width: 65rem;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.13);
}
@media screen and (max-width: 767px) {
  .login-page .wrap .login-content {
    padding: 4rem 2rem;
  }
}
.login-page .wrap .login-content form {
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  max-width: 40rem;
}
.login-page .wrap .login-content .btn, .login-page .wrap .login-content button {
  margin-top: 2rem;
}
.login-page .wrap .login-content .error {
  font-size: 1.4rem;
  font-weight: 500;
  color: red;
  margin-top: 1rem;
}

.logged-in .wrap {
  padding: 0;
  max-width: 80rem;
}
.logged-in iframe {
  display: block;
  width: 100%;
  min-height: 100vh;
  padding: 0px;
  margin: 0px;
  border: 0px;
  overflow: hidden;
}

/*# sourceMappingURL=style.css.map*/