section.preloader {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  position: relative;
  z-index: 9999999999999;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid rgba(27, 76, 105, 0.95);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.gencontainer {
  display: none;
}
