/* line 29, ../sass/main.scss */
.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  opacity: 0;
  -moz-animation: loader-animation 0.25s cubic-bezier(0, 0, 0.1, 1) 0s 1 normal forwards;
  -webkit-animation: loader-animation 0.25s cubic-bezier(0, 0, 0.1, 1) 0s 1 normal forwards;
  animation: loader-animation 0.25s cubic-bezier(0, 0, 0.1, 1) 0s 1 normal forwards;
}
@-moz-keyframes loader-animation {
  0% {
    -moz-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes loader-animation {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes loader-animation {
  0% {
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
/* line 48, ../sass/main.scss */
.loader .loader-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 56, ../sass/main.scss */
.loader .hexagon {
  width: 3.66032vw;
  height: 4.24597vw;
  -moz-animation: hexagon-animation 6s linear 0s infinite;
  -webkit-animation: hexagon-animation 6s linear 0s infinite;
  animation: hexagon-animation 6s linear 0s infinite;
}
/* line 60, ../sass/main.scss */
.loader .hexagon svg {
  fill: #e30917;
}
@-moz-keyframes hexagon-animation {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes hexagon-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes hexagon-animation {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* line 80, ../sass/main.scss */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 84, ../sass/main.scss */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* line 90, ../sass/main.scss */
body {
  background-color: #000;
  font-family: europa, sans-serif;
  font-weight: 700;
  font-size: 0;
  color: #000;
}

/* line 98, ../sass/main.scss */
.main {
  position: relative;
  opacity: 0;
  height: 100%;
}

/* line 104, ../sass/main.scss */
.responsive-video-16-9 {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
/* line 109, ../sass/main.scss */
.responsive-video-16-9 video, .responsive-video-16-9 iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 119, ../sass/main.scss */
.show .main {
  -moz-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  opacity: 1;
}

/* ==========================================================================
   Custom
   ========================================================================== */
/* line 132, ../sass/main.scss */
.container {
  background-image: url("../img/background-3.jpg");
  background-size: 100% auto;
  width: 414px;
  margin: 0 auto;
}
@media (max-width: 414px) {
  /* line 132, ../sass/main.scss */
  .container {
    width: 100%;
  }
}
/* line 143, ../sass/main.scss */
.container .container-inner {
  border: 12px solid #e30917;
  padding: 23px 34px 0;
}
@media (max-width: 414px) {
  /* line 143, ../sass/main.scss */
  .container .container-inner {
    padding: 5.55556vw 8.21256vw 0;
    border: 2.89855vw solid #e30917;
  }
}

/* line 154, ../sass/main.scss */
.logo {
  display: block;
  width: 100%;
  height: auto;
}

/* line 161, ../sass/main.scss */
.language-switch {
  color: #e30917;
  font-size: 11px;
  line-height: 12px;
  font-weight: 400;
}
@media (max-width: 414px) {
  /* line 161, ../sass/main.scss */
  .language-switch {
    font-size: 9px;
    line-height: 10px;
  }
}
/* line 174, ../sass/main.scss */
.language-switch a {
  color: #e30917;
  text-decoration: none;
}

/* line 184, ../sass/main.scss */
.red-box {
  margin: 12px auto;
  background-color: #e30917;
  font-size: 37px;
  line-height: 43px;
  letter-spacing: 0.37px;
  text-transform: uppercase;
  padding: 4px 10px 4px 10px;
  color: #f4e3c9;
}
@media (max-width: 414px) {
  /* line 184, ../sass/main.scss */
  .red-box {
    margin: 2.89855vw auto;
    font-size: 9.05797vw;
    line-height: 10.50725vw;
    letter-spacing: 0.09058vw;
    padding: 0.96618vw 2.41546vw;
  }
}

/* line 203, ../sass/main.scss */
.prices {
  margin: 12px auto;
  font-family: adobe-garamond-pro, serif;
  font-weight: 600;
  font-size: 31.5px;
  line-height: 36.5px;
  color: #e30917;
}
@media (max-width: 414px) {
  /* line 203, ../sass/main.scss */
  .prices {
    margin: 2.89855vw auto;
    font-size: 7.6087vw;
    line-height: 8.81643vw;
  }
}
/* line 217, ../sass/main.scss */
.prices .price-headline {
  color: #000;
  display: table;
  border-bottom: 2px solid #000;
  line-height: 26.5px;
  margin: 6px 0;
}
@media (max-width: 414px) {
  /* line 217, ../sass/main.scss */
  .prices .price-headline {
    margin: 0.72464vw 0;
    line-height: 6.40097vw;
  }
}

/* line 231, ../sass/main.scss */
.challenge {
  margin: 60px 0 30px;
}
@media (max-width: 414px) {
  /* line 231, ../sass/main.scss */
  .challenge {
    margin: 14.49275vw 0 7.24638vw;
  }
}
/* line 238, ../sass/main.scss */
.challenge .challenge-headline {
  color: #e30917;
  display: table;
  border-bottom: 3px solid #e30917;
  margin: 0 0 6px;
  font-size: 30px;
  line-height: 35px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
@media (max-width: 414px) {
  /* line 238, ../sass/main.scss */
  .challenge .challenge-headline {
    margin: 0 0 0.72464vw;
    font-size: 7.24638vw;
    line-height: 8.45411vw;
    letter-spacing: 0.36232vw;
  }
}
/* line 256, ../sass/main.scss */
.challenge .challenge-copy {
  font-family: adobe-garamond-pro, serif;
  font-weight: 600;
  color: #e30917;
  font-size: 26.5px;
  line-height: 32.5px;
}
/* line 263, ../sass/main.scss */
.challenge .challenge-copy a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 414px) {
  /* line 256, ../sass/main.scss */
  .challenge .challenge-copy {
    font-size: 6.40097vw;
    line-height: 7.85024vw;
  }
}

/* line 275, ../sass/main.scss */
.music {
  margin: 30px 0 50px;
}
@media (max-width: 414px) {
  /* line 275, ../sass/main.scss */
  .music {
    margin: 7.24638vw 0 12.07729vw;
  }
}
/* line 282, ../sass/main.scss */
.music .music-headline {
  color: #e30917;
  display: table;
  border-bottom: 3px solid #e30917;
  margin: 0 0 6px;
  font-size: 25px;
  line-height: 35px;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}
@media (max-width: 414px) {
  /* line 282, ../sass/main.scss */
  .music .music-headline {
    margin: 0 0 1.44928vw;
    font-size: 6.03865vw;
    line-height: 8.45411vw;
    letter-spacing: 0.30193vw;
  }
}
/* line 300, ../sass/main.scss */
.music .music-video-headline {
  font-family: adobe-garamond-pro, serif;
  font-weight: 600;
  color: #e30917;
  font-size: 20px;
  margin: 8px 0 6px;
}
@media (max-width: 414px) {
  /* line 300, ../sass/main.scss */
  .music .music-video-headline {
    font-size: 4.83092vw;
    margin: 1.93237vw 0 1.44928vw;
  }
}
/* line 313, ../sass/main.scss */
.music .music-social {
  margin: 8px 0;
}
/* line 316, ../sass/main.scss */
.music .music-social a {
  display: inline-block;
  margin: 0 8px 0 0;
}
@media (max-width: 414px) {
  /* line 316, ../sass/main.scss */
  .music .music-social a {
    margin: 0 1.93237vw 0 0;
  }
}
/* line 324, ../sass/main.scss */
.music .music-social a:last-child {
  margin: 0;
}
@media (max-width: 414px) {
  /* line 313, ../sass/main.scss */
  .music .music-social {
    margin: 1.93237vw 0;
  }
}
/* line 334, ../sass/main.scss */
.music .music-video-container {
  position: relative;
}
/* line 337, ../sass/main.scss */
.music .music-video-container .music-video-background {
  position: absolute;
  top: 26px;
  left: -34px;
  width: calc(100% + 68px);
  height: 127.5px;
  background-image: url("../img/player.png");
  background-size: cover;
}
@media (max-width: 414px) {
  /* line 337, ../sass/main.scss */
  .music .music-video-container .music-video-background {
    top: 6.28019vw;
    left: -8.45411vw;
    width: 94.68599vw;
    height: 30.7971vw;
  }
}
/* line 354, ../sass/main.scss */
.music .music-video-container .music-video {
  position: relative;
  background-color: #000;
  margin-top: 10px;
  border: 3px solid #e30917;
}
@media (max-width: 414px) {
  /* line 354, ../sass/main.scss */
  .music .music-video-container .music-video {
    margin-top: 1.20773vw;
  }
}
/* line 366, ../sass/main.scss */
.music .music-download {
  font-family: adobe-garamond-pro, serif;
  font-weight: 600;
  color: #e30917;
  font-size: 17.5px;
  line-height: 20px;
  margin: 10px 0;
}
/* line 374, ../sass/main.scss */
.music .music-download a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 414px) {
  /* line 366, ../sass/main.scss */
  .music .music-download {
    font-size: 4.22705vw;
    line-height: 4.83092vw;
    margin: 1.20773vw 0;
  }
}

/* line 387, ../sass/main.scss */
.follow {
  margin: 25px 0 35px;
}
@media (max-width: 414px) {
  /* line 387, ../sass/main.scss */
  .follow {
    margin: 6.03865vw 0 8.45411vw;
  }
}
/* line 394, ../sass/main.scss */
.follow .follow-headline {
  font-family: adobe-garamond-pro, serif;
  font-weight: 600;
  color: #e30917;
  margin: 0 0 20px;
  font-size: 26.5px;
  line-height: 31.5px;
}
/* line 402, ../sass/main.scss */
.follow .follow-headline a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 414px) {
  /* line 394, ../sass/main.scss */
  .follow .follow-headline {
    margin: 0 0 4.83092vw;
    font-size: 6.40097vw;
    line-height: 7.6087vw;
  }
}
/* line 414, ../sass/main.scss */
.follow .follow-copy {
  font-family: adobe-garamond-pro, serif;
  font-weight: 600;
  color: #e30917;
  margin: 0 0 6px;
  font-size: 17.5px;
  line-height: 21.5px;
}
/* line 422, ../sass/main.scss */
.follow .follow-copy a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 414px) {
  /* line 414, ../sass/main.scss */
  .follow .follow-copy {
    margin: 0 0 1.44928vw;
    font-size: 4.22705vw;
    line-height: 5.19324vw;
  }
}

/* line 435, ../sass/main.scss */
.footer-background {
  margin-left: -34px;
  width: calc(100% + 68px);
  height: 198px;
  background-image: url("../img/footer.png");
  background-size: cover;
}
@media (max-width: 414px) {
  /* line 435, ../sass/main.scss */
  .footer-background {
    margin-left: -8.45411vw;
    width: 94.68599vw;
    height: 47.82609vw;
  }
}

/* line 449, ../sass/main.scss */
.footer {
  font-family: adobe-garamond-pro, serif;
  font-weight: 600;
  height: 75px;
  background-color: #f5e0c3;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.7px;
  text-align: center;
  padding-top: 15px;
}
/* line 460, ../sass/main.scss */
.footer a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 414px) {
  /* line 449, ../sass/main.scss */
  .footer {
    height: 18.11594vw;
    font-size: 3.38164vw;
    letter-spacing: 0.21739vw;
    line-height: 5.07246vw;
    padding-top: 3.62319vw;
  }
}
