.covera {
  position: absolute;
  top: 151px;
  z-index: 2;
  opacity: 1;
}
.cover_open {
  position: absolute;
  top: 106px;
  z-index: 1;
  transform: scale(0.6) translateX(44px) scaleY(0.2) rotate(14deg)
    translateY(70px) rotateY(-50deg) scaleX(1.8);
  opacity: 0;
  animation: covero;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 10;
}

.covera svg {
  fill: #999788;
}

/* @keyframes covero {
    0% {opacity: 0;}
    100% {opacity: 1;transform:scale(0.6) translateX(44px) scaleY(1.3) rotate(-3deg) translateY(0px)}
  }  */

.message {
  position: absolute;
  top: 150px;
  z-index: 3;
  animation: showmessage;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  opacity: 0;
  text-shadow: 0px 1px 3px #ffd679;
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

@keyframes showmessage {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1.5);
  }
}

@media only screen and (max-width: 600px) {
  .steps,
  .steps1 {
    padding-left: 0px !important;
  }
  .message h2 {
    font-size: 1em !important;
  }
}
