.light-background,
:root {
  --surface-color: #ffffff
}

.dark-background,
:root {
  --contrast-color: #ffffff
}

.header,
body {
  color: var(--default-color);
  background-color: var(--background-color)
}

.footer,
.header,
body {
  background-color: var(--background-color)
}

.bank .icon-box h4 a,
a,
a:hover {
  text-decoration: none
}

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Playfair Display", sans-serif;
  --nav-font: "Merriweather", sans-serif;
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #2a2a2a;
  --accent-color: #5c9f24;
  --nav-color: #d1d1d1;
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #5c9f24;
  scroll-behavior: smooth
}

.dark-background,
.header {
  --heading-color: #ffffff;
  --default-color: #ffffff
}

.light-background {
  --background-color: #f9f9f9
}

.dark-background {
  --background-color: #060606;
  --surface-color: #252525
}

body {
  font-family: var(--default-font)
}

a {
  color: var(--accent-color);
  transition: .3s
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%)
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font)
}

.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #fff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  transition: opacity .5s;
  border-radius: 5px
}

.php-email-form .loading,
.php-email-form .sent-message {
  display: none;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  border-radius: 5px
}

.php-email-form .sent-message {
  color: #fff;
  background: #059652;
  font-weight: 600;
  transition: opacity .5s
}

.php-email-form .loading {
  background: var(--surface-color)
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: 1s linear infinite php-email-form-loading
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

.php-email-form input[type=tel] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 16px;
  transition: border-color .3s
}

.php-email-form input[type=tel]:focus {
  border-color: #059652;
  outline: 0
}

.php-email-form .error-message,
.php-email-form .sent-message {
  role: alert
}

.header {
  --background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 0;
  transition: .5s;
  z-index: 997
}

.header .logo {
  line-height: 1
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px
}

/* Improved styling with font-display swap for the logo text */
.header .logo h1 {
  font-size: 26px;
  margin: 0;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: .3s;
  border: 2px solid var(--accent-color)
}

.header .btn-getstarted:focus:hover,
.header .btn-getstarted:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%)
}

@media (max-width:1200px) {
  .header .logo {
    order: 1
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px
  }

  .header .navmenu {
    order: 3
  }
}

.scrolled .header {
  box-shadow: 0 0 18px rgba(0, 0, 0, .1);
  --background-color: #000000
}

@media (min-width:1200px) {
  .navmenu {
    padding: 0
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center
  }

  .navmenu li {
    position: relative
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px
  }

  .navmenu>ul>li:last-child {
    padding-right: 0
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: .3s;
    position: relative
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: .3s
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0;
    transition: .3s ease-in-out
  }

  .navmenu .active:before,
  .navmenu a:hover:before,
  .navmenu li:hover>a:before {
    visibility: visible;
    width: 100%
  }

  .navmenu .active,
  .navmenu .active:focus,
  .navmenu li:hover>a {
    color: var(--nav-hover-color)
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: .3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1)
  }

  .navmenu .dropdown ul li {
    min-width: 200px
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color)
  }

  .navmenu .dropdown ul a i {
    font-size: 12px
  }

  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color)
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible
  }
}

.call-to-action .cta-btn,
.footer .footer-about p,
.section-title p,
.stats .stats-item p {
  font-family: var(--heading-font)
}

.footer,
.footer .footer-about p {
  font-size: 14px;
  text-align: center
}

.hero .btn-get-started,
.scroll-top i,
.scroll-top:hover {
  color: var(--contrast-color)
}

.footer {
  color: var(--default-color);
  position: relative
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.footer .footer-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font)
}

.footer .social-links {
  display: flex;
  justify-content: center;
  margin-top: 4px
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: .3s
}

.footer .social-links a:hover {
  color: var(--default-color);
  border-color: var(--default-color)
}

.footer .footer-contact {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px
}

.footer .footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 12px
}

.footer .footer-contact p {
  margin-bottom: 5px
}

.footer .footer-contact p strong {
  display: block
}

.blog-details .meta-bottom .cats li,
.blog-details .meta-bottom .tags li,
.footer .footer-contact p span {
  display: inline-block
}

.footer .copyright {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%)
}

.about-vid .content p:last-child,
.faq .faq-container .faq-item:last-child,
.features .features-item p:last-child,
.footer .copyright p {
  margin-bottom: 0
}

.footer .credits {
  margin-top: 4px;
  font-size: 13px
}

.footer .credits a {
  color: #daa520
}

