
/* ----- Base ----- */
/* ----- Loader ----- */


#loader {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /*background-color: #001b59;*/
  background-color: #122245;
  z-index: 99999999999999999999999999999999999999999;
  font-family: 'Ubuntu', sans-serif;
  position: relative;
}

.loader-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: 15%;
}

.loader-logo {
  display: flex;
  flex-flow: column;
  width: 100vw;
  height: 100%;
  justify-content: center;
}

.loader-logo span {
  transform: rotate(-18deg);
  display: block;
}

.loading {
  width: 140px;
  height: 4px;
  background: #cfcfcf;
  position: absolute;
  overflow: hidden;
  top: 75%;
  transform: translateY(-30%);
  border: 1px solid #fff;
}

.loading::after {
  content: "";
  width: 50px;
  height: 4px;
  position: absolute;
  top: 0px;
  background: #122245;
  animation: animation 1.5s infinite ease;
}

.video-loader {
  width: 100vw;
}

.logoSlider1 {
  width: 100%;
  position: relative;
}
.logoSlider2 {
  width: 20%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes animation {
  0% {
    transform: translateX(-15px);
  }

  50% {
    transform: translateX(105px);
  }

  100% {
    transform: translateX(-15px);
  }
}