@import url('https://fonts.googleapis.com/css2?family=Galdeano&display=swap');

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-Regular.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-Light.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-SemiBold.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-Bold.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:               #255F38;
  --secondary-color:              #660B05;
  --tertiary-color:               #7ADAA5;
  --section-bg-color:             #f0f8ff;
  --site-footer-bg-color:        #232323;
  --site-footer-bottom-bg-color:  #343434;
  --custom-btn-bg-color:          #597081;
  --custom-btn-bg-hover-color:    #5bc1ac;
  --dark-color:                   #000000;
  --p-color:                      #1A1A1A;
  --border-color:                 #e9eaeb;
  --body-font-family:             'Metropolis', sans-serif;
  --h1-font-size: clamp(2.5rem, 5vw + 1rem, 3.5rem);
  --h2-font-size: clamp(2rem, 4vw + 0.8rem, 3rem);
  --h3-font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  --h4-font-size: clamp(1.25rem, 2.5vw + 0.4rem, 1.75rem);
  --h5-font-size: clamp(1.1rem, 2vw + 0.3rem, 1.5rem);
  --h6-font-size: clamp(1rem, 1.5vw + 0.3rem, 1.25rem);
  --p-font-size:  clamp(0.9rem, 1vw + 0.3rem, 1rem);
  --btn-font-size: clamp(0.9rem, 1.2vw + 0.2rem, 1.1rem);
  --copyright-font-size: clamp(0.75rem, 1vw, 0.875rem);

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
}
body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}
::selection {
  background: var(--primary-color);
  color: #fff;
}
::-moz-selection {
  background: var(--primary-color);
  color: #fff;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px; 
}
::-webkit-scrollbar-track {
  background:var(--primary-color);
}
::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: var(--white-color);
}
scrollbar-width: thin;
scrollbar-color: var(--primary-color);

.bg-primary-subtle {
  background-color: color-mix(in srgb, var(--primary-color) 30%, white) !important;
}
.bg-secondary2{
    background-color:var(--secondary-color);
}
.text-primary-emphasis {
  color: color-mix(in srgb, var(--primary-color) 45%, black) !important;
}
.border-primary-subtle {
  border-color: color-mix(in srgb, var(--primary-color) 25%, white) !important;
}
.bg-secondary-subtle {
  background-color: color-mix(in srgb, var(--secondary-color) 30%, white) !important;
}
.text-secondary-emphasis {
  color: color-mix(in srgb, var(--secondary-color) 45%, black) !important;
}
.border-secondary-subtle {
  border-color: color-mix(in srgb, var(--secondary-color) 25%, white) !important;
}
.animate__delay-1-5s { animation-delay: 1.5s !important; }
.animate__delay-0-2s { animation-delay: 0.2s !important; }
.animate__delay-0-3s { animation-delay: 0.3s !important; }
.animate__delay-0-4s { animation-delay: 0.4s !important; }
.animate__delay-0-5s { animation-delay: 0.5s !important; }
.animate__delay-0-6s { animation-delay: 0.6s !important; }
.animate__delay-0-7s { animation-delay: 0.7s !important; }
.animate__delay-0-8s { animation-delay: 0.8s !important; }
.animate__delay-0-9s { animation-delay: 0.9s !important; }



/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

h2 {
  color: var(--secondary-color);
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--bs-light);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.section-overlay + .container {
  position: relative;
}

.causes-slider {
  padding: 3rem 0;
}
.causes-slider .swiper-slide {
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.6;
}
.causes-slider .swiper-slide-active {
  transform: scale(1.05);
  opacity: 1;
  border: 1px solid var(--primary-color);
}
.causes-slider .card {
  border-radius:0;
  overflow: hidden;
}
.causes-slider .card img{
  aspect-ratio: 1/1;
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--secondary-color);
}
.swiper-pagination-bullet{
  border: 5px solid var(--primary-color);
  background-color: transparent;
}
.swiper-pagination-bullet-active {
  background:var(--primary-color);
}