@media (max-width:767px) {
  .footer .footer-top {
    padding-top: 30px
  }

  .footer .footer-about {
    margin-bottom: 20px
  }

  .footer .social-links {
    flex-wrap: wrap;
    justify-content: center
  }

  .footer .social-links a {
    margin: 5px
  }

  .footer .footer-contact h4 {
    font-size: 14px
  }

  .footer .footer-contact p {
    font-size: 13px
  }

  .footer .copyright,
  .footer .credits {
    font-size: 12px
  }
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: .6s ease-out
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: 1.5s linear infinite animate-preloader
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: .4s
}

.scroll-top i {
  font-size: 24px;
  line-height: 0
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%)
}

.scroll-top.active {
  visibility: visible;
  opacity: 1
}

@media screen and (max-width:768px) {
  [data-aos-delay] {
    transition-delay: 0 !important
  }
}

.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px;
  text-align: center;
  position: relative
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0
}

.hero .carousel,
.section,
section {
  background-color: var(--background-color)
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%)
}

.section,
section {
  color: var(--default-color);
  padding: 60px 0;
  scroll-margin-top: 82px;
  overflow: clip
}

@media (max-width:1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color .3s
  }

  .navmenu {
    padding: 0;
    z-index: 9997
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: .3s;
    z-index: 9998
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: .3s
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%)
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color)
  }

  .navmenu .active,
  .navmenu .active:focus,
  .navmenu a:hover {
    color: var(--nav-dropdown-hover-color)
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg)
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: .5s ease-in-out
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, .1)
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, .03)
  }

  .mobile-nav-active {
    overflow: hidden
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, .8);
    transition: .3s
  }

  .mobile-nav-active .navmenu>ul {
    display: block
  }

  .section,
  section {
    scroll-margin-top: 67px
  }
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px
}

.section-title p {
  margin-bottom: 0
}

.hero {
  padding: 0
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  position: relative
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 650;
  animation: 1s both fadeInDown
}

.hero p {
  animation: 1s .2s both fadeInDown
}

.hero .btn-get-started {
  background: var(--accent-color);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: .5s;
  margin: 10px;
  animation: 1s .4s both fadeInUp
}

.blog-posts .content .read-more a:hover,
.contact .php-email-form button[type=submit]:hover,
.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%)
}

.hero .carousel-control-next,
.hero .carousel-control-prev {
  width: 10%;
  transition: .3s;
  opacity: .5
}

.hero .carousel-control-next:focus,
.hero .carousel-control-prev:focus {
  opacity: .5
}

.hero .carousel-control-next:hover,
.hero .carousel-control-prev:hover {
  opacity: .9
}

@media (min-width:1024px) {

  .hero h2,
  .hero p {
    max-width: 50%
  }

  .hero .carousel-control-next,
  .hero .carousel-control-prev {
    width: 5%
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: 0 0;
  font-size: 32px;
  line-height: 1
}

.about .nav-link,
.about .tab-content h4 {
  font-size: 18px;
  color: var(--default-color)
}

.hero .carousel-indicators {
  list-style: none
}

.hero .carousel-indicators li {
  cursor: pointer
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0)
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0)
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0)
  }
}

.about .about-img {
  position: relative;
  margin: 60px 0 0 60px
}

.about .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  content: "";
  background: url("../img/about-bg.png") top left no-repeat;
  z-index: 1
}

.about .about-img img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  box-shadow: 5px 5px 25px 5px rgba(0, 0, 0, .216)
}

.about h3 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px
}

.about .nav-pills {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%)
}

.about .nav-pills li+li {
  margin-left: 40px
}

.about .nav-link {
  background: 0 0;
  font-weight: 400;
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0
}

.about .nav-link.active {
  color: var(--accent-color);
  background: 0 0;
  border-bottom: 3px solid var(--accent-color)
}

.about .tab-content h4 {
  margin: 0;
  font-weight: 700
}

.about .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color)
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 44px
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 48px;
  font-weight: 700
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  font-size: 14px
}

@media (max-width:768px) {
  .hero h2 {
    font-size: 40px
  }

  .about h3 {
    font-size: 28px
  }

  .stats .stats-item {
    width: 100%
  }
}

.services .img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, .216)
}

.services .img img {
  transition: .6s
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  transition: .3s ease-in-out;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 0, 0, .1)
}

.team .member,
.why-us .card-item {
  position: relative;
  box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, .216);
  border-radius: 10px;
  height: 100%
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px;
  font-size: 22px;
  transition: .3s ease-in-out
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0
}

