body nevisafe-splash-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-color: #111827; */
  color: #f9fafb;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
}

body:not(.nevisafe-splash-screen-hidden) {
  overflow: hidden;
}

body.nevisafe-splash-screen-hidden nevisafe-splash-screen {
  visibility: hidden;
  opacity: 0;
}

.loader {
  font-size: 25px;
  color: #013354;
  display: inline-block;
  font-weight: 400;
  position: relative;
}

.loader:after {
  content: "";
  height: 4px;
  width: 0%;
  display: block;
  background: #439664;
  animation: 5s lineGrow linear infinite;
}

@keyframes lineGrow {
  to {
    width: 100%;
  }
}

.main-sec {
  height: 100vh;
  width: 100vw;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 15px;

  img {
    height: 45px;
  }
}