@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:500,700");
@font-face {
  font-family: 'Comic Sans MS';
  src: url("/assets/fonts/comici.ttf"); }
html {
  scroll-behavior: smooth; }

body, p, a, div, ul {
  margin: 0;
  padding: 0; }

body, h1, h2, h3, li, span, p, a, div {
  font-family: "Comic Sans MS", sans-serif; }

@media screen and (max-width: 350px) {
  h1 {
    font-size: 1.5rem !important; }

  h2 {
    font-size: calc(1.5rem * 0.8) !important; }

  h3 {
    font-size: calc(1.5rem * 0.65) !important; } }
h1 {
  font-size: 60px;
  text-align: center;
  color: #4B4B56; }

h2 {
  font-size: 30px;
  text-align: center;
  color: #4B4B56; }

h3 {
  font-size: 22px;
  text-align: center;
  color: #4b4b56; }

.header {
  height: 500px;
  background-image: url("/assets/images/header.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; }

nav {
  height: 80px;
  width: 100%;
  margin: 0 auto;
  background-color: #A98A6E;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 999; }
  nav ul {
    list-style-type: none; }
    nav ul li {
      font-size: 20px;
      margin: 27px;
      float: left;
      font-weight: bold; }
      nav ul li a {
        text-decoration: none; }
  @media screen and (max-width: 496px) {
    nav ul li {
      font-size: 17px;
      margin: 27px 6px; } }
  nav .mobile-nav, nav .hamburger {
    display: none; }
  nav .hamburger {
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer; }
    nav .hamburger .line {
      opacity: 1;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .25s ease-in-out;
      -moz-transition: .25s ease-in-out;
      -o-transition: .25s ease-in-out;
      transition: .25s ease-in-out; }
  nav .line:nth-child(1) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center; }
  nav .line:nth-child(2) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center; }
  nav .line:nth-child(3) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center; }
  nav .hamburger.open .line:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }
  nav .hamburger.open .line:nth-child(2) {
    width: 0;
    opacity: 0; }
  nav .hamburger.open .line:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  @media screen and (max-width: 790px) {
    nav {
      display: block; }
      nav .hamburger {
        float: right;
        display: block !important;
        margin: 18.5px 25px;
        padding: 5px 10px;
        position: relative;
        cursor: pointer; }
      nav .line {
        width: 1.6rem;
        height: 0.25rem;
        background-color: white;
        display: block;
        margin: 0.32rem auto; }
      nav .mobile-nav {
        width: 100%;
        position: absolute;
        top: 80px;
        right: 0;
        background-color: #A98A6E; }
        nav .mobile-nav ul li {
          float: none;
          text-align: center; }
      nav .desktop-nav {
        display: none !important; } }

/********** RECORDER **********/
*, *:before, *:after {
  box-sizing: border-box; }

.recorder {
  display: grid;
  place-items: center;
  padding: 75px 0;
  background: #e4d46e;
  background-image: url("/assets/images/dotnoise-light-grey.png");
  animation: static 2s steps(1) infinite; }
  .recorder .title {
    margin-bottom: 75px; }
    .recorder .title h2 {
      margin: 30px auto 0; }

@keyframes static {
  0% {
    background-position: 8100% 300%; }
  1% {
    background-position: 3600% 3500%; }
  2% {
    background-position: 2300% 8500%; }
  3% {
    background-position: 3200% 6400%; }
  4% {
    background-position: 7800% 4800%; }
  5% {
    background-position: 1400% 8000%; }
  6% {
    background-position: 5200% 7400%; }
  7% {
    background-position: 900% 9200%; }
  8% {
    background-position: 4200% 6700%; }
  9% {
    background-position: 6100% 2500%; }
  10% {
    background-position: 2200% 800%; }
  11% {
    background-position: 1100% 5200%; }
  12% {
    background-position: 4400% 1200%; }
  13% {
    background-position: 4200% 2400%; }
  14% {
    background-position: 1800% 8700%; }
  15% {
    background-position: 4700% 1100%; }
  16% {
    background-position: 8000% 3700%; }
  17% {
    background-position: 9900% 6900%; }
  18% {
    background-position: 5200% 7800%; }
  19% {
    background-position: 6200% 9900%; }
  20% {
    background-position: 800% 1500%; }
  21% {
    background-position: 6600% 9600%; }
  22% {
    background-position: 4100% 4500%; }
  23% {
    background-position: 5500% 1400%; }
  24% {
    background-position: 200% 6000%; }
  25% {
    background-position: 8500% 100%; }
  26% {
    background-position: 4100% 600%; }
  27% {
    background-position: 2700% 8700%; }
  28% {
    background-position: 900% 5000%; }
  29% {
    background-position: 2700% 9900%; }
  30% {
    background-position: 8700% 9000%; }
  31% {
    background-position: 4700% 5200%; }
  32% {
    background-position: 7200% 7500%; }
  33% {
    background-position: 9200% 4800%; }
  34% {
    background-position: 4300% 8100%; }
  35% {
    background-position: 5700% 7400%; }
  36% {
    background-position: 3400% 600%; }
  37% {
    background-position: 100% 100%; }
  38% {
    background-position: 2900% 8200%; }
  39% {
    background-position: 4300% 3700%; }
  40% {
    background-position: 2500% 6000%; }
  41% {
    background-position: 1800% 1500%; }
  42% {
    background-position: 9700% 8700%; }
  43% {
    background-position: 5700% 2100%; }
  44% {
    background-position: 8700% 5600%; }
  45% {
    background-position: 2800% 4500%; }
  46% {
    background-position: 4600% 6200%; }
  47% {
    background-position: 3700% 8800%; }
  48% {
    background-position: 4000% 5000%; }
  49% {
    background-position: 9900% 4500%; }
  50% {
    background-position: 5300% 1600%; }
  51% {
    background-position: 6800% 2600%; }
  52% {
    background-position: 9500% 8300%; }
  53% {
    background-position: 300% 7100%; }
  54% {
    background-position: 4300% 8100%; }
  55% {
    background-position: 5700% 800%; }
  56% {
    background-position: 1600% 6100%; }
  57% {
    background-position: 9900% 9300%; }
  58% {
    background-position: 600% 7800%; }
  59% {
    background-position: 9000% 200%; }
  60% {
    background-position: 2000% 5800%; }
  61% {
    background-position: 7100% 1500%; }
  62% {
    background-position: 3100% 2800%; }
  63% {
    background-position: 7900% 1800%; }
  64% {
    background-position: 7500% 6400%; }
  65% {
    background-position: 3000% 5800%; }
  66% {
    background-position: 9800% 7900%; }
  67% {
    background-position: 5200% 3900%; }
  68% {
    background-position: 9600% 2700%; }
  69% {
    background-position: 6800% 3100%; }
  70% {
    background-position: 8000% 6900%; }
  71% {
    background-position: 2600% 2200%; }
  72% {
    background-position: 8600% 3600%; }
  73% {
    background-position: 5100% 1800%; }
  74% {
    background-position: 8400% 2300%; }
  75% {
    background-position: 8600% 1000%; }
  76% {
    background-position: 6000% 2400%; }
  77% {
    background-position: 9700% 6800%; }
  78% {
    background-position: 3200% 7400%; }
  79% {
    background-position: 5200% 1800%; }
  80% {
    background-position: 4400% 6400%; }
  81% {
    background-position: 7800% 7900%; }
  82% {
    background-position: 9900% 700%; }
  83% {
    background-position: 4300% 1500%; }
  84% {
    background-position: 2600% 3900%; }
  85% {
    background-position: 4100% 4400%; }
  86% {
    background-position: 8300% 5400%; }
  87% {
    background-position: 8700% 4100%; }
  88% {
    background-position: 9900% 8000%; }
  89% {
    background-position: 3900% 4100%; }
  90% {
    background-position: 2300% 6300%; }
  91% {
    background-position: 6200% 8800%; }
  92% {
    background-position: 5600% 500%; }
  93% {
    background-position: 2700% 9200%; }
  94% {
    background-position: 100% 8600%; }
  95% {
    background-position: 2700% 7000%; }
  96% {
    background-position: 4200% 7900%; }
  97% {
    background-position: 3800% 9300%; }
  98% {
    background-position: 9000% 400%; } }
a.recorder {
  position: fixed;
  bottom: 0;
  text-align: center;
  width: 100%;
  padding: 10px;
  font-family: 'Roboto', sans-serif;
  color: rgba(0, 0, 0, 0.3);
  z-index: 12; }

.cassette {
  width: 554px;
  height: 350px;
  background: #4b4b56;
  border-radius: 10px;
  border: 4px solid #353535;
  position: relative; }
  @media (max-width: 600px) {
    .cassette {
      width: 300px;
      height: 190px;
      font-size: 0.55em; } }
  @media (max-width: 400px) {
    .cassette {
      width: 200px;
      height: 126.6px;
      font-size: 0.4em; } }
  .cassette:after {
    display: block;
    content: '';
    width: 104%;
    height: 30%;
    margin-left: -2%;
    background: #4b4b56;
    border-radius: 10px;
    bottom: 7%;
    position: absolute;
    z-index: -1;
    border: 4px solid #353535; }
  .cassette:before {
    display: block;
    content: '';
    width: 89%;
    height: 4px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    top: 3%;
    position: relative; }
  .cassette .label {
    width: 90%;
    height: 64%;
    position: relative;
    margin: auto;
    top: 7%;
    border-radius: 8px;
    box-shadow: inset 0 0 0 4px #353535;
    background: linear-gradient(#e6584c 8%, #f8f8f8 8%, #f8f8f8 30%, #484848 30%, #484848 31.5%, #f8f8f8 31.5%, #f8f8f8 36%, #484848 36%, #484848 37.5%, #f8f8f8 37.5%, #f8f8f8 39%, #484848 39%, #484848 40.5%, #f8f8f8 40.5%, #f8f8f8 42%, #484848 42%, #484848 43.5%, #f8f8f8 43.5%, #f8f8f8 45%, #484848 45%, #484848 46.5%, #f8f8f8 46.5%, #f8f8f8 48%, #484848 48%, #484848 49.5%, #f8f8f8 49.5%, #f8f8f8 51%, #484848 51%, #484848 52.5%, #f8f8f8 52.5%, #f8f8f8 54%, #484848 54%, #484848 55.5%, #f8f8f8 55.5%, #f8f8f8 57%, #484848 57%, #484848 58.5%, #f8f8f8 58.5%, #f8f8f8 60%, #484848 60%, #484848 61.5%, #f8f8f8 61.5%, #f8f8f8 63%, #484848 63%, #484848 64.5%, #f8f8f8 64.5%, #f8f8f8 66%, #484848 66%, #484848 67.5%, #f8f8f8 67.5%, #f8f8f8 69%, #484848 69%, #484848 70.5%, #f8f8f8 70.5%, #f8f8f8 72%, #484848 72%, #484848 73.5%, #f8f8f8 73.5%, #f8f8f8 75%, #484848 75%, #484848 76.5%, #f8f8f8 76.5%, #f8f8f8 78%, #484848 78%, #484848 79.5%, #f8f8f8 79.5%, #f8f8f8 81%, #484848 81%, #484848 82.5%); }
    .cassette .label:before {
      position: absolute;
      display: block;
      top: 12%;
      left: 3%;
      content: 'B';
      padding: 3px;
      text-align: center;
      width: 1.3em;
      height: 1.3em;
      color: #f8f8f8;
      font-weight: bold;
      font-size: 1.4em;
      background: #4b4b56;
      border-radius: 1px; }
    .cassette .label:after {
      position: absolute;
      display: block;
      content: 'N.R. [\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0] ☐\fe0e IN ☒\fe0e OUT';
      font-weight: 700;
      font-family: 'Roboto', sans-serif;
      font-size: 0.9em;
      top: 22%;
      right: 3%;
      color: #4b4b56; }
    .cassette .label .cutout {
      width: 70%;
      height: 46%;
      position: relative;
      margin: auto;
      top: 36%;
      background: #4b4b56;
      border-radius: 3px;
      box-shadow: inset 0 0 0 4px #353535; }
      .cassette .label .cutout:before {
        position: absolute;
        display: block;
        content: 'Eddy goes back to the beginning';
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.85em;
        font-weight: 500;
        font-family: 'Roboto', sans-serif;
        bottom: -25%; }
      .cassette .label .cutout:after {
        position: absolute;
        display: block;
        content: 'A 70';
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.5em;
        font-weight: bold;
        top: 100%;
        right: 0;
        background: #e6584c;
        background-image: linear-gradient(90deg, #e6584c 44%, rgba(255, 255, 255, 0.8) 44%, rgba(255, 255, 255, 0.8) 45%, #e6584c 45%);
        height: 36%;
        padding: 1.2% 5%;
        box-shadow: inset 0 0 0 8px #e6584c;
        font-family: 'Roboto', sans-serif; }
      .cassette .label .cutout .reel_hole {
        position: absolute;
        background: #adadad;
        width: 20%;
        top: 15%;
        border: 3px solid #353535;
        box-shadow: 0 0 0 3px #4b4b56, 0 0 0 5px #353535;
        border-radius: 50%;
        right: 5.5%; }
        .cassette .label .cutout .reel_hole:after {
          content: '';
          display: block;
          padding-bottom: 100%;
          box-shadow: inset 0 0 0 6px #adadad;
          background: #353535;
          border-radius: 50%; }
        .cassette .label .cutout .reel_hole:before {
          position: absolute;
          display: block;
          content: '';
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          border-radius: 50%;
          background: #e4d46e;
          transform: scale(0.75);
          z-index: 10; }
        .cassette .label .cutout .reel_hole:first-of-type {
          left: 5.5%; }
        .cassette .label .cutout .reel_hole .gear {
          position: absolute;
          width: 14%;
          height: 86%;
          background: #e4d46e;
          top: 50%;
          left: 50%;
          margin-left: -7%;
          margin-top: -43%;
          box-shadow: 0 0 0 2px #353535;
          animation: gears 3.5s linear infinite alternate; }
          .cassette .label .cutout .reel_hole .gear:before, .cassette .label .cutout .reel_hole .gear:after {
            display: block;
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: #e4d46e;
            top: 0;
            left: 0;
            box-shadow: 0 0 0 2px #353535;
            transform: rotate(240deg); }
          .cassette .label .cutout .reel_hole .gear:after {
            transform: rotate(120deg);
            width: 220%;
            top: 2%;
            left: -75%;
            background: none;
            box-shadow: -2px -2px 0 0 #353535;
            background-image: linear-gradient(90deg, #e4d46e calc(50% - 1px), #353535 calc(50% - 1px), #353535 calc(50% + 1px), #e6584c calc(50% + 2px)), linear-gradient(#e4d46e calc(100% - 2px), #353535 calc(100% - 2px));
            background-size: 100% 50%, 50% 100%;
            background-repeat: no-repeat; }
@keyframes gears {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(2160deg); } }
      .cassette .label .cutout .window {
        position: absolute;
        background: #e4d46e;
        width: 40%;
        height: 68%;
        top: 15%;
        left: 30%;
        border: 3px solid #353535;
        overflow: hidden; }
        .cassette .label .cutout .window:after {
          display: block;
          position: absolute;
          background: linear-gradient(transparent 13%, rgba(255, 255, 255, 0.4) 13%, rgba(255, 255, 255, 0.4) 24%, transparent 24%, transparent 34%, rgba(255, 255, 255, 0.4) 34%, rgba(255, 255, 255, 0.4) 50%, transparent 50%);
          content: '';
          width: 100%;
          height: 100%; }
        .cassette .label .cutout .window .spool {
          position: absolute;
          top: -22%;
          width: 70%;
          background: #adadad;
          border: 3px solid #353535;
          border-radius: 50%;
          box-shadow: 0 0 0 10px #626262, 0 0 0 13px #353535; }
          .cassette .label .cutout .window .spool:after {
            content: '';
            display: block;
            padding-bottom: 100%; }
          .cassette .label .cutout .window .spool:first-of-type {
            left: -64%;
            animation: spooling 3.5s linear infinite alternate; }
          .cassette .label .cutout .window .spool:last-of-type {
            right: -64%;
            animation: spooling 3.5s linear infinite alternate-reverse; }
@keyframes spooling {
  from {
    box-shadow: 0 0 0 0.5em #626262, 0 0 0 calc(0.5em + 3px) #353535; }
  to {
    box-shadow: 0 0 0 5em #626262, 0 0 0 calc(5em + 3px) #353535; } }
  .cassette .head {
    width: 60%;
    height: 25.5%;
    position: absolute;
    margin-left: 20%;
    bottom: -4%; }
    .cassette .head:before, .cassette .head:after {
      display: block;
      content: '';
      width: 70%;
      height: 100%;
      position: absolute;
      background: #4b4b56;
      border: 4px solid #353535;
      background-image: linear-gradient(rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
      background-repeat: no-repeat;
      background-position: 15% 8%;
      background-size: 100% 4px; }
    .cassette .head:before {
      transform: skew(-15deg);
      left: -8%;
      border-right: none;
      border-radius: 10px 0 0  10px;
      box-shadow: inset 6px 0 0 0 #4b4b56; }
    .cassette .head:after {
      transform: skew(15deg);
      right: -8%;
      border-left: none;
      border-radius: 0 10px 10px 0;
      box-shadow: inset -6px 0 0 0 #4b4b56; }
  .cassette .screw {
    position: absolute;
    text-align: right;
    top: 7%;
    left: 4%; }
    .cassette .screw:before {
      content: '\20e0\fe0e';
      font-size: 1.1em;
      color: #353535;
      font-weight: bold;
      position: absolute;
      right: 0;
      bottom: 0; }
    .cassette .screw.i2 {
      right: 1%; }
      .cassette .screw.i2:before {
        transform: rotate(90deg); }
    .cassette .screw.i3 {
      bottom: 1%; }
      .cassette .screw.i3:before {
        transform: rotate(-30deg); }
    .cassette .screw.i4 {
      right: 1%;
      bottom: 1%; }
      .cassette .screw.i4:before {
        transform: rotate(-90deg); }
    .cassette .screw.i5 {
      left: calc(50% + 0.5em);
      bottom: 9%; }
      .cassette .screw.i5:before {
        transform: rotate(45deg); }
  .cassette .hole {
    width: 5%;
    background: #e4d46e;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #353535;
    bottom: 0;
    left: 50%;
    margin-left: -2.5%; }
    .cassette .hole:after {
      content: '';
      display: block;
      padding-bottom: 100%; }
    .cassette .hole.i1 {
      bottom: 0%;
      left: 28%; }
    .cassette .hole.i2 {
      bottom: 2%;
      left: 38%; }
    .cassette .hole.i3 {
      bottom: 0%;
      left: 72%; }
    .cassette .hole.i4 {
      bottom: 2%;
      left: 62%; }

/********** IMAGE-GALLERY **********/
#gallery {
  display: grid;
  height: calc(180vh - 10px);
  grid-template: repeat(16, 1fr)/repeat(8, 1fr);
  grid-gap: 0.5em; }
  @media screen and (max-width: 1200px) {
    #gallery {
      height: calc(130vh - 10px); } }
  @media (max-width: 800px) {
    #gallery {
      display: flex;
      align-items: flex-start;
      flex-wrap: wrap;
      justify-content: center;
      height: 100%; }
      #gallery > div {
        width: 75%;
        height: 250px;
        margin: 1%; } }
    @media (max-width: 800px) and (max-width: 350px) {
      #gallery > div {
        width: 98%; } }

  #gallery > div {
    grid-column: span 2;
    grid-row: span 2; }
    #gallery > div:nth-child(8n + 1) {
      grid-column: span 2;
      grid-row: span 2; }
    #gallery > div:nth-child(2) {
      grid-column: span 4;
      grid-row: span 3; }
    #gallery > div:nth-child(4) {
      grid-column: span 2;
      grid-row: span 3; }
    #gallery > div:nth-child(7) {
      grid-column: span 2;
      grid-row: span 3; }
    #gallery > div:nth-child(9) {
      grid-column: span 2;
      grid-row: span 4; }
    #gallery > div:nth-child(10) {
      grid-column: span 2;
      grid-row: span 4; }
    #gallery > div:nth-child(13) {
      grid-column: span 2;
      grid-row: span 3; }
    #gallery > div:nth-child(19) {
      grid-column: span 4;
      grid-row: span 3; }
    #gallery > div:nth-child(21) {
      grid-column: span 2;
      grid-row: span 3; }
    #gallery > div > a {
      position: absolute;
      font: bold 4em "Helvetica";
      color: #000;
      background-color: #000;
      text-shadow: 0 -1px 5px #fff, -1px 0px 5px #fff, 0 1px 5px #fff, 1px 0px 5px #fff;
      min-width: 100%;
      min-height: 100%;
      width: 100%;
      height: auto;
      transition: all ease 1s; }
      #gallery > div > a img {
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transition: all ease 1s; }
        #gallery > div > a img:hover {
          -webkit-filter: brightness(65%); }
  #gallery > div {
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 20px 0 rgba(0, 0, 0, 0.19); }
  #gallery div,
  #gallery a {
    display: flex;
    justify-content: center;
    text-decoration: none; }

