html {
  background: #45006D;
  background: -webkit-gradient(linear, left top, left bottom, from(#562066), color-stop(50%, #270D56));
  background: linear-gradient(#562066, #270D56 50%);
  min-height: 100vh;
  color: #fff;
}

body {
  margin: 0 auto;
  background: url("../_img/bg.jpg") no-repeat center;
  background-size: cover;
  min-height: 3351px;
  max-width: 1920px;
  -webkit-box-shadow: 0 0 10rem rgba(158, 62, 255, 0.5), 0 0.25rem 0.5rem black;
          box-shadow: 0 0 10rem rgba(158, 62, 255, 0.5), 0 0.25rem 0.5rem black;
}

/*=====================*/
/* TOP SOCIAL-LINK BAR */
#header {
  position: fixed;
  padding: 0 15px;
  background: #fa298b;
  height: 108px;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  -webkit-box-shadow: 0 0.25rem 0.5rem rgba(39, 0, 61, 0.5);
          box-shadow: 0 0.25rem 0.5rem rgba(39, 0, 61, 0.5);
}

#header .nav {
  max-width: 1000px;
  margin: 0 auto;
  height: 100%;
}

#header ul {
  float: right;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

#header li {
  display: inline-table;
  height: 100%;
}

#header li > * {
  display: table-cell;
  vertical-align: middle;
}

.logo-link {
  display: table;
  float: left;
  height: 100%;
  width: 33.3%;
}

.logo-link > * {
  display: table-cell;
  vertical-align: middle;
}

.logo-link .logo {
  width: 100%;
}

.logo-link:hover, .logo-link:focus {
  -webkit-filter: drop-shadow(0 0 0.5em rgba(255, 255, 255, 0.3)) drop-shadow(0 -1px 2px #fff) brightness(1.1);
          filter: drop-shadow(0 0 0.5em rgba(255, 255, 255, 0.3)) drop-shadow(0 -1px 2px #fff) brightness(1.1);
}

.social-links a {
  width: 88px;
  height: 88px;
  margin-right: 5px;
  background-size: contain !important;
}

.social-links a:hover, .social-links a:focus {
  -webkit-filter: drop-shadow(0 0 0.5em #fff);
          filter: drop-shadow(0 0 0.5em #fff);
}

.fb-link {
  background: url("../_img/icon-fb.png") center no-repeat;
}

.fb-link:hover,
.fb-link:focus {
  background: url("../_img/icon-fb-hover.png") center no-repeat;
}

.yt-link {
  background: url("../_img/icon-yt.png") center no-repeat;
}

.yt-link:hover,
.yt-link:focus {
  background: url("../_img/icon-yt-hover.png") center no-repeat;
}

.line-link {
  background: url("../_img/icon-line.png") center no-repeat;
}

.line-link:hover,
.line-link:focus {
  background: url("../_img/icon-line-hover.png") center no-repeat;
}

.home-link {
  background: url("../_img/icon-home.png") center no-repeat;
}

.home-link:hover,
.home-link:focus {
  background: url("../_img/icon-home-hover.png") center no-repeat;
}

/*===================*/
/* MAIN PAGE CONTENT */
.dl-btn {
  border: none;
  display: block;
  position: relative;
  top: 1235px;
  background: url("../_img/dl-btn-flash.png") no-repeat top;
  background-size: cover;
  overflow: hidden;
  width: 704px;
  height: 188px;
  margin: 0 auto;
  -webkit-animation: flash 1s infinite step-end;
          animation: flash 1s infinite step-end;
}

.dl-btn:hover, .dl-btn:focus {
  cursor: pointer;
  background: url("../_img/dl-btn-hover.png") no-repeat center;
  background-size: cover;
  -webkit-animation: none;
          animation: none;
}

.sr-only {
  position: fixed;
  top: -10px;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/*=======================*/
/* QR-CODE POP-UP WINDOW */
#QRcodeImg {
  position: relative;
  top: 167px;
  left: 290px;
  width: 100px;
}

#qrcodeArea {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 578px;
  height: 410px;
  margin: -205px 0 0 -289px;
  background: url("../_img/qrcodeAreaBG.png") center center no-repeat;
  display: none;
  z-index: 9;
}

.qrcodeImg {
  position: relative;
  margin: 48px 0 0 245px;
}

.qrcodeImg ul li {
  display: block;
  float: left;
  padding: 0px 20px;
  text-align: center;
  font-family: Arial;
}

.qrcodeImg img {
  width: 100px;
  height: 100px;
  border: 0;
  float: left;
  display: block;
}

.qrcodeDownloadBtn a {
  position: relative;
  width: 408px;
  height: 108px;
  display: block;
  border: 0;
  background: url("../_img/qrdownload_btn.png") top left no-repeat;
  cursor: pointer;
  margin: 260px 0 0 90px;
}

.qrcodeDownloadBtn a:hover {
  background: url("../_img/qrdownload_hover.png") top left no-repeat;
}

.closeBtn {
  position: absolute;
  top: 13px;
  left: 529px;
  display: block;
  z-index: 9;
  width: 30px;
  height: 30px;
  background: url("../_img/closeBtn.png") top left no-repeat;
  cursor: pointer;
}

#mask {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: #000;
  display: none;
  z-index: 2;
  zoom: 1;
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/*=====================*/
/* KEYFRAMES AND MEDIA */
@-webkit-keyframes flash {
  0% {
    background-position: top;
  }
  50% {
    background-position: bottom;
  }
}
@keyframes flash {
  0% {
    background-position: top;
  }
  50% {
    background-position: bottom;
  }
}

@media (max-width: 1000px) {
  body {
    min-height: 335.1vw;
    font-size: 1.6vw;
  }
  #header {
    height: 10.8vw;
  }
  .social-links a {
    width: 8.6vw;
    height: 8.6vw;
    margin-right: 0.5vw;
  }
  .dl-btn {
    top: 123.5vw;
    width: 70.4vw;
    height: 18.8vw;
  }
}
/*# sourceMappingURL=main.css.map */