/* SCSS Document */
/* MICROSOFT NONSENSE */
/* WEBFONTS */
@font-face {
  font-family: "title";
  src: url("../fonts/title.woff2") format("woff2"), url("../fonts/title.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* MIXINS */
/* ANIMATIONS */
@keyframes arrow-bounce {
  0% {
    left: 0;
  }
  50% {
    left: 10px;
  }
  100% {
    left: 0;
  }
}
@keyframes arrow-hover {
  0% {
    background-position-x: calc(100% - 10px);
  }
  50% {
    background-position-x: 100%;
  }
  100% {
    background-position-x: calc(100% - 10px);
  }
}
@keyframes footernav-arrow {
  0% {
    background-position-x: calc(90% - 10px);
  }
  50% {
    background-position-x: 90%;
  }
  100% {
    background-position-x: calc(90% - 10px);
  }
}
@keyframes eq {
  0% {
    width: 0;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 0;
  }
}
/* RESET STYLES */
html,
body,
ul,
ol,
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
  list-style: none;
}

input,
button,
select,
textarea {
  border: 0;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

/* VARIABLES */
/* ELEMENT STYLES */
strong {
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  cursor: pointer;
}
a img {
  border: none;
}
a:hover {
  opacity: 0.5;
}

em {
  font-style: italic;
}

body.pause {
  overflow: hidden;
  height: 100%;
}

body,
html {
  text-align: center;
  color: #FFFFFF;
  font-family: "trade-gothic-next", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  -moz-font-smoothing: none;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  background: #292929;
  line-height: 1.3em;
}

h1, h2, h3 {
  font-family: "title", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 0.8em;
  display: block;
  text-transform: uppercase;
}
h1 span, h2 span, h3 span {
  font-weight: 400;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 2em;
}

p {
  margin: 0;
  text-indent: 3em;
}
p:first-of-type {
  margin-top: 1em;
  text-indent: 0;
}
p:last-of-type {
  margin-bottom: 1em;
}

h3 + p {
  margin-top: 1em;
  text-indent: 0;
}

input {
  border-radius: 1.9em;
  line-height: 1em;
  padding: 0.4em 1em 0.5em;
  margin-bottom: 2em;
  outline: none;
  border: 1px solid #0F00F5;
  background-color: #0F00F5;
  color: #FFFFFF;
  font-family: "trade-gothic-next", sans-serif;
  font-size: 1.5em;
}
input::-moz-placeholder {
  color: #FFFFFF;
  opacity: 1;
}
input::placeholder {
  color: #FFFFFF;
  opacity: 1;
}
input:-ms-input-placeholder {
  color: #FFFFFF;
  opacity: 1;
}
input::-ms-input-placeholder {
  color: #FFFFFF;
  opacity: 1;
}

/* GENERAL STYLES */
.link {
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  margin-right: 28px;
  cursor: pointer;
}
.link:hover {
  opacity: 0.5;
}

.hide {
  opacity: 0;
  cursor: default;
}

.dropin {
  opacity: 0;
  position: relative;
  top: 2em;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.dropin.now {
  opacity: 1;
  top: 0;
}

.inner {
  width: 90vw;
  max-width: 900px;
  margin: 2em auto;
  text-align: center;
}

.cta {
  background-color: #000000;
  border: 3px solid lime;
  border-radius: 10px;
  color: lime;
  text-transform: uppercase;
  font-size: 1.5em;
  line-height: 1em;
  padding: 0.5em 1em;
  font-family: "title", sans-serif;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  margin: 0.5em 0;
  display: inline-block;
}
.cta:hover {
  opacity: 0.5; /*padding: 0.6em 1.1em;*/
}
.cta.hide {
  opacity: 0;
}

/* ROTATE YO' DAMN DEVICE! */
#rotate {
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: #EB1D27;
  color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
}
#rotate .centre img {
  width: 25vw;
  max-width: 515px;
  height: auto;
}

@media (orientation: portrait) {
  #rotate {
    display: flex;
    flex-wrap: wrap;
  }
}
/* HEADER STYLES */
header {
  position: fixed;
  width: 60px;
  top: 0;
  left: 0;
  height: 100vh;
  background-color: #EB1D27;
  padding: 0;
  z-index: 99998;
  border-right: 1px solid #EF4A52;
  color: #FFFFFF;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
header #trigger {
  width: 30px;
  padding: 15px;
  position: absolute;
  left: 0;
  top: 0;
  border-bottom: 1px solid #EF4A52;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  cursor: pointer;
  z-index: 9999;
  font-size: 0.9em;
  text-align: center;
}
header #trigger div {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  margin-bottom: 9px;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
header #trigger:hover div {
  animation: eq 1.5s ease infinite;
}
header #trigger:hover div:first-of-type {
  animation-duration: 0.5s;
}
header #trigger:hover div:last-of-type {
  animation-duration: 1s;
}
header #bits {
  position: fixed;
  left: 60px;
  bottom: 0;
  line-height: 60px;
  transform: rotate(-90deg);
  transform-origin: bottom left;
  width: auto;
  display: flex;
  flex-wrap: wrap;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
