/********** Template CSS **********/
:root {
  --primary: #c098c6;
  --secondary: #9f70c6;
  --light: #f9f9f9;
  --dark: #010101;
  --dark_orchid: #70459b;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.text-primary {
  color: var(--primary) !important;
}
.text-primary3 {
  color: var(--dark_orchid) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-dark {
  color: var(--dark) !important;
}
.text-light {
  color: var(--light) !important;
}
.bg-secondary {
  background: rgb(159, 112, 198, 0.2) !important;
}
.bg-primary2 {
  background: var(--primary) !important;
}
.bg-primary3 {
  background: var(--dark_orchid) !important;
}
.bg-light {
  background: #f2ecf6 !important;
}
.bg-dark {
  background: var(--dark) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}
.border-primary3 {
  border-color: var(--dark_orchid) !important;
}
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 400;
  transition: 0.5s;
}

.btn-alternate {
  background: #04b964;
  color: #ffffff;
}
.btn.btn-alternate:hover {
  color: #04b964;
  background: transparent;
  border: 1px solid #04b964;
}

.btn-outline-primary2 {
  color: #ffffff;
  background: var(--dark_orchid);
  border: 1px solid var(--dark_orchid);
}
.btn-outline-primary2:hover {
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
}

.btn-subscribe {
  background: #52348b;
  color: #ffffff;
  border: 1px solid #52348b;
}

.btn-subscribe:hover {
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
}

.btn-primary2,
.btn-primary3 {
  color: #ffffff;
  background: #c098c6;
  border: 1px solid #c098c6;
}
.btn-primary2:hover {
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
}
.btn-primary3:hover {
  color: #c098c6;
  background: transparent;
  border: 1px solid #c098c6;
}

.btn-outline-primary {
  color: #ffff;
  background: #c098c6;
  border: 1px solid #c098c6;
}
.btn-outline-primary:hover {
  color: #c098c6 !important;
  background: transparent;
  border: 1px solid #c098c6 !important;
}

.btn-primary {
  color: #ffffff;
  background: #c098c6;
  border: 1px solid #c098c6;
}
.btn-primary:hover {
  color: #c098c6;
  background: transparent;
  border: 1px solid #c098c6;
}

.btn-outline-primary:active,
.btn-outline-primary:focus {
  background: #c098c6;
  color: #ffffff;
}

.btn-outline-primary:active .arrow-bg,
.btn-outline-primary:focus .arrow-bg {
  background: #ffffff !important;
  color: #c098c6 !important;
}

.btn-primary:active,
.btn-primary:focus {
  color: #c098c6 !important;
  background: transparent !important;
  border: 1px solid #c098c6 !important;
  box-shadow: unset !important;
}

.btn-primary:active .arrow-bg2,
.btn-primary:focus .arrow-bg2 {
  background: #c098c6 !important;
  color: #ffffff !important;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #ffffff;
}

.btn.btn-primary:hover {
  color: var(--primary);
  background: transparent;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-outline-primary .arrow-bg {
  background: #ffffff !important;
  color: var(--primary) !important;
  transition: 0.5s;
}
.btn-outline-primary:hover .arrow-bg {
  background: var(--dark_orchid) !important;
  color: #ffffff !important;
  transition: 0.5s;
}

.btn-primary:hover .arrow-bg2,
.btn-outline-primary2:hover .arrow-bg2 {
  background: var(--primary) !important;
  color: #ffffff !important;
  transition: 0.5s;
}

.btn-close:focus {
  box-shadow: unset;
}

.btn-check:focus + .btn,
.btn:focus {
  box-shadow: unset;
}

/*** Navbar ***/
.fixed-top {
  transition: 0.5s;
}

.top-bar {
  height: 45px;
  border-bottom: 1px solid rgba(159, 112, 198, 0.07);
}

.top-bar a:hover {
  color: rgba(255, 255, 255, 1);
}
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-weight: 400;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #ffffff;
  font-weight: 450 !important;
}

.navbar .navbar-nav .nav-link:hover {
  transition: 0.5s;
}

