/* 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;
	box-sizing: border-box;
}
/* 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;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(assets/fonts/1b9fba4a75b89b0dd96aae5a4cf9c598.ttf);
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/a36eb364ea843d014808abb1a5754803.ttf);
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(assets/fonts/c45cfba452e4c10341d30684c5c0ef1a.ttf);
}

body {
  font-family: 'Roboto Slab', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  line-height: 1.3;
  user-select: none;
  background-color: #000;
  min-height: 100vh;
}

html, body {
  overscroll-behavior-y: none;
}

a {
  color: #080808;
}

a:visited {
  color: #000;
}

img {
  width: 100%;
}

.bold {
  font-weight: bold;
}

#loader {
  transition: opacity 1s ease-in-out;
}

.mb {
  margin-bottom: 96px !important;
}

.mb24 {
  margin-bottom: 24px;
}

.tar {
  text-align: right;
}

#canvas-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: -1;
}

#canvas-container canvas {
  width: 100%;
  height: 100%;
}

.slide {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  display: grid;
  width: 1337px;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(7, 1fr);
  grid-column-gap: 12px;
	grid-row-gap: 12px;
}

.big {
  font-family: 'Montserrat', sanf-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 96px;
}

.dib {
  display: inline-block;
}

.cols {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

.col {
  display: flex;
  flex-flow: column;
  width: 50%;
}

[slide="0"] .date {
  grid-column: 2 / span 3;
  grid-row: 3 / 3;
  align-self: end;
}

[slide="0"] .title {
  grid-column: 2 / end;
  grid-row: 4 / 6;
}

[slide="0"] .description {
  grid-column: 7 / span 3;
  grid-row: 6 / end;
}

[slide="1"] .before-will {
  grid-column: 1 / span 3;
  grid-row: 3 / 3;
  align-self: end;
}

[slide="1"] .will {
  grid-column: 1 / span 3;
  grid-row: 4 / 4;
}

[slide="1"] .after-will {
  grid-column: 1 / span 3;
  grid-row: 5 / 7;
}

[slide="1"] .everyone {
  grid-column: 8 / span 3;
  grid-row: 5 / 5;
}

[slide="2"] .we-fight {
  grid-column: 5 / span 3;
  grid-row: 2 / 4;
}

[slide="2"] .title {
  grid-column: 5 / end;
  grid-row: 4 / 7;
}

[slide="3"] .target {
  grid-column: 4 / span 3;
  grid-row: 2 / 4;
}

[slide="3"] .reality {
  grid-column: 7 / span 3;
  grid-row: 2 / 4;
}

[slide="3"] .closer {
  grid-column: 1 / span 7;
  grid-row: 4 / span 3;
}

[slide="4"] {
  width: 960px;
  margin: 150px auto 0;
  color: #000;
}

[slide="4"] .big {
  font-family: 'Montserrat', sans-serif;
  font-size: 72px;
  margin: 24px 0 48px;
}

[slide="4"] .cols {
  flex-wrap: wrap;
}

[slide="4"] p {
  margin-bottom: 24px;
}

[slide="4"] .warning {
  color: #800;
}

#progress-message {
  opacity: 0;
  transition: opacity .5s ease-in-out;
}

#nav {
  display: none;
  opacity: 0;
  position: fixed;
  right: 10px;
  bottom: 50%;
  transform: translateY(50%);
  white-space: nowrap;
  text-align: right;
  z-index: 1;
  transition: opacity .5s ease-in-out;
}

[progress] {
  display: block;
  width: 60px;
  cursor: pointer;
  transition: width .25s ease-in-out, height .25s ease-in-out;
}

[progress] span {
  display: inline-block;
  width: 15px;
  height: 2px;
  margin: 19px 0;
  background: #fff;
  transition: background .25s ease-in-out, width .25s ease-in-out, height .25s ease-in-out, margin .25s ease-in-out;
}

[progress]:hover span {
  margin: 29px 0;
  width: 30px;
}

[progress].now span {
  width: 40px;
}


@media screen and (max-width: 1440px) {
  body {
    font-size: 18px;
  }
  .big {
    font-size: 72px;
  }
  .container {
    width: 933px;
  }
}

@media screen and (max-width: 960px) {
  [slide="4"] {
    width: 100%;
    margin: 40px 0;
    padding: 0 20px;
  }
  [slide="4"] .cols {
    gap: 20px;
    flex-flow: column;
  }
  [slide="4"] .col {
    width: 100%;
    max-width: 100%;
  }
  [slide="4"] .big {
    font-size: 48px;
    line-height: 1.1;
  }  
}

@media screen and (max-width: 933px) {
  body {
    font-size: 18px;
  }
  .big {
    font-size: 45px;
  }
  .container {
    width: calc(100vw - 20px);
  }
}

@media screen and (max-width: 600px) {
  body {
    font-size: 20px;
  }

  p {
    margin-bottom: 10px;
  }

  .slide {
    width: 100vw;
    left: 0;
    padding: 0 10px;
    justify-content: center;
  }

  .slide .container {
    display: block;
  }

  .cols {
    flex-flow: column;
  }

  .col {
    width: 100%;
    max-width: 100%;
  }

  .big {
    font-size: 30px;
  }

  .mb {
    margin-bottom: 30px !important;
  }

  .mb24 {
    margin-bottom: 10px !important;
  }

  [slide="0"] .date {
    font-size: 20px;
  }

  [slide="0"] .title {
    margin: 0;
    padding: 0;
  }

  [slide="0"] .description {
    width: 100%;
  }

  [slide="1"] .col {
    width: 100%;
    max-width: 100%;
  }

  [slide="1"] .big {
    margin: 0 0 10px;
  }

  [slide="3"] .description {
    margin-left: 0;
    width: 100%;
  }

  [slide="3"] .closer {
    width: 100%;
  }

  [slide="4"] .big {
    font-size: 30px;
  }

  #nav {
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
    text-align: left;
  }
  
  [progress] {
    display: inline-block;
    width: 40px;
  }
    
  [progress] span {
    height: 15px;
    width: 2px;
    margin: 0 19px;
  }

  [progress]:hover {
    width: 60px;
  }

  [progress]:hover span {
    margin: 0 29px;
    height: 30px;
    width: 2px;
  }

  [progress].now span{
    height: 40px;
    width: 2px;
  }
}