/*---------------------------------------
  CUSTOM BLOCK               
-----------------------------------------*/
.custom-block-wrap {
  background: var(--white-color);
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.custom-block-wrap:hover {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.custom-block-body {
  padding: 30px;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-block .custom-btn {
  border-radius: 0;
  display: block;
}


/*---------------------------------------
  PROGRESS BAR               
-----------------------------------------*/
.progress {
  background: var(--border-color);
  height: 5px;
}

.progress-bar {
  background: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM LIST               
-----------------------------------------*/
.custom-list {
  margin-bottom: 0;
  padding-left: 0;
}

.custom-list-item {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
}


/*---------------------------------------
  CUSTOM TEXT BOX               
-----------------------------------------*/
.custom-text-box {
  background: var(--white-color);
  border-radius: var(--border-radius-small);
  padding: 40px;
}

.custom-text-box-image {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-text-box-icon {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--secondary-color);
  font-size: var(--h6-font-size);
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  line-height: 30px;
}


/*---------------------------------------
  AVATAR IMAGE - TESTIMONIAL, AUTHOR               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 65px;
  height: 65px;
  object-fit: cover;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--primary-color);
  border-radius: var(--border-radius-large);
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem; 
}
@media (min-width: 768px) {
  .custom-btn {
    padding: 0.75rem 1.5rem; 
  }
}
.custom-btn:hover,
.custom-btn:focus {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}
.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  color: var(--custom-btn-bg-color);
  margin-top: 8px;
  padding: 12px 25px;
}
.custom-border-btn {
  display: inline-block;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-large);
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem; 
}
@media (min-width: 768px) {
  .custom-border-btn {
    padding: 0.75rem 1.5rem; 
  }
}
.custom-border-btn:hover,
.custom-border-btn:focus {
  background: var(--primary-color);
  color: var(--white-color);
  text-decoration: none;
  transform: translateY(-2px);
  border-color: var(--primary-color);
}
.navbar-expand-lg .navbar-nav .nav-link.custom-btn{
    padding: 0.5rem 1rem !important; 
}
.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: var(--white-color);
  z-index: 9;
  padding-top: 0;
  padding-bottom: 0;
}
.navbar .container {
  transition: padding-left .25s ease, padding-right .25s ease;}

.navbar-brand {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand span {
  display: inline-block;
  vertical-align: middle;
}

.navbar-brand small {
  color: var(--secondary-color);
  display: block;
  font-size: clamp(0.43rem, 1.2vw, 0.525rem); 
  line-height: normal;
  text-transform: uppercase;
}

.logo {
  width: 5rem;
  height: auto;
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--dark-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  background: transparent;
  color: var(--secondary-color)!important;
}
.navbar-nav .nav-item:last-child .nav-link:hover {
  color: var(--white-color) !important;
}
.dropdown-menu {
  background: var(--secondary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  width: auto;
  padding: 0;
  margin-top: 20px;
}
.dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--secondary-color);
  position: absolute;
  top: -10px;
  left: 20px;
}

.dropdown-item {
  display: inline-block;
  color: var(--white-color)!important;
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-item.active, 
.dropdown-item:active,
.dropdown-item:focus, 
.dropdown-item:hover {
  background:#B12C00;
  border-radius: 8px;
  color: var(--white-color)!important;
}

.dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: bold; !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
  transition: transform 0.4s ease;
}
.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
.navbar-nav .dropdown:hover .dropdown-toggle::after {
      transform: rotate(180deg);
}
}

@media (max-width: 991px) {
  .navbar .navbar-collapse.show {
    background: var(--bs-light);
    border-radius: 10px;
  }
  .navbar .dropdown-menu {
      position: relative !important; 
      transform: none !important;   
      inset: auto !important;      
      width: 100%;
      max-height: 60vh;      
      overflow-y: auto;     
      -webkit-overflow-scrolling: touch;
      margin: 5px 0 15px 0 !important;
      border-radius: 8px;
      background: var(--secondary-color);
  }
  .dropdown-menu::before {
      border-bottom: 15px solid var(--secondary-color);
    }
    .dropdown-item{
      color: var(--white-color);
    }
    .dropdown-item.active, 
    .dropdown-item:active,
    .dropdown-item:focus, 
    .dropdown-item:hover {
       background:#B12C00;
      color: var(--white-color);
      border-radius: 8px;
    }
  /*.dropdown:hover .dropdown-menu {
    display: block;
    position: relative;
    margin-top: 5px;
    margin-bottom: 20px;
    left: 20px;
  }*/
  .navbar .dropdown-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: var(--primary-color);
  padding-top: 15px;
  padding-bottom: 10px;
}
.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
}
.site-header .social-icon {
  text-align: right;
}
.site-header .social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: inherit;
  margin-right: 15px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
  color: var(--white-color);
  text-decoration: none;
}
.site-header .social-icon-link:hover {
  background: var(--white-color);
  color: var(--secondary-color);
}

/*---------------------------------------
  HERO & HERO SLIDE         
-----------------------------------------*/
/* Swiper Container */
.header-swiper {
  background: linear-gradient(
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.1)
    ),
    url("../images/logo.webp") center center/contain no-repeat;    width: 100%;
    height: 680px;
}
.hero-section-full-height {
    height: 680px;
    min-height: 680px;
    position: relative;
}
.header-swiper .swiper-slide {
    position: relative;
    height: 100%;
}
.header-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
    padding-top: 1%;
    text-align: center;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    margin-top: -25px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: white;
}

/* Your existing text styles - KEEP THESE */
.title h5 {
    font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.5rem); 
    font-weight: 700;
    letter-spacing: 1px;
    color:var(--tertiary-color);
}

.title h1 {
    font-size: clamp(2rem, 3vw + 1rem, 3.25rem); 
    line-height: 1.2;
    text-transform: uppercase;
}

.carousel-caption p {
    font-size: clamp(0.9rem, 1vw + 0.4rem, 1.2rem) !important; 
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: var(--bs-light);
}

.carousel-caption .btn {
    font-size: clamp(0.9rem, 0.8vw + 0.5rem, 1.125rem); 
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid var(--bs-white) !important;
    color: var(--bs-white) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-swiper,
    .hero-section-full-height {
        height: 550px;
        min-height: 550px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 580px) {
    .header-swiper,
    .hero-section-full-height {
        height: 520px;
        min-height: 520px;
    }
    
    /* REMOVED clip-path completely */
    .carousel-caption {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .header-swiper,
    .hero-section-full-height {
        height: 500px;
        min-height: 500px;
    }
    
    .carousel-caption {
        padding-bottom: 30px;
    }
}
.title {
  margin-bottom: 2rem;
}
.title .title-left,
.title .title-center,
.title .title-right {
  display: inline-block;
  text-transform: uppercase;
  overflow: hidden;
}
.title .title-center {
  text-align: center;
}
.title .title-right {
  text-align: right;
}
.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
  position: relative;
  display: inline-block;
}
.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
  position: absolute;
  content: "";
  width: 500%;
  height: 0;
  top: 9px;
  border-bottom: 1px solid var(--white-color);
}
.title .title-left h5::after,
.title .title-center h5::after {
  left: calc(100% + 15px);
}
.title .title-right h5::before,
.title .title-center h5::before {
  right: calc(100% + 15px);
}
.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
  border-bottom: 1px solid var(--bs-white);
  font-family: "Galdeano", sans-serif;
}
.about-heading{
    font-family: "Galdeano", sans-serif;
}
section.about-section {
  position: relative;
  z-index: 1;
  padding-top: 100px; 
}

.hyphen-after {
  position: relative;
  display: inline-block;
  padding-right: 1.2em; /* space between text and hyphen */
}
.hyphen-after::after
 {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 40px;
  border-bottom: 1px solid currentColor;
  transform: translateY(-50%);
  color:var(--primary-color); 
  font-weight: 400;
}