.border-bottom-white {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.theme-icon-img {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background: var(--secondary);
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }

  .nav-bar-dark-mode-toggle {
    display: flex !important;
    padding-left: 0 !important;
    color: #ffff !important;
    gap: 10px !important;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* background: rgba(159, 112, 198, 0.8); */
  z-index: 1;
}

/* Carousel Content */
.carousel-caption-content {
  width: 100%;
  max-width: 1153px;
}

.hero-heading {
  font-size: clamp(55px, 5vw, 88px);
}

.hero-paragraph {
  font-size: clamp(18px, 2.5vw, 20px);
  padding-inline: clamp(25px, 0px, 90px);
}

.hero-heading-alt {
  font-size: clamp(55px, 5vw, 88px);
  padding: 0 clamp(1rem, 8vw, 110px);
}

/* End of Carousel Content */

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary);
  border: 12px solid var(--secondary);
  border-radius: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 800px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
  }
  .display-4 {
    font-size: 3rem;
  }
}

.page-header {
  padding-top: 12rem;
  padding-bottom: 6rem;
  background:
    linear-gradient(rgba(0, 29, 35, 0.8), rgba(0, 29, 35, 0.8)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #999999;
}

/*** Causes ***/
.causes-item .progress {
  height: 5px;
  border-radius: 0;
  overflow: visible;
}
.progress {
  background-color: #d2f3e4;
}

.progress-bar {
  background-color: #04b964;
}
.causes-item .progress .progress-bar {
  position: relative;
  overflow: visible;
  width: 0px;
  border-radius: 0;
  transition: 5s;
}

.causes-item .progress .progress-bar span {
  position: absolute;
  top: -7px;
  right: 0;
  width: 40px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: var(--primary);
  color: #ffffff;
}

.causes-item .causes-overlay {
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

.causes-item:hover .causes-overlay {
  height: 100%;
  opacity: 1;
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.06);
}

/*** Donate Section ***/
.donate-bg {
  background-image: url("../img/09-09-25/DLEAG-donate-now-bg.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.donate-content {
  visibility: visible;
  animation-delay: 0.5s;
  animation-name: fadeIn;
}

@media (max-width: 767px) {
  #donate {
    background-image: url("../img/09-09-25/mobile/DLEAG-donate-now-mobile-bg.webp") !important;
  }
  .donate-content img {
    margin: 30px 0;
  }
}
/* End Donate Section */

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked + label {
  color: var(--primary);
  border-color: var(--primary);
}

/*** Team ***/
.team-item img {
  position: relative;
  top: 0;
  transition: 0.5s;
}

.team-item:hover img {
  top: -30px;
}

.team-item .team-text {
  position: relative;
  height: 100px;
  transition: 0.5s;
}

.team-item:hover .team-text {
  margin-top: -60px;
  height: 160px;
}

.team-item .team-text .team-social {
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text .team-social {
  opacity: 1;
}

.team-item .team-social .btn {
  display: inline-flex;
  color: var(--primary);
  background: #ffffff;
  border-radius: 40px;
}

.team-item .team-social .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-user {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  font-size: 18px;
}

.testimonial-user .user-name {
  font-weight: bold;
  font-size: 18px;
}

.testimonial-user .user-team {
  font-weight: normal;
  font-size: 14px;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text {
  background: var(--light);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--dark_orchid);
  transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.5s;
}

body[data-theme="light"] .testimonial-carousel .owl-nav .owl-prev:hover,
body[data-theme="light"] .testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.owl-theme .owl-dots .owl-dot span {
  background: var(--primary);
}
.owl-dots {
  text-align: center;
  margin-top: 10px;
}

.owl-dot {
  display: inline-block;
  margin-top: 20px;
}

.owl-dot span {
  width: 8px;
  height: 8px;
  background: #202b3e;
  opacity: 25%;
  border-radius: 50%;
  display: block;
  margin: 5px;
}

.owl-dot.active span {
  background: #70459b;
  opacity: 100%;
}

/*** Footer ***/

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .btn.btn-square:hover {
  color: rgba(255, 255, 255, 1);
  border-color: var(--light);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: rgba(255, 255, 255, 0.8);
}

.footer .copyright a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer a:hover {
  color: rgba(255, 255, 255, 1);
}

.modal.fade .modal-dialog {
  transform: none !important;
  transition: opacity 0.3s ease-in-out;
}

.modal .was-validated .form-control:invalid,
.form-control.is-invalid {
  background-image: unset;
}

.form-control:focus {
  box-shadow: unset !important;
  border-color: #ced4da !important;
}

.form-check-input:checked {
  background-color: var(--dark_orchid);
  border-color: var(--dark_orchid);
}

.form-check-input:focus {
  box-shadow: unset;
  border-color: rgba(255, 255, 255, 0.3);
}

#contactModalLabel,
#getInvolveModalLabel {
  width: 700px;
  /* font: normal normal 900 40px/46px Inter; */
  letter-spacing: 0px;
  color: #001d23;
}

#contactModal .radio-button-title,
#getInvolveModal .radio-button-title {
  color: black;
  /* font: normal normal bold 16px/24px Inter; */
}

