/* Initial page styles and loader animation */

body {
  margin: 0px;
  padding: 0px;
}

.loader-container {
  background-color: #26364d;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dotAni {
  animation: MoveUpDownAni 1s cubic-bezier(0.4, 0, 1, 1) infinite;
  position: absolute;
  display: inline-block;
  height: 20px;
  width: 20px;
  background-color: #006edc;
  border-radius: 50%;
  margin-top: -17px;
  margin-left: 47px;
}

@keyframes MoveUpDownAni {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
