.preloader-wrap {
  position: fixed;
  inset: 0;
  background: #f1f3f5;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flight-icon {
  width: 350px;
  height: 350px;
  opacity: 0.75;
  animation: flightRotate 1.2s linear infinite;
  transform-origin: center;
}

@keyframes flightRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
