@media (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
}

.image-overlay-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Adjust opacity as needed */
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 30px;
}

.counter {
  font-size: 48px;
  font-weight: bold;
}

/* Additional styles for count-up animation if needed */
.count-up {
  text-align: center;
}

.counter {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  /* margin-top: 10px; */
  animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  font-family: "Poppins", sans-serif;
  color: #444;
  font-size: 14px;
  overflow-x: hidden;
}
section {
  position: relative;
}
a {
  text-decoration: none !important;
}
.back-to-top {
  position: fixed;
  bottom: 50px;
  right: 40px;
  background: #c500c7;
  z-index: 1;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
}
.back-to-top:hover {
  background: #fffb00;
}

/*desktop menu*/

.top-header {
  padding: 3px 0;
}
img.desktop-logo {
  padding: 10px 0;
  width: 160px;
  height: auto;
  object-fit: contain;
  transform: scale(1.15);
}
.logo-right-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-mail,
.header-phone,
.header-location {
  display: flex;
  align-items: center;
}
.header-contact-icon {
  color: #c500c7;
  font-size: 34px;
  margin-right: 10px;
}
.header-contact-label {
  color: #c500c7;
  font-weight: 600;
  line-height: 1;
}
.header-contact-link a {
  color: #414141;
}
.nav-header {
  background: #fffb00;
  /* background: #fffb00; */
}
a.nav-link {
  font-weight: 600;
  color: #111;
  padding: 20px !important;
}
a.nav-link:hover,
a.nav-link.current {
  background: #c500c7;
  color: #fff !important;
}
.navbar .dropdown-menu {
  padding: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  display: block;
  visibility: hidden;
  border: none;
  border-radius: 0;
  box-shadow: 0 0 5px rgba(255, 192, 0, 0.5);
  background: #eee;
}
.dropdown:hover .dropdown-menu {
  visibility: visible;
  transform: translateY(0);
}
.navbar {
  padding: 0;
}
a.dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
}
a.dropdown-item:hover {
  background: #c500c7;
  color: #fff;
}
form#headerSearch input {
  padding: 7px;
  border: none;
  text-indent: 10px;
  border-radius: 30px;
  outline: none;
}

/*footer*/

