#fixedLogo {
  display: none !important;
}

@media (min-width: 992px) {
  #fixedLogo {
    display: flex !important;
  }
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
    display: none !important;
}

/* Zoom-in image effect */
.zoom-in {
  width: 150px; /* Adjust based on your image */
  height: 150px;
  animation: zoomIn 2s ease-in-out forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 1;
  }
}
