@keyframes yellow-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes black-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 21, 21, 0.22);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes orange-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 21, 21, 0.22);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes orange-text-pulse {
  0% {
    color: var(--bs-body-color);
  }
  50% {
    color: var(--bs-link-color);
  }
  100% {
    color: var(--bs-body-color);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#misc-section .detail-content {
  padding: 1.75rem;
}

#faq-section .detail-sidebar .section-heading,
#misc-section .detail-sidebar .section-heading {
  font-family: "Cormorant Garamond", "Baskerville", "Georgia", serif;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
#faq-section .detail-sidebar ul li a,
#misc-section .detail-sidebar ul li a {
  display: block;
}

.activity-card .activity-card-media {
  position: relative;
  aspect-ratio: 16/10;
  width: 100%;
  overflow: hidden;
  background: var(--theme-surface-2);
  border-radius: 0.85rem;
  margin-bottom: 1rem;
}
.activity-card .activity-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.activity-card .activity-excerpt,
.activity-card .activity-description-full {
  font-family: "Inter", "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--bs-body-color);
}
.activity-card .activity-description-full {
  padding-top: 0.5rem;
}

#contact-page-section {
  width: 100%;
  display: block;
}
@media (min-width: 992px) {
  #contact-page-section {
    display: flex;
  }
}
#contact-page-section.partial-bg {
  border-top: 1px solid var(--theme-surface-2);
  background-color: var(--theme-surface-2);
}
#contact-page-section #contact-form-section {
  text-align: center;
  padding: 25px 0 25px 0;
}
@media (min-width: 576px) {
  #contact-page-section #contact-form-section {
    padding: 25px 50px 25px 50px;
  }
}
#contact-page-section #contact-form-section .title {
  color: var(--bs-link-color);
  text-transform: capitalize;
  padding-top: 10px;
  font-weight: 700;
  font-size: 2.34375rem;
}
#contact-page-section #contact-form-section .sub_title {
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 0.6;
  text-transform: capitalize;
  font-size: 1.875rem;
}
#contact-page-section #contact-form-section p.description {
  padding-top: 15px;
  padding-bottom: 15px;
}
#contact-page-section #contact-form-section p.description a {
  color: var(--bs-link-color);
  transition: 220ms ease-out;
}
#contact-page-section #contact-form-section p.description a:hover {
  color: var(--bs-primary);
  text-decoration: none;
}
#contact-page-section #google-map {
  height: 350px;
}
@media (min-width: 992px) {
  #contact-page-section #google-map {
    height: 100%;
  }
}