/*---------------------------------------
  FEATURE BLOCK              
-----------------------------------------*/
.featured-block {
  text-align: center;
  transition: all 0.5s ease;
  min-height: 256px;
  padding: 15px;
}

.featured-block:hover {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.featured-block:hover .featured-block-image {
  transform: scale(0.75);
}

.featured-block-image {
  display: block;
  margin: auto;
  transition: all 0.5s;
}

.featured-block:hover .featured-block-text {
  margin-top: 0;
}

.featured-block-text {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
  margin-top: 20px;
  transition: all 0.5s;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-color: #fff; 
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 350px;
  height: 400px;
  object-fit: cover;
}

.custom-text-block {
  padding: 60px 40px;
}

#what-we-do .since-box {
  position: absolute;
  top: 0;
  right: 0;
  background: white !important;
  padding-left: 0.75rem;
  padding-bottom: 0.75rem;
  width: 200px;
  height: 200px;
}
#what-we-do .since-box-inner {
  background: none !important; /* remove white background */
  padding: 0 !important;       /* remove padding so image fills */
  color: white;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}


@media (max-width: 768px) {
  #what-we-do .since-box {
    width: 130px;
    height: 130px;
    padding-left: 0.5rem;
    padding-bottom: 0.5rem;
    top: 10px;
    right: 10px;
  }

  #what-we-do .since-box-inner h2 {
    font-size: 1.5rem;
  }

  #what-we-do .since-box-inner h6 {
    font-size: 0.8rem;
  }
}

.dyw{
  background-color: var(--secondary-color);
}
/*---------------------------------------
  COUNTER NUMBERS              
-----------------------------------------*/
.counter-thumb {
  margin: 20px;
  margin-bottom: 0;
}

.counter-number,
.counter-text {
  color: var(--secondary-color);
  display: block;
}

.counter-number,
.counter-number-text {
  color: var(--primary-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}


/*---------------------------------------
  VOLUNTEER              
-----------------------------------------*/
.volunteer-section {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}
.students-section{
  background: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("../images/fowk-929.webp") center center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.volunteer-section::after {
  content: "";
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
  top: -110px;
  right: -80px;
  width: 300px;
  height: 300px;
}
.volunteer-form {
  background: var(--white-color);
  border: 2px solid var(--primary-color);
  border-radius:8px;
  padding: 50px;
}
.students-form{
  background: var(--white-color);
  border: 2px solid var(--primary-color);
  border-radius:8px;
  padding: 50px;
}
.volunteer-image {
  display: block;
  margin: auto;
  object-fit: cover;
}
.volunteer-section .custom-block-body {
  max-width: 440px;
  margin: 0 auto;
}
.volunteer-section .custom-block-body p {
  line-height: 1.7;
}
@media screen and (min-width: 1600px) {
  .volunteer-section::after {
    width: 450px;
    height: 450px;
  }
  .volunteer-image {
    width: 350px;
    height: 350px;
  }
}
@media screen and (max-width: 991px) {
  .volunteer-section::after {
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 991px) {
  .volunteer-image {
    margin: 0;
  }
  .volunteer-form .students-form{
    padding: 30px;
  }
}
@media screen and (max-width: 480px) {
    .volunteer-image {
  }
  .volunteer-section::after {
    width: 200px;
    height: 200px;
  }
}
/*---------------------------------------
  DONATE              
-----------------------------------------*/
.donate-section {
  background-image: url('../images/different-people-doing-volunteer-work.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.donate-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 50px;
}


/*---------------------------------------
  NEWS         
-----------------------------------------*/


blockquote {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--site-footer-bg-color);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 90px 50px 50px 50px;
  text-align: center;
}

blockquote::before {
  content: "“";
  color: var(--custom-btn-bg-color);
  font-size: 100px;
  line-height: 1rem;
  display: block;
}

.author-comment-link {
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold);
}

.search-form {
  margin-top: 20px;
}

.category-block,
.subscribe-form {
  margin-top: 40px;
  margin-bottom: 40px;
}

.category-block-link {
  font-size: var(--copyright-font-size);
  margin-top: 5px;
  margin-bottom: 5px;
}

.category-block-link:hover {
  color: var(--primary-color);
}

.badge {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  font-weight: var(--font-weight-normal);
  line-height: normal;
}

.tags-block-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  display: inline-block;
  font-size: var(--copyright-font-size);
  line-height: normal;
  margin-right: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 8px 15px;
}

.tags-block-link:hover {
  border-color: var(--dark-color);
  color: var(--dark-color);
}

.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("../images/fowk-206.webp") center center/cover no-repeat;
  color: #fff;
  padding: 100px 0;
}
@media (min-width: 992px) {
  .cta-section {
    padding: 150px 0;
  }
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -60px;
  width: 220px;
  height: 220px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0.8;
  animation: float 6s ease-in-out infinite;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 160px;
  height: 160px;
  background-color: var(--custom-btn-bg-color);
  border-radius: 50%;
  opacity: 0.9;
  animation: float 8s ease-in-out infinite reverse;
}
  .cta-section .row {
    padding-top: 50px;
    padding-bottom: 50px;
  }
.cta-section h2 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  line-height: 1.3;
}