#contactModal .radio-input,
#getInvolveModal .radio-input {
  width: 27px;
  height: 27px;
}

#contactModal .modal-desc,
#getInvolveModal .modal-desc {
  font: normal normal normal 16px/24px Roboto;
  letter-spacing: 0px;
  color: #787878;
}

#sendMessageButton,
#sendInvolveButton,
#successModal .closeThisMessageButton,
#errorModal .closeThisMessageButton {
  min-width: 191px;
  height: 50px;
}

#sendMessageSpinner {
  width: 1rem;
  height: 1rem;
}
.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
#newsletter-email::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Custom */

.custom-img-height {
  height: 300px; /* Adjust this value as needed */
  object-fit: cover;
  width: 100%;
}
/* Our Mission */
#mission {
  margin-top: 4rem;
}

.img-responsive-mission {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover !important;
}

.icon-overlay {
  transform: translate(-100%, -12%) !important;
}

.icon-overlay img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  padding-left: 5px;
  padding-bottom: 5px;
}

@media (max-width: 767.98px) {
  .icon-overlay {
    transform: translate(-90%, -31%) !important;
  }
  .icon-overlay img {
    width: 190px !important;
    height: 190px !important;
  }
  .img-responsive-mission {
    width: 100% !important;
    min-height: 400px !important;
    padding-top: 0 !important;
    object-fit: cover;
  }
}

@media (min-width: 768px) {
  .img-responsive-mission {
    /* min-height: 471px; */
    padding-top: 8px;
  }
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 3.4375rem);
}
/* What We Do */
.padded-text {
  padding-left: clamp(1vw, 1vw, 1vw);
  padding-right: clamp(1vw, 1vw, 1vw);
}
/* End of what we do */

.modal-title {
  font-family: "Barlow Condensed", sans-serif;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Popup Ads */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #010101e6;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 16px;
  box-sizing: border-box;
}

.popup-container {
  position: relative;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup-container img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.popup-close {
  position: absolute;
  top: -23px;
  right: -34px;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #787878;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.popup-fixed-btn {
  position: absolute;
  bottom: 20px; /* always sits at bottom */
  left: 20px; /* fixed margin from left */
  padding: 10px 16px;
  background-color: #6b21a8;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10000;
  transition: background 0.3s ease;
}

.popup-fixed-btn:hover {
  background-color: #7c3aed;
}

/* Mobile optimization */
@media (max-width: 480px) {
  .popup-container {
    max-width: 95%;
  }
  .popup-fixed-btn {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    padding: 8px 12px;
  }
  .popup-close {
    top: -20px;
    right: -20px;
    font-size: 18px;
    width: 28px;
    height: 28px;
  }
}

/* Tablet portrait & small landscape */
@media (min-width: 481px) and (max-width: 1024px) {
  .popup-container {
    max-width: 85%;
  }

  .poster {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
  }

  .poster img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
  }

  .popup-fixed-btn {
    position: absolute;
    bottom: 6%;
    left: 5%;
    z-index: 2;
    height: 8%;
    font-size: 70%;
    padding: 9px 14px;
    transform: none;
  }

  .popup-close {
    position: absolute;
    top: -20px;
    right: -25px;
    font-size: 20px;
    width: 30px;
    height: 30px;
  }
}

/* Desktop / large screens */
@media (min-width: 1025px) {
  .popup-container {
    max-width: 75vh;
  }
  .popup-container img {
    height: 92vh;
  }
  .poster {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
  }
  .popup-fixed-btn {
    bottom: 7%;
    left: 5%;
    padding: 5px 10px;
    font-size: 75%;
    align-items: center;
    justify-content: center;
  }
}