/********** COUNTDOWN **********/
#birthday-countdown {
  padding: 75px 0 125px;
  background: #8fe2ec;
  background-image: url("/assets/images/dotnoise-light-grey.png"); }
  #birthday-countdown .container {
    color: #4B4B56;
    margin: 0 auto;
    text-align: center; }
  #birthday-countdown h1 {
    font-weight: normal;
    letter-spacing: .125rem;
    text-transform: uppercase; }
  #birthday-countdown li {
    display: inline-block;
    font-size: 1.5em;
    list-style-type: none;
    padding: 1em;
    text-transform: uppercase; }
  #birthday-countdown li span {
    display: block;
    font-size: 4.5rem; }
  #birthday-countdown .emoji {
    display: none;
    padding: 1rem; }
  #birthday-countdown .emoji span {
    font-size: 4rem;
    padding: 0 .5rem; }
  @media all and (max-width: 768px) {
    #birthday-countdown h1 {
      font-size: calc(1.5rem * 0.75); }
    #birthday-countdown li {
      font-size: calc(1.125rem * 0.75); }
    #birthday-countdown li span {
      font-size: calc(3.375rem * 0.75); } }

/********** MOTTO **********/
#motto {
  padding: 75px 0 125px;
  min-height: 750px;
  background: #8fe2ec;
  background-image: url("/assets/images/dotnoise-light-grey.png"); }
  #motto .container {
    color: #4B4B56;
    margin: 0 auto;
    text-align: center; }
    #motto .container .icon-cards {
      position: relative;
      display: inline;
      margin: 0 auto;
      color: white; }
      #motto .container .icon-cards__content {
        position: relative;
        width: 100%;
        height: 100%; }
      #motto .container .icon-cards__item {
        position: relative;
        margin: 0 auto 30px;
        padding-bottom: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-radius: 6px;
        transform-origin: center;
        flex-direction: column; }
        #motto .container .icon-cards__item:nth-child(1) {
          background: #E74E52; }
        #motto .container .icon-cards__item:nth-child(2) {
          background: #58D3B3; }
        #motto .container .icon-cards__item:nth-child(3) {
          background: #F4D46E; }
          @media screen and (max-width: 450px) {
            #motto .container .icon-cards__item:nth-child(3) img {
              height: auto;
              width: calc(100% - 20px); } }
        #motto .container .icon-cards__item:nth-child(4) {
          background: #E74E52; }
        #motto .container .icon-cards__item:nth-child(5) {
          background: #58D3B3; }
        #motto .container .icon-cards__item:nth-child(6) {
          background: #F4D46E; }
        #motto .container .icon-cards__item img {
          height: 250px;
          width: auto; }
    @media screen and (min-width: 850px) {
      #motto .container .icon-cards {
        display: block;
        width: 60vw;
        height: 40vw;
        max-width: 380px;
        max-height: 250px;
        perspective: 1000px;
        transform-origin: center; }
        #motto .container .icon-cards__content {
          position: absolute;
          width: 100%;
          height: 100%;
          transform-origin: center;
          transform-style: preserve-3d;
          transform: translateZ(-30vw) rotateY(0);
          animation: carousel 20s infinite cubic-bezier(0.77, 0, 0.175, 1) forwards; }
          #motto .container .icon-cards__content.step-animation {
            animation: carousel 8s infinite steps(1) forwards; }
        #motto .container .icon-cards__item {
          position: absolute;
          margin-bottom: 0;
          padding-bottom: 0;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          width: 60vw;
          height: 40vw;
          max-width: 380px;
          max-height: 375px;
          transform-origin: center;
          flex-direction: column; }
          #motto .container .icon-cards__item:nth-child(1) {
            transform: rotateY(0) translateZ(40vw); }
          #motto .container .icon-cards__item:nth-child(2) {
            transform: rotateY(60deg) translateZ(40vw); }
          #motto .container .icon-cards__item:nth-child(3) {
            transform: rotateY(120deg) translateZ(40vw); }
          #motto .container .icon-cards__item:nth-child(4) {
            transform: rotateY(180deg) translateZ(40vw); }
          #motto .container .icon-cards__item:nth-child(5) {
            transform: rotateY(240deg) translateZ(40vw); }
          #motto .container .icon-cards__item:nth-child(6) {
            transform: rotateY(300deg) translateZ(40vw); }
      @keyframes carousel {
        0%,  5.75% {
          transform: translateZ(-40vw) rotateY(0); }
        15.75%, 21.25% {
          transform: translateZ(-40vw) rotateY(-60deg); }
        31.25%, 37% {
          transform: translateZ(-40vw) rotateY(-120deg); }
        47%, 52.75% {
          transform: translateZ(-40vw) rotateY(-180deg); }
        62.75%, 68.5% {
          transform: translateZ(-40vw) rotateY(-240deg); }
        78.5%, 84.25% {
          transform: translateZ(-40vw) rotateY(-300deg); }
        94.25%, 100% {
          transform: translateZ(-40vw) rotateY(-360deg); } } }
    #motto .container .checkbox__checkbox {
      position: relative;
      top: 0;
      width: 1.0625rem;
      height: 1.0625rem;
      background: white;
      border: 1px solid currentColor;
      border-radius: 4px;
      vertical-align: middle;
      transition: background 0.1s ease;
      cursor: pointer; }
      #motto .container .checkbox__checkbox::after {
        content: '';
        position: absolute;
        top: 1px;
        left: 5px;
        width: 5px;
        height: 11px;
        opacity: 0;
        transform: rotate(45deg) scale(0);
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transition: all 0.3s ease;
        transition-delay: 0.15s; }
    #motto .container > .checkbox__checkbox {
      border-color: transparent;
      background: #F47956;
      animation: jelly 1s ease; }
      #motto .container > .checkbox__checkbox:after {
        opacity: 1;
        transform: rotate(45deg) scale(1); }
