@-webkit-keyframes FirstLoadRotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes FirstLoadRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes FirstLoadRotateTwo {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
  }
}

@keyframes FirstLoadRotateTwo {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@-webkit-keyframes FirstLoadFlash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

@keyframes FirstLoadFlash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

#project-first-load-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
}

#project-first-load {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -180px;
  margin-left: -250px;
  width: 500px;
  height: 300px;
  text-align: center;
}

#project-first-load * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

#project-first-load .box {
  position: relative;
  margin: 0 auto 16px;
  width: 200px;
  height: 200px;
}

#project-first-load .out-box {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -90px;
  margin-top: -90px;
  width: 180px;
  height: 180px;
  border-top: 4px solid #3b82f6;
  border-right: 4px solid #3b82f6;
  border-bottom: 4px solid #f0f0f0;
  border-left: 4px solid #f0f0f0;
  border-radius: 100%;
  animation: 2.5s ease-in-out 0s normal none infinite FirstLoadRotateTwo;
  -webkit-animation: 2.5s ease-in-out 0s normal none infinite FirstLoadRotateTwo;
}

#project-first-load .inner-box {
  width: 120px;
  height: 120px;
  border-bottom: 2px solid #10b981;
  border-top: 2px solid #f0f0f0;
  border-right: 2px solid #f0f0f0;
  border-left: 2px solid #10b981;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -60px;
  margin-top: -60px;
  animation: 2.5s linear 0s normal none infinite FirstLoadRotate;
  -webkit-animation: 2.5s linear 0s normal none infinite FirstLoadRotate;
}

#project-first-load .text-box {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -60px;
  margin-top: -60px;
  width: 120px;
  height: 120px;
  color: #d1d5db;
  font-size: 16px;
  line-height: 120px;
  text-align: center;
  animation: 4s linear 0s normal none infinite FirstLoadFlash;
  -webkit-animation: 4s linear 0s normal none infinite FirstLoadFlash;
}

#project-first-load h6 {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 16px;
  color: #6b7280;
}

#project-first-load p {
  font-size: 14px;
  color: #d1d5db;
}