.blog-details .meta-bottom a:hover,
.blog-new-posts .title a:hover,
.blog-posts .title a:hover,
.faq .faq-container .faq-item .faq-toggle:hover,
.faq .faq-container .faq-item h3:hover,
.services .service-item:hover .details h3,
.team .member .social a:hover,
.why-us .card-item span {
  color: var(--accent-color)
}

.services .service-item:hover .img img {
  transform: scale(1.2)
}

.why-us .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 30px;
  transition: .3s ease-in-out
}

.why-us .card-item span {
  display: block;
  font-size: 28px;
  font-weight: 700
}

.why-us .card-item h3 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0
}

.why-us .card-item h3 a {
  color: var(--heading-color);
  text-decoration: none
}

.why-us .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0
}

.faq .faq-container .faq-active .faq-content,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.team .member h4,
.why-us .card-item:hover p,
.why-us .card-item:hover span {
  color: var(--contrast-color)
}

.why-us .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px
}

.about .icon-box:hover .icon i,
.gallery .gallery-links .details-link:hover,
.gallery .gallery-links .preview-link:hover,
.why-us .card-item:hover h3 a {
  color: #fff
}

.team {
  --default-color: #ffffff
}

.team .member {
  text-align: center
}

.team img {
  border-radius: 10px
}

.team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  transition: .2s;
  border-radius: 10px
}

.team .member .member-info-content {
  margin-top: -50px;
  transition: margin .2s
}

.donate-button,
.faq .faq-container,
.team .member .social {
  margin-top: 15px
}

.team .member:hover .member-info {
  background: rgba(0, 0, 0, .6);
  opacity: 1;
  transition: .4s
}

.team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin .4s
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px
}

.team .member .social a {
  transition: .3s;
  color: var(--default-color)
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: .3s;
  border-radius: 10px;
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, .216)
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: .3s;
  cursor: pointer
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: .3s ease-in-out;
  visibility: hidden;
  opacity: 0
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: .3s;
  color: var(--accent-color)
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: .3s;
  cursor: pointer
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: .3s
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg)
}

.contact .info-item i {
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: .3s ease-in-out
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px
}

@media (min-width:992px) {
  .contact .info-item.info-item-borders {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%)
  }
}

.contact .php-email-form {
  box-shadow: 0 0 20px rgba(0, 0, 0, .25);
  border-radius: 15px;
  padding: 30px;
  margin-top: 30px
}

@media (max-width:575px) {
  .about .about-img {
    margin: 30px 0 0 30px
  }

  .about .about-img:before {
    inset: -30px 0 0 -30px
  }

  .about .nav-link {
    font-size: 16px
  }

  .contact .php-email-form {
    padding: 20px
  }
}

.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.contact .php-email-form input[type=text],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%)
}

.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=tel]:focus,
.contact .php-email-form input[type=text]:focus,
.contact .php-email-form textarea:focus,
.service-details .services-list a:hover {
  border-color: var(--accent-color)
}

.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form input[type=tel]::placeholder,
.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%)
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: .4s;
  border-radius: 50px
}

.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: .3s
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color)
}

.donation-card,
.service-details .services-img {
  margin-bottom: 20px
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700
}

.about-vid .content ul p,
.service-details p {
  font-size: 15px
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color)
}

.blog-posts {
  padding-top: 30px
}

.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .245);
  padding: 30px;
  height: 100%;
  border-radius: 15px
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0;
  overflow: hidden;
  border-radius: 15px
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0
}

.blog-details .article,
.blog-new-posts article {
  background-color: var(--surface-color);
  padding: 30px
}

.blog-new-posts .title a,
.blog-posts .title a {
  color: var(--heading-color);
  transition: .3s
}

.blog-details .meta-top,
.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%)
}

.blog-details .meta-top ul,
.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0
}

.blog-details .meta-top ul li+li,
.blog-posts .meta-top ul li+li {
  padding-left: 20px
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%)
}

.blog-details .meta-bottom a,
.blog-details .meta-bottom i,
.blog-details .meta-top a,
.blog-details .meta-top i,
.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%)
}

.blog-details .meta-top a,
.blog-posts .meta-top a {
  font-size: 14px;
  display: inline-block;
  line-height: 1
}

.blog-details .content,
.blog-posts .content {
  margin-top: 20px
}

.blog-posts .content .read-more {
  text-align: right
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: .3s;
  font-size: 14px;
  border-radius: 4px
}

.blog-details {
  padding-bottom: 30px
}

.blog-details .article {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1)
}

