body {
  font-family: "Manrope", sans-serif;
  background-color: #121212;
  color: #fafaf5;
}
.font-serif {
  font-family: "Noto Serif", serif;
}
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 24;
}
.bronze-gradient {
  background: linear-gradient(135deg, #745b3b 0%, #674f30 100%);
}
#mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.testimonial-slide {
  display: none;
}
.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.8s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
