.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #04000a;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-nav {
  --bs-nav-link-color: rgba(255, 255, 255, 0.7);
}

.app {
  --bs-font-family-style-1: var(--open-sans);
  --bs-font-family-style-2: var(--roboto);
  --bs-font-family-style-3: var(--poppins);
  --bs-font-family-style-4: var(--plus-jakarta-sans);
  --bs-font-sans-serif: var(--open-sans), var(--plus-jakarta-sans), sans-serif;
  --bs-body-font-family: var(--open-sans);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--bs-font-family-style-1);
}

body .app {
  font-family: var(--open-sans);
}

/* .text-opacity span {
  opacity: 1;
}

.swiper-wrapper {
  width: max-content;
  gap: 24px;
  animation: slideIn 45s linear 0s infinite;
}

@keyframes slideIn {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-100%);
  }
} */

.primary-icon {
  stroke: var(--bs-primary);
  fill: transparent;
}

:root {
  scroll-margin: 80px;
}

@keyframes textScroll {
  0% {
    transform: translateX(calc(var(--marquee-element-value) * var(--marquee-element-width) * var(--marquee-elements)));
  }
  100% {
    transform: translateX(0);
  }
}

.scroll-elements {
  display: flex;
  align-items: center;
  width: 100%;
  transform: translateX(0);
  /* animation: textScroll var(--marquee-animation-duration) linear infinite; */
  animation-name: textScroll;
  animation-duration: var(--marquee-animation-duration);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.logo-section {
  position: absolute;
  top: 100px;
  /* left: 24px; */
  padding-inline: 16px;
  z-index: 1;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 100vw;
  justify-content: space-between;
}

.logo-section img {
  width: 150px;
  height: 150px;
}

@media screen and (max-width: 500px) {
  .logo-section {
    justify-content: center;
  }
  .logo-section img {
    width: 64px;
    height: 64px;
  }

  .presenter-title {
    font-size: 1.5rem !important;
  }
}

@media screen and (max-width: 800px) {
  .logo-section img {
    width: 84px;
    height: 84px;
  }
}

.hero-subheading {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  line-height: 1.4;
  color: white;
}
.hero-subheading span {
  font-weight: bold;
}

.mwv-video-gallery-item {
  height: 120px;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .mwv-video-gallery-item {
    height: 100px;
  }
}

@media screen and (max-width: 1000px) {
  .mwv-video-gallery-item {
    height: 84px;
  }
}

.mwv-modal {
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  width: 100vw;
  height: 100vh;
}
.mwv-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75); /* Semi-transparent black */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensures modal is on top */
}

.category-card-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
.melotea-event-image{
  height: 450px;
}

@media screen and (max-width: 768px) {
  .category-card-footer{
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .melotea-event-image{
    height: auto;
  }
  
}