header #bits #scrltoex {
  font-weight: 700;
  padding: 0 15px 0 60px;
  display: block;
  border-right: 1px solid #EF4A52;
}
header #bits #scrltoex::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background-image: url("../images/menu-arrow.png");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: contain;
  animation: arrow-bounce 2s ease infinite;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
header #bits #scrltoex.bottom::before {
  transform: rotate(-180deg);
  background-position: 0.5em 50%;
}
header #bits h1 {
  font-weight: 400;
  display: inline-block;
  line-height: 60px;
  font-size: 1rem;
  font-family: "trade-gothic-next", sans-serif;
  padding: 0 15px;
  text-transform: none;
}
header.timeline {
  background-color: #292929;
  border-color: #545454;
}
header.timeline #trigger {
  border-color: #545454;
}
header.timeline #bits #scrltoex {
  border-color: #545454;
}
header.archives {
  background-color: #0F00F5;
  border-color: #3F33F7;
}
header.archives #trigger {
  border-color: #3F33F7;
}
header.archives #bits #scrltoex {
  border-color: #3F33F7;
}
header.soundbites {
  background-color: #EB1D27;
}
header.contact {
  background-color: #0F00F5;
  border-color: #3F33F7;
}
header.contact #trigger {
  border-color: #3F33F7;
}
header.contact #bits #scrltoex {
  border-color: #3F33F7;
}
header.open {
  background-color: #EB1D27;
  border-color: #EF4A52;
}
header.open #trigger {
  border-color: #EF4A52;
}
header.open #trigger div {
  transform-origin: center center;
}
header.open #trigger div:nth-child(1) {
  transform: rotate(45deg) translateY(7.5px) translateX(7.5px);
}
header.open #trigger div:nth-child(2) {
  opacity: 0;
}
header.open #trigger div:nth-child(3) {
  transform: rotate(-45deg) translateY(-7.5px) translateX(7.5px);
}
header.open #trigger:hover div {
  animation: none;
}
header.open #bits {
  opacity: 0;
}

