/*  ==========================================================================
    Base styles: opinionated defaults
    ==========================================================================  */
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; }

a {
  text-decoration: none;
  color: inherit; }

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

iframe {
  border: 0;
  margin: 0;
  padding: 0; }

/*
::-moz-selection {
	background: $color-medium-1;
	color: $color-light-1;
	text-shadow: none;
}
::selection {
	background: $color-medium-1;
	color: $color-light-1;
	text-shadow: none;
}
*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

@font-face {
  font-family: 'Vanitas Regular';
  src: url("fonts/Vanitas-Regular.woff2") format("woff2"), url("fonts/Vanitas-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Montserrat Bold';
  src: url("fonts/Montserrat-Bold.woff2") format("woff2"), url("fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Montserrat Regular';
  src: url("fonts/Montserrat-Regular.woff2") format("woff2"), url("fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }
.cookies_banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  margin-left: 1rem;
  max-width: 500px;
  padding: 3rem;
  color: #fff;
  background: #000000;
  border-radius: 30px;
  border-bottom-right-radius: 0px;
  opacity: 1;
  z-index: 100;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: all .5s;
  transition: all .5s; }

.cookies_close .cookies_banner {
  bottom: 0;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%); }

.cookies_banner__title {
  font-family: 'Vanitas Regular';
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 2rem; }

.cookies_banner__text {
  margin-bottom: 1rem;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff; }

.cookies_banner__close {
  display: inline-block;
  margin-top: 1rem;
  font-size: 14px;
  background: #ffffff;
  color: #000000;
  padding: 0.5rem 1.5rem; }
  .cookies_banner__close:hover {
    background: #797979;
    color: #ffffff; }

.cookies_banner__link {
  text-decoration: underline; }
  .cookies_banner__link:hover {
    color: #ffffff;
    text-decoration: none; }

.sidebar {
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center; }

.sidebar__brand {
  padding: 1rem; }
  .sidebar__brand img {
    width: 1rem; }

/* Navabr */
.navbar {
  padding: 1rem;
  border-top: 1px solid rgba(121, 121, 121, 0.25);
  border-bottom: 1px solid rgba(121, 121, 121, 0.25);
  position: relative; }

.navbar input {
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 0;
  left: 8px;
  margin: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 1; }

.navbar span {
  display: block;
  width: 2rem;
  height: 1px;
  margin-bottom: 5px;
  position: relative;
  background: #000000;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  cursor: pointer; }

.navbar span:first-child {
  transform-origin: 0% 0%; }

.navbar span:nth-of-type(3) {
  transform-origin: 0% 100%;
  margin-bottom: 0; }

.navbar input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(2px, -4px);
  background: #000000; }

.navbar input:checked ~ span:nth-of-type(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2); }

.navbar input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg) translate(0, 7px); }

.navbar input:checked ~ .navbar__content {
  transform: none; }

/* Navbar__content */
.navbar__content {
  position: absolute;
  width: 100vw;
  top: -80px;
  left: 0;
  height: 100vh;
  padding-left: 4rem;
  z-index: -1;
  background: #ffffff;
  transform-origin: 0% 0%;
  transform: translate(-150%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1); }
  @media all and (min-width: 768px) {
    .navbar__content {
      width: 70vw; } }
  @media all and (min-width: 992px) {
    .navbar__content {
      width: 60vw; } }

.navbar__container {
  padding: 2rem;
  border-left: 1px solid rgba(121, 121, 121, 0.25);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  @media all and (min-width: 768px) {
    .navbar__container {
      padding: 4rem; } }

.info p {
  margin-bottom: 4px; }

.info__banner {
  margin-bottom: 2rem; }
  .info__banner img {
    width: 100%;
    max-width: 600px; }

.info__item {
  margin-bottom: 2rem; }
  .info__item:last-of-type {
    margin-bottom: 0; }

.info__link {
  display: inline-flex;
  text-decoration: underline; }
  .info__link img {
    margin-left: 4px; }

body {
  font-family: "Montserrat Regular", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  background: #ffffff;
  color: #797979; }

img {
  display: block; }

h1 {
  font-family: "Vanitas Regular", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #000000; }
  @media all and (min-width: 576px) {
    h1 {
      font-size: 4rem; } }

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: #000000; }

h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #000000;
  text-transform: uppercase;
  margin-top: 1.5rem; }

p {
  margin-bottom: 1rem; }
  p:last-child {
    margin-bottom: 0; }

strong {
  font-weight: 600; }

a {
  transition: all 0.3s ease-in-out; }
  a:hover {
    color: #000000; }

ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem; }

.container {
  padding: 2rem 1rem;
  margin: 0 auto;
  position: relative; }
  @media all and (min-width: 576px) {
    .container {
      max-width: 540px; } }
  @media all and (min-width: 768px) {
    .container {
      max-width: 720px; } }
  @media all and (min-width: 992px) {
    .container {
      max-width: 960px; } }
  @media all and (min-width: 1200px) {
    .container {
      max-width: 1140px; } }

.page_home .main {
  height: 100vh;
  overflow: hidden; }

.page_home .main__content {
  height: 100vh;
  color: white;
  background: black;
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative; }

.page_home .main__content > .video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  object-fit: cover; }

.page_404 {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }

.page_404__title {
  font-size: 100px;
  color: #000000; }

.page_404__btn {
  margin-top: 2rem;
  display: inline-block;
  padding: 1rem 3rem;
  color: #ffffff;
  background: #000000;
  transition: all 0.3s ease-in-out; }
  .page_404__btn:hover {
    background: #797979;
    color: white; }
