/**
* Colors
*/
/**
* Fonts
*/
/**
* Screen Sizes
*/
/**
 * Mixins
 */
/**
* END
* Mixins
* END
*/
/**
 * Keyframes
 */
@keyframes blur-in {
  0% {
    filter: blur(2px); }
  100% {
    filter: blur(0); } }

@keyframes scale-in {
  0% {
    transform: scale(0.85); }
  100% {
    transform: scale(1); } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes blur-out {
  0% {
    filter: blur(0); }
  100% {
    filter: blur(2px); } }

@keyframes scale-out {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(0.85); } }

@keyframes fade-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes slide-in-left {
  0% {
    left: -100%; }
  100% {
    left: 0; } }

@keyframes slide-in-top {
  0% {
    top: -100%; }
  100% {
    top: 0; } }

@keyframes slide-in-right {
  0% {
    right: -100%; }
  100% {
    right: 0; } }

@keyframes slide-in-bottom {
  0% {
    bottom: -100%; }
  100% {
    bottom: 0; } }

@keyframes grow-width {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

@keyframes grow-height {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

@keyframes scale-x-up {
  0% {
    transform: scaleX(0); }
  100% {
    transform: scaleX(1); } }

@keyframes scale-y-up {
  0% {
    transform: scaleY(0); }
  100% {
    transform: scaleY(1); } }

@keyframes scale-up {
  0% {
    transform: scale(0); }
  100% {
    transform: scale(1); } }

/**
* END
* Keyframes
* END
*/
body, html {
  background-color: #242528;
  font-size: 10px;
  overflow: hidden;
  background-image: url("../images/background.jpg");
  background-repeat: repeat; }

body {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 !important;
  padding: 0 !important; }
  body * {
    text-indent: 0 !important; }

div.spacer {
  height: 40px; }

div.content {
  border-radius: 7.5px;
  padding: 15px 20px;
  background-color: #ffffff;
  max-width: calc( 100% - 40px);
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.4);
  filter: blur(2px); }
  div.content h2 {
    padding: 0;
    margin: 0;
    font-family: Lato, sans-serif !important;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.2px;
    pointer-events: none !important; }
  div.content p {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 1.25rem;
    line-height: 2;
    font-family: Montserrat, sans-serif !important;
    word-wrap: break-word;
    padding: 0;
    pointer-events: none !important; }

div.block {
  filter: blur(2px); }

section {
  perspective: 1000px;
  min-height: 100vh;
  max-height: 100vh;
  height: 100vh;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  min-width: 570px;
  max-width: 570px;
  width: 570px; }
  section.blur-in {
    animation-name: scale-in;
    animation-delay: 0s;
    animation-duration: 1.2325s;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out; }
  section.blur-out {
    animation-name: scale-out;
    animation-delay: 0s;
    animation-duration: 1.2325s;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out; }
  section > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; }

section.graphic {
  min-width: 100vw;
  max-width: 100vw;
  width: 100vw;
  position: relative;
  padding-top: -56.25%; }
  @media all and (max-height: 450px) {
    section.graphic {
      display: none !important; } }
  section.graphic div.graphic-container {
    opacity: 0;
    animation-name: fade-in;
    animation-delay: 0s;
    animation-duration: 0.5s;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    position: absolute;
    bottom: 0;
    right: 0;
    aspect-ratio: 9 / 16;
    max-height: 100%;
    top: 100%;
    transform: translateY(-100%);
    overflow-y: visible;
    min-width: 50%;
    max-width: 50%;
    width: 50%;
    margin-left: 50%; }
    @media all and (max-width: 1080px) {
      section.graphic div.graphic-container {
        min-width: 45%;
        max-width: 45%;
        width: 45%;
        margin-left: 55%; } }
    @media all and (max-width: 992px) {
      section.graphic div.graphic-container {
        min-width: 40%;
        max-width: 40%;
        width: 40%;
        margin-left: 60%; } }
    @media all and (max-width: 768px) {
      section.graphic div.graphic-container {
        min-width: 40%;
        max-width: 40%;
        width: 40%;
        margin-left: 60%; } }
    @media all and (max-width: 500px) {
      section.graphic div.graphic-container {
        min-width: 40%;
        max-width: 40%;
        width: 40%;
        margin-left: 60%; } }
    @media all and (max-width: 300px) {
      section.graphic div.graphic-container {
        min-width: 40%;
        max-width: 40%;
        width: 40%;
        margin-left: 60%; } }
    section.graphic div.graphic-container img, section.graphic div.graphic-container video {
      position: absolute;
      bottom: 0;
      right: 0%;
      height: 100%;
      width: auto;
      object-fit: cover;
      object-position: bottom;
      pointer-events: none !important;
      max-width: 100% !important; }
    section.graphic div.graphic-container div.dynamic-container {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      mix-blend-mode: lighten;
      z-index: 2;
      opacity: 0;
      animation: fade-in 1.5s ease-in-out 1.325s 1 normal forwards; }
    section.graphic div.graphic-container img.static {
      z-index: 4;
      opacity: 0;
      animation: fade-in 2.5s ease-in-out 5s 1 normal forwards; }
    section.graphic div.graphic-container img.dynamic {
      z-index: 2;
      mix-blend-mode: lighten;
      opacity: 1;
      animation: fade-out 0s ease-in-out 11s 1 normal forwards; }
    section.graphic div.graphic-container img.shell {
      z-index: 3;
      opacity: 1;
      animation: fade-out 0s ease-in-out 7s 1 normal forwards; }
      section.graphic div.graphic-container img.shell.shell-1 {
        right: 1px;
        transform: scaleX(0);
        transform-origin: 0 50%;
        animation: scale-x-up 1.75s ease-in-out 1.325s 1 normal forwards; }
      section.graphic div.graphic-container img.shell.shell-2 {
        transform: scaleY(0);
        transform-origin: 50% 0;
        animation: scale-y-up 2.25s ease-in-out 1.325s 1 normal forwards; }
      section.graphic div.graphic-container img.shell.shell-3 {
        transform: scaleX(0);
        transform-origin: 100% 50%;
        animation: scale-x-up 2s ease-in-out 1.325s 1 normal forwards; }
    section.graphic div.graphic-container video {
      z-index: 1;
      opacity: 1;
      height: 100vh; }
    section.graphic div.graphic-container::after {
      z-index: 2;
      content: '';
      background-color: #242528;
      background-image: url("../images/background.jpg");
      background-repeat: repeat;
      width: 100%;
      height: 100vh;
      position: absolute;
      top: 0;
      left: -100%;
      transform: translateY(-100%);
      animation: slide-in-left 1.75s ease-in-out 1.325s 1 normal forwards; }

