@font-face {
  font-family: 'Gotham';
  src: url('GothamGreek-BlackItalic.eot');
  src: local('Gotham Greek Black Italic'), local('GothamGreek-BlackItalic'),
      url('../fonts/GothamGreek-BlackItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/GothamGreek-BlackItalic.woff2') format('woff2'),
      url('../fonts/GothamGreek-BlackItalic.woff') format('woff');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
} 

@font-face {
  font-family: 'Gotham';
  src: url('GothamGreek-Black.eot');
  src: local('Gotham Greek Black'), local('GothamGreek-Black'),
      url('../fonts/GothamGreek-Black.eot?#iefix') format('embedded-opentype'),
      url('../fonts/GothamGreek-Black.woff2') format('woff2'),
      url('../fonts/GothamGreek-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('GothamGreek-MediumItalic.eot');
  src: local('GothamGreek-MediumItalic'),
      url('../fonts/GothamGreek-MediumItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/GothamGreek-MediumItalic.woff2') format('woff2'),
      url('../fonts/GothamGreek-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('Roboto-Light.eot');
  src: local('Roboto Light'), local('Roboto-Light'),
      url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Roboto-Light.woff2') format('woff2'),
      url('../fonts/Roboto-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('Roboto-Bold.eot');
  src: local('Roboto Bold'), local('Roboto-Bold'),
      url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Roboto-Bold.woff2') format('woff2'),
      url('../fonts/Roboto-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #ff595d;
  --blue: #3734ff;
  --grey: #5a5a5a;
  --purple: #c936e7;
  --pale-blue: #7133f6;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font: 300 1.6rem/2rem 'Roboto', sans-serif;
}
figure {
  line-height: 0;
}
img {
  width: 100%;
  height: auto;
}
iframe {
  border: 0;
}
a {
  text-decoration: none;
  color: inherit;
}

.page {
  overflow: hidden;
}

header {
  position: relative;
  max-width: 1100px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0  auto;
  padding: 0 130px;
  background: var(--red);
  z-index: 2;
  -webkit-box-shadow: -999px 0 var(--red), 999px 0 var(--red);
          box-shadow: -999px 0 var(--red), 999px 0 var(--red);
}
.sponsor,
.social {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  
}
.sponsor {
  max-width: 110px;
  left: 10px;
  line-height: 0;
}
.logo {
  max-width: 300px;
  line-height: 0;
}
.social {
  right: 10px;
}
.social a {
  display: inline-block;
  margin-left: 10px;
  line-height: 0;
}

main {
  padding: 0 20px;
}

section {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 40px 0;
}
.js-section  {
  opacity: 0;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.js-section.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.title {
  position: relative;
  margin-bottom: 40px;
  font-size: 2.2rem;
  line-height: 2.4rem;
  color: var(--blue);
}
.title:before {
  content: '';
  position: absolute;
  left: -10px;
  right: 0;
  bottom: -6px;
  height: 10px;
  z-index: -1;
  background: var(--red);
}
.content {
  
  color: var(--grey);
}
.content a {
  text-decoration: underline;
}
.content > *:not(:last-child) {
  margin-bottom: 40px;
}

.split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.intro {
  position: relative;
  margin-bottom: 0;
  padding: 0;
  color: #fff;
  max-width: 1100px;
  font-family: 'Gotham';
  -webkit-box-shadow: -999px 0 var(--purple);
          box-shadow: -999px 0 var(--purple);
  opacity: 0;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.intro__left {
  padding: 100px 10px 100px 0;
  width: 50%;
  background: var(--purple);
  -webkit-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
h1 {
  margin-bottom: 40px;
  font-size: 5.1rem;
  line-height: 6rem;
}
.intro__left h2 {
  margin-bottom: 60px;
  font-size: 4.3rem;
  line-height: 5rem;
}
.intro__left p {
  font-size: 2.5rem;
  line-height: 3rem;
}
.intro__right {
  top: 0;
  position: absolute;
  left: 50%;
  width: 50vw;
  height: 100%;
  background: var(--pale-blue);
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.intro__right img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  width: 100%;
  height: 100%;
}


.visible .intro__left {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.visible .intro__right {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.promo {
  margin-bottom: 0;
  color: #fff;
  background: var(--red);
  -webkit-box-shadow: -500px 0 var(--red), 500px 0 var(--red);
          box-shadow: -500px 0 var(--red), 500px 0 var(--red);
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.promo a {
  text-decoration: underline;
}
.promo__content h3{
  font-size: 2.2rem;
  line-height: 2.4rem;
}
.promo__images {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
  z-index: 1;
}
.promo__images:before {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30%;
  top: 20px;
  bottom: 20px;
  border: 5px solid var(--blue);
  z-index: -1;
}
.promo__images figure:first-child {
  -webkit-transform: translateX(-50px);
      -ms-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.promo__images figure:last-child {
  margin: 80px 0 0 -60px;
  -webkit-transform: translateX(50px);
      -ms-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.promo__content p:not(:last-child){
  margin-bottom: 20px;
}

.visible.promo {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.visible .promo__images figure:first-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.visible .promo__images figure:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.paragraph-2 .split__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  margin: 0 20px 20px 0;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.visible.paragraph-2 .split__left {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.paragraph-2 .split__right {
  margin-top: 20px;
}

.paragraph-3 .title div {
  max-width: 50%;
}
.paragraph-3 .title figure {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.paragraph-3 .assets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.paragraph-3 .assets figure {
  margin: 0 10px;
  max-width: 150px;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.visible.paragraph-3 .assets figure {
  margin: 0 -10px;
}

.paragraph-4 .assets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px -50px 0;
  padding-top: 60px;
}
.paragraph-4 .assets figure:first-child {
  margin-left: 25px;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.paragraph-4 .assets figure:last-child {
  margin: -60px 25px 0 -50px;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  -webkit-transform: translateX(100px);
      -ms-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.visible.paragraph-4 .assets figure:first-child,
.visible.paragraph-4 .assets figure:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.paragraph-6 .content ul {
  margin: -40px 0 0 0;
}
.paragraph-6 .content li {
  position: relative;
  display: inline-block;
  padding-left: 10px;
  margin-left: 10px;
}
.paragraph-6 .content li:before {
  content: '';
  position: absolute;
  left: -4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
}

.paragraph-7 {
  position: relative;
  margin-bottom: 20px;
}
.paragraph-7 .split__left {
  position: absolute;
  right: calc(50% + 20px);
  width: 50vw;
  bottom: 0;
  top: 0;
  background: var(--blue);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.visible.paragraph-7 .split__left {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.paragraph-7 .split__left img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  width: 100%;
  height: 100%;
}
.paragraph-7 .split__right {
  max-width: 50%;
  margin: 150px 0 0 auto;
}

.paragraph-8 .split__left {
  margin-top: 20px;
}
.paragraph-8 .split__right {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 330px;
          flex: 1 0 330px;
  margin-left: 20px;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.visible.paragraph-8 .split__right {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.paragraph-9 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.paragraph-9 .split__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 330px;
          flex: 1 0 330px;
  margin: 0 20px 0 -20px;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.visible.paragraph-9 .split__left {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.split--box {
  max-width: 700px;
}
.split--box .split__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0  30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.split--box .split__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0  30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.split--box .split__left div,
.split--box .split__right div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.split--box h3 {
  font: 900 2.4rem/2.6rem 'Gotham', sans-serif;
  color: var(--red);
}
.split--box h4 {
  margin-bottom: 10px;
  font: 900 1.2rem/1.6rem 'Gotham', sans-serif;
  color: var(--red);
}
.split--box figure {
  margin-top: 10px;
}

.split--box-2 .split__right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  
}
.split--box-2 .split__right:before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 100vw;
  bottom: 0;
  background: var(--purple);
  z-index: -1;

}

.full {
  text-align: center;
  font: 900 2.4rem/2.7rem 'Gotham', sans-serif;
  background: var(--blue);
  color: #fff;
  -webkit-box-shadow: -500px 0  var(--blue), 500px 0 var(--blue);
          box-shadow: -500px 0  var(--blue), 500px 0 var(--blue);
}
.full div {
  margin-bottom: 5px;
}

.split--box-3 .split__left figure,
.split--box-3 .split__right figure,
.split--box-4 .split__left figure {
  max-width: 150px;
  margin: 10px auto 0;
}

footer {
  padding: 50px 20px;
  text-align: center;
  background: var(--red);
  color: #fff;
}
footer a {
  text-decoration: underline;
}
.footer-content {
  max-width: 660px;
  margin: 0 auto;
}
.footer-content h3 {
  margin: 20px 0 40px;
  font: 900 italic 2.6rem/5.2rem 'Gotham', sans-serif;
}
.footer-content__motto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  font: 900 3rem/3.5rem 'Gotham', sans-serif;
  color: var(--blue);
}
.footer-content__motto div:nth-child(1) {
  position: relative;
  font-size: 10rem;
  line-height: 10rem;
  z-index: 1;
}
.footer-content__motto div:nth-child(1):before {
  content: 'FILL';
  position: absolute;
  left: 50%;
  top: -35px;
  font-size: 12rem;
  line-height: 12rem;
  -webkit-text-stroke: 1px #fff;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  color: transparent;
  z-index: -1;
}
.footer-content__motto div:nth-child(2) {
  position: relative;
  padding-right: 30px;
  margin-bottom: 10px;
}
.footer-content__motto div:nth-child(2) img {
  position: absolute;
  width: 20px;
  right: 0;
  top: 0;
}
.footer-content__motto div:nth-child(3) {
  position: relative;
  font-size: 2rem;
  line-height: 2.2rem;
  color: #fff;
}
.footer-content__motto div:nth-child(3):before,
.footer-content__motto div:nth-child(3):after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
}
.footer-content__motto div:nth-child(3):before {
  left: -30px;
}
.footer-content__motto div:nth-child(3):after {
  right: -30px;
}
.footer-content figure {
  max-width: 115px;
  margin: 0 auto 10px;
}
.footer-content__disclaimer {
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.footer-content h2 {
  margin-bottom: 60px;
}


@media only screen and (max-width: 1060px) {
  .intro {
    -webkit-box-shadow: -500px 0 var(--purple);
            box-shadow: -500px 0 var(--purple);
  }
  h1 {
    font-size: 4rem;
    line-height: 5rem;
  }
  .intro__left h2 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
  .intro__left p {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }
}

@media only screen and (max-width: 900px) {
  .intro {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .intro__left {
    position: relative;
    width: auto;
  }
  
  .intro__right {
    position: relative;
    width: auto;
    left: 0;
  }
  .intro__left:before,
  .intro__right:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 100vw;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1;
  }
  .intro__left:before {
    background: var(--purple);
  }
  .intro__right:before  {
    background: var(--pale-blue);
  }
  .paragraph-4 .assets {
    margin: 30px 0 0;
  }
  .paragraph-4 .assets figure:last-child{
    margin: -60px 0 0 -50px;
  }
  .paragraph-4 .assets figure:first-child {
    margin-left: 0;
  }
}

@media only screen and (max-width: 600px) {
  header {
    height: 60px;
    padding: 0 100px;
  }
  .sponsor {
    max-width: 80px;
  }
  .logo {
    max-width: 200px;
  }
  .intro__left {
    padding: 50px 0;
  }
  h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
  .intro__left h2 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .intro__left p {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  section {
    margin-bottom: 40px;
  }

  .promo {
    -webkit-box-shadow: -200px 0 var(--red), 200px 0 var(--red);
            box-shadow: -200px 0 var(--red), 200px 0 var(--red);
  }

  .split {
    display: block;
  }

  .paragraph-2 .split__left {
    margin: 0 0 20px;
  }
  .paragraph-3 .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .paragraph-3 .title div {
    max-width: none;
  }
  .paragraph-3 .title figure {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    margin: 0 auto 10px;
    max-width: 150px;
  }

  .paragraph-7 .split__left {
    position: relative;
    right: auto;
    width: auto;
  }
  .paragraph-7 .split__left:before  {
    content: '';
    position: absolute;
    left: 50%;
    width: 100vw;
    top: 0;
    bottom: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background: var(--blue);
    z-index: -1;
  }
  .paragraph-7 .split__right {
    max-width: none;
    margin: 20px 0 0;
  }
  .paragraph-8 .split__right {
    margin: 20px 0 0;
  }
  .paragraph-9 .split__left {
    margin: 0 0 20px;
  }

  .split--box .split__left {
    margin: 0 0 40px;
  }
  .split--box .split__right {
    margin: 0;
  }

  .split--box-2 .split__right {
    padding: 20px 0;
  }
  .split--box-2 .split__right:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .full {
    font-size: 2rem;
    line-height: 2.5rem;
    -webkit-box-shadow: -100px 0 var(--blue), 100px 0 var(--blue);
            box-shadow: -100px 0 var(--blue), 100px 0 var(--blue);
  }
}

@media only screen and (max-width: 475px) {
  h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .intro__left h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    line-height: 2.5rem;
  }
}