* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:root {
  --hover-color: unset;
}
@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0.6;
  }
}
.skeleton {
  width: 300px;
  height: 150px;
  background: #eee;
  animation: pulse 1.5s infinite;
}
a[data-astro-cid-qj5gnyxm] {
  margin: 0 0.5rem;
  text-decoration: none;
  color: unset;
}
a[data-astro-cid-qj5gnyxm]:hover {
  text-decoration: underline;
}
.nav-item[data-astro-cid-rgebgklp] {
  position: relative;
}
.nav-link-wrapper[data-astro-cid-rgebgklp] {
  position: relative;
  display: inline-block;
}
.nav-item[data-astro-cid-rgebgklp] a[data-astro-cid-rgebgklp] {
  color: var(--textColor);
  text-decoration: none;
  display: block;
  transition: color 0.5s;
}
.sub-links[data-astro-cid-rgebgklp] {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 4px;
  background-color: #fff;
  gap: 10px;
  padding: 10px;
  box-shadow: 0 4px 6px #0000001a;
  flex-direction: column;
  width: 200px;
  z-index: 1;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  display: flex;
}
.nav-link-wrapper[data-astro-cid-rgebgklp]:hover
  .sub-links[data-astro-cid-rgebgklp] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.arrow[data-astro-cid-rgebgklp] {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.2s ease;
  display: inline-block;
}
.nav-link-wrapper[data-astro-cid-rgebgklp]:hover
  .arrow[data-astro-cid-rgebgklp] {
  transform: rotate(90deg);
}
.active[data-astro-cid-rgebgklp] {
  color: var(--primaryColor);
}
.nav-link-link[data-astro-cid-rgebgklp] {
  display: flex;
  align-items: center;
  gap: 8px;
  wrap: nowrap;
}
.hamburger-menu[data-astro-cid-opcexhdn] {
  position: relative;
  flex-direction: column;
  align-items: flex-end;
}
.hamburger-icon[data-astro-cid-opcexhdn] {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  z-index: 10;
}
.hamburger-icon[data-astro-cid-opcexhdn] span[data-astro-cid-opcexhdn] {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
  transition: all 0.3s ease-in-out;
}
#menu-toggle[data-astro-cid-opcexhdn] {
  display: none;
}
#menu-toggle[data-astro-cid-opcexhdn]:checked
  + .hamburger-icon[data-astro-cid-opcexhdn]
  span[data-astro-cid-opcexhdn]:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
