.preloader_04 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.preloader_04 .loading-main {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}
.preloader_04 .loading-main .loader-logo {
  width: 300px;
}
.preloader_04 .loading-main .loader-logo img {
  width: 100%;
  height: auto;
}
.preloader_04 .loading-main .dots {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.preloader_04 .loading-main .dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-animation: bounce 1.4s infinite ease-in-out both;
          animation: bounce 1.4s infinite ease-in-out both;
}
.preloader_04 .loading-main .dots span:nth-child(1) {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-animation-delay: -0.32s;
          animation-delay: -0.32s;
}
.preloader_04 .loading-main .dots span:nth-child(2) {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-animation-delay: -0.16s;
          animation-delay: -0.16s;
}
.preloader_04 .loading-main .dots span:nth-child(3) {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.preloader_04 .loading-bg {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  background: #034477;
  position: relative;
}

@-webkit-keyframes bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
