/* === PRELOADER ===================================== */
.preloader{
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  z-index: 9999;
  transition: opacity .6s ease;
}

.preloader.loaded{
  opacity: 0;
  pointer-events: none;
}

#loaderHeart{
  width: 160px;
  height: auto;
  transform-origin: 50% 60%;
  animation: heartbeat 1.4s ease-in-out infinite;
}

@keyframes heartbeat{
  0%,100% { transform: scale(1); }
  20%     { transform: scale(1.08); }
  40%     { transform: scale(0.96); }
  60%     { transform: scale(1.05); }
  80%     { transform: scale(0.98); }
}

@media (min-width: 768px) {
  .hero .intro-box {
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
    display: block !important;
  }
}
@media (max-width: 767px) {
  .hero .intro-box {
    display: none !important;
  }
}