#menu-toggle[data-astro-cid-opcexhdn]:checked
  + .hamburger-icon[data-astro-cid-opcexhdn]
  span[data-astro-cid-opcexhdn]:nth-child(2) {
  opacity: 0;
}
#menu-toggle[data-astro-cid-opcexhdn]:checked
  + .hamburger-icon[data-astro-cid-opcexhdn]
  span[data-astro-cid-opcexhdn]:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.menu-content[data-astro-cid-opcexhdn] {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 5px #0000001a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translate(100%);
  transition: transform 0.3s ease-in-out;
  padding: 2rem;
  overflow-y: auto;
  gap: 20px;
  z-index: 9;
}
#menu-toggle[data-astro-cid-opcexhdn]:checked
  ~ .menu-content[data-astro-cid-opcexhdn] {
  transform: translate(0);
}
.menu-content[data-astro-cid-opcexhdn] a[data-astro-cid-opcexhdn] {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  margin: 10px 0;
  transition: color 0.2s ease-in-out;
}
.menu-content[data-astro-cid-opcexhdn] a[data-astro-cid-opcexhdn]:hover {
  color: #0078d4;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  width: fit-content;
  position: relative;
  padding-bottom: 0.2em;
}
.logo-img {
  width: auto;
  max-height: var(--logoSize);
  height: var(--logoSize);
  margin-right: 10px;
  border-radius: 8px;
}
.logo-text {
  font-size: var(--textSize);
  font-weight: var(--fontWeight);
}
.logo-text,
.extra_data-text {
  position: relative;
  display: inline-block;
  text-transform: var(--textTransformData);
  color: var(--textColor);
  text-decoration: none;
}
.extra_data-text {
  font-size: 1rem;
}
.navbar-scrolled {
  opacity: 1;
  transform: translateY(0);
}
.responsive-iframe {
  width: 100%;
  height: 1300px;
  top: 0;
  left: 0;
  border: 0;
  marginheight: 0;
  marginwidth: 0;
}
.timezone-label[data-astro-cid-xod4p5pt] {
  font-size: 0.9em;
}
.countdown-timer[data-astro-cid-xod4p5pt] {
  font-weight: 700;
  font-size: 1.2em;
}
.social-icons[data-astro-cid-jm25teea] {
  display: flex;
  gap: 20px;
  width: fit-content;
  height: min-content;
}
.social-icons[data-astro-cid-jm25teea] a[data-astro-cid-jm25teea] {
  transition: filter 0.3s ease;
  text-decoration: none;
  height: fit-content;
}
.social-icons[data-astro-cid-jm25teea]
  a[data-astro-cid-jm25teea]
  .icon[data-astro-cid-jm25teea] {
  filter: var(--textColorFilter);
  width: 40px;
  height: 40px;
}
.social-icons[data-astro-cid-jm25teea]
  a[data-astro-cid-jm25teea]:hover
  svg[data-astro-cid-jm25teea] {
  filter: var(--primaryColorFilter);
}
.facilitators-container[data-astro-cid-emzgg3et] {
  display: flex;
  flex-direction: column;
}
div[data-astro-cid-cwf4b65o] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min-content !important;
  height: min-content !important;
}
svg[data-astro-cid-cwf4b65o] {
  filter: var(--primaryColorFilter);
}
.breadcrumb[data-astro-cid-lr7drwub] {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.breadcrumb-item[data-astro-cid-lr7drwub] {
  display: flex;
  align-items: center;
}
.breadcrumb-item[data-astro-cid-lr7drwub] a[data-astro-cid-lr7drwub] {
  text-decoration: none;
}
.breadcrumb-item[data-astro-cid-lr7drwub] a[data-astro-cid-lr7drwub]:hover {
  text-decoration: underline;
}
.separator[data-astro-cid-lr7drwub] {
  margin: 0 0.5rem;
  opacity: 0.6;
}
[data-astro-cid-lr7drwub][aria-current="page"] {
  font-weight: 500;
}
.gallery-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(var(--columns, 5), minmax(200px, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  padding: 16px;
}
.gallery-item {
  overflow: hidden;
  padding-bottom: 10px;
  border-radius: 12px;
  height: fit-content;
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
  text-align: center;
  cursor: pointer;
}
.gallery-item:hover {
  background-color: var(--backgroundColor);
  box-shadow: var(--basic-box-shadow);
}
.gallery-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}
.gallery-component {
  width: 100%;
}
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}
.image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}
.image-caption {
  margin-top: 5px;
  font-size: 0.85rem;
  color: #555;
  text-align: center;
  padding: 0 5px;
}
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000000e6;
}
.modal-content {
  position: relative;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 1200px;
  height: 80%;
}
.modal-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}
.modal-caption {
  color: #fff;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}
.close-modal {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: 700;
  transition: 0.3s;
  z-index: 1001;
  cursor: pointer;
}
.close-modal:hover,
.close-modal:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: #0000004d;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev {
  left: 0;
}
.prev:hover,
.next:hover {
  background-color: #000c;
}
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prev,
  .next {
    font-size: 20px;
    padding: 10px;
  }
  .close-modal {
    font-size: 30px;
    top: 10px;
    right: 20px;
  }
}
.skeleton {
  display: none !important;
}
.footer-nav-container[data-astro-cid-iw74x3mo] {
  width: 100%;
}
.footer-nav-columns[data-astro-cid-iw74x3mo] {
  display: grid;
  gap: 2rem;
}
.footer-nav-rows[data-astro-cid-iw74x3mo] {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-nav-rows[data-astro-cid-iw74x3mo]
  .footer-nav-item[data-astro-cid-iw74x3mo] {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-nav-rows[data-astro-cid-iw74x3mo]
  .footer-nav-item[data-astro-cid-iw74x3mo]:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.footer-nav-rows[data-astro-cid-iw74x3mo]
  .footer-column-title[data-astro-cid-iw74x3mo] {
  min-width: 150px;
  margin-bottom: 0;
}
.footer-nav-rows[data-astro-cid-iw74x3mo]
  .footer-links[data-astro-cid-iw74x3mo] {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav-rows[data-astro-cid-iw74x3mo]
  .footer-links[data-astro-cid-iw74x3mo]
  li[data-astro-cid-iw74x3mo] {
  margin-bottom: 0;
}
.footer-nav-columns[data-astro-cid-iw74x3mo]
  .footer-nav-item[data-astro-cid-iw74x3mo] {
  display: flex;
  flex-direction: column;
}
.footer-column-title[data-astro-cid-iw74x3mo] {
  color: inherit;
  font-size: 18px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-links[data-astro-cid-iw74x3mo] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-columns[data-astro-cid-iw74x3mo]
  .footer-links[data-astro-cid-iw74x3mo]
  li[data-astro-cid-iw74x3mo] {
  margin-bottom: 0.5rem;
}
.footer-links[data-astro-cid-iw74x3mo] a[data-astro-cid-iw74x3mo] {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.footer-links[data-astro-cid-iw74x3mo] a[data-astro-cid-iw74x3mo]:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .footer-nav-container[data-astro-cid-iw74x3mo] {
    padding: 0 1rem;
  }
  .footer-nav-columns[data-astro-cid-iw74x3mo] {
    grid-template-columns: 1fr !important;
  }
  .footer-nav-rows[data-astro-cid-iw74x3mo]
    .footer-nav-item[data-astro-cid-iw74x3mo] {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav-rows[data-astro-cid-iw74x3mo]
    .footer-column-title[data-astro-cid-iw74x3mo] {
    min-width: auto;
    margin-bottom: 0.5rem;
  }
  .footer-nav-rows[data-astro-cid-iw74x3mo]
    .footer-links[data-astro-cid-iw74x3mo] {
    flex-direction: column;
    gap: 0.5rem;
  }
}
