/*star*/
@keyframes starShow {
  0% {
    opacity: .4;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: .4;
  }
}
@-webkit-keyframes starShow {
  0% {
    opacity: .4;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: .4;
  }
}
/*end- star*/
@keyframes myfirst {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes myfirst

  /* Safari and Chrome */ {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.top-banner {
  -webkit-transform: translateY(-110px);
  -ms-transform: translateY(-110px);
  transform: translateY(-110px);
  position: relative;
  z-index: -1;
}
.top-banner .content {
  background: url("../../images/my-img/back/background.jpg") no-repeat;
  background-color: #020205;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.top-banner .content > .bottom {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.content > .bottom > .tier-one {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.content > .bottom > .tier-one > img {
  width: 70% !important;
  height: auto !important;
  border-radius: 50% !important;
  animation: myfirst 15s linear infinite;
  -o-animation: myfirst 15s linear infinite;
  -moz-animation: myfirst 15s linear infinite;
  -webkit-animation: myfirst 15s linear infinite;
}
.top-banner .tier-two {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.top-banner .tier-two > img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 50%;
  height: auto !important;
}
.top-banner .tier-three {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.top-banner .tier-four,
.top-banner .tier-four > .star {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.top-banner .star-box > .star > img {
  position: absolute;
  width: .8%;
  height: auto !important;
  animation: starShow 5s linear infinite;
  -o-animation: starShow 5s linear infinite;
  -moz-animation: starShow 5s linear infinite;
  -webkit-animation: starShow 5s linear infinite;
}
.top-banner .content {
  overflow: hidden;
}
.top-banner .ladder {
  display: inline-block;
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transform: perspective(60px) rotateX(10deg);
  transform: perspective(60px) rotateX(10deg);
  overflow: hidden;
}
.top-banner .ladder img {
  display: inline-block;
}
.top-banner .ladder-ani {
  animation: run 1.5s linear infinite;
  -webkit-animation: run 1.5s linear infinite;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