section#content {
  position: absolute;
  z-index: 10;
  overflow: visible;
  animation-name: fade-in;
  animation-delay: 0s;
  animation-duration: 0.5s;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  top: 50px;
  left: 50px;
  min-width: calc( 50% - 50px);
  max-width: calc( 50% - 50px);
  width: calc( 50% - 50px);
  min-height: calc( 100vh - 100px);
  max-height: calc( 100vh - 100px);
  height: calc( 100vh - 100px); }
  @media all and (max-width: 1080px) {
    section#content {
      min-width: calc( 55% - 50px);
      max-width: calc( 55% - 50px);
      width: calc( 55% - 50px);
      min-height: calc( 100vh - 100px);
      max-height: calc( 100vh - 100px);
      height: calc( 100vh - 100px); } }
  @media all and (max-width: 992px) {
    section#content {
      top: 40px;
      left: 40px;
      min-width: calc( 60% - 40px);
      max-width: calc( 60% - 40px);
      width: calc( 60% - 40px);
      min-height: calc( 100vh - 80px);
      max-height: calc( 100vh - 80px);
      height: calc( 100vh - 80px); } }
  @media all and (max-width: 768px) {
    section#content {
      top: 30px;
      left: 30px;
      min-width: calc( 60% - 30px);
      max-width: calc( 60% - 30px);
      width: calc( 60% - 30px);
      min-height: calc( 100vh - 60px);
      max-height: calc( 100vh - 60px);
      height: calc( 100vh - 60px); } }
  @media all and (max-width: 500px) {
    section#content {
      top: 20px;
      left: 20px;
      min-width: calc( 60% - 20px);
      max-width: calc( 60% - 20px);
      width: calc( 60% - 20px);
      min-height: calc( 100vh - 40px);
      max-height: calc( 100vh - 40px);
      height: calc( 100vh - 40px); } }
  @media all and (max-width: 300px) {
    section#content {
      top: 15px;
      left: 15px;
      min-width: calc( 60% - 15px);
      max-width: calc( 60% - 15px);
      width: calc( 60% - 15px);
      min-height: calc( 100vh - 30px);
      max-height: calc( 100vh - 30px);
      height: calc( 100vh - 30px); } }
  section#content div.title {
    color: #ffffff;
    background: #292d33;
    padding: 25px;
    width: auto;
    height: auto;
    left: 0;
    top: 0;
    pointer-events: none !important;
    filter: blur(2px);
    animation-name: blur-in;
    animation-delay: 0s;
    animation-duration: 5s;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out; }
    section#content div.title h1 {
      font-family: Lato, sans-serif !important;
      margin: 0;
      padding: 0; }
      section#content div.title h1 span:first-of-type {
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 300;
        font-size: 1.25rem;
        line-height: 1.2;
        display: block; }
      section#content div.title h1 span:last-of-type {
        letter-spacing: 1.2px;
        font-weight: 400;
        font-size: 3rem;
        line-height: 1.1;
        margin-top: 15px;
        display: block; }
  section#content div.block {
    width: 262px;
    top: 35px;
    left: 50px;
    height: 146px;
    background-color: #087b78;
    filter: blur(2px);
    animation-name: blur-in;
    animation-delay: 0s;
    animation-duration: 5s;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    pointer-events: none !important; }
  section#content div.halftone {
    width: 262px;
    top: 20px;
    left: 100px;
    height: 186px;
    background-image: url("../images/halftone.png");
    background-repeat: repeat;
    background-size: 22%;
    filter: blur(2px);
    animation-name: blur-in;
    animation-delay: 0s;
    animation-duration: 5s;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    pointer-events: none !important; }