.blog-details .post-img {
  margin: -30px -30px 20px;
  overflow: hidden
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: 700
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.blog-details .meta-bottom i {
  display: inline
}

.blog-details .meta-bottom a {
  transition: .3s
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ","
}

.blog-details .meta-bottom .share {
  font-size: 16px
}

.blog-details .meta-bottom .share i {
  padding-left: 5px
}

.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%)
}

.features .features-item+.features-item {
  margin-top: 100px
}

@media (max-width:640px) {
  .features .features-item+.features-item {
    margin-top: 40px
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px
}

.about-vid .content ul,
.features .features-item ul {
  list-style: none;
  padding: 0
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center
}

.features .features-item ul li:last-child {
  padding-bottom: 0
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color)
}

.about img,
.features img {
  box-shadow: 5px 5px 25px 5px rgba(0, 0, 0, .216);
  border-radius: 15px
}

.about .box-heading h4 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0 0 15px;
  background: #f3f8ec;
  color: #d8b04a;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px
}

.about .box-heading h3 {
  font-size: 28px;
  font-weight: 700;
  color: #353535;
  margin-bottom: 15px
}

.about .icon-box {
  margin-top: 40px
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #d6e8bf;
  border-radius: 50px;
  transition: .5s
}

.about .icon-box .icon i {
  color: #d8b04a;
  font-size: 32px
}

.about .icon-box:hover .icon {
  background: #d8b04a;
  border-color: #d8b04a
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px
}

.about .icon-box .title a {
  color: #343a40;
  transition: .3s
}

.about .icon-box .title a:hover {
  color: #d8b04a
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px
}

.blog-new-posts article {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .261);
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  text-align: center
}

.blog-new-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px;
  overflow: hidden
}

.blog-new-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px
}

.blog-new-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px
}

.donate-button {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color .3s
}

.donate-button:hover {
  background-color: #8bcb2b
}

.about-vid .content h3 {
  font-size: 2rem;
  font-weight: 700
}

.about-vid img {
  border-radius: 15px;
  box-shadow: 5px 5px 25px 5px rgba(0, 0, 0, .248);
  overflow: hidden;
  transition: transform .3s ease-in-out, opacity .3s ease-in-out
}

.about-vid img:hover {
  transform: scale(1.03);
  opacity: .9
}

.about-vid .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px
}

.about-vid .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0
}

.about-vid .content ul h5 {
  font-size: 18px;
  font-weight: 700
}

.about-vid .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px)
}

.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation: 2s infinite pulsate-play-btn;
  animation-direction: forwards;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0)
}

.pulsating-play-btn:after,
.pulsating-play-btn:hover:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  content: ""
}

.pulsating-play-btn:after {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: .4s cubic-bezier(.55, .055, .675, .19)
}

.pulsating-play-btn:hover:before {
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20)
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(.6, .6);
    opacity: 1
  }

  100% {
    transform: scale(1, 1);
    opacity: 0
  }
}

.bank .icon-box {
  box-shadow: 0 0 25px rgba(0, 0, 0, .265);
  padding: 40px 30px;
  transition: .4s ease-in-out;
  background: #fff;
  border-radius: 10px;
  margin: 0 auto;
  flex: 1;
  height: 100%;
  max-width: 300px
}

.bank .icon-box .icon {
  margin-bottom: 10px
}

.bank .icon-box .icon i {
  color: #5c9f24;
  font-size: 36px;
  transition: .3s
}

.bank .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px
}

.bank .icon-box h4 a {
  color: #5c9f24;
  transition: .3s ease-in-out
}

.bank .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0
}

.bank .icon-box:hover {
  transform: translateY(-10px)
}

.bank .icon-box:hover h4 a {
  color: #5c9f24
}

@media (max-width:576px) {
  .bank .icon-box {
    padding: 30px 20px
  }
}

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px
}

.gallery .gallery-item img {
  transition: .3s
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: .3s ease-in-out;
  background: rgba(0, 0, 0, .6);
  z-index: 3
}

.gallery .gallery-links .details-link,
.gallery .gallery-links .preview-link {
  font-size: 20px;
  color: rgba(255, 255, 255, .5);
  transition: .3s;
  line-height: 1.2;
  margin: 30px 8px 0
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1
}

.gallery .gallery-item:hover .details-link,
.gallery .gallery-item:hover .preview-link {
  margin-top: 0
}

.gallery .gallery-item:hover img {
  transform: scale(1.1)
}

.glightbox-clean .gslide-description {
  background: #272727
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, .8);
  margin: 0
}

.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0)
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2
}

.call-to-action .container {
  position: relative;
  z-index: 3
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700
}

.call-to-action p {
  color: var(--default-color)
}

.call-to-action .cta-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: .5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color)
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color)
}