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

* {
  margin: 0;
}

body {
  line-height: 1.5;

  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

:root {
  --color-black: #000000;

  --color-orange: #ee6a29;

  --color-white: #ffffff;

  --body-font: "Open Sans", sans-serif;
}

html {
  scroll-behavior: smooth;

  scroll-padding-top: 100px;
}

body {
  font-family: var(--body-font);

  font-size: 16px;

  font-weight: 300;

  line-height: 1.5;

  color: var(--color-black);
}

h2 {
  margin-bottom: 1em;

  font-size: 40px;
}

h2.large {
  font-weight: 700;

  text-transform: uppercase;
}

h3 {
  margin-bottom: 1em;

  line-height: 1.5em;

  font-size: 20px;

  font-weight: 500;
}

p {
  margin: 0 0 1.5em;
}

.container {
  max-width: 1200px;

  margin: 0 auto;

  padding: 0 15px;
}

.container.c-small {
  max-width: 600px;
}

.container p a {
  color: var(--color-black);
}

.flexed {
  display: flex;

  align-items: center;

  justify-content: center;
}

.centered {
  text-align: center;
}

.padded {
  padding-top: 50px;

  padding-bottom: 50px;
}

nav.top-right {
  position: fixed;

  top: 0px;

  right: 0px;

  z-index: 1000;
}

section {
  min-height: 100svh;
}

section.footer-fix {
  min-height: 10px;

  background: var(--color-black);
}

section.home {
  background: var(--color-orange);
}

nav ul {
  display: flex;

  align-items: center;

  justify-content: center;

  list-style: none;

  margin: 0;

  padding: 0;
}

nav ul li a {
  position: relative;

  display: block;

  padding: 10px 15px;

  font-size: 20px;

  font-weight: 500;

  text-decoration: none;

  color: var(--color-white);

  transition: color 0.2s ease-in-out;
}

nav ul li.active a {
  color: rgba(0, 0, 0, 0.5);
}

nav ul li a:after {
  content: "";

  position: absolute;

  top: 15px;

  bottom: 15px;

  right: 0px;

  border-right: 1px solid var(--color-white);

  width: 0px;

  transition: border-color 0.2s ease-in-out;
}

nav ul li:last-child a:after {
  display: none;

  border: none;
}

.continue {
  color: var(--color-white);

  font-size: 100px;

  cursor: pointer;

  line-height: 1em;
}

.continue:hover {
}

.navigation {
  position: sticky;

  top: 0px;

  background-color: var(--color-orange);

  z-index: 100;
}

.navigation .logo {
  position: absolute;

  top: 20px;

  left: 100px;
}

.navigation .logo img {
  width: 60px;

  height: auto;

  display: block;
}

/*.dark-text ul a {

  color: var(--color-black);

}



.dark-text ul a:after {

  border-color: var(--color-black);

}*/

.scroll-image {
  min-height: 50vh;

  position: relative;

  background-repeat: no-repeat;

  background-size: cover;

  background-attachment: fixed;

  background-position: center;

  z-index: -1;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;
}

.scroll-image span,
.scroll-fix span {
  display: inline-block;

  border: 2px solid var(--color-white);

  color: #ffffff;

  font-size: 60px;

  font-weight: 500;

  padding: 5px 10px;

  background: rgba(0, 0, 0, 0.3);

  text-transform: uppercase;
}

.scroll-fix {
  height: 50vh;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;
}

.hidden {
  opacity: 0;

  filter: blur(10px);

  transform: translateY(-300px);

  transition: all 0.6s;

  transition-delay: 0.5s;
}

.show {
  opacity: 1;

  filter: blur(0px);

  transform: translateY(0);
}

.footer {
  background: var(--color-black);

  color: var(--color-white);

  min-height: 105vh;
}

.footer .icons {
  font-size: 50px;

  margin-top: 20px;
}

.footer .icons a {
  padding: 0 20px;
}

.footer h3 {
  margin-top: 20px;
}

.footer a {
  color: var(--color-white);

  text-decoration: none;
}

@media (max-width: 768px) {
  .navigation .logo {
    display: none;
  }
  .scroll-image {
    background-attachment: scroll;
    min-height: 30vh;
  }

  .scroll-image span,
  .scroll-fix span {
    font-size: 20px;

    margin: 0 10px;

    text-align: center;

    background: rgba(0, 0, 0, 0.5);

    opacity: 1;

    filter: blur(0px);

    transform: translateY(0);
  }

  .container {
    padding-left: 20px;

    padding-right: 20px;
  }

  nav ul li a {
    font-size: 15px;

    line-height: 40px;
  }

  nav.top-right {
    top: auto;

    bottom: 0px;

    background: var(--color-orange);

    border-top-left-radius: 10px;

    opacity: 1;

    transition: opacity 0.2s ease-in-out;
  }

  .footer-active nav.top-right {
    opacity: 0;
  }

  nav ul li a:after {
    top: 20px;

    bottom: 20px;
  }
}