/* NAVIGATION STYLES */
nav {
  width: calc(100vw - 61px);
  height: 100vh;
  left: -100vw;
  position: fixed;
  top: 0;
  background-color: #EB1D27;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  z-index: 99;
}
nav ul {
  opacity: 0;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  width: 100%;
}
nav ul li {
  width: 100%;
  font-size: 20vh;
  line-height: 1em;
  padding: 0;
  height: calc(20vh - 1px);
  text-align: left;
  font-family: "title", sans-serif;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #EF4A52;
  text-indent: 3vh;
}
nav ul li:last-of-type {
  line-height: 20vh;
  border-bottom: none;
}
nav ul li span {
  font-size: 1rem;
  line-height: 3em;
  padding: 0 1em 0.25em;
  margin: calc(10vh - 1.5em) 0;
  position: absolute;
  right: 3vh;
  font-family: "trade-gothic-next", sans-serif;
  font-weight: 400;
  text-transform: none;
  background-color: #EB1D27;
  text-indent: 0;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  background-image: url("../images/menu-arrow-right.png");
  background-repeat: no-repeat;
  background-position: 200% 50%;
  background-size: contain;
}
nav ul li:hover {
  text-indent: 4vh;
}
nav ul li:hover span {
  padding-right: 4em;
  animation: arrow-hover 2s ease infinite;
}
nav ul li:nth-of-type(even) {
  text-indent: 1em;
}
nav ul li:nth-of-type(even):hover {
  text-indent: calc(1vh + 1em);
}
nav ul.fadeup {
  opacity: 1;
}
nav.open {
  left: 61px;
}