.cta-section p {
  font-size: clamp(1rem, 1.5vw + 0.2rem, 1.2rem);
  max-width: 500px;
}
.text-accent {
  color: var(--primary-color);
}
.text-accent2{
  color: var(--secondary-color);
}
.text-accent3{
  color: var(--tertiary-color);
}
.bg-gold{
  background-color: #fcba03;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
}
/*---------------------------------------
  ACHIEVEMENTS 
-----------------------------------------*/
.achievements-section-header-section {
  background-image: url('../images/fowk-323.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
.coordinator-section-header-section {
  background-image: url('../images/fowk-19.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
.about-section-header-section {
  background-image: url('../images/fowk-918.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
.about-ondiri-section-header-section {
  background-image: url('../images/fowk-943.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
.contact-section-header-section {
  background-image: url('../images/fowk-113.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
.involve-section-header-section {
  background-image: url('../images/fowk-605.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
.roll-section-header-section {
  background-image: url('../images/fowk-914.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
.blog-header-section {
  background-image: url('../images/fowk-02.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
.news-header-section {
  background-image: url('../images/fowk-655.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
.team-header-section {
  background-image: url('../images/fowk-769.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
.activities-header-section {
  background-image: url('../images/fowk-962.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
.run-header-section {
  background-image: url('../images/fowk-913.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
.reg-header-section {
  background-image: url('../images/fowk-912.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

/*---------------------------------------
  NEWS  
-----------------------------------------*/
/* News Swiper Container */
.news-swiper {
  position: relative;
  overflow: visible;
  padding-right: 2rem;
}

.news-swiper::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40px;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255,255,255,0), var(--bs-body-bg));
}

.news-card {
  border: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 .25rem 1rem rgba(0,0,0,.08);
  background: #fff;
}
.post-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4; 
  overflow: hidden;
  border-radius: 1rem;
}
.post-card img.post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.post-card img.post-img:hover {
  transform: scale(1.05);
}
.post-card .p-4 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.99), rgba(0,0,0,0.1));
  color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.post-card .post-category {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.85;
  color: var(--bs-light);
}
.post-card .post-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--white-color)!important;
}
.post-card .post-excerpt {
  font-size: 0.9rem;
  margin: 0;
  color: var(--white-color)!important;
}
/* Post meta and button */
.post-card .post-meta {
  font-size: 0.8rem;
  opacity: 0.8;
}
.post-card .btn {
  align-self: start;
  padding: 0.25rem 0.75rem;
  color: var(--bs-info);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  border-radius: 0.25rem;
}

/* Swiper navigation */
.news-swiper .swiper-button-prev,
.news-swiper .swiper-button-next {
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--color-secondary);
  opacity: 0.5;
  box-shadow: 0 .25rem .75rem rgba(0,0,0,.08);
}

.news-swiper .swiper-button-prev:after,
.news-swiper .swiper-button-next:after {
  font-size: 16px;
  font-weight: 700;
}

/* Responsive text scaling */
@media (max-width: 992px) {
  .post-card .post-title { font-size: clamp(1rem, 2vw, 1.1rem); }
  .post-card .post-excerpt { font-size: clamp(0.8rem, 1.8vw, 0.9rem); }
  .post-card .post-meta { font-size: clamp(0.7rem, 1.5vw, 0.8rem); }
}
.post-card.video-post .ratio {
  border-radius: 1rem; /* same style as images */
  overflow: hidden;
}
.post-card.video-post .p-4 {
  position: relative;
  bottom: auto; left: auto;
  background: none; /* optional, if you want transparent overlay */
}

/*---------------------------------------
  TESTIMONIAL CAROUSEL              
-----------------------------------------*/
.reviews-thumb {
  margin-bottom: 0;
  padding: 32px;
}
.reviews-text {
  margin-top: 10px;
  margin-bottom: 25px;
}
.reviews-image {
  border-radius: 100px;
  width: 70px !important;
  height: 70px !important;
}
.reviews-carousel .owl-item {
  opacity: 0.45;
}
.reviews-carousel .owl-item.active.center {
  opacity: 1;
}
.reviews-carousel .owl-item.active.center .reviews-thumb {
  background: var(--secondary-color);
}
.reviews-carousel .owl-item.active.center .reviews-thumb,
.reviews-carousel .owl-item.active.center .reviews-text {
  color: var(--white-color);
}
.reviews-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  margin: auto;
  text-align: center;
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.reviews-carousel .owl-nav span {
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
}
.reviews-carousel .owl-nav .owl-prev {
  position: relative;
  left: -80px;
}
.reviews-carousel .owl-nav .owl-next {
  position: relative;
  right: -80px;
}
.reviews-carousel .owl-prev span,
.reviews-carousel .owl-next span {
  color: transparent;
}
.reviews-carousel .owl-prev span::before,
.reviews-carousel .owl-next span::before {
  font-family: bootstrap-icons;
  display: block;
  font-size: var(--h3-font-size);
  color: var(--p-color);
  width: 35px;
  height: 35px;
}
.reviews-carousel .owl-prev span::before {
  content: "\f12f";
}
.reviews-carousel .owl-next span::before {
  content: "\f138";
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-title {
  margin-bottom: 60px;
}

.about .content {
  background: var(--secondary-color);
  padding: 7rem 0;
}
.about .content .img-overlap {

}
.about p {
  color: var(--white-color);
}
.about .content-title {
  color: var(--white-color);
  font-weight: 300;
  text-align: left;
}
.about .number-badge {
  width: 50px;
  height: 50px;
  background:var(--primary-color);
  color:var(--bs-light);
  font-weight: 600;
  border-radius:8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.about .bi {
  color: var(--tertiary-color);        
}
.about .content-title strong {
  font-weight: 700;
  color: var(--tertiary-color);
}
.about .content-subtitle {
  font-weight: 300;
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 1.3rem;
}
/*--------------------------------------------------------------
# About wetland
--------------------------------------------------------------*/
.about-wetland .section-title {
  margin-bottom: 60px;
}
.about-wetland .content {
  padding: 7rem 0;
}
.about-wetland .content .img-overlap {
}
.about-wetland p {
  color: var(--dark-color);
}
.about-wetland .content-title {
  color: var(--dark-color);
  font-weight: 300;
  text-align: left;
}
.about-wetland .number-badge {
  width: 50px;
  height: 50px;
  background:var(--secondary-color);
  color:var(--bs-light);
  font-weight: 600;
  border-radius:8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.about-wetland .bi {
  color: var(--tertiary-color);        
}
.about-wetland .content-title strong {
  font-weight: 700;
  color: var(--tertiary-color);
}
.about-wetland .content-subtitle {
  font-weight: 300;
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 1.3rem;
}
/*---------------------
    Blog
-----------------------*/

.blog {
  padding-bottom: 55px;
}

.latest {
  padding-bottom: 55px;
}

.blog__item {
  margin-bottom: 45px;
}

.blog__item:hover a::after {
  width: 40px;
  background: #e53637;
}

.blog__item:hover .blog__item__text {
  -webkit-box-shadow: 0px 15px 60px rgba(67, 69, 70, 0.05);
  box-shadow: 0px 15px 60px rgba(67, 69, 70, 0.05);
}

.blog__item__pic {
  height: 270px;
}

.blog__item__text {
  padding: 30px 30px 25px;
  margin: 0 30px;
  margin-top: -35px;
  background: #ffffff;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.blog__item__text span {
  color: #3d3d3d;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}

.blog__item__text span img {
  margin-right: 6px;
}

.blog__item__text h5 {
  color: #0d0d0d;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 10px;
}

.blog__item__text a {
  display: inline-block;
  color: #111111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 3px 0;
  position: relative;
}

.blog__item__text a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #111111;
  content: "";
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar__item {
  text-align: center;
  margin-bottom: 65px;
}

.blog__sidebar__item:last-child {
  margin-bottom: 0;
}

.blog__sidebar__item form input {
  height: 50px;
  font-size: 15px;
  color: #444444;
  padding-left: 20px;
  border: 1px solid #e1e1e1;
  width: 100%;
  margin-bottom: 20px;
}

.blog__sidebar__item form input::-webkit-input-placeholder {
  color: #444444;
}

.blog__sidebar__item form input::-moz-placeholder {
  color: #444444;
}

.blog__sidebar__item form input:-ms-input-placeholder {
  color: #444444;
}

.blog__sidebar__item form input::-ms-input-placeholder {
  color: #444444;
}

.blog__sidebar__item form input::placeholder {
  color: #444444;
}

.blog__sidebar__title {
  text-align: center;
  margin-bottom: 35px;
}

.blog__sidebar__title h4 {
  color: #111111;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.blog__sidebar__title h4::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  width: 70px;
  background: #e1e1e1;
  content: "";
  margin: 0 auto;
}

.blog__sidebar__social a {
  display: inline-block;
  font-size: 18px;
  color: #111111;
  width: 50px;
  height: 50px;
  background: #f2f2f2;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  margin-right: 6px;
}

.blog__sidebar__social a:last-child {
  margin-right: 6px;
}

.recent__item {
  display: block;
  overflow: hidden;
  margin-bottom: 25px;
  text-align: left;
}

.recent__item__pic {
  float: left;
  margin-right: 25px;
}

.recent__item__text {
  overflow: hidden;
}

.recent__item__text h6 {
  color: #111111;
  line-height: 21px;
  font-weight: 700;
}

.recent__item__text span {
  font-size: 13px;
  color: #888888;
}

/*---------------------
  Blog Hero
-----------------------*/
.blog-hero {
  background: #f3f2ee;
  padding-top: 125px;
  padding-bottom: 190px;
}
.blog__hero__text h1 {
  color: #1A1A1A;
  font-size:var(--h3-font-size);
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 18px;
}

.blog__hero__text ul li {
  list-style: none;
  font-size:var(--p-font-size);
  color: #3d3d3d;
  display: inline-block;
  margin-right: 40px;
  position: relative;
}
.blog__hero__text ul li:after {
  position: absolute;
  right: -25px;
  top: 0;
  content: "|";
}
.blog__hero__text ul li:last-child {
  margin-right: 0;
}
.blog__hero__text ul li:last-child:after {
  display: none;
}
/*---------------------
  Blog Details
-----------------------*/
.blog-details {
  margin-top: -115px;
  padding-top: 0;
}
.blog-details blockquote{
  background-color: var(--primary-color);
}
.blog-details blockquote p{
  color: var(--white-color) !important;
}
.blog__details__content {
  position: relative;
}
.blog__details__text a{
  color: var(--bs-primary) !important;
}
.blog__details__share {
  text-align: center;
  position: absolute;
  left: -120px;
  top: 0;
}

.blog__details__share span {
  color: #111111;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 30px;
}

.blog__details__share ul li {
  list-style: none;
  margin-bottom: 15px;
}

.blog__details__share ul li a {
  color: #ffffff;
  font-size: 18px;
  height: 46px;
  display: inline-block;
  width: 46px;
  border-radius: 50%;
  line-height: 46px;
  text-align: center;
  background: #4267b2;
}
.blog__details__share ul li a.facebook {
  background: #1877f2; 
}
.blog__details__share ul li a.x-twitter {
  background: #000000; 
}
.blog__details__share ul li a.whatsapp {
  background: #25D366; 
  color: white;      
}
.blog__details__share ul li a.linkedin {
  background: #0077b5;
}
.blog__details__share ul li button.copy-link {
  background: var(--secondary-color, #333);
  border: none;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.blog__details__share ul li button.copy-link:hover {
  background: var(--primary-color);
}
.blog__details__share ul li button.copied {
  background:var(--bs-success); 
}

@media (max-width: 992px) {
  .blog__details__share {
    position: relative;
    left: 0;
    top: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .blog__details__share ul {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .blog__details__share ul li {
    margin-bottom: 0;
  }
}

.blog__details__text {
  margin-bottom: 50px;
}

.blog__details__text p {
  font-size:var(--p-font-size);
  line-height: 34px;
}

.blog__details__text p:last-child {
  margin-bottom: 0;
}

.blog__details__option {
  border-top: 1px solid #e5e5e5;
  padding-top: 15px;
  margin-bottom: 70px;
}

.blog__details__author__pic {
  display: inline-block;
  margin-right: 15px;
}

.blog__details__author__pic img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
}

.blog__details__author__text {
  display: inline-block;
}

.blog__details__author__text h5 {
  color: #111111;
  font-weight: 700;
}

.blog__details__tags {
  text-align: right;
}

.blog__details__tags a {
  display: inline-block;
  color: #111111;
  font-weight: 700;
  margin-right: 10px;
}

.blog__details__tags a:last-child {
  margin-right: 0;
}

.blog__details__btns {
  margin-bottom: 40px;
}

.blog__details__btns__item {
  display: block;
  border: 1px solid #ebebeb;
  padding: 25px 30px 30px;
  margin-bottom: 30px;
}

.blog__details__btns__item.blog__details__btns__item--next {
  text-align: right;
}

.blog__details__btns__item.blog__details__btns__item--next p span {
  margin-right: 0;
  margin-left: 5px;
}

.blog__details__btns__item p {
  color: #b7b7b7;
  margin-bottom: 10px;
}

.blog__details__btns__item p span {
  font-size: 20px;
  position: relative;
  top: 4px;
  margin-right: 5px;
}

.blog__details__btns__item h5 {
  color: #111111;
  font-size:var(--h5-font-size);
  line-height: 30px;
  font-weight: 700;
}

/*** Team ***/\
.team-item{
  position: relative;
  aspect-ratio: 16/9;
}
.team-item img {
    position: relative;
    top: 0;
    aspect-ratio: 1/1;
    object-fit:cover;
    transition: .5s;
}
.team-item:hover img {
    top: -30px;
    transform: scale(1.07);
}
.team-item:hover .team-text {
  background: var(--secondary-color) !important;
}
.team-item:hover .team-text h5{
  color:var(--tertiary-color);
}
.team-item:hover .team-text p {
  color: var(--bs-light);
}
.team-item:hover .team-social p{
  color: var(--white-color)!important;
}
.team-item .team-text {
    position: relative;
    height: 130px;
    transition: .5s;
}
.team-item:hover .team-text {
    margin-top: -60px;
    height: 200px;
}
.team-item .team-text .team-social {
    opacity: 0;
    transition: .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);
}
/*--------------------------------------------------------------
# Coordinator Message Section
--------------------------------------------------------------*/
.coordinator-message .content-title {
  color: var(--secondary-color);
  margin-bottom: 30px;
}
.coordinator-message .btn-cta {
  text-transform: uppercase;
  font-size: 14px;
  padding: 14px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.coordinator-message .btn-cta:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.coordinator-message .list-check {
  margin-bottom: 40px;
}
.coordinator-message .list-check li {
  display: block;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
  margin-bottom: 10px;
}
.coordinator-message .list-check li:before {
  content: "\f26e";
  font-family: "bootstrap-icons" !important;
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 18px;
  color: var(--accent-color);
}
.coordinator-img-wrapper {
aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;        
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;           
}
.coordinator-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;    
  border-radius: 50%;
}
.coordinator-message img {
  border-radius: 8px;
  object-fit: cover;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-methods{
  background-color: var(--primary-color);
}
.contact-follow{
  background-color: var(--secondary-color);
}
.contact-section {
  background: var(--white-color);
}

.contact-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 40px;
}

.contact-info-wrap {
  padding-top: 40px;
}

.contact-image-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  width: 100%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control,
.input-group-file {
  background-color: var(--bs-light);
  box-shadow: none;
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  color: var(--p-color);
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}
.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: var(--secondary-color);
}

.custom-form label {
  margin-bottom: 10px;
}

.custom-form .form-check-group {
  margin-bottom: 20px;
}

.donate-form .form-check-group-donation-frequency {
  padding-right: 0;
}

.form-check-group-donation-frequency + .form-check-group-donation-frequency {
  padding-right: 12px;
  padding-left: 0;
}

.form-check-group-donation-frequency .form-check-label {
  font-weight: var(--font-weight-semibold);
}

#DonationFrequencyOne {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#DonationFrequencyMonthly {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-form .form-check-radio {
  position: relative;
  height: 100%;
  padding-left: 0;
}

.custom-form .input-group-text {
  background: var(--secondary-color);
  border: 0;
  color: var(--white-color);
}

.custom-form .form-check-radio .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-radio .form-check-input[type=radio] {
  background-color: var(--section-bg-color);
  border-radius: .25rem;
  border: 0;
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 25px 50px;
  transition: all 0.5s;
}

.form-check-radio .form-check-input:checked[type=radio] {
  background-image: none;
}

.form-check-radio .form-check-input:checked[type=radio] + .form-check-label,
.form-check-radio .form-check-input:hover + .form-check-label,
.form-check-radio .form-check-input:checked + .form-check-label {
  color: var(--white-color);
}

.form-check-radio .form-check-input:hover,
.form-check-radio .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.input-group-file {
  border-radius: .25rem;
  padding: 13px .75rem;
}

.input-group-file input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  padding: 0;
}

.input-group-file .input-group-text {
  background: transparent;
  color: inherit;
  margin-bottom: 0;
  padding: 0;
}

.custom-form button[type="submit"] {
  background: var(--primary-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  CONTACT SEARCH & DONATE & SUBCRIBE FORM              
-----------------------------------------*/
.contact-form .form-control {
  background: var(--white-color);
}

.search-form {
  position: relative;
}

.search-form .form-control {
  padding-right: 50px;
}

.search-form button[type="submit"] {
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  color: var(--p-color);
  width: 50px;
  padding: 12px;
}

.search-form button[type="submit"]:hover {
  background: transparent;
  color: var(--dark-color);
}

.subscribe-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 30px;
}

.subscribe-form .form-control {
  background: var(--white-color);
}

.donate-form .form-control {
  margin-bottom: 0;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
footer {
  background: linear-gradient(
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    ),
    url("../images/fowk-933.webp") center center/cover no-repeat; 
    background-attachment: fixed;
  padding: 80px 0px;
  color: #fff;
}
footer h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.25px;
  margin-bottom: 35px;
}
footer p {
  color: #fff;
}
footer ul.menu-list li {
  margin-bottom: 13px;
  color: var(--tertiary-color);
}
footer .custom-btn{
  border-radius: 10px !important;
}
footer ul.menu-list li:last-child {
  margin-bottom: 0px;
}
footer ul.menu-list li a {
  font-size: 14px;
  color: #fff;
  transition: all 0.3s;
}
footer ul.menu-list li a:hover {
  color:var(--tertiary-color);
}
/* Sub-footer Style */

.sub-footer {
  background-color: #1A1A1A;
  text-align: center;
  padding: 25px 0px;
}

.sub-footer p {
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.sub-footer a {
  color: #fff;
}


/*---------------------------------------
  FOOTER MENU               
-----------------------------------------*/
.footer-menu {
  column-count: 2;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
}

.footer-menu-link {
  font-size: var(--p-font-size);
  color: var(--white-color);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--site-footer-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 38px;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .featured-block {
    min-height: inherit;
  }
}


@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-form {
    padding-bottom: 40px;
  }

  .donate-form {
    padding: 35px;
  }

  .navbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 8px 20px;
  }
  .site-header .social-icon {
    text-align: left;
    margin-top: 5px;
  }
  .carousel-control-prev {
    left: 12px;
  }

  .carousel-control-next {
    right: 12px;
  }

  .carousel-control-next-icon, 
  .carousel-control-prev-icon {
    opacity: 1;
    width: 60px;
    height: 60px;
  }

  .news-detail-header-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta-section::before {
    width: 150px;
    height: 150px;
  }
  .testimonial-section::before {
    width: 150px;
    height: 150px;
  }

  .testimonial-section::after {
    width: 200px;
    height: 200px;
  }

  #testimonial-carousel .carousel-caption {
    padding-top: 0;
  }

  blockquote {
    padding: 70px 30px 30px 30px;
  }

  .about-image {
    width: inherit;
    height: 450px;
  }
  .custom-text-block {
    padding: 20px 0 0 0;
  }
  .custom-text-box{
    padding: 30px;
  }
  .counter-number, 
  .counter-number-text {
    font-size: var(--h2-font-size);
  }

  .contact-info-wrap {
    padding-top: 0;
  }

  .site-footer {
    padding-top: 50px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
  .carousel-control-next-icon, 
  .carousel-control-prev-icon {
    width: 45px;
    height: 45px;
  }
  .testimonial-section::before {
    top: -50px;
    width: 100px;
    height: 100px;
  }

  .testimonial-section::after {
    bottom: -150px;
    width: 200px;
    height: 200px;
  }

  .social-share .tags-block {
    margin-bottom: 10px;
  }

  .donate-form {
    padding: 25px;
  }
}

body>.skiptranslate, .goog-logo-link, .gskiptranslate, 
.goog-te-banner-frame, #goog-gt-tt, .goog-te-balloon-frame, div#goog-gt-tt {
  display: none !important;
}
.goog-text-highlight {
  background: transparent !important;
  box-shadow: none !important;
}
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important;
}
#google_translate_element select {
  background:var(--primary-color);
  color: #fff4e4;
  border: none;
  font-weight: bold;
  border-radius: 3px;
  padding: 8px 12px
}
/* Completely hide the Google Translate top banner and its iframe */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important;
}

.pdf-preview {
  display: none;
}
.card i.fa-file-pdf {
  font-size: 3rem; 
}
.card p {
  font-size:var(--p-font-size);
}

.news-section {
    background: var(--bs-light);
}
.news-card {
    background:var(--bs-white);
}
.news-title {
    color:var(--primary-color);
}
.news-card:hover .news-title {
    color:var(--dark-color);
}
.news-excerpt {
    color:var(--dark-color);
}
.news-date {
    color:var(--bs-dark);
}
.no-results {
    background:var(--bs-danger);
    color:var(--bs-white);
}
.no-results p {
    color: var(--bs-white);
}
.news-filter {
    text-align: center;
}
.filter-btn {
    background:transparent;
    border: 1px solid var(--primary-color);
    color:var(--dark-color);
    padding: 10px 25px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}
.filter-btn:hover {
    background:var(--dark-color);
    color: white;
}
.filter-btn.active {
    background:var(--secondary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(37, 95, 56, 0.3);
}
.news-item {
    transition: opacity 0.3s ease;
}
.news-card {
    background: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
     border-bottom: 4px solid var(--primary-color);
}
.news-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-image img {
    transform: scale(1.08);
}
.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background:var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.news-content {
    padding: 15px;
}
.news-date {
    color:var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
}
.news-title {
    font-size: var(--h6-font-size);
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
}
.news-card:hover .news-title {
  color: var(--secondary-color);
    cursor: pointer;
}
.news-excerpt {
    color: var(--dark-color);
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: var(--p-font-size);
}
.news-content .text-muted {
    font-size: var(--copyright-font-size);
    color: var(--bs-dark) !important;
    font-style: italic;
    margin-top: 15px;
    display: block;
    border-top: 1px solid #ccc;
    padding-top: 12px;
}
.loading {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    font-size: 1.1rem;
}
.loading .fa-spinner {
    font-size: 1.5rem;
    margin-right: 12px;
    color: #2c5aa0;
}
.no-results {
    text-align: center;
    padding: 60px 20px;
    color:var(--white-color);
    display: none;
    background: var(--bs-danger);
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.no-results .fa-search {
    font-size: 2rem;
    margin-bottom: 15px;
    color:var(--white-color);
    display: block;
}

.no-results p {
    font-size:var(--p-font-size);
    margin: 0;
    color:var(--white-color);
}

.news-item.mix-hidden {
    display: none !important;
}
.news-grid {
    transition: height 0.3s ease;
}
@media (max-width: 1199px) {
    .news-item {
        padding: 0 12px;
    }
}
@media (max-width: 991px) {
  .news-image {
      position: relative;
      aspect-ratio: 1/1;
      overflow: hidden;
      cursor: pointer;
  }  
    .news-filter {
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .news-filter {
        margin-bottom: 35px;
    }
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
        margin: 4px;
    }
    .news-image {
        position: relative;
        aspect-ratio: 1/1;
        overflow: hidden;
        cursor: pointer;
    }
    .loading, .no-results {
        padding: 40px 20px;
    }
}
@media (max-width: 576px) {
    .news-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .filter-btn {
        flex: 0 0 auto;
        margin: 0;
    }
}
#newsModal .modal-content {
    border-radius:10px;
    border: none;
    padding-bottom: 1rem;
    background-color: var(--secondary-color);
}
#newsModal .modal-header {
    border-bottom: none;
}
#newsModal .modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color:var(--tertiary-color) !important;
    line-height: 1.3;
}
#newsModal .btn-close {
    opacity: 1;
    background-color: var(--bs-danger);
    color: var(--white-color) !important;
}
#newsModal #modalImage {
    border-radius: 0.7rem;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-bottom: 1rem;
}
#newsModal .text-muted {
    font-size: 0.9rem;
    color: var(--bs-light) !important;
}
#newsModal #modalContent p {
    font-size: var(--p-font-size);
    line-height: 1.6;
    color: var(--white-color) !important;
}
#newsModal #modalContent ul,
#newsModal #modalContent ol {
    color: var(--bs-light) !important;
}
#newsModal #modalContent li {
    color: var(--bs-light) !important;
    font-weight: var(--font-weight-bold);
}
#newsModal #modalContent ul, 
#newsModal #modalContent ol {
    color: white !important;
}
#newsModal #modalContent strong {
    font-weight: 600;
}
#newsModal #modalDocument {
    border-radius: 0.5rem;
    padding: 0.45rem 0.9rem;
    font-size: var(--p-font-size);
}
#newsModal .modal-dialog-scrollable .modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}
#newsModal .modal-title:hover {
    color: var(--bs-primary);
}
#newsModal .modal-dialog {
    transform: translateY(20px);
    transition: transform 0.25s ease-out;
}
#newsModal.show .modal-dialog {
    transform: translateY(0);
}


.baCompare-wrapper {
    border: 1px dotted var(--secondary-color);
    margin: 0 auto;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; 
    max-width: 900px;
    border-radius: 0.7rem;
    overflow: hidden;
    -webkit-user-drag: none !important;
    user-drag: none !important;
}
@media (max-width: 992px) {
  .baCompare-wrapper {
    aspect-ratio:4/3;
  }
}
.baCompare-before,
.baCompare-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.baCompare-beforeLabel,
.baCompare-afterLabel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size:var(--p-font-size);
    text-transform: uppercase;
    user-select: none;
    color:var(--white-color);
    z-index: 4;
    padding: 10px 20px;
    background: linear-gradient(
      to bottom,
      rgba(37, 95, 56, 0.9),
      rgba(37, 95, 56, 0.5)
    );
    border-radius: 0.3rem;
    white-space: nowrap;
}
.baCompare-beforeLabel { left: 1%; }
.baCompare-afterLabel { right: 1%; }
.baCompare-after {
    clip-path: inset(0 50% 0 0);
}
.baCompare-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: #fff;
    cursor: pointer;
    z-index: 2;
}
.baCompare-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.baCompare-pulse {
    position: relative;
    display: inline-block;
}
.baCompare-pulse::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--white-color);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: baComparePulse 1.5s infinite;
}
@keyframes baComparePulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(2.0); opacity: 0; }
}
.baCompare-line svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.baCompare-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none !important;
    user-drag: none !important;
}
/*--------preloader-------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; 
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.logo-loader {
  width: clamp(140px, 15vw, 200px);
  height: auto;
  animation: pulse 1s infinite ease-in-out;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* ================== ACTIVITY CARDS ================== */
