* {
  padding: 0px;
  margin: 0px;
}

@font-face {
  font-family: "Archivo Black";
  src: url("../ArchivoBlack-Regular.woff");
}
@font-face {
  font-family: "Archivo";
  src: url("../Archivo-VariableFont_wdth_wght.ttf");
}
@font-face {
  font-family: "Archivo Narrow";
  src: url("../ArchivoNarrow-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../HelveticaNeue-Black.woff");
}
:root {
  --primary: #000;
  --secondary: #fffbbe;
  --accent: #fff;
  --font-primary: "Archivo Black";
  --font-secondary: "Archivo";
  --font-tertiary: "Archivo Narrow";
  --font-accent: "Helvetica";
}

html, body {
  background-color: var(--primary);
  overflow: hidden;
}

a, li button {
  color: var(--secondary);
  text-decoration: none;
  position: relative;
}
a::after, li button::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0px;
  height: 1px;
  background-color: var(--secondary);
  transition: width 0.25s ease-out;
}
a:hover, li button:hover {
  color: var(--secondary);
}
a:hover::after, li button:hover::after {
  width: 100%;
}

ul {
  list-style-type: none;
}

::-moz-selection {
  background-color: var(--secondary);
  color: transparent;
  -webkit-text-stroke: 1px var(--primary);
}

::selection {
  background-color: var(--secondary);
  color: transparent;
  -webkit-text-stroke: 1px var(--primary);
}

img::-moz-selection {
  background-color: transparent;
}

img::selection {
  background-color: transparent;
}

#wpadminbar {
  display: none !important;
}

#_evh-button {
  display: none !important;
}

#evidon-prefdiag-tabcontainer-inner a {
  color: #222222 !important;
  text-decoration: underline !important;
}
#evidon-prefdiag-tabcontainer-inner a::after {
  content: none !important;
}

header {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  padding: 40px;
  padding-bottom: 0px;
  box-sizing: border-box;
}
header #home-button, header nav {
  flex-shrink: 1;
}
header nav {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding-bottom: 50px;
}
header nav ul {
  position: relative;
  top: 100px;
}
@media (max-width: 500px) {
  header nav ul {
    top: 73px;
  }
}
header #home-button {
  max-width: 130px;
  border: none;
  background: transparent;
  cursor: pointer;
}
header #home-button img {
  width: 100%;
}
@media (max-width: 500px) {
  header #home-button {
    max-width: 100px;
  }
}

.header nav ul {
  display: flex;
}
.header ul {
  filter: drop-shadow(0px 0px 5px black);
}
.header ul li {
  border-right: solid 1px var(--secondary);
  padding: 0px 10px;
  font-family: var(--font-secondary);
  font-weight: bold;
  display: grid;
  place-items: center;
}
.header ul li:last-of-type {
  border-right: none;
  padding-right: 0px;
}
.header ul li button {
  border: none;
  background-color: transparent;
  font-size: 14px;
  font-family: var(--font-secondary);
  cursor: pointer;
}
.header ul li button.active::after {
  width: 100%;
}
@media (max-width: 768px) {
  .header {
    padding: 20px;
    padding-bottom: 0px;
  }
  .header nav {
    justify-content: flex-start;
  }
  .header img {
    width: 30vw;
    max-width: 230px;
  }
}
@media (max-width: 500px) {
  .header nav ul li {
    padding: 0px 2vw;
  }
  .header nav ul li button {
    font-size: 2.5vw;
  }
}
@media (max-width: 375px) {
  .header {
    padding: 10px;
    padding-bottom: 0px;
  }
  .header nav ul li {
    padding: 0px 1.5vw;
  }
}

footer {
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 2;
}

