body {
  background-color: #fffff4;
}

:root {
  --heading: clamp(2.25rem, 1.875rem + 1.875vw, 4.125rem);
}

#spotlight {
  position: relative;
}
#spotlight .hero-slider {
  height: 95vh;
}
#spotlight .hero-slider .swiper-slide {
  position: relative;
  padding: 150px var(--paddingX) var(--spaceBelow_heading);
}
#spotlight .hero-slider .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
#spotlight .hero-slider .swiper-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
#spotlight .hero-slider .swiper-slide .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  height: 100%;
}
#spotlight .hero-slider .swiper-slide .content h1 {
  font-size: var(--heading);
  color: #fff;
  line-height: 1.1;
  max-width: 600px;
  margin-bottom: 20px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#spotlight .hero-slider .swiper-slide .content p {
  color: #fff;
  font-size: var(--font-18);
}
#spotlight .hero_slider_button_container {
  position: absolute;
  bottom: var(--spaceBelow_heading);
  right: 0px;
  z-index: 111;
  padding: 0px var(--paddingX) 0 var(--paddingX);
}
#spotlight .hero_slider_buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
#spotlight .hero_slider_buttons button {
  padding: 15px;
  height: var(--navBtn);
  width: var(--navBtn);
  background-color: #d4ff32;
  border: 0px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#spotlight .hero_slider_buttons button img {
  height: 100%;
  width: 100%;
  opacity: 1;
}
#spotlight .hero_slider_buttons button.swiper-button-disabled {
  background-color: #e4e4e4;
}
#spotlight .hero_slider_buttons button.swiper-button-disabled img {
  opacity: 0.4;
}
#spotlight .hero_slider_buttons .hero_slider-prev img {
  transform: rotate(180deg);
}

#spotlight .event_description h1 {
  margin-top: 0;
}
#spotlight .event_description .event_date,
#spotlight .event_description .event_location {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 400;
}
#spotlight .event_description .event_date > img,
#spotlight .event_description .event_location > img {
  width: 30px;
  height: 30px;
  aspect-ratio: 1;
  margin-right: 10px;
}
#spotlight .event_description .event_date p,
#spotlight .event_description .event_location p {
  font-size: var(--font-18);
  font-weight: 400;
}
#spotlight .event_description .cta {
  transform: scale(0.8);
  transform-origin: left;
}

#upcoming_events {
  padding: var(--paddingY) var(--paddingX);
}
#upcoming_events .heading h2 {
  color: #000;
  line-height: 1.3;
}
#upcoming_events .our_impact_container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 40px 0px;
}
#upcoming_events .our_impact_container .impact_wrapper {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: height 1s ease;
}
#upcoming_events .our_impact_container .impact_wrapper > img {
  width: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(100% + 100px);
  z-index: -1;
}
#upcoming_events .our_impact_container .impact_wrapper .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8509803922) 25%, transparent);
  z-index: 0;
}
#upcoming_events .our_impact_container .impact_wrapper.open .impact_wrapper_head .open-btn {
  opacity: 0;
}
#upcoming_events .our_impact_container .impact_wrapper .impact_wrapper_head {
  position: relative;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  transition: all 0.3s;
}
#upcoming_events .our_impact_container .impact_wrapper .impact_wrapper_head h2 {
  color: #fff;
  font-size: var(--font-46);
  line-height: 1.5;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#upcoming_events .our_impact_container .impact_wrapper .impact_wrapper_head .open-btn {
  padding: 10px;
  height: var(--navBtn);
  width: var(--navBtn);
  border: 0px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
