* {
  margin: 0;
  padding: 0;
}

.first-loading-wrp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  min-height: 100vh;
  /*background: -webkit-linear-gradient(45deg, #62709D 0%, #49516F 20%, #1A1E50 40%, #6F71CA 60%, #62709D 80%, #1A1E50 100%);*/
  /*background: linear-gradient(45deg, #6fc7b5 0%, #13bdce 20%, #0094d9 40%, #74cab8 60%, #4dc5ee 80%, #0094d9 100%);*/
  background-size: 600%;
  background-position: 0% 100%;
  -webkit-animation: gradient 7.5s ease-in-out infinite;
  animation: gradient 7.5s ease-in-out infinite;
  transition: opacity 2s;
}

.first-loading-wrpAll {
  background: -webkit-linear-gradient(45deg, #6fc7b5 0%, #13bdce 20%, #0094d9 40%, #74cab8 60%, #4dc5ee 80%, #0094d9 100%);
  background: linear-gradient(45deg, #6fc7b5 0%, #13bdce 20%, #0094d9 40%, #74cab8 60%, #4dc5ee 80%, #0094d9 100%);
}

.first-loading-wrp1 {
  background: -webkit-linear-gradient(45deg, #fff 0%, #fff 20%, #fff 40%, #fff 60%, #fff 80%, #fff 100%) !important;
  background: linear-gradient(45deg, #fff 0%, #fff 20%, #fff 40%, #fff 60%, #fff 80%, #fff 100%) !important;
}


@-webkit-keyframes gradient {
  50% {
    background-position: 100% 0%;
  }
}

@keyframes gradient {
  50% {
    background-position: 100% 0%;
  }
}

.first-loading-wrp>h1 {
  font-size: 28px;
  font-weight: bolder;
}

.first-loading-wrp .loading-wrp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 98px;
}

.first-loading-wrp .loading-logo {
  width: 120px;
}

.dot {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  width: 64px;
  height: 64px;
  font-size: 64px;
  transform: rotate(45deg);
  animation: antRotate 1.2s infinite linear;
}

.dot i {
  position: absolute;
  display: block;
  width: 28px;
  height: 28px;
  /*background-color: #fff;*/
  border-radius: 100%;
  opacity: 0.3;
  transform: scale(0.75);
  transform-origin: 50% 50%;
  animation: antSpinMove 1s infinite linear alternate;
}

.dotAll i {
  background-color: #fff;
}

.dot1 i {
  background-color: #10263B;
}

.dot i:nth-child(1) {
  top: 0;
  left: 0;
}

.dot i:nth-child(2) {
  top: 0;
  right: 0;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.dot i:nth-child(3) {
  right: 0;
  bottom: 0;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.dot i:nth-child(4) {
  bottom: 0;
  left: 0;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

@keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
}

@-webkit-keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
}

@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}

@-webkit-keyframes antSpinMove {
  to {
    opacity: 1;
  }
}
