body {
  overflow-x: hidden;
}

/*------------Section 1-------------*/
.section1 {
  width: 100vw;
  height: 100vh;
  position: fixed;
}

.section1 .section-background {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.section1 .section-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.section1 .section-background img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.section1 .logo {
  padding: 6px 20px;
  text-align: center;
  animation: fadeInDown .3s .1s linear both;
}

.section1 .logo img {
  max-width: 200px;
  /*filter: hue-rotate(0deg) drop-shadow(2px 4px 8px orange);*/
  animation: logoAnim 3s ease-in-out infinite;
}

.section1 .art-container {
  opacity: 0;
  animation: artContainerZoomIn 0.6s ease-in-out 0.15s both;
  padding: 20px;
}

.section1 .art {
  text-align: center;
  animation: moveYDiv1 3s ease-in-out infinite;
}

.section1 .art img {
  max-height: 350px;
}

.section1 .download-container {
  animation: fadeUp 0.6s ease-in-out 0.3s both;
  opacity: 0;
  font-size: 72px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px;
  text-align: center;
}

.section1 a.btn-group-download {
  display: inline-block;
  position: relative;
}

.section1 .btn-group-download .bg {
  max-width: 100%;
}

.section1 .btn-group-download .btn-play {
  position: absolute;
  top: 0;
  left: 60px;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.section1 .btn-group-download .art-page2 {
  height: 100%;
  position: absolute;
  top: -20px;
  left: -50px;
  z-index: 1;
  animation: ani2 5s linear infinite;
}

.section1 .btn-group-download .art-page2 img {
  max-height: 100%;
}

/* Media min-width 992 */
@media (min-width: 992px) {


  .section1 .logo img {
    max-width: 260px;
  }

  .section1 .btn-group-download .btn-play {
    left: 100px;
    padding: 30px;
  }

  .section1 .btn-group-download .art-page2 {
    left: -80px;
  }

  .section1 .btn-group-download .art-page2 img {
    width: 240px;
  }
}

.section1 .btn-group-download a {
  line-height: 1;
  animation: clickNowAnim .4s .1s linear both;
}

/*----------------------------Light---------------------------------*/

.light {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-animation: showsss 1s ease-in-out forwards;
  animation: showsss 1s ease-in-out forwards;
  z-index: 0;
  opacity: .8;
  pointer-events: none;
}

.light img {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  display: block;
  background-size: cover
}

.light img:nth-child(1) {
  animation: light 20s infinite linear;
  -webkit-animation: light 20s infinite linear
}

.light img:nth-child(2) {
  animation: light 20s 10s infinite linear;
  -webkit-animation: light 20s 10s infinite linear;
  left: -20%;
  bottom: -50%;
}

@keyframes light {
  from {
    left: 0;
    bottom: -50%;
  }
  to {
    left: 0;
    bottom: 60%;
    opacity: .5
  }
}

/*------------------Animation------------------*/
@keyframes blink {
  0% {
    opacity: 1;
    filter: brightness(1.1);
  }

  100% {
    opacity: 1;
  }
}

@keyframes moveYDiv1 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes turn1 {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;

  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;

  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 1;
  }
}

.blink {
  animation: blink 0.5s ease-in-out infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
    filter: brightness(1.2);
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes artContainerZoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes logoAnim {
  0% {
    filter: hue-rotate(0deg) drop-shadow(2px 4px 6px orange) brightness(1);
  }

  50% {
    filter: hue-rotate(0deg) drop-shadow(2px 4px 60px orange) brightness(1.6);
  }

  100% {
    filter: hue-rotate(0deg) drop-shadow(2px 4px 6px orange) brightness(1);
  }
}

@keyframes moveYDiv1 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes moveYDiv {
  0% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-5px);
  }
}

@keyframes fadeleft {
  0% {
    right: -200px;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}

@keyframes fadeUp {
  0% {
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes ani1 {
  0% {
    left: -70px;
  }

  50% {
    left: -110px;
  }

  100% {
    left: -70px;
  }
}

@keyframes ani2 {
  0% {
    transform: none;
  }

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: none;
  }
}

@keyframes clickNowAnim {
  0% {
    transform: scale(1.8);
    opacity: 0;
  }

  60% {
    transform: scale(1);
    opacity: 1;
  }

  65% {
    transform: translate(-4px, -4px);
  }

  70% {
    transform: translate(0, 0);
  }

  75% {
    transform: translate(4px, 4px);
  }

  80% {
    transform: translate(0, 0);
  }

  85% {
    transform: translate(-4px, 4px);
  }

  90% {
    transform: translate(0, 0);
  }

  95% {
    transform: translate(4px, -4px);
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}