#upcoming_events .our_impact_container .impact_wrapper .impact_wrapper_head .open-btn img {
  transform: rotate(90deg);
}
#upcoming_events .our_impact_container .impact_wrapper .content {
  display: none;
  position: relative;
  justify-items: stretch;
  align-items: end;
  z-index: 1;
  color: #fff;
  gap: 40px;
  padding: 40px;
}
#upcoming_events .our_impact_container .impact_wrapper .content .content-details {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 150px;
}
#upcoming_events .our_impact_container .impact_wrapper .content .content-details p {
  font-size: var(--font-20);
  max-width: 400px;
}
#upcoming_events .our_impact_container .impact_wrapper .content .content-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#upcoming_events .our_impact_container .impact_wrapper .content .content-bottom .event_date,
#upcoming_events .our_impact_container .impact_wrapper .content .content-bottom .event_location {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 400;
}
#upcoming_events .our_impact_container .impact_wrapper .content .content-bottom .event_date > img,
#upcoming_events .our_impact_container .impact_wrapper .content .content-bottom .event_location > img {
  width: 30px;
  height: 30px;
  aspect-ratio: 1;
  margin-right: 10px;
}
#upcoming_events .our_impact_container .impact_wrapper .content .content-bottom .event_date p,
#upcoming_events .our_impact_container .impact_wrapper .content .content-bottom .event_location p {
  font-size: var(--font-18);
}
#upcoming_events .our_impact_container .impact_wrapper .content .content-bottom .cta {
  transform: scale(0.8);
  transform-origin: left;
}

#event_archive {
  background-color: #ffffff;
}
#event_archive .heading {
  padding: var(--paddingY) var(--paddingX);
  padding-bottom: 0;
}
#event_archive .heading h2 {
  font-size: var(--heading);
  color: #000;
}
#event_archive .event_btc_button_container {
  padding: 0px var(--paddingX) var(--paddingY) var(--paddingX);
  display: flex;
  justify-content: flex-end;
}
#event_archive .event_btc_buttons {
  padding-top: 30px;
  display: flex;
  gap: 15px;
}
#event_archive .event_btc_buttons button {
  padding: 15px;
  height: var(--navBtn);
  width: var(--navBtn);
  background-color: #d4ff32;
  border: 0px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#event_archive .event_btc_buttons button img {
  height: 100%;
  width: 100%;
  opacity: 1;
}
#event_archive .event_btc_buttons button.swiper-button-disabled {
  background-color: #e4e4e4;
}
#event_archive .event_btc_buttons button.swiper-button-disabled img {
  opacity: 0.4;
}
#event_archive .event_btc_buttons .event_btc-prev img {
  transform: rotate(180deg);
}
#event_archive .event_btc_container {
  margin-top: var(--spaceBelow_heading);
}
#event_archive .event_btc_container .event_btc {
  padding: 0 var(--paddingX);
}
#event_archive .event_btc_container .event_btc .event_item {
  min-width: clamp(17.5rem, 15.4927rem + 5.8394vw, 22.5rem);
}
#event_archive .event_btc_container .event_btc .event_item .event_image {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  display: block;
}
#event_archive .event_btc_container .event_btc .event_item .event_image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1s ease-in-out;
}
#event_archive .event_btc_container .event_btc .event_item .event_description {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
#event_archive .event_btc_container .event_btc .event_item .event_description h2 {
  font-size: var(--font-20);
  font-weight: 500;
  color: var(--secondaryBlack);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#event_archive .event_btc_container .event_btc .event_item .event_description .event_date,
#event_archive .event_btc_container .event_btc .event_item .event_description .event_location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-18);
  color: var(--secondaryBlack);
  font-weight: 400;
}
#event_archive .event_btc_container .event_btc .event_item .event_description .event_date > img,
#event_archive .event_btc_container .event_btc .event_item .event_description .event_location > img {
  width: 30px;
  height: 30px;
  aspect-ratio: 1;
  margin-right: 10px;
}
#event_archive .event_btc_container .event_btc .event_item .event_description .cta {
  transform: scale(0.8);
  transform-origin: left;
}

@media screen and (max-width: 1024px) {
  #upcoming_events .our_impact_container .impact_wrapper .impact_wrapper_head {
    padding: 20px;
  }
  #upcoming_events .our_impact_container .impact_wrapper .impact_wrapper_head h2 {
    font-size: 30px;
    white-space: wrap;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  #upcoming_events .our_impact_container .impact_wrapper .content {
    gap: 40px;
    padding: 20px;
  }
}/*# sourceMappingURL=style.css.map */