/* CONTENT STYLES */
main {
  margin-left: 61px;
  position: relative;
}
main .section {
  display: none;
  position: relative;
}
main .section.display {
  display: block;
}
main .section section {
  width: calc(100vw - 61px);
  height: 130vh;
  position: relative;
}
main .section#revolution section {
  position: sticky;
  top: 0;
}
main .section#revolution section:nth-of-type(odd) {
  background-color: #EB1D27;
  color: #FFFFFF;
}
main .section#revolution section:nth-of-type(odd) .copyblock {
  background-color: #EB1D27;
}
main .section#revolution section:nth-of-type(even) {
  background-color: #FFFFFF;
  color: #EB1D27;
}
main .section#revolution section:nth-of-type(even) .copyblock {
  background-color: #FFFFFF;
}
main .section#revolution section .slide {
  width: calc(100vw - 61px);
  height: 100vh;
  position: sticky;
  top: 0;
}
main .section#revolution section:nth-of-type(1) .slide {
  /* SLIDE ONE BITS */
}
main .section#revolution section:nth-of-type(1) .slide h1 {
  font-size: 38vh;
  line-height: 23.33333vh;
  padding: 5vh;
  text-align: right;
  white-space: nowrap;
  position: relative;
}
main .section#revolution section:nth-of-type(1) .slide h1:nth-of-type(even) {
  text-align: left;
  padding: 0 5vh;
  line-height: 33.33333vh;
  z-index: -2;
}
main .section#revolution section:nth-of-type(1) .slide .copyblock {
  left: 5vh;
  bottom: 5vh;
}
main .section#revolution section:nth-of-type(1) .slide .piccy {
  height: 50vh;
  max-height: 410px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%) rotate(-9deg);
  z-index: -1;
}
main .section#revolution section:nth-of-type(1) .slide .flag {
  width: 25vw;
  max-width: 253px;
  height: auto;
  position: absolute;
  right: 5vh;
  top: 50vh;
  transform: translateY(-50%);
  z-index: -3;
}
main .section#revolution section h2 {
  position: absolute;
  padding: 5vh;
  width: 50%;
  font-size: 10vw;
  text-align: left;
}
main .section#revolution section h2 span {
  font-family: "trade-gothic-next", sans-serif;
  font-size: 1rem;
  display: block;
  line-height: 1.3rem;
  margin-top: 1rem;
  text-transform: none;
}
main .section#revolution section .pic {
  position: absolute;
  left: 5vh;
  bottom: 5vh;
  height: 55vh;
  width: 37vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  z-index: -1;
}
main .section#revolution section .copyblock {
  width: 25%;
  padding: 1vw;
  position: absolute;
  left: 60vw;
  bottom: 5vh;
  text-align: left;
}
main .section#revolution section:last-of-type {
  position: relative;
}
main .section#revolution #footernav {
  background-color: #EB1D27;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #EF4A52;
  color: #FFFFFF;
  position: relative;
}
main .section#revolution #footernav li {
  width: calc(25% - 1px);
  border-right: 1px solid #EF4A52;
  font-family: "title", sans-serif;
  font-size: 3vw;
  line-height: 2em;
  cursor: pointer;
  background-image: url("../images/menu-arrow-right.png");
  background-repeat: no-repeat;
  background-position-y: 50%;
  background-size: 15%;
  animation: footernav-arrow 2s ease infinite;
}
main .section#revolution #footernav li:last-child {
  border-right: none;
}
main .section#timeline #tlcont {
  position: fixed;
  top: 0;
  width: calc(100vw - 61px);
  color: #FFFFFF;
  z-index: 1;
}
main .section#timeline #tlcont #tlyear {
  font-size: 20vw;
  line-height: 0.8em;
  font-family: "title", sans-serif;
  display: block;
  position: absolute;
  left: 5vh;
  top: 5vh;
}
main .section#timeline #tlcont #tlcopy {
  width: 20%;
  position: absolute;
  left: calc(20vw + 5vh);
  top: 5vh;
  text-align: left;
}
main .section#timeline #tlcont #tlcopy div {
  opacity: 0;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #292929;
  height: 66vh;
}
main .section#timeline #tlcont #tlcopy div.show {
  opacity: 1;
}
main .section#timeline section {
  background-color: #292929;
  color: #FFFFFF;
  height: auto; /*padding-top: calc(5vh + 1rem);*/
}
main .section#timeline section img {
  width: 50vw;
  height: 50vh;
  margin-left: calc(50vw - 61px);
  -o-object-fit: contain;
     object-fit: contain;
}
main .section#timeline section img.c1 {
  -o-object-position: 0 50%;
     object-position: 0 50%;
  margin-top: 5vh;
}
main .section#timeline section img.c2 {
  -o-object-position: 90% 50%;
     object-position: 90% 50%;
}
main .section#timeline section img.c3 {
  -o-object-position: 0% 50%;
     object-position: 0% 50%;
}
main .section#timeline section img.c4 {
  -o-object-position: 95% 50%;
     object-position: 95% 50%;
}
main .section#timeline section img.c5 {
  -o-object-position: 0% 50%;
     object-position: 0% 50%;
}
main .section#timeline section img.c6 {
  -o-object-position: 0% 50%;
     object-position: 0% 50%;
}
main .section#timeline section img.c7 {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
main .section#timeline section img.c8 {
  -o-object-position: 65% 50%;
     object-position: 65% 50%;
  height: 30vh;
}
main .section#timeline section img.c9 {
  -o-object-position: 65% 50%;
     object-position: 65% 50%;
  height: 40vh;
}
main .section#timeline section img.c10 {
  -o-object-position: 0% 50%;
     object-position: 0% 50%;
  height: 60vh;
}
main .section#timeline section img.c11 {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  height: 30vh;
}
main .section#timeline section img.c12 {
  -o-object-position: 85% 50%;
     object-position: 85% 50%;
  height: 40vh;
}
main .section#timeline section img.c13 {
  -o-object-position: 0% 50%;
     object-position: 0% 50%;
  height: 40vh;
}
main .section#timeline section img.c14 {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
main .section#timeline section img.c15 {
  -o-object-position: 90% 50%;
     object-position: 90% 50%;
  height: 40vh;
}
main .section#timeline section img.c16 {
  -o-object-position: 0% 50%;
     object-position: 0% 50%;
  height: 45vh;
}
main .section#timeline section img.c17 {
  -o-object-position: 94% 50%;
     object-position: 94% 50%;
  height: 40vh;
}
main .section#timeline section img.c18 {
  -o-object-position: 55% 50%;
     object-position: 55% 50%;
}
main .section#timeline section img.c19 {
  -o-object-position: 45% 50%;
     object-position: 45% 50%;
  height: 55vh;
}
main .section#timeline section img.c20 {
  -o-object-position: 0% 50%;
     object-position: 0% 50%;
  height: 45vh;
}
main .section#timeline section img.c21 {
  -o-object-position: 90% 50%;
     object-position: 90% 50%;
}
main .section#timeline section img.c22 {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  height: 60vh;
}
main .section#timeline section img.c23 {
  -o-object-position: 97% 50%;
     object-position: 97% 50%;
  height: 40vh;
}
main .section#timeline section img.c24 {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  height: 55vh;
  margin-bottom: 5vh;
}
main .section#archives section {
  position: sticky;
  top: 0;
}
main .section#archives section:nth-of-type(odd) {
  background-color: #0F00F5;
  color: #FFFFFF;
}
main .section#archives section:nth-of-type(odd) .copyblock { /*background-color: $tjblue;*/ }
main .section#archives section:nth-of-type(even) {
  background-color: #FFFFFF;
  color: #0F00F5;
}
main .section#archives section:nth-of-type(even) .copyblock {
  background-color: #FFFFFF;
}
main .section#archives section .slide {
  width: calc(100vw - 61px);
  height: 100vh;
  position: sticky;
  top: 0;
}
main .section#archives section .slide h3 {
  font-family: "trade-gothic-next", sans-serif;
  text-transform: none;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.3em;
}
main .section#archives section:nth-of-type(1) .slide {
  /* SLIDE ONE BITS */
}
main .section#archives section:nth-of-type(1) .slide h1 {
  font-size: 38vh;
  line-height: 23.33333vh;
  padding: 5vh;
  text-align: right;
  white-space: nowrap;
  position: relative;
}
main .section#archives section:nth-of-type(1) .slide h1:first-of-type {
  z-index: -2;
}
main .section#archives section:nth-of-type(1) .slide h1:nth-of-type(even) {
  text-align: left;
  padding: 0 5vh;
  line-height: 33.33333vh;
}
main .section#archives section:nth-of-type(1) .slide h1:last-of-type {
  text-align: center;
  padding-left: 10vw;
}
main .section#archives section:nth-of-type(1) .slide .copyblock {
  width: 25%;
  position: absolute;
  left: 5vh;
  bottom: 5vh;
  z-index: 2;
  text-align: left;
}
main .section#archives section:nth-of-type(1) .slide .piccy {
  height: 50vh;
  max-height: 410px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) rotate(14.1deg);
  z-index: -1;
}
main .section#archives section:nth-of-type(1) .slide .flag {
  width: 25vw;
  max-width: 253px;
  height: auto;
  position: absolute;
  right: 5vh;
  top: 50vh;
  transform: translateY(-50%);
  z-index: -3;
}
main .section#archives section .picslide h3 {
  text-align: left;
  width: 35vw;
  position: absolute;
  top: 10vh;
  left: 55vw;
}
main .section#archives section .picslide img {
  width: 50%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 50%;
     object-position: 100% 50%;
  position: absolute;
  left: 0;
  top: 0;
}
main .section#archives section .picslide .copyblock {
  width: 25%;
  padding: 1vw;
  position: absolute;
  left: 60vw;
  bottom: 5vh;
  text-align: left;
}
main .section#archives section .quote {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
main .section#archives section .quote div {
  text-align: center;
  line-height: 0.8em;
  font-family: "title", sans-serif;
  font-size: 13vw;
  width: 90%;
  text-transform: uppercase;
}
main .section#archives section .columns .copyblock {
  width: 30%;
  padding: 1vw;
  position: absolute;
  top: 1vh;
  text-align: left;
}
main .section#archives section .columns .copyblock:first-of-type {
  left: 25vw;
}
main .section#archives section .columns .copyblock:last-of-type {
  left: 60vw;
}
main .section#archives section .columns .copyblock h3 {
  margin-top: 1em;
}
main .section#soundbites section {
  background-color: #FFFFFF;
  color: #EB1D27;
  position: sticky;
  top: 0;
}
main .section#soundbites section .copyblock {
  background-color: #FFFFFF;
}
main .section#soundbites section.red {
  background-color: #EB1D27;
  color: #FFFFFF;
}
main .section#soundbites section.red .copyblock {
  background-color: #EB1D27;
}
main .section#soundbites section .slide {
  width: calc(100vw - 61px);
  height: 100vh;
  position: sticky;
  top: 0;
}
main .section#soundbites section .slide h3 {
  font-family: "trade-gothic-next", sans-serif;
  text-transform: none;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.3em;
}
main .section#soundbites section:nth-of-type(1) .slide {
  /* SLIDE ONE BITS */
}
main .section#soundbites section:nth-of-type(1) .slide h1 {
  font-size: 38vh;
  line-height: 23.33333vh;
  padding: 5vh;
  text-align: right;
  white-space: nowrap;
  position: relative;
}
main .section#soundbites section:nth-of-type(1) .slide h1:first-of-type {
  text-align: center;
  padding-left: 10vw;
}
main .section#soundbites section:nth-of-type(1) .slide h1:nth-of-type(even) {
  text-align: left;
  padding: 0 5vh;
  line-height: 33.33333vh;
}
main .section#soundbites section:nth-of-type(1) .slide h1:last-of-type {
  text-align: right;
  z-index: 2;
}
main .section#soundbites section:nth-of-type(1) .slide .piccy {
  height: 50vh;
  max-height: 410px;
  position: absolute;
  left: 27%;
  top: 50%;
  transform: translate(0, -45%) rotate(-10deg);
}
main .section#soundbites section:nth-of-type(1) .slide .flag {
  width: 25vw;
  max-width: 253px;
  height: auto;
  position: absolute;
  right: 5vh;
  top: 50vh;
  transform: translateY(-50%);
  z-index: -3;
}
main .section#soundbites section .columns .copyblock {
  width: 30%;
  padding: 1vw;
  position: absolute;
  top: 1vh;
  text-align: left;
}
main .section#soundbites section .columns .copyblock:first-of-type {
  left: 25vw;
}
main .section#soundbites section .columns .copyblock:last-of-type {
  left: 60vw;
}
main .section#soundbites section .columns .copyblock h3 {
  margin-top: 1em;
}
main .section#soundbites section .split {
  display: flex;
  flex-wrap: wrap;
}
main .section#soundbites section .split .copyside {
  width: 50%;
  height: 100vh;
  position: relative;
}
main .section#soundbites section .split .copyside h3 {
  position: absolute;
  top: 5vh;
  left: 10vh;
  width: 60%;
  text-align: left;
}
main .section#soundbites section .split .copyside .copyblock {
  width: 60%;
  padding: 1vw;
  position: absolute;
  right: 5vh;
  bottom: 5vh;
  text-align: left;
}
main .section#soundbites section .split img, main .section#soundbites section .split video {
  width: 50%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
