
.app-body {
  position: relative;
  padding: 5px 1.5rem 1rem 1.5rem;
  margin: 1rem 0;
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  min-height: calc(100vh - 100px)
}
@media(max-width: 991.98px) {
  .app-body {
    padding: 1rem
  }
}
.rays-container {
  position: absolute;
  height: 400px;
  width: 700px;
  top: -16px;
  left: 50%;
  margin-left: -350px;
  z-index: 0;
  overflow: hidden
}
.rays-container .rays {
  position: relative;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgb(156, 164, 182) 20%, rgb(255, 255, 255) 80%);
  transition: 1.5s all ease
}
.rays-container .rays:nth-child(1) {
  position: absolute;
  left: 0;
  transform: rotate(90deg)
}
.rays-container .rays:nth-child(2) {
  position: absolute;
  left: 5%;
  transform: rotate(75deg)
}
.rays-container .rays:nth-child(3) {
  position: absolute;
  right: 5%;
  transform: rotate(105deg)
}
.rays-container .rays:nth-child(4) {
  position: absolute;
  left: 10%;
  transform: rotate(60deg)
}
.rays-container .rays:nth-child(5) {
  position: absolute;
  right: 10%;
  transform: rotate(120deg)
}
.rays-container .rays:nth-child(6) {
  position: absolute;
  left: 15%;
  transform: rotate(45deg)
}
.rays-container .rays:nth-child(7) {
  position: absolute;
  right: 15%;
  transform: rotate(135deg)
}
.rays-container .rays:nth-child(8) {
  position: absolute;
  left: 25%;
  transform: rotate(30deg)
}
.rays-container .rays:nth-child(9) {
  position: absolute;
  right: 25%;
  transform: rotate(150deg)
}
.rays-container .rays:after {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 20%;
  left: 0;
  width: 120px;
  height: 1px;
  animation: rays 2s linear infinite
}
@keyframes rays {
  0% {
    left: 0
  }
  100% {
    left: 100%
  }
}
@media(max-width: 991.98px) {
  .rays-container {
    display: none
  }
}
.hero-header {
  position: relative;
  z-index: 1
}