.footer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  padding: 40px;
  padding-top: 0px;
  box-sizing: border-box;
}
.footer ul {
  flex-shrink: 1;
  display: flex;
  gap: 5px 20px;
}
.footer ul li {
  color: var(--secondary);
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 12px;
}
.footer .socials {
  min-width: 295px;
}
.footer .socials .social-icon::after {
  content: none;
}
.footer .socials li:not(li:last-of-type) {
  max-width: 15px;
}
.footer .socials li:not(li:last-of-type) a, .footer .socials li:not(li:last-of-type) svg {
  max-width: 15px;
  max-height: 15px;
}
.footer .socials a svg {
  height: 100%;
}
.footer .socials a svg path {
  fill: var(--secondary);
  stroke: transparent;
  stroke-width: 20px;
  transition: stroke 0.25s, fill 0.25s;
}
.footer .socials a:hover path {
  fill: transparent;
  stroke: var(--secondary);
}
@media (max-width: 960px) {
  .footer {
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    padding-top: 0px;
  }
  .footer ul {
    flex-basis: 100%;
    justify-content: center;
  }
  .footer #footer-info,
  .footer #footer-links {
    order: 2;
  }
  .footer .socials {
    order: 1;
  }
}
@media (max-width: 625px) {
  .footer #footer-info,
  .footer #footer-links {
    flex-wrap: wrap;
  }
}
@media (max-width: 410px) {
  .footer #footer-links li {
    font-size: 2.6vw;
  }
}
@media (max-width: 375px) {
  .footer {
    padding: 10px;
    padding-top: 0px;
  }
}
@media (max-width: 350px) {
  .footer {
    padding: 5.71vw;
    padding-top: 0px;
  }
  .footer .socials {
    gap: 15px 5.71vw;
    min-width: unset;
  }
  .footer .socials li {
    font-size: 3.42vw;
  }
}

#preloader {
  position: absolute;
  z-index: 99999;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100svh;
  display: grid;
  place-items: center;
  background-color: var(--primary);
  overflow: hidden;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.5s;
}
#preloader img {
  width: 90vw;
  max-width: min(350px, 48vh);
  margin-bottom: -117px;
}
@media (max-width: 850px) {
  #preloader img {
    margin-bottom: -108px;
  }
}
@media (max-width: 490px) {
  #preloader img {
    margin-bottom: -79px;
  }
}
@media (max-width: 768px) {
  #preloader img {
    width: 65vw;
  }
}
@media (max-width: 540px) {
  #preloader img {
    margin-bottom: -20%;
  }
}
@media (max-width: 490px) {
  #preloader img {
    margin-bottom: calc(-14% + 10px);
  }
}
@media (max-width: 450px) {
  #preloader img {
    margin-bottom: -10vw;
  }
}
@media (max-width: 400px) {
  #preloader img {
    margin-bottom: -7.5%;
  }
}
@media (max-width: 380px) {
  #preloader img {
    margin-bottom: -6%;
  }
}
@media (max-width: 350px) {
  #preloader img {
    margin-bottom: -3%;
  }
}
@media (max-width: 320px) {
  #preloader img {
    margin-bottom: -1%;
  }
}
@media (max-width: 300px) {
  #preloader img {
    margin-bottom: 0%;
  }
}
#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

#hero-header {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 50px 30px 0px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  z-index: 6;
}
#hero-header li {
  padding: 0px 10px;
  color: var(--secondary);
  border-right: solid 1px var(--secondary);
  font-family: var(--font-secondary);
  font-size: 12px;
}
#hero-header li:last-of-type {
  border-right: none;
  padding-right: 0px;
}
@media (max-width: 500px) {
  #hero-header li {
    padding: 0px 2vw;
    font-size: 2.5vw;
  }
}
@media (max-width: 375px) {
  #hero-header li {
    padding: 0px 1.5vw;
  }
}
@media (max-width: 768px) {
  #hero-header {
    padding: 20px;
    padding-bottom: 0px;
  }
}
@media (max-width: 375px) {
  #hero-header {
    padding: 10px;
    padding-bottom: 0px;
  }
}

#hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transition: opacity 1s;
  z-index: 5;
  overflow: hidden;
}
#hero #carousel {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#hero #carousel .carousel-item {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s, transform 6s linear;
  z-index: 1;
}
#hero #carousel .carousel-item.active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 3;
}
#hero #carousel .carousel-item.next {
  opacity: 1;
  z-index: 2;
}
#hero #carousel .carousel-item.prev {
  transform: scale(1.1);
  opacity: 0;
  z-index: 4;
}
#hero #hero-content {
  width: 100%;
  height: auto;
  flex: 1 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
#hero #hero-content #hero-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 90vw;
  max-width: min(350px, 48vh);
  height: auto;
  margin-bottom: -55%;
}
@media (max-width: 768px) {
  #hero #hero-content #hero-logo {
    width: 65vw;
  }
}
#hero #hero-content #view-timeline {
  position: relative;
  z-index: 2;
  background-color: transparent;
  border: none;
  color: var(--secondary);
  text-transform: uppercase;
  font-family: var(--font-tertiary);
  font-weight: bold;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 16px;
}
#hero #hero-content #view-timeline img {
  max-height: 12px;
  position: relative;
  left: 0px;
  transition: left 0.5s;
}
#hero #hero-content #view-timeline:hover img {
  left: 10px;
}
#hero #hero-footer {
  flex: 0 1;
  z-index: 2;
}

