/*-------------------------------------------Background Image---------------------------------------------*/
#bg {
  width: 100%;
  height: auto;
}

/*-------------------------------------------Redirect Button---------------------------------------------*/
.redirect-btn {
  top: 80%;
}

.redirect-btn img {
  width: 80%;
  animation: pulse 0.9s infinite linear;
}

.redirect-btn1 {
  top: 70%;
  z-index: 10;
}

.redirect-btn1 img {
  width: 65%;
  /* animation: pulse 0.9s infinite linear;
  animation-delay: 0.5s; */
}

.icon1 img {
  position: absolute;
  width: 20%;
  top: 62%;
  transform-origin: top right;
  animation: pulse 2s infinite linear;
}

.icon2 img {
  position: absolute;
  width: 35%;
  top: 60%;
  right: -5%;
  transform-origin: top left;
  animation: pulse 2s infinite linear;
}

.icon3 img {
  position: absolute;
  width: 15%;
  top: 30%;
  right: 0;
  transform-origin: BOTTOM left;
  animation: pulse 2s infinite linear;
}

/*-------------------------------------------Keyframe Animation---------------------------------------------*/
@keyframes pulse {
  0% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0.9);
  }
}

/*-------------------------------------------Multi Device Screen Size---------------------------------------------*/
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #bg {
    height: 100vh;
  }
}