@keyframes jelly {
  from {
    transform: scale(1, 1); }
  30% {
    transform: scale(1.25, 0.75); }
  40% {
    transform: scale(0.75, 1.25); }
  50% {
    transform: scale(1.15, 0.85); }
  65% {
    transform: scale(0.95, 1.05); }
  75% {
    transform: scale(1.05, 0.95); }
  to {
    transform: scale(1, 1); } }
    #motto .container h1 {
      letter-spacing: .125rem;
      text-transform: uppercase; }

/********** ANMELDUNG **********/
#anmeldung {
  padding: 50px 0;
  background: #e4d46e;
  background-image: url("/assets/images/dotnoise-light-grey.png"); }

button {
  overflow: visible; }

button, select {
  text-transform: none; }

button, input, select, textarea, .errors {
  color: #4B4B56;
  font: inherit;
  margin: 0; }

.errors {
  margin-bottom: 30px; }

input {
  line-height: normal; }

textarea {
  overflow: auto; }

#container {
  border: solid 3px #4B4B56;
  max-width: 768px;
  margin: 60px auto 0;
  position: relative; }
  #container h1 {
    color: #4B4B56;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 7px;
    text-align: center;
    text-transform: uppercase; }

form {
  padding: 37.5px;
  margin: 50px 0; }

