#masthead {
  display: none;
}

.main-title {
  top: 19.5% !important;
}

.main-title img {
  width: 87.5% !important;
}

.redirect-btn {
  top: 37.5%;
}

.normal_btn {
  width: 45%;
  position: absolute;
  left: 5%;
}

.wa_btn {
  width: 45%;
  position: absolute;
  right: 5%;
}

.add-animation {
  animation: pulse 0.8s infinite linear;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/*-----------------------------------------------Main Title-----------------------------------------------*/

.main-title {
  top: 18.3%;
}

.main-title img {
  width: 100%;

  max-width: 599px;
}

/* Large devices (desktops, 992px and up) */

@media (min-width: 992px) {
  #bg {
    height: 100vh;
  }
}

/*-------------------------------------------Title Animation---------------------------------------------*/
/* Comment if using Slide keyframe */
.add-animations-zoom {
  animation: zoomBounce 0.3s ease;
  /* animation: zoomOut 0.3s ease; */
}

/* Comment all if using Zoomout keyframe */
.add-animations {
  /*animation: frmslideLeft 0.3s ease;*/
  animation: frmslideRight 0.3s ease;
}

/* Comment all if using Zoomout keyframe */
.exit-animation {
  /*animation: toslideRight 0.3s ease;*/
  animation: toslideLeft 0.3s ease;
}

@keyframes zoomOut {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  35% {
    transform: scale(0.9);
    opacity: 0.5;
  }

  65% {
    transform: scale(1.2);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  35% {
    transform: scale(0.7);
    opacity: 0.5;
  }

  55% {
    transform: scale(1.1);
    opacity: 0.7;
  }

  65% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  85% {
    transform: scale(1.2);
    opacity: 0.9;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes frmslideLeft {
  0% {
    transform: translateX(-50%);
    opacity: 0;
  }

  50% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes toslideRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  50% {
    transform: translateX(50%);
    opacity: 0;
  }
}

@keyframes frmslideRight {
  0% {
    transform: translateX(10%);
    opacity: 0;
  }

  50% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes toslideLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  50% {
    transform: translateX(-10%);
    opacity: 0;
  }
}
