GLOBAL
body {
  font-family: 'Poppins', sans-serif;
}

.animate-spin-slow {
  animation: spinSlow 2s linear infinite;
}

#preloader img {
  animation: spinSlow 2s linear infinite, pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* HERO BACKGROUND */
#home {
  background-image: url("/Assets/images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.text-primary,.primary{
  color: #005430;
}
.bg-primary{
  background-color: #005430;
}

.brd{
    border: 2px solid #005430;
    padding: 30px;
    border-radius: 10px;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* Mobile */
@media (max-width: 767px) {
  /* add mobile styles if needed */
  #menuBtn{
    font-size: 50px;
    width : 100vw;
  }
}

/* Desktop */
@media (min-width: 768px) {
  /* add desktop styles if needed */
}