*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#preLoader{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  right: 0;
  bottom: 0;
  width: 100%;

  background-color: white;
background:rgba(0, 0, 0, 0.4);
  z-index: 9999999999999999 !important;
  display: none;
}
#preLoader .loader{
  width: 200px;
  height: 200px;
  /* background-color: royalblue; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.trainingForm{
  background: #dedfe0;
  /* border-top-left-radius: 10% 50%;
  border-bottom-left-radius: 10% 50%; */
  padding: 30px 10px;
  border-radius: 20px;
}
.check img{
 
  width: 90%;
  height: 50%;
  -webkit-animation: mover 2s infinite  alternate;
  animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}
@keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}
.mainRow{
padding: 40px;
background-image: url(../images/eventbg.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
/* width: 100%; */
min-height: 100vh;
}