.underline {
  border-bottom: solid 2px #4B4B56;
  margin: -0.512em auto;
  width: 80px; }

.icon_wrapper {
  margin: 50px auto 0;
  width: 100%; }

.icon {
  display: block;
  fill: #4B4B56;
  height: 50px;
  margin: 0 auto;
  width: 50px; }

input[type='text'], [type='email'], [type='tel'], select, textarea {
  background: none;
  outline: none;
  border: none;
  border-bottom: solid 2px #4B4B56;
  color: #4B4B56;
  font-size: 1.000em;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0em 0 1.875em 0;
  padding: 0 0 0.875em 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

input[type='text']:focus, [type='email']:focus, textarea:focus {
  outline: none;
  padding: 0 0 0.875em 0; }

.message {
  float: none; }

.adults {
  float: left;
  width: 45%; }

.children {
  float: right;
  width: 45%; }

select {
  background: url("https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-down-32.png") no-repeat right;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none; }

select::-ms-expand {
  display: none; }

.subject {
  width: 100%; }

.telephone {
  width: 100%; }

textarea {
  line-height: 150%;
  height: 150px;
  resize: none;
  width: 100%; }

::-webkit-input-placeholder {
  color: #4B4B56; }

:-moz-placeholder {
  color: #4B4B56;
  opacity: 1; }

::-moz-placeholder {
  color: #4B4B56;
  opacity: 1; }

:-ms-input-placeholder {
  color: #4B4B56; }

#form_button {
  background: none;
  border: solid 2px #4B4B56;
  color: #4B4B56;
  cursor: pointer;
  display: inline-block;
  font-size: 1.000em;
  font-weight: bold;
  outline: none;
  padding: 20px 35px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

#form_button:hover {
  background: #4B4B56;
  background-image: url("/assets/images/dotnoise-light-grey.png");
  color: #e4d46e; }

@media screen and (max-width: 768px) {
  #container {
    margin: 20px auto;
    width: 95%; } }
@media screen and (max-width: 480px) {
  #anmeldung h1 {
    font-size: 26px; }
  #anmeldung .underline {
    width: 68px; }
  #anmeldung #form_button {
    padding: 15px 25px; } }
@media screen and (max-width: 420px) {
  #anmeldung h1 {
    font-size: 18px; }
  #anmeldung .icon {
    height: 35px;
    width: 35px; }
  #anmeldung .underline {
    width: 53px; }
  #anmeldung input[type='text'], #anmeldung input[type='tel'], #anmeldung [type='email'], #anmeldung select, #anmeldung textarea {
    font-size: 0.875em; } }
@media screen and (max-width: 496px) {
  #anmeldung .name, #anmeldung .email, #anmeldung .adults, #anmeldung .children {
    float: none;
    width: 100%; } }

/*# sourceMappingURL=style.css.map */