main .section#soundbites section .split video {
  -o-object-fit: contain;
     object-fit: contain;
}
main .section#soundbites section .full img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
main .section#contact section:nth-of-type(odd) {
  background-color: #0F00F5;
  color: #FFFFFF;
}
main .section#contact section:nth-of-type(odd) .copyblock { /*background-color: $tjblue;*/ }
main .section#contact section:nth-of-type(even) {
  background-color: #FFFFFF;
  color: #0F00F5;
}
main .section#contact section:nth-of-type(even) .copyblock {
  background-color: #FFFFFF;
}
main .section#contact section .slide {
  width: calc(100vw - 61px);
  height: 100vh;
  position: sticky;
  top: 0;
}
main .section#contact section .slide h3 {
  font-family: "trade-gothic-next", sans-serif;
  text-transform: none;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.3em;
}
main .section#contact section:nth-of-type(1) .slide {
  /* SLIDE ONE BITS */
}
main .section#contact section:nth-of-type(1) .slide h1 {
  font-size: 38vh;
  line-height: 23.33333vh;
  padding: 5vh;
  text-align: right;
  white-space: nowrap;
  position: relative;
}
main .section#contact section:nth-of-type(1) .slide h1:first-of-type {
  z-index: -2;
}
main .section#contact section:nth-of-type(1) .slide h1:nth-of-type(even) {
  text-align: left;
  padding: 0 5vh;
  line-height: 33.33333vh;
}
main .section#contact section:nth-of-type(1) .slide h1:last-of-type {
  text-align: right;
}
main .section#contact section:nth-of-type(1) .slide .copyblock {
  left: 5vh;
  bottom: 5vh;
  position: absolute;
  width: 15vw;
  text-align: left;
  background-color: #0F00F5;
}
main .section#contact section:nth-of-type(1) .slide .flag {
  width: 25vw;
  max-width: 253px;
  height: auto;
  position: absolute;
  right: 5vh;
  top: 50vh;
  transform: translateY(-50%);
  z-index: -3;
}
main .section#contact section.contacts {
  height: auto;
}
main .section#contact section #searchconts {
  padding: 3em 0;
}
main .section#contact section #rolodex {
  display: flex;
  flex-wrap: wrap;
}
main .section#contact section .card {
  width: 19%;
  margin: 3%;
}
main .section#contact section .card div {
  text-align: left;
  padding: 0.5rem 1rem;
  text-align: left;
}
main .section#contact section .card div p {
  text-indent: 0;
  margin: 1em 0;
}
main .section#contact section .card div h3 {
  font-family: "trade-gothic-next", sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.3em;
}
main .section#contact section .card div a {
  font-family: "trade-gothic-next", sans-serif;
  font-weight: normal;
  color: #0F00F5;
  display: inline-block;
  border-bottom: 1px solid #0F00F5;
}

