/* ===== Loader CSS ===== */
#site-loader {
  z-index: 999999;
  position: fixed;
  width: 100%;
  height: 100%;
}
#site-loader .logo {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 280px;
  height: 85px;
  animation: fade-in linear;
  animation-duration: 0.55s;
}
#site-loader .circle {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border: 3px solid transparent;
  border-radius: 50%;
  border-top-color: #32b7d3;
  animation: rotate-loader linear infinite;
}
#site-loader .circle.two {
  height: 180px;
  width: 180px;
  animation-duration: 0.95s;
  margin-left: -90px;
  margin-top: -90px;
  z-index: -1;
}
#site-loader .circle.three {
  height: 220px;
  width: 220px;
  animation-duration: 1.05s;
  margin-left: -110px;
  margin-top: -110px;
  z-index: -1;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rotate-loader {
  from {
    transform: rotateZ(360deg);
  }
  to {
    transform: rotateZ(0deg);
  }
}