body{

  }
.next-event-cont{
  width:100%;
  background:#1f1b48;
  height:540px;
  margin-bottom: 330px;
  position: relative;
}
.next-event-cont .logo-x{
  width:200px;
  max-width: 90%;
  position: absolute;
  bottom:0;
  left:50%;
  transform:translate(-50%,35%);
}
.next-event-cont .logo-x img{
  width:100%;
}
.next-event-cont .logo-x .more-info{
  color:White;
  padding:5px 10px;
  border:3px solid #fff;
  display: inline-block;
  margin:0 auto;
  position: absolute;
  left:50%;
  transform:translate(-50%,100%);
  bottom:0;
  transition: background-color .4s, color .4s;
}
.next-event-cont .logo-x .more-info:hover{
  background: #fff;
  color:#000;
}
.next-event-cont .text-x{
  position: absolute;
  width:100%;
  text-align: center;
  top:100px;
  color:white;
  font-size: 30px;
  font-weight: 900;
  line-height: 40px;
  text-transform: uppercase;
}
.next-event-cont .counter-cont{
  margin-top:20px;
  font-size: 25px;
  line-height: 30px;
}
.next-event-cont .fading{
  width:100%;
  height:140px;
  position: absolute;
  left:0;
  bottom:0;
  background: linear-gradient(transparent,#060606);
}
.next-event-cont .back-anim{
  width:100%;
  height:100%;
  position: absolute;
  top:0;
  left:0;
  overflow: hidden;
}
.next-event-cont .back-anim .anim-shine{
  width:900px;
  height:900px;
  position: absolute;
  bottom:-400px;
  left:50%;
  transform: translate(-50%);
}
.next-event-cont .back-anim .anim-shine img{
  width:100%;
  height:100%;
  transform-origin: center;
  animation-name: shineRotation;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes shineRotation {
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform:rotate(360deg);
  }
}