/* Tablet Styles */
@media only screen and (max-width: 1024px) {
  input {
    font-size: 1.5rem;
  }
  /* HEADER STYLES */
  header #bits #scrltoex {
    font-size: 0;
  }
  /* NAVIGATION STYLES */
  nav ul li span {
    font-size: 0.75rem;
  }
  /* CONTENT STYLES */
  main .section section {
    height: 100vh;
  }
  main .section#revolution section {
    position: relative;
  }
  main .section#revolution section .slide {
    height: 100vh;
    position: relative;
  }
  main .section#revolution section .slide .pic {
    top: 25vw;
    bottom: auto;
    height: 40vh;
    width: 27vh;
    z-index: 1;
  }
  main .section#revolution section .slide .copyblock {
    width: 42%;
    padding: 0;
    left: 50vw;
    top: 3vh;
    bottom: auto;
    text-align: left;
    font-size: 0.75em;
    line-height: 1.3em;
  }
  main .section#revolution section:nth-of-type(1) {
    height: 100vh;
  }
  main .section#revolution section:nth-of-type(1) .slide {
    height: 100vh;
    /* SLIDE ONE BITS */
  }
  main .section#revolution section:nth-of-type(1) .slide h1 {
    z-index: 1;
  }
  main .section#revolution section:nth-of-type(1) .slide h1:nth-of-type(even) {
    text-align: left;
    padding: 0 5vh;
    line-height: 33.33333vh;
    z-index: 0;
  }
  main .section#revolution section:nth-of-type(1) .slide .copyblock {
    left: 5vh;
    bottom: 5vh;
    top: auto;
    background-color: transparent;
  }
  main .section#revolution section:nth-of-type(1) .slide .piccy {
    top: 50%;
    transform: translate(-50%, -45%) rotate(-9deg);
    z-index: 0;
  }
  main .section#revolution section:nth-of-type(1) .slide .flag {
    z-index: 0;
  }
  main .section#revolution #footernav li {
    font-size: 4vw;
  }
  main .section#timeline #tlcont #tlyear {
    font-size: 15vw;
    line-height: 0.8em;
    font-family: "title", sans-serif;
    display: block;
    position: absolute;
    left: 5vh;
    top: 5vh;
  }
  main .section#timeline #tlcont #tlcopy {
    width: 40%;
    left: 5vh;
    top: 15vw;
    font-size: 0.75em;
    line-height: 1.3em;
  }
  main .section#archives section {
    position: relative;
    height: 150vh;
  }
  main .section#archives section .slide {
    font-size: 0.75em;
    line-height: 1.3em;
  }
  main .section#archives section:nth-of-type(1) .slide h1:last-of-type {
    text-align: right;
  }
  main .section#archives section:nth-of-type(1) .slide .copyblock {
    left: 5vh;
    bottom: 5vh;
    width: 45%;
  }
  main .section#archives section:nth-of-type(1) .slide .piccy {
    transform: translate(-40%, -60%) rotate(14.1deg);
  }
  main .section#archives section .picslide h3 {
    width: 40vw;
    left: 50vw;
  }
  main .section#archives section .picslide .copyblock {
    width: 40%;
    padding: 0;
    left: 50vw;
    bottom: auto;
    top: 20vh;
  }
  main .section#archives section .quote div {
    font-size: 12vw;
  }
  main .section#archives section .columns {
    position: relative;
  }
  main .section#archives section .columns .copyblock {
    padding: 0;
  }
  main .section#archives section .columns .copyblock:first-of-type {
    width: 45%;
    left: 5vh;
  }
  main .section#archives section .columns .copyblock:last-of-type {
    left: 50vw;
  }
  main .section#archives section .columns .copyblock h3 {
    margin-top: 1em;
  }
  main .section#soundbites section {
    position: relative;
    height: 100vh;
  }
  main .section#soundbites section .slide {
    position: relative;
    font-size: 0.75em;
    line-height: 1.3em;
  }
  main .section#soundbites section .slide h3 {
    font-size: 1em;
    line-height: 1.3em;
  }
  main .section#soundbites section:nth-of-type(1) .slide {
    height: 100vh;
    /* SLIDE ONE BITS */
  }
  main .section#soundbites section:nth-of-type(1) .slide h1 {
    font-size: 38vh;
    line-height: 23.33333vh;
    padding: 5vh;
    text-align: right;
    white-space: nowrap;
    position: relative;
  }
  main .section#soundbites section:nth-of-type(1) .slide h1:first-of-type {
    text-align: center;
    padding-left: 10vw;
  }
  main .section#soundbites section:nth-of-type(1) .slide h1:nth-of-type(even) {
    text-align: left;
    padding: 0 5vh;
    line-height: 33.33333vh;
  }
  main .section#soundbites section:nth-of-type(1) .slide h1:last-of-type {
    text-align: right;
    z-index: 2;
  }
  main .section#soundbites section:nth-of-type(1) .slide .piccy {
    height: 50vh;
    max-height: 410px;
    position: absolute;
    left: 27%;
    top: 50%;
    transform: translate(0, -45%) rotate(-10deg);
  }
  main .section#soundbites section:nth-of-type(1) .slide .flag {
    z-index: 3;
  }
  main .section#soundbites section:nth-of-type(2), main .section#soundbites section:nth-of-type(7) {
    height: 150vh;
  }
  main .section#soundbites section .columns {
    height: 150vh;
  }
  main .section#soundbites section .columns .copyblock {
    width: 40%;
    padding: 0;
  }
  main .section#soundbites section .columns .copyblock:first-of-type {
    left: 5vh;
  }
  main .section#soundbites section .columns .copyblock:last-of-type {
    left: 50%;
  }
  main .section#soundbites section .columns .copyblock h3 {
    margin-top: 1em;
  }
  main .section#contact section:nth-of-type(1) .slide .copyblock {
    font-size: 0.75em;
    line-height: 1.3em;
  }
  main .section#contact section .card {
    width: 26%;
    margin: 3%;
    font-size: 0.75em;
    line-height: 1.3em;
  }
}/*# sourceMappingURL=styles.css.map */