:root {
  font-size: 16px;
}
html,body {
  height: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-size: 1rem;
}
img, picture, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.container img {
  display: block;
}
.locked-scroll {
  overflow: hidden;
  height: 100vh;
}
#mobileMenu {
  transition: opacity .28s ease, transform .28s ease;
}
#mobileMenu.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
#mobileMenu.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.menu-panel {
  transform: translateY(8px);
  transition: transform .28s ease, opacity .28s ease;
}
#mobileMenu.visible .menu-panel {
  transform: translateY(0);
}
.cookie-hidden {
  display: none !important;
}
a:focus, button:focus, input:focus, textarea:focus {
  outline: 3px solid currentColor;
  outline-offset: 3px;
  border-radius: .5rem;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.card-img {
  max-height: 360px;
  object-fit: cover;
}
.modal-backdrop {
  backdrop-filter: blur(6px);
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