.activity-card {
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}
.activity-card:hover {
  box-shadow: 0 12px 20px rgba(102, 11, 5, 0.4);
}
.activity-card .card-title{
  font-size: var(--h5-font-size) !important;
}
.activity-card .card-text{
  font-size: var(--p-font-size) !important;
}
.activity-card .card-img-top {
  width: 100%;
  aspect-ratio: 1 / 1;  
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.activity-icon-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1; 
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e8f5ee;
  border-radius: 10px 10px 0 0;
}
.activity-icon {
  font-size:var(--h1-font-size);
  color: #116530;
}
/* ==================  NAV TABS ================== */
.nav-tabs .nav-link {
  color:var(--primary-color);    
  font-weight: 600;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 18px;
  transition: 0.25s ease;
  font-size: var(--p-font-size);
  text-transform: uppercase;
}
.nav-tabs .nav-link:hover {
  background: #dff2e7; 
}
.nav-tabs .nav-link.active {
  color: var(--secondary-color) !important;
  background: #dff2e7;      
  border: none;
  border-bottom: 2px solid var(--secondary-color) !important;
}
.nav-tabs .nav-link:focus {
  box-shadow: none;
}
.ticker-wrapper {
  position: relative;
  left: -15px;
  width: calc(100% + 30px);
  overflow: hidden;
  white-space: nowrap;
  background: #f0f8ff;
}
.ticker-text {
  display: inline-flex;          
  width: max-content;
  will-change: transform;          
  animation: slide-left 28s linear infinite;
}
.ticker-text span {
  padding-right: 100px;
  font-weight: bold;
  font-family: "Galdeano", sans-serif;
  font-size: 1.2rem;
  color: #116530;
}
@keyframes slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