main {
  width: 100%;
  height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
}
main #date {
  display: flex;
  font-size: min(100vh, 75vw);
  line-height: 100%;
  font-family: "Helvetica Neue";
  color: transparent;
  -webkit-text-stroke: 1px var(--secondary);
  z-index: 1;
}
main #date span {
  font: inherit;
  -webkit-text-stroke: inherit;
}
main #date span.drop {
  position: relative;
  animation: drop 0.3s ease-out;
}
@keyframes drop {
  0% {
    top: 0px;
  }
  50% {
    top: 3vh;
  }
  100% {
    top: 0px;
  }
}
main #prev, main #next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: solid 1px var(--secondary);
  color: var(--secondary);
  border-radius: 100%;
  font-size: 20px;
  padding: 23px 20px;
  cursor: pointer;
  z-index: 4;
  transition: all 0.5s;
}
main #prev img, main #next img {
  max-height: 12px;
  filter: none;
  transition: filter 0.5s;
}
main #prev:hover, main #next:hover {
  background-color: var(--secondary);
  color: var(--primary);
}
main #prev:hover img, main #next:hover img {
  filter: grayscale(1) brightness(0);
}
@media (max-width: 500px) {
  main #prev, main #next {
    padding: 4.6vw 4vw;
  }
  main #prev img, main #next img {
    max-height: 2.4vw;
  }
}
main #prev {
  left: 2vw;
  opacity: 1;
}
main #prev.hidden {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}
main #prev img {
  transform: rotate(180deg);
}
main #next {
  right: 2vw;
}
main #track {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  display: flex;
  gap: 100px;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.5s;
}
@media (max-width: 768px) {
  main #track {
    gap: 5vw;
  }
}
main #track.hide {
  opacity: 0;
}
main #track.entrance {
  animation: entrance 1s ease-out;
}
@keyframes entrance {
  0% {
    transform: translateY(-50%) translateX(20vw);
  }
  100% {
    transform: translateY(-50%) translateX(0px);
  }
}
main #track button {
  position: relative;
  background-color: transparent;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  border: none;
  display: grid;
  place-items: center;
  min-width: min(44vh, 30vw, 400px);
  max-width: min(44vh, 30vw, 400px);
  height: min(44vh, 30vw, 400px);
  cursor: pointer;
  overflow: hidden;
}
@media (max-width: 768px) {
  main #track button {
    min-width: 50vw;
    max-width: 50vw;
    height: 50vw;
  }
}
main #track button::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s;
}
main #track button.active::before {
  opacity: 0.3;
}
main #track button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  z-index: 1;
  transform: scale(1);
  filter: blur(0px);
  transition: transform 0.5s, filter 0.5s;
}
main #track button img.default {
  background-color: var(--primary);
  -o-object-fit: contain;
     object-fit: contain;
  filter: blur(1px);
}
main #track button.active {
  cursor: default;
}
main #track button.active.preview {
  cursor: pointer;
}
main #track button.active.preview:hover img {
  transform: scale(1.1);
  filter: blur(5px);
}
main #track button.active.preview p:nth-of-type(3) {
  display: inline-block;
}
main #track button div {
  max-width: 80%;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.5s;
}
main #track button div p {
  color: var(--secondary);
  text-align: center;
  font-family: var(--font-tertiary);
  font-weight: bold;
}
main #track button div p:first-child {
  font-size: 24px;
  display: inline;
  border-bottom: solid 1px var(--secondary);
  padding-bottom: 3px;
}
@media (max-width: 1024px) {
  main #track button div p:first-child {
    font-size: 2vw;
  }
}
@media (max-width: 768px) {
  main #track button div p:first-child {
    font-size: 3.5vw;
  }
}
main #track button div p:nth-of-type(2) {
  font-size: 18px;
  text-transform: uppercase;
  padding-top: 10px;
}
@media (max-width: 1024px) {
  main #track button div p:nth-of-type(2) {
    font-size: 1.5vw;
  }
}
@media (max-width: 768px) {
  main #track button div p:nth-of-type(2) {
    font-size: 2.5vw;
  }
}
main #track button div p:nth-of-type(3) {
  font-size: 18px;
  border-bottom: solid 1px var(--secondary);
  padding-bottom: 3px;
  padding-top: 10px;
  display: none;
}
@media (max-width: 1024px) {
  main #track button div p:nth-of-type(3) {
    font-size: 1.5vw;
  }
}
@media (max-width: 768px) {
  main #track button div p:nth-of-type(3) {
    font-size: 2.5vw;
  }
}
main #track button.active div {
  opacity: 1;
}
main #track button.hide {
  display: none;
}
main #preview {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100svh;
  overflow: auto;
  background-color: var(--primary);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity 1s 0.1s, z-index 0s 1.5s, background-color 1s;
}
main #preview.active {
  opacity: 1;
  pointer-events: all;
  z-index: 6;
  transition: opacity 1s 0.1s, z-index 0s 0s, background-color 1s;
}
main #preview.white {
  background-color: var(--accent);
}
main #preview.white #preview-content h1, main #preview.white #preview-content h2, main #preview.white #preview-content p {
  color: var(--primary);
}
main #preview.white #preview-content h1 {
  border-color: var(--primary);
}
main #preview #preview-content {
  display: inline-block;
  padding: calc(4vw + 60px);
  box-sizing: border-box;
  width: 50%;
}
main #preview #preview-content h1, main #preview #preview-content h2, main #preview #preview-content p, main #preview #preview-content img {
  display: block;
  width: 100%;
  height: auto;
}
main #preview #preview-content h1, main #preview #preview-content h2, main #preview #preview-content p {
  font-family: var(--font-tertiary);
  color: var(--secondary);
  transition: color 1s, border-color 1s;
}
main #preview #preview-content h1 {
  border-bottom: solid 1px var(--secondary);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 60px;
  display: inline-block;
  width: auto;
}
main #preview #preview-content h2 {
  font-size: 30px;
  margin-bottom: 30px;
}
main #preview #preview-content p {
  font-size: 15px;
  margin-bottom: 30px;
}
main #preview #preview-content #content-img {
  display: none;
}
main #preview #preview-bg-img {
  position: sticky;
  float: right;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background-position: center 0%;
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
}
@media (max-width: 1250px) {
  main #preview #preview-bg-img {
    background-size: cover;
  }
}
main #preview #preview-bg-img button {
  border: none;
  background-color: transparent;
  font-size: 60px;
  font-weight: 100;
  color: var(--secondary);
  float: right;
  margin: 2vw;
  cursor: pointer;
}
main #preview #preview-bg-img button:hover {
  animation: spin 0.3s ease-out;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  70% {
    transform: rotate(100deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
@media (max-width: 900px) {
  main #preview #preview-content {
    width: 70%;
  }
  main #preview #preview-bg-img {
    width: 30%;
  }
}
@media (max-width: 768px) {
  main #preview #preview-content {
    width: 100%;
  }
  main #preview #content-img {
    display: block !important;
  }
  main #preview #preview-bg-img {
    background-image: none !important;
    width: auto;
    height: auto;
    position: absolute;
  }
  main #preview #preview-bg-img button {
    mix-blend-mode: difference;
    margin-right: 15px;
  }
}

