/* Set line-height for the options in the dropdown list */
/* Set text color for the selected option */
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #636578;
  line-height: 37px !important;
  /* 1px solid #d8d8dd */
}

/* Set height for the selected option container */
.select2-container .select2-selection--single {
  height: 38px !important;
  color: #636578;
  border: 1px solid #d8d8dd;
  border-radius: 0.5rem;
}

/* Set height for the arrow icon container */
.select2-selection__arrow {
  height: 36px !important;
}

/* CUSTOM CSS FOR FRONTEND HEADER & OTHER BY AKSHAY */
@media screen and (min-width: 1199.98px) {
  .desktop-navbar {
    display: inherit;
  }
  .mobile-navbar {
    display: none;
  }
}
@media screen and (max-width: 1199.99px) {
  .desktop-navbar, .layout-menu, .layout-menu-expanded .layout-overlay {
    display: none;
  }
  .mobile-navbar {
    display: block;
  }
  /* .list-unstyled li {
    border-bottom: 1px solid #ccc;
  } */
  .card {
    margin-top: 115px;
  }
  .events-list {
    margin-top: 90px;
  }
}

/* CUSTOM CSS FOR FRONTEND FOOTER BY AKSHAY */
.footer-frontend {
  background-color: #5C61E6;
  color: white;
  font-family: "Inter", sans-serif;
  padding: 70px 36px;
}

.footer-heading {
  position: relative;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -35px; /* little gap from text */
  left: 0;
  width: 75px; /* small line */
  height: 1px;
  background-color: #fff; /* white line */
}

.list-unstyled {
  padding-top: 40px;
}
.footer-frontend ul li {
  margin: 7px 0;
}

.footer-frontend ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.footer-frontend ul li a:hover {
  text-decoration: none;
}

.footer-frontend p {
  margin: 30px 0;
  font-size: 18px;
  font-weight: 500;
}

.footer-frontend i {
  margin-right: 5px;
  font-size: 20px;
}

.social-icons {
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
  width: 94%;
}

.social-icon {
  width: 40px;
  height: 40px;
}

.social-icon i {
  color: #fff;
  /* Blue icon inside */
  font-size: 20px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 100%;
  border-radius: 3px;
}

.footer-bottom {
  font-size: 15px;
  font-weight: 600;
}

/* .contact-info-col {
  margin-left: -40px
} */
/* .menu-info-col {
  margin-left: -25px
} */
.usefullinks-info-col ul li {
  margin-bottom: 20px;
}

.contact-info-col .address-text {
    display: flex; 
    align-items: center; 
}

.contact-info-col .address-text i {
    margin-right: 10px;
}

.contact-info-col .address-text span {
    margin-left: 5px;
}

@media screen and (max-width: 768px) {
  .footer-frontend {
    padding: 50px 20px;
  }
  .contact-info-col, .menu-info-col {
    margin-left: 0;
  }
}

/* Page Bnners */
.banner {
  position: relative;
  background: url('../img/sucess.jpg') no-repeat center center/cover;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .banner {
    top: 3%;
  }
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  color: white;
  width: 100%;
  height: 100%;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner h1 {
  font-size: 48px;
  margin: 0 0 10px;
}

.breadcrumb {
  font-size: 16px;
  color: #fff;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb i {
  margin-right: 5px;
}