img.footer-logo {
  width: 140px;
  margin-bottom: 1.4rem;
}
.footer-logo-block {
  position: relative;
  padding: 0 35px 35px;
  background: #fffb00;
}
.footer-main {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 3rem;
}
.footer-logo-block:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 70px;
  background: #fffb00;
}
.footer-logo-tagline {
  margin-bottom: 1.4rem;
  color: #111;
}
.footer-social h5 {
  color: #111;
  font-weight: 600;
}
.footer-social-icons i {
  display: inline-flex;
  font-size: 1rem;
  width: 32px;
  height: 32px;
  border: 1px solid;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #111;
  margin-right: 5px;
}
.footer-social-icons i:hover {
  color: #c500c7;
}
.footer-social {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #111;
}
.policy-links {
  margin-top: 1.5rem;
}
.policy-links a {
  color: #111;
  margin-right: 10px;
  white-space: pre;
}
.policy-links a:hover {
  color: #c500c7;
}
.footer-secondary-block {
  position: relative;
  padding: 80px 0px 0px 40px;
}
h5.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}
a.footer-menu-item {
  position: relative;
  display: inline-block;
  color: #fff;
  padding-left: 20px;
  margin-bottom: 5px;
}
a.footer-menu-item:hover {
  color: #fffb00;
}
ul.footer-menu {
  list-style: none;
  padding: 0;
}
a.footer-menu-item:before {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f061";
  color: #fff;
  left: 0;
}
.footer-main:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.contact-menu-item {
  display: flex;
  margin-bottom: 10px;
  color: #fff;
}
.contact-menu-item-left {
  font-weight: 600;
  min-width: 75px;
}
.contact-menu-item-right a {
  color: #fff;
}
.contact-menu-item-right a:hover {
  color: #fffb00;
}
.copyright-block {
  margin-top: 3rem;
  border-top: 1px solid #fffb00;
  padding: 2.5rem 0;
  color: #fff;
}
.small-title {
  color: #c500c7;
  font-weight: 600;
  font-size: 18px;
}
.big-title {
  font-size: 30px;
  color: #111;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.4;
}
.big-title-side {
  font-size: 30px;
  color: #111;
  font-weight: 600;
  margin-bottom: 1rem;
}
.sponsor-div {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.sponsor-div img {
  height: 100px;
}
.section-p-80 {
  padding-bottom: 80px;
}
.article-img {
  width: 100%;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  height: 220px;
  object-fit: cover;
}
.article-card {
  margin: 0.5rem;
  text-align: center;
  margin-bottom: 2rem;
}
.article-card-title a {
  color: #111;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  min-height: 3.2rem;
}
.article-card-date {
  color: #c500c7;
}
.icon-block {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.icon-box img {
  width: 100px;
  margin-right: 1.5rem;
}
.icon-box-title {
  font-size: 18px;
  font-weight: 500;
  color: #111;
}
.resource-card {
  text-align: center;
  margin: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: 1px 1px 5px 2px rgba(212, 212, 212, 0.094);
}
.resource-card-txt-block {
  background: rgba(255, 192, 0, 0.2);
  padding: 1rem;
}
.resource-card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  min-height: 3.2rem;
  color: #111;
  margin-bottom: 10px;
}
.resource-card-text {
  margin-bottom: 1rem;
}
.resource-card-txt-block a {
  color: #c500c7;
  font-weight: 500;
  text-decoration: underline !important;
}
.resource-card-txt-block a:hover {
  color: #fffb00;
}
a.primary-btn {
  display: inline-block;
  background: #c500c7;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}
a.primary-btn:hover {
  background: #fffb00;
  color: #444;
}
.section-py-60 {
  padding: 60px 0;
}
section#whatWeDoSection {
  background: rgba(255, 192, 0, 0.2);
  margin-bottom: 4rem;
}
.what-we-right {
  margin-left: 2rem;
}
.article-card:hover img {
  transform: scale(1.02);
}
.icon-list-right {
  margin-left: 2rem;
}
.hero-overlay {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-text-block {
  position: absolute;
  top: 50%;
  z-index: 10;
  text-align: center;
  width: 100%;
  transform: translateY(-50%);
}
.hero-mid {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-small-title span {
  display: inline-block;
  color: #fff;
  background: rgba(175, 175, 175, 0.4);
  padding: 8px 25px;
  font-weight: 600;
  border-radius: 50px 0;
}
.hero-small-title {
  margin-bottom: 2rem;
}
h1.hero-big-title {
  color: #fff;
  margin-bottom: 1.5rem;
}
h5.hero-text {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 2rem;
}
#heroSlider .owl-item.active .hero-small-title {
  -webkit-animation: 1s 0.3s fadeIn both;
  animation: 1s 0.3s fadeInUp both;
}
#heroSlider .owl-item.active .hero-big-title {
  -webkit-animation: 1s 0.3s fadeInUp both;
  animation: 1s 0.3s fadeInUp both;
}
#heroSlider .owl-item.active .hero-text {
  -webkit-animation: 1s 0.3s fadeInUp both;
  animation: 1s 0.3s fadeInUp both;
}
#heroSlider .owl-item.active .hero-btn {
  -webkit-animation: 1s 0.3s fadeInUp both;
  animation: 1s 0.3s fadeInUp both;
}
.owl-dots {
  position: absolute;
  width: 100%;
  bottom: 20px;
  z-index: 1;
}
button.owl-dot.active span {
  background: #c500c7 !important;
}
.page-header {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 130px 0;
  text-align: center;
}
.breadcrumb-link {
  position: relative;
}
.page-title {
  position: relative;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
}
.page-header:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.breadcrumb-link,
.breadcrumb-link a {
  color: #fffb00;
  font-weight: 600;
}
.mid-title {
  font-size: 1.4rem;
  color: #c500c7;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.right-bar {
  margin-left: 2rem;
}
.bg2 {
  background: rgba(255, 192, 0, 0.2);
}
img.team-img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.team-card {
  text-align: center;
  margin-bottom: 2rem;
}
.team-name {
  font-size: 18px;
  font-weight: 600;
  color: #c500c7;
}
.team-role {
  margin-bottom: 0.2rem;
}
.team-social a {
  display: inline-flex;
  color: #fff;
  border: 1px solid #fffb00;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fffb00;
}
.team-social a:hover {
  background: #fff;
  color: #fffb00;
  border: 1px solid #fffb00;
}
a.donate-btn {
  display: inline-flex;
  background: #c500c7;
  color: #fff;
  align-items: center;
  padding: 10px 30px;
  border-radius: 40px;
  transition: all 0.3s ease;
}
a.donate-btn:hover {
  transform: translateY(-2px);
}
img.donate-img {
  margin-right: 8px;
}
.contact-img {
  width: 100%;
}
.contact-form-left {
  margin: 3.5rem;
}
.contact-form-left a {
  color: #f3ef14;
  word-wrap: break-word;
}
.contact-form-left .row a {
  color: #444;
}
.contact-form-left a:hover {
  color: #ffd34e;
}
form#contactForm input,
form#contactForm textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border: 1px solid #fffb00;
}
form#contactForm {
  margin: 1rem 0 2rem;
}
button.form-btn {
  background: #c500c7;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  outline: none;
  border: none;
  transition: all 0.3s ease;
}
button.form-btn:hover {
  background: #fffb00;
}
.contact-follow a {
  margin-right: 1rem;
  font-weight: 500;
}
#mapSection iframe {
  width: 100%;
  border: 3px dashed #fffb00 !important;
}
.events-title-block {
  display: flex;
  align-items: center;
  background: rgba(255, 192, 0, 0.2);
}
.events-card-date {
  width: 70px;
  text-align: center;
  padding: 10px 0;
  background: #fffb00;
  color: #111;
  margin-right: 1rem;
}
.events-card-day {
  font-size: 1rem;
  font-weight: 700;
}
.events-card-title a {
  color: #c500c7;
  font-size: 1rem;
  font-weight: 700;
}
.events-card-title a:hover {
  color: #fb40fd;
}
.events-card-txt {
  font-size: 13px;
}
.events-block img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
#error404 {
  padding: 10rem 0;
}
h4.single-event-title {
  color: #111;
  font-weight: 600;
  margin-bottom: 1rem;
}
.event-sidebar {
  background: rgba(255, 192, 0, 0.2);
  padding: 2.5rem;
  margin-left: 2rem;
}
.event-sidebar-div {
  padding: 1rem 0;
  border-bottom: 1px solid #fffb00;
}
h3.single-article-title {
  font-weight: 600;
  color: #111;
}
.article-date-author-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: #c500c7;
  font-weight: 500;
}
.sponsor-list img {
  width: 80px;
  margin: 2rem 2rem;
  transition: all 0.3s ease;
}
.sponsor-list img:hover {
  transform: scale(0.9);
}
a.secondary-btn {
  color: #fffb00;
  border: 1px solid;
  padding: 1rem 3rem;
  font-weight: 600;
  font-size: 0.8rem;
  margin-top: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
}
a.secondary-btn:hover {
  background: #fffb00;
  color: #444;
  border: 1px solid;
}
.events-block {
  margin-bottom: 2rem;
}
.mobile-donate {
  padding-left: 1rem;
}
span.category-tag {
  background: #c500c7;
  color: #fff;
  padding: 3px 9px;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.article-card-date-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
  margin-bottom: 8px;
  font-weight: 500;
}
.article-card-title {
  margin-bottom: 0.8rem;
}
.article-card-author {
  font-style: italic;
}
.resource-card img {
  height: 220px;
  object-fit: cover;
}
.events-block img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