/* Sign Up Popup */
#sign-up-pop-up {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100svh;
  display: grid;
  place-items: center;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.75);
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.5s;
  cursor: pointer;
}
#sign-up-pop-up.hidden {
  opacity: 0;
  pointer-events: none;
}

.ae-cform-container {
  background: #222;
  padding: 2em 1.5em;
  border-radius: 1.5em;
  box-shadow: 0px 0px 10px var(--primary);
  width: 85vw;
  cursor: default;
}

.ae-cform-social-link::after {
  content: none !important;
}

.ae-cform-container .ae-cform-modal-container {
  display: unset !important;
}

.ae-cform-container .ae-cform-modal-container .ae-cform-title {
  color: var(--secondary);
}

.ae-cform-item-email label span,
.ae-cform-item-country label span {
  color: var(--secondary);
}

.ae-cform-input {
  background-color: transparent !important;
  color: var(--secondary) !important;
  border: solid 1px var(--accent) !important;
  margin-top: 5px !important;
}

.ae-cform-optin {
  color: var(--secondary);
}

.cform-required-field.ae-cform-item {
  color: var(--secondary);
  margin-bottom: 0px;
}

#terms {
  color: var(--secondary);
}

/* Postbox Shape */
@media (max-height: 600px) and (min-width: 768px) {
  #hero-header {
    padding: 30px;
    padding-bottom: 0px;
  }
  header {
    padding: 30px;
    padding-bottom: 0px;
  }
  header #home-button {
    max-width: 13.5vh;
  }
  header nav ul {
    top: 10vh;
  }
}/*# sourceMappingURL=style.css.map */