/*** Upcoming Events ***/
.upcoming-events-carousel {
  position: relative;
}

.upcoming-events-carousel .owl-stage-outer {
  overflow: hidden !important; /* no peek */
}

/* Make each slide full width */
.upcoming-events-carousel .owl-item,
.upcoming-events-carousel .upcoming-events-item {
  width: 100%;
}

.upcoming-events-carousel .upcoming-events-item {
  padding: 10px 0 0;
}

/* Card layout */
.upcoming-events-carousel .ue-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}

.upcoming-events-carousel .ue-flyer {
  position: relative;
  height: 720px;
  overflow: hidden;
}

.upcoming-events-carousel .ue-flyer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}

/* ===== Owl Nav (side arrows) ===== */
.upcoming-events-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: -60px;
  right: -60px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 5;
  pointer-events: auto !important;
}

.upcoming-events-carousel .owl-nav button {
  pointer-events: auto;
  font-size: 54px;
  width: 64px;
  height: 64px;
  line-height: 64px;
  color: #c9a9dd !important;
  background: transparent !important;
  border: none !important;
}

.upcoming-events-carousel .owl-nav i {
  font-size: 56px;
  color: #c9a9dd;
}

.upcoming-events-carousel .owl-nav i:hover {
  font-size: 56px;
  color: #70459b;
}

body[data-theme="dark"] .upcoming-events-carousel .owl-nav i:hover {
  color: #f9f9f9 !important;
}

/* ===== Dots ===== */
.upcoming-events-carousel .owl-dots {
  text-align: center;
  margin-top: 16px;
}

.upcoming-events-carousel .owl-dot span {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 999px;
  background: rgba(32, 43, 62, 0.25);
  margin: 0 6px;
}

.upcoming-events-carousel .owl-dot.active span {
  background: #70459b;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .upcoming-events-carousel .ue-card {
    flex-direction: column;
    gap: 18px;
  }

  .upcoming-events-carousel .ue-left {
    flex: 0 0 auto;
    min-width: 0;
  }

  .upcoming-events-carousel .ue-flyer {
    height: 400px;
  }

  .upcoming-events-carousel .ue-right {
    max-width: none;
  }
  .upcoming-events-carousel .owl-nav {
    display: none;
  }
}

.schedule-nav {
  position: relative;
}

.schedule-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: none;
  cursor: default;
}

.dropdown-chevron {
  display: inline-block;
  margin-left: 2px;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.schedule-nav:hover .dropdown-chevron {
  transform: rotate(180deg) translateY(2px);
}

.schedule-menu {
  display: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.schedule-nav.is-open .schedule-menu {
  display: block;
}

.schedule-menu li a {
  padding: 6px 12px;
  color: #70459b;
}

.schedule-menu li a:hover {
  background-color: #f2ecf6;
  color: #70459b;
  font-weight: 600;
}
.schedule-dropdown[aria-expanded="true"],
.schedule-dropdown[aria-expanded="true"]:focus,
.schedule-dropdown[aria-expanded="true"]:active {
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
}

.schedule-nav:hover .schedule-dropdown,
.schedule-dropdown[aria-expanded="true"] {
    color: #fff;
    font-weight: 500;
    background: transparent;
}

.navbar-dark .navbar-nav .nav-link:focus {
  color: #fff !important;
}
@media (max-width: 991.98px) {
  .schedule-nav {
    width: 100%;
  }

  .schedule-dropdown {
    padding: 12px 16px;
    text-align: left;
  }

  .schedule-menu {
    position: static;
    float: none;
    width: 100%;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding-left: 12px;
  }

  .schedule-menu .dropdown-item {
    display: block;
    padding: 10px 16px;
  }

  .schedule-menu li a,
  .schedule-menu li a:hover {
    background-color: transparent;
    color: #fff;
  }

  .schedule-menu li a:hover {
    font-weight: 600;
  }
.schedule-nav:hover .dropdown-chevron {
    transform: none;
  }
  .schedule-nav.is-open .dropdown-chevron {
  transform: rotate(180deg) translateY(2px);
}
}
