/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Giveon - Charity & Donation HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. Our Story css
09. Our Causes css
10. Our Features css
11. Our Programs css
12. Donate Now css
13. Our FAQs css
14. Our Testimonials css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Programs Page css
23. Program Single css
24. Volunteers Page css
25. Volunteer Single css
26. Testimonials Page css
27. Image Gallery css
28. Video Gallery css
29. FAQ's Page css
30. Contact Us Page css
31.	404 Error Page css
32. Responsive css
33. Home - Version 2 css
34. Home - Version 3 css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
  --primary-color: #21293b;
  --secondary-color: #ffffff;
  --bg-color: #f6f6f6;
  --text-color: #424242;
  --accent-color: #e51288;
  --white-color: #ffffff;
  --divider-color: #21293b1a;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "Inter Tight", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

html,
body {
  width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  color: var(--text-color);
  background: var(--bg-color);
}

::-webkit-scrollbar-track {
  background-color: var(--primary-color);
  border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
  width: 7px;
  background-color: var(--accent-color);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}

::selection {
  color: var(--white-color);
  background-color: var(--accent-color);
  filter: invert(1);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary-color);
  margin: 0;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--white-color);
  background: linear-gradient(45deg, var(--accent-color), #132d9e);
  border-radius: 5px;
  padding: 17px 65px 17px 20px;
  border: none;
  outline: none;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background-color: var(--white-color);
  border-radius: 5px;
  background-image: url("../images/arrow-primary.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 14px auto;
  transition: all 0.4s ease-in-out;
}

.btn-default::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn-default:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.btn-default.btn-highlighted:hover {
  color: var(--primary-color);
}

.btn-default.btn-highlighted:hover::before {
  background-color: var(--accent-color);
  background-image: url("../images/arrow-white.svg");
}

.btn-default.btn-highlighted::after {
  background: var(--white-color);
}

.readmore-btn {
  position: relative;
  display: inline-block;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  color: var(--primary-color);
  padding-right: 22px;
}

.readmore-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background-image: url("../images/arrow-primary.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
  transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before {
  background: var(--accent-color);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.light-section {
  background-color: var(--secondary-color);
}

.dark-section {
  background-color: var(--primary-color);
  background-image: url("../images/dark-section-bg-image.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.section-row {
  margin-bottom: 80px;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-row .section-title.section-title-center {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-btn {
  text-align: right;
}

.section-content-btn .section-btn {
  margin-top: 30px;
  text-align: left;
}

.section-title-content p {
  margin-bottom: 20px;
}

.section-title-content p:last-child {
  margin-bottom: 0;
}

.section-title {
  margin-bottom: 40px;
}

.section-title .section-sub-title {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--primary-color);
  background: var(--secondary-color);
  border-radius: 100px;
  padding: 10px 16px 10px 32px;
  margin-bottom: 15px;
}

.section-title .section-sub-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  background: var(--accent-color);
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.section-title h1 {
  font-size: 60px;
  margin-bottom: 0;
  cursor: none;
}

.section-title h2 {
  font-size: 48px;
  margin-bottom: 0;
  cursor: none;
}

.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
}

.light-section .section-title .section-sub-title {
  background: var(--bg-color);
}

.dark-section .section-title .section-sub-title {
  color: var(--white-color);
  background: var(--dark-divider-color);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
  color: var(--white-color);
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

/************************************/
/*** 	    03. Header css		  ***/
/************************************/

header.main-header {
  position: absolute;
  top: 30px;
  left: 15px;
  right: 15px;
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  max-width: 1300px;
  top: 0;
  background: var(--white-color);
  border-radius: 20px;
  margin: 0 auto;
  z-index: 100;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 15px;
  left: 15px;
  right: 15px;
  transform: translateY(0);
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
}

.navbar {
  padding: 10px 5px;
  align-items: center;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  position: relative;
  margin: 0 10px;
}

.main-menu ul li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  padding: 12px 10px !important;
  color: var(--primary-color);
  background: transparent;
  border-radius: 0px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--accent-color);
}

.main-menu ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  transform: scale(1, 0.8);
  transform-origin: top;
  width: 235px;
  background: var(--accent-color);
  border-radius: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul li.submenu:first-child ul {
  width: 235px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
  padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
  content: "\f105";
  float: right;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--white-color);
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--primary-color);
  background-color: transparent;
  padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.active > a,
.main-menu ul li > a.active {
  color: var(--accent-color);
  font-weight: 700;
}

.main-menu ul li.active > a::after,
.main-menu ul li > a.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(45deg, #df1288, #172c9d);
}

.main-menu ul li.highlighted-menu {
  display: none;
}

.header-btn {
  line-height: 0;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  position: relative;
  top: 0;
}

.slicknav_btn {
  background: var(--accent-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--white-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--accent-color);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 7px 20px;
  color: var(--white-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.slicknav_menu ul ul li a {
  padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: "\f107";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--white-color);
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--primary-color);
}

/************************************/
/*** 	    04. Hero css	      ***/
/************************************/

.hero {
  position: relative;
  /* background-image: url("../images/hero-bg-image.jpg"); */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: auto;
  min-height: 100vh;
  align-content: end;
  padding: 290px 0 120px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(33, 41, 59, 0.9) 32.01%,
    rgba(33, 41, 59, 0) 62.16%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content-box,
.hero-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.hero-content-box {
  min-height: 590px;
  margin-right: 55px;
}

.hero-sub-heading-box {
  max-width: 450px;
}

.hero-sub-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--dark-divider-color);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 100px;
  padding: 4px 20px 4px 4px;
  margin-bottom: 20px;
}

.satisfy-client-images {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.satisfy-client-image {
  position: relative;
  display: inline-block;
  margin-left: -16px;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.satisfy-client-image:first-child {
  margin: 0;
}

.satisfy-client-image figure {
  display: block;
}

.satisfy-client-image figure img {
  width: 100%;
  max-width: 50px;
  border-radius: 50%;
}

.satisfy-client-image.add-more {
  width: 52px;
  height: 52px;
  background-color: var(--accent-color);
  border: 1px solid var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more i {
  font-size: 20px;
  color: var(--primary-color);
  line-height: normal;
  transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more img {
  width: 100%;
  max-width: 24px;
}

.satisfy-client-image.add-more h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
}

.satisfy-client-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.hero-sub-heading .satisfy-client-image {
  margin-left: -12px;
}

.hero-sub-heading .satisfy-client-image:first-child {
  margin-left: 0;
}

.hero-sub-heading .satisfy-client-image figure img {
  max-width: 30px;
}

.hero-sub-heading-content p {
  color: var(--white-color);
  margin: 0;
}

.hero-content-box .section-title {
  margin-bottom: 0;
}

.hero-body {
  height: 100%;
  flex-wrap: wrap;
  align-items: end;
}

.watch-video-circle a {
  display: block;
  cursor: none;
  border-radius: 50%;
}

.watch-video-circle a img {
  width: 100%;
  max-width: 120px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
  100% {
    transform: rotate(360deg);
  }
}

.watch-video-circle a:hover img {
  animation-play-state: paused;
}

.hero-body .watch-video-circle a {
  border: 1px solid var(--dark-divider-color);
  background: var(--divider-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-rating-box {
  max-width: 265px;
  border: 1px solid var(--dark-divider-color);
  background-color: var(--divider-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 30px;
}

.hero-rating-box h2 {
  font-size: 16px;
  color: var(--white-color);
}

.hero-rating-box h2 span {
  font-size: 24px;
}

.hero-rating-box h2 i {
  font-size: 20px;
  margin-left: 5px;
}

.hero-rating-box p {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 20px;
  margin: 20px 0 0;
}

.hero-slider {
  position: relative;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
  font-size: 18px;
  color: #ffffff;
}

.hero-slider .swiper-button-prev {
  left: 20px;
}

.hero-slider .swiper-button-next {
  right: 20px;
}

.hero-slider .hero-pagination {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.hero-slider .hero-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.65);
  opacity: 1;
}

.hero-slider .hero-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}

/************************************/
/*** 	   05. About Us css	      ***/
/************************************/

.about-us {
  padding: 120px 0;
}

.about-us-image-box {
  display: flex;
  flex-wrap: wrap;
  margin-right: 15px;
}

.about-us-image figure {
  display: block;
  border-radius: 20px;
}

.about-us-image figure img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-us-image.box-1 {
  align-content: end;
}

.about-us-image.box-1,
.about-us-image.box-3 {
  position: relative;
  width: 16%;
  z-index: 1;
}

.about-us-image.box-1 figure,
.about-us-image.box-3 figure {
  border: 6px solid var(--bg-color);
  border-radius: 26px;
}

.about-us-image.box-1 figure {
  margin-right: -174px;
}

.about-us-image.box-1 figure img {
  aspect-ratio: 1 / 1.12;
}

.about-us-image.box-2 {
  width: 68%;
  padding: 70px 0 100px;
}

.about-us-image.box-2 figure {
  background-image: url("../images/about-us-image-bg-shape.svg");
  mask-image: url("../images/about-us-image-bg-shape.svg");
  mask-repeat: no-repeat;
  mask-size: cover;
  width: 100%;
  height: 100%;
}

.about-us-image.box-2 figure img {
  aspect-ratio: 1 / 1.307;
}

.about-us-image.box-3 figure {
  margin-left: -144px;
}

.about-us-image.box-3 figure img {
  aspect-ratio: 1 / 1.04;
}

.about-us-item-list {
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 40px;
}

.about-us-item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.about-us-item:last-child {
  border: none;
  padding: 0;
  margin: 0;
}

.about-us-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-us-item .icon-box i {
  font-size: 24px;
  color: white;
}

.about-us-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.about-us-item:hover .icon-box::before {
  transform: scale(1);
}

.about-us-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.about-us-item-content {
  width: calc(100% - 65px);
}

.about-us-item-content h3 {
  font-size: 20px;
}

.about-us-item-content p {
  margin: 10px 0 0;
}

.about-content-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
  margin-top: 40px;
}

.about-us-author-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.about-us-author-image figure {
  display: block;
  border-radius: 50%;
}

.about-us-author-image figure img {
  width: 100%;
  max-width: 50px;
}

.about-us-author-content h3 {
  font-size: 20px;
}

.about-us-author-content p {
  margin: 5px 0 0;
}

/************************************/
/*** 	 06. Our Services css	  ***/
/************************************/

.our-services {
  position: relative;
  padding: 120px 0;
  overflow: clip;
}

.our-services::before,
.our-services::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}

.our-services::before {
  top: -20px;
  right: 0;
  background-image: url("../images/section-bg-shape-1.png");
  width: 220px;
  height: 240px;
}

.our-services::after {
  bottom: -30px;
  left: 30px;
  background-image: url("../images/section-bg-shape-2.png");
  width: 220px;
  height: 365px;
}

.our-services .container {
  position: relative;
  z-index: 2;
}

.services-item-list {
  display: flex;
  flex-wrap: wrap;
}

.services-item-list .service-item {
  width: 50%;
  border-right: 1px solid var(--divider-color);
  border-bottom: 1px solid var(--divider-color);
  padding: 30px;
}

.services-item-list .service-item:nth-child(2n + 2) {
  border-right: none;
}

.services-item-list .service-item:nth-last-child(2):nth-child(odd),
.services-item-list .service-item:last-child {
  border-bottom: none;
}

.service-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.service-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.service-item:hover .icon-box::before {
  transform: scale(1);
}

.service-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.service-item-contant h2 {
  font-size: 20px;
}

.service-item-contant h2 a {
  color: inherit;
}

.service-item-contant p {
  margin: 10px 0 0;
}

.service-item-btn {
  margin-top: 20px;
}

.service-cta-box {
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  background-color: var(--primary-color);
  padding: 40px 40px 0;
  border-radius: 20px;
}

.service-cta-header {
  text-align: center;
}

.service-cta-box .satisfy-client-images {
  justify-content: center;
}

.service-cta-box .satisfy-client-image {
  border: 1px solid var(--primary-color);
}

.service-cta-content {
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 20px;
  margin-top: 20px;
}

.service-cta-rating i {
  color: var(--white-color);
}

.service-cta-content {
  margin-top: 20px;
}

.service-cta-content h3 {
  font-size: 20px;
  line-height: 1.5em;
  color: var(--white-color);
  margin-top: 20px;
}

.service-cta-btn {
  margin-top: 30px;
}

.service-cta-image figure {
  display: block;
  border-radius: 20px 20px 0 0;
  margin: 0 -20px;
}

.service-cta-image figure img {
  width: 100%;
  aspect-ratio: 1 / 0.504;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.section-footer-text {
  margin-top: 30px;
  text-align: center;
}

.section-footer-text p {
  color: var(--primary-color);
  margin-bottom: 0;
}

.section-footer-text p span {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1em;
  color: var(--white-color);
  background: var(--accent-color);
  border-radius: 100px;
  padding: 5px 12px;
  margin-right: 10px;
}

.section-footer-text p a {
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
  color: var(--primary-color);
}

.section-footer-text ul {
  width: 100%;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.section-footer-text ul li {
  display: inline-block;
  line-height: normal;
  color: var(--primary-color);
  border-right: 1px solid var(--divider-color);
  margin-right: 15px;
  padding-right: 15px;
}

.section-footer-text ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.section-footer-text ul li b {
  font-weight: 600;
}

.section-footer-text ul li i {
  color: var(--accent-color);
}

.section-footer-text.section-footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
}

.section-footer-text.section-footer-contact span {
  width: 30px;
  height: 30px;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.section-footer-text.section-footer-contact span img {
  width: 100%;
  max-width: 16px;
}

.section-footer-text.section-satisfy-img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image {
  border-color: var(--bg-color);
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
  max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
  width: 32px;
  height: 32px;
  margin-left: -10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
  max-width: 16px;
}

.section-footer-text.section-satisfy-img ul {
  margin: 5px 0 0;
}

.dark-section .section-footer-text.section-satisfy-img .satisfy-client-image {
  border-color: var(--primary-color);
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li,
.dark-section .section-footer-text p a:hover {
  color: var(--white-color);
}

.dark-section .section-footer-text ul li {
  border-color: var(--dark-divider-color);
}

.our-services .section-footer-text {
  margin-top: 60px;
}

/************************************/
/*** 	 07. Why Choose Us css	  ***/
/************************************/

.why-choose-us {
  padding: 120px 0;
}

.why-choose-image-box {
  position: relative;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-left: 60px;
  margin-right: 10px;
}

.why-choose-image.image-1 {
  width: 84%;
}

.why-choose-image figure {
  display: block;
  border-radius: 20px;
}

.why-choose-image figure img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.why-choose-image.image-1,
.why-choose-image.image-1 figure img {
  height: 100%;
}

.why-choose-image.image-1 figure img {
  height: 100%;
  aspect-ratio: 1 / 1.465;
}

.why-choose-image.image-2 {
  position: relative;
  width: 16%;
  align-content: end;
  padding-bottom: 60px;
  z-index: 1;
}

.why-choose-image.image-2 figure {
  border: 6px solid var(--bg-color);
  border-radius: 26px;
  margin-left: -160px;
}

.why-choose-image.image-2 figure img {
  aspect-ratio: 1 / 1;
}

.why-choose-volunteer-box {
  position: absolute;
  top: 60px;
  left: 0;
  max-width: 185px;
  background: var(--white-color);
  border: 6px solid var(--bg-color);
  border-radius: 20px;
  padding: 20px;
  z-index: 1;
}

.why-choose-volunteer-item-content h2 {
  font-size: 18px;
  line-height: 1.4em;
  margin-bottom: 35px;
}

.why-choose-volunteer-item-content h2 span {
  font-weight: 400;
}

.why-choose-volunteer-box .satisfy-client-image figure img {
  max-width: 40px;
}

.why-choose-content {
  height: 100%;
  align-content: center;
}

.why-choose-body {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--white-color);
  border-radius: 20px;
  padding: 10px;
}

.why-choose-body-content {
  width: calc(100% - 280px);
  align-content: center;
  padding: 20px;
}

.why-choose-body-content h3 {
  font-size: 20px;
}

.why-choose-body-content ul {
  list-style: none;
  border-top: 1px solid var(--divider-color);
  margin: 20px 0 0;
  padding: 20px 0 0;
}

.why-choose-body-content ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
}

.why-choose-body-content ul li:last-child {
  margin-bottom: 0px;
}

.why-choose-body-content ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.why-choose-body-image {
  max-width: 270px;
}

.why-choose-body-image figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.why-choose-body-image figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.841;
  object-fit: cover;
  border-radius: 20px;
}

.why-choose-btn {
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
  margin-top: 40px;
}

/************************************/
/*** 	   08. Our Story css	  ***/
/************************************/

.our-story {
  position: relative;
  background-image: url("../img/slider/slider10.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 750px;
  padding: 120px 0;
  overflow: hidden;
}

.our-story::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 40%;
  z-index: 1;
}

.our-story .container {
  position: relative;
  z-index: 2;
}

.our-story .section-row {
  margin-bottom: 0;
}

.our-story-content .watch-video-circle {
  margin-top: 170px;
  text-align: center;
}

.our-story-content .watch-video-circle a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.our-story-content .watch-video-circle a.bg-effect::before,
.our-story-content .watch-video-circle a.bg-effect::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  border: 55px solid var(--white-color);
  opacity: 50%;
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1.2s infinite linear;
}

.our-story-content .watch-video-circle a.bg-effect::after {
  animation-delay: 0.3s;
}

@keyframes border-zooming {
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/************************************/
/*** 	  09. Our Causes css	  ***/
/************************************/

.our-causes {
  padding: 120px 0;
}

.our-causes-item {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
}

.our-causes-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.our-causes-image figure {
  position: relative;
  display: block;
  height: 100%;
}

.our-causes-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(33, 41, 59, 0.9) 100%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.our-causes-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.our-causes-item:hover .our-causes-image figure img {
  transform: scale(1.04);
}

.our-causes-item-tag,
.our-causes-item-body {
  position: relative;
  z-index: 1;
}

.our-causes-item-tag {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.our-causes-item-tag span {
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--dark-divider-color);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 100px;
  padding: 9px 16px;
}

.our-causes-item-content h2 {
  font-size: 20px;
  color: var(--white-color);
}

.our-causes-item-button {
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 20px;
  margin-top: 20px;
}

.our-causes-item-button .readmore-btn {
  color: var(--white-color);
}

.our-causes-item-button .readmore-btn::before {
  background-image: url("../images/arrow-white.svg");
}

/************************************/
/*** 	 10. Our Features css	  ***/
/************************************/

.our-features {
  position: relative;
  background: white;
  padding: 120px 0;
  overflow: hidden;
}

.our-features::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  background-image: url("../images/section-bg-shape-1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 220px;
  height: 240px;
  z-index: 1;
}

.our-features .container {
  position: relative;
  z-index: 2;
}

.feature-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-item {
  width: calc(33.33% - 20px);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.feature-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
  z-index: 0;
}

.feature-item:hover .icon-box::before {
  transform: scale(1);
}

.feature-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.feature-item-content {
  width: calc(100% - 65px);
}

.feature-item-content h3 {
  font-size: 20px;
}

.feature-item-content p {
  margin: 10px 0 0 0;
}

.feature-counter-box {
  margin-top: -200px;
}

.feature-counter-item-list {
  position: relative;
  background:
    url("../images/feature-counter-box-bg-image.png"),
    linear-gradient(var(--primary-color), var(--primary-color));
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 80px;
  padding: 4.167vw;
  margin: 10px 20px 0;
}

.feature-counter-item-list::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 0;
  left: -20px;
  background: linear-gradient(180deg, var(--bg-color) 0%, transparent 50%);
  width: calc(100% + 40px);
  height: calc(100% + 20px);
  border-radius: 30px;
  z-index: -1;
}

.feature-counter-item {
  position: relative;
  width: calc(50% - 53.33px);
}

.feature-counter-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.feature-counter-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--white-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
  z-index: 0;
}

.feature-counter-item:hover .icon-box::before {
  transform: scale(1);
}

.feature-counter-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.feature-counter-item:hover .icon-box img {
  filter: brightness(1) invert(1);
}

.feature-counter-item-content h2 {
  font-size: 40px;
  color: var(--white-color);
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.feature-counter-item-content h3 {
  font-size: 20px;
  color: var(--white-color);
}

.feature-counter-item-content p {
  color: var(--white-color);
  margin: 10px 0 0 0;
}

/************************************/
/*** 	 11. Our Programs css	  ***/
/************************************/

.our-programs {
  padding: 120px 0;
}

.program-item {
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 10px;
}

.program-item-image {
  margin-bottom: 10px;
}

.program-item-image a {
  display: block;
  cursor: none;
  border-radius: 10px;
  overflow: hidden;
}

.program-item-image figure {
  display: block;
  border-radius: 10px;
}

.program-item-image img {
  width: 100%;
  aspect-ratio: 1 / 0.731;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.6s ease-in-out;
}

.program-item:hover .program-item-image img {
  transform: scale(1.06);
}

.program-item-body {
  padding: 20px;
}

.program-item-meta {
  margin-bottom: 20px;
}

.program-item-meta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-item-meta ul li {
  display: inline-flex;
  align-items: center;
  line-height: 1.5em;
}

.program-item-meta ul li img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

.program-item-content h2 {
  font-size: 20px;
  line-height: 1.4em;
}

.program-item-content h2 a {
  color: inherit;
}

.program-item-btn {
  border-top: 1px solid var(--divider-color);
  padding-top: 20px;
  margin-top: 20px;
}

.programs-pagination.swiper-pagination-bullets {
  text-align: center;
  margin-top: 40px;
}

.programs-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--divider-color);
  border-radius: 100px;
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s ease-in-out;
}

.programs-pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: var(--accent-color);
}

.our-programs .section-footer-text {
  margin-top: 40px;
}

/************************************/
/*** 	  12. Donate Now css	  ***/
/************************************/

.donate-now {
  padding: 120px 0;
}

.donate-now-content {
  position: sticky;
  top: 30px;
  min-height: 545px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.donate-now-item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.donate-now-item:last-child {
  margin-bottom: 0;
}

.donate-now-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.donate-now-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--white-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
}

.donate-now-item:hover .icon-box::before {
  transform: scale(1);
}

.donate-now-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.donate-now-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.donate-now-item-content {
  width: calc(100% - 65px);
}

.donate-now-item-content h3 {
  font-size: 20px;
  color: var(--white-color);
}

.donate-now-item-content p {
  color: var(--white-color);
  margin: 10px 0 0;
}

.donate-now-body-list {
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 30px;
  margin-top: 30px;
}

.donate-now-body-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.donate-now-body-list ul li {
  position: relative;
  width: calc(50% - 10px);
  line-height: 1.5em;
  color: var(--white-color);
  padding-left: 25px;
}

.donate-now-body-list ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.donation-box {
  height: 100%;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  background: var(--dark-divider-color);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 50px;
  margin-left: 15px;
}

.donation-box .section-title h2 {
  font-weight: 500;
}

.donation-form .form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.donation-form .form-group .form-control {
  width: auto;
  min-width: 220px;
  flex-grow: 1;
  font-size: 16px;
  line-height: 1.143em;
  color: var(--white-color);
  background-color: var(--dark-divider-color);
  border-radius: 5px;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 12px 20px;
}

.donation-form .form-group .form-control::placeholder {
  font-size: 14px;
  color: var(--white-color);
  opacity: 50%;
}

.donation-value-body {
  margin-top: 30px;
}

.donation-value-skillbar-list {
  margin-bottom: 30px;
}

.skills-progress-bar {
  margin-bottom: 30px;
}

.skills-progress-bar:last-child {
  margin-bottom: 0;
}

.skills-progress-bar .skill-data {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
}

.skills-progress-bar .skillbar .skill-progress {
  position: relative;
  width: 100%;
  height: 10px;
  background: var(--dark-divider-color);
  border-radius: 10px;
  overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: var(--accent-color);
  border-radius: 10px;
}

.donation-value-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.donation-value-item p {
  font-weight: 600;
  line-height: normal;
  color: var(--white-color);
  margin-bottom: 10px;
}

.donation-value-item h3 {
  font-size: 20px;
  color: var(--white-color);
}

.donation-pricing-box {
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 30px;
  margin-top: 30px;
}

.donation-pricing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 0;
}

.donation-pricing-list .donation-value input {
  display: none;
}

.donation-pricing-list .donation-value input[type="radio"]:hover + label,
.donation-pricing-list .donation-value input[type="radio"]:focus + label,
.donation-pricing-list .donation-value input[type="radio"]:checked + label {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.donation-pricing-list .donation-value label {
  position: relative;
  font-weight: 500;
  line-height: 1em;
  color: var(--white-color);
  background-color: var(--dark-divider-color);
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  padding: 9px 16px;
  transition: all 0.3s ease-in-out;
}

.donation-form-notice {
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 30px;
}

.donation-form-notice p {
  color: var(--white-color);
  margin: 0;
}

.donation-form-notice p img {
  width: 100%;
  max-width: 20px;
  margin-right: 5px;
}

/************************************/
/*** 	   13. Our FAQs css	      ***/
/************************************/

.our-faqs {
  padding: 120px 0;
}

.faqs-image-box {
  position: relative;
  height: 100%;
  padding: 0 80px 70px 0;
  margin-right: 15px;
}

.faqs-image-box-1 {
  position: relative;
  height: 100%;
}

.faq-image {
  height: 100%;
}

.faq-image figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.faq-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.313;
  object-fit: cover;
  border-radius: 20px;
}

.faqs-image-box .contact-us-cricle {
  position: absolute;
  top: 100px;
  right: 0;
  transform: translateX(50%);
  z-index: 1;
}

.contact-us-cricle a {
  display: block;
  border-radius: 50%;
  border: 6px solid var(--bg-color);
}

.contact-us-cricle a img {
  width: 100%;
  max-width: 130px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}

.contact-us-cricle a:hover img {
  animation-play-state: paused;
}

.faq-cta-box {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 295px;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  background-color: var(--primary-color);
  border: 6px solid var(--bg-color);
  border-radius: 20px;
  padding: 30px;
  animation: Movestyle 2s infinite alternate linear;
  z-index: 1;
}

@keyframes Movestyle {
  50% {
    transform: translateX(-20px);
  }
}

.faq-cta-rating {
  margin-bottom: 20px;
}

.faq-cta-rating i {
  font-size: 18px;
  color: var(--white-color);
}

.faq-cta-box-header .satisfy-client-image {
  border: 1px solid var(--primary-color);
  margin-left: -10px;
}

.faq-cta-box-header .satisfy-client-image:first-child {
  margin: 0;
}

.faq-cta-box-header .satisfy-client-image figure img {
  max-width: 40px;
}

.faq-cta-google-rating-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.faq-cta-google-rating-box .icon-box img {
  width: 100%;
  max-width: 40px;
}

.faq-cta-google-rating-content h2 {
  font-size: 26px;
  color: var(--white-color);
}

.faq-cta-content {
  margin-top: 20px;
}

.faq-cta-content p {
  color: var(--white-color);
  margin: 0;
}

.faq-content-box {
  height: 100%;
  align-content: center;
}

.faq-accordion .accordion-item {
  position: relative;
  background: var(--secondary-color);
  border-radius: 14px;
  margin-bottom: 25px;
  overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.333em;
  background: transparent;
  color: var(--primary-color);
  padding: 23px 60px 23px 23px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\f055";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 50%;
  right: 23px;
  line-height: 1em;
  font-size: 30px;
  font-weight: 600;
  transform: translateY(-50%);
  color: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\f056";
}

.faq-accordion .accordion-item .accordion-body {
  border-top: 1px solid var(--divider-color);
  padding: 23px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
  margin: 0;
}

/************************************/
/***   14. Our Testimonials css   ***/
/************************************/

.our-testimonial {
  position: relative;
  padding: 60px 60px 60px calc(((100vw - 1300px) / 2) + 10px);
}

.our-testimonial .container-fluid {
  padding: 0;
}

.our-testimonial-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.our-testimonial-image figure {
  position: relative;
  display: block;
  height: 100%;
}

.our-testimonial-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(33, 41, 59, 0) 50%,
    rgba(33, 41, 59, 0.9) 90%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.our-testimonial-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-testimonial-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  z-index: 2;
}

.testimonial-title-box {
  align-content: end;
  margin-bottom: 3.125vw;
}

.testimonial-slider,
.testimonial-title-box {
  width: calc(50% - 15px);
  max-width: 640px;
}

.testimonial-title-box .section-title {
  margin-bottom: 0;
}

.testimonial-slider {
  min-height: 730px;
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 60px;
}

.testimonial-slider .swiper,
.testimonial-slider .swiper-wrapper,
.testimonial-item {
  height: 100%;
}

.testimonial-slider .swiper-wrapper {
  cursor: none;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.testimonial-item-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.testimonial-item-rating i {
  font-size: 20px;
  color: var(--accent-color);
}

.testimonial-item-quote img {
  width: 100%;
  max-width: 40px;
}

.testimonial-item-content p {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
}

.testimonial-item-content p:last-child {
  margin-bottom: 0;
}

.testimonial-item-author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--divider-color);
  padding-top: 30px;
}

.testimonial-author-image figure {
  display: block;
  border-radius: 50%;
}

.testimonial-author-image img {
  width: 100%;
  max-width: 50px;
  border-radius: 50%;
}

.testimonial-author-content {
  width: calc(100% - 65px);
}

.testimonial-author-content h2 {
  font-size: 20px;
}

.testimonial-author-content p {
  margin: 5px 0 0;
}

/************************************/
/*** 	   15. Our Blog css	      ***/
/************************************/

.our-blog {
  padding: 120px 0 90px;
}

.post-item {
  position: relative;
  min-height: 480px;
  align-content: end;
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
}

.post-item .post-featured-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-item .post-featured-image a {
  display: block;
  height: 100%;
  cursor: none;
}

.post-item .post-featured-image figure {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.post-item .post-featured-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(33, 41, 59, 1) 100%
  );
  border-radius: 20px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.post-item .post-featured-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.post-item:hover .post-featured-image figure img {
  transform: scale(1.06);
}

.post-item-body {
  position: relative;
  transform: translateY(60px);
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.post-item:hover .post-item-body {
  transform: translateY(0);
}

.post-item-meta {
  margin-bottom: 20px;
}

.post-item-meta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-item-meta ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: var(--white-color);
}

.post-item-meta ul li img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

.post-item-content h2 {
  font-size: 20px;
  line-height: 1.4em;
  color: var(--white-color);
}

.post-item-content h2 a {
  color: inherit;
}

.post-item-btn {
  visibility: hidden;
  opacity: 0;
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 20px;
  margin-top: 20px;
  transition: all 0.6s ease-in-out;
}

.post-item:hover .post-item-btn {
  visibility: visible;
  opacity: 1;
}

.post-item-btn .readmore-btn {
  color: var(--white-color);
}

.post-item-btn .readmore-btn::before {
  background-image: url("../images/arrow-white.svg");
}

/************************************/
/*** 	    16. Footer css	      ***/
/************************************/

.main-footer {
  padding: 100px 0 0;
}

.footer-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px 20px;
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  width: 100%;
  max-width: 150px;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 20px;
}

.footer-social-links h2 {
  font-size: 20px;
  color: var(--white-color);
}

.footer-social-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social-links ul li a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--dark-divider-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
  background: var(--accent-color);
}

.footer-social-links ul li i {
  font-size: 18px;
  color: var(--white-color);
}

.footer-links-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  max-width: 50%;
}

.footer-links h2 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 30px;
}

.footer-links ul {
  list-style: disc;
  padding: 0 0 0 20px;
  margin: 0;
}

.footer-links ul li {
  line-height: 1.5em;
  color: var(--white-color);
  margin-bottom: 15px;
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links ul li::marker {
  color: var(--accent-color);
}

.footer-links ul li a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
}

.footer-links.footer-newsletter-form {
  max-width: 34%;
}

.footer-newsletter-form p {
  color: var(--white-color);
  margin-bottom: 30px;
}

.footer-newsletter-form .form-group {
  display: flex;
  border-bottom: 1px solid var(--dark-divider-color);
}

.footer-newsletter-form .form-group .form-control {
  width: calc(100% - 40px);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--white-color);
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding: 6px 20px 26px 0;
}

.footer-newsletter-form .form-group .form-control::placeholder {
  color: var(--white-color);
  opacity: 50%;
}

.footer-newsletter-form .form-group .newsletter-btn {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: var(--accent-color);
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover {
  background: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn img {
  width: 100%;
  max-width: 14px;
  transition: all 0.4s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img {
  transform: rotate(45deg);
  filter: brightness(0) invert(0);
}

.footer-copyright-text {
  border-top: 1px solid var(--dark-divider-color);
  text-align: center;
  padding: 25px 0;
  margin-top: 40px;
}

.footer-copyright-text p {
  color: var(--white-color);
  margin: 0;
}

/************************************/
/*** 	17. About Us Page css	  ***/
/************************************/

.page-header {
  position: relative;
  background-image: url("../img/slider/page-header.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 280px 0 170px;
  overflow: hidden;
}

.page-header:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(33, 41, 59, 0.9) 32.01%,
    transparent 62.16%
  );
  height: 100%;
  width: 100%;
  z-index: 1;
}

.page-header-box {
  position: relative;
  z-index: 2;
}

.page-header-box h1 {
  display: inline-block;
  font-size: 60px;
  color: var(--white-color);
  margin-bottom: 10px;
  cursor: none;
}

.page-header-box ol {
  margin: 0;
  padding: 0;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 16px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white-color);
}

.our-approach {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.our-approach::before,
.our-approach::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.our-approach::before {
  top: -20px;
  right: 0;
  background-image: url("../images/section-bg-shape-1.png");
  width: 220px;
  height: 240px;
}

.our-approach::after {
  bottom: -30px;
  left: 30px;
  background-image: url("../images/section-bg-shape-2.png");
  width: 220px;
  height: 365px;
}

.our-approach .container {
  position: relative;
  z-index: 1;
}

.approach-item {
  background-color: var(--bg-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 30px;
  transition: all 0.5s ease-in-out;
}

.approach-item:hover {
  transform: translateY(-5px);
}

.approach-item-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin: 0 10px 20px;
}

.approach-item-header .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.approach-item-header .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.approach-item:hover .icon-box::before {
  transform: scale(1);
}

.approach-item-header .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.approach-item-title {
  width: calc(100% - 65px);
}

.approach-item-title h3 {
  font-size: 20px;
}

.approach-item-image figure {
  display: block;
  border-radius: 20px;
}

.approach-item-image img {
  width: 100%;
  aspect-ratio: 1 / 0.641;
  object-fit: cover;
  border-radius: 20px;
}

.approach-item-content {
  margin: 20px 10px 0;
}

.approach-item-content p:last-child {
  margin-bottom: 0;
}

.our-volunteers {
  padding: 120px 0;
}

.volunteer-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.volunteer-item-image a {
  display: block;
  cursor: none;
}

.volunteer-item-image figure {
  position: relative;
  display: block;
  border-radius: 20px;
}

.volunteer-item-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 50%,
    var(--primary-color) 90%
  );
  border-radius: 20px;
  z-index: 1;
}

.volunteer-item-image figure img {
  width: 100%;
  aspect-ratio: 1 / 1.176;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.volunteer-item:hover .volunteer-item-image figure img {
  transform: scale(1.06);
}

.volunteer-social-list {
  position: absolute;
  right: 40px;
  top: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s ease-in-out;
  z-index: 2;
}

.volunteer-item:hover .volunteer-social-list {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.volunteer-social-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.volunteer-social-list ul li {
  margin-bottom: 15px;
}

.volunteer-social-list ul li:last-child {
  margin-bottom: 0;
}

.volunteer-social-list ul li a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--dark-divider-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.volunteer-social-list ul li a:hover {
  background-color: var(--accent-color);
}

.volunteer-social-list ul li a i {
  font-size: 18px;
  color: var(--white-color);
  transition: all 0.4s ease-in-out;
}

.volunteer-item-content {
  position: absolute;
  right: 40px;
  bottom: 40px;
  left: 40px;
  z-index: 1;
}

.volunteer-item-content h2 {
  font-size: 20px;
  color: var(--white-color);
}

.volunteer-item-content h2 a {
  color: inherit;
}

.volunteer-item-content p {
  color: var(--white-color);
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 15px;
  margin: 15px 0 0;
}

.volunteer-pagination.swiper-pagination-bullets {
  text-align: center;
  margin-top: 40px;
}

.volunteer-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--divider-color);
  border-radius: 100px;
  opacity: 1;
  margin: 0 3px;
  transition: all 0.3s ease-in-out;
}

.volunteer-pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: var(--accent-color);
}

.our-volunteers .section-footer-text {
  margin-top: 40px;
}

/************************************/
/*** 	 18. Services Page css    ***/
/************************************/

.page-services {
  padding: 120px 0 90px;
}

.page-services .service-item {
  width: 100%;
  min-height: 425px;
  background: var(--secondary-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  border: 0;
  padding: 40px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out;
}

.page-services .service-item:hover {
  transform: translateY(-5px);
}

.page-services .service-item-btn {
  border-top: 1px solid var(--divider-color);
  padding-top: 30px;
  margin-top: 0;
}

/************************************/
/*** 	 19. Service Single css	  ***/
/************************************/

.page-service-single {
  padding: 120px 0;
}

.page-single-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 20px;
}

.page-category-list {
  background: var(--secondary-color);
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}

.page-category-list .page-category-list-title {
  font-size: 20px;
  color: var(--white-color);
  background: var(--accent-color);
  padding: 18px 40px;
}

.page-category-list ul {
  list-style: none;
  margin: 0;
  padding: 40px;
}

.page-category-list ul li {
  font-weight: 600;
  line-height: 1.5em;
  color: var(--primary-color);
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.page-category-list ul li:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}

.page-category-list ul li a {
  position: relative;
  display: block;
  color: inherit;
  padding-right: 20px;
  transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover {
  color: var(--accent-color);
}

.page-category-list ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: url("../images/arrow-primary.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before {
  transform: translateY(-50%) rotate(45deg);
}

.sidebar-cta-box {
  position: relative;
  background: url("../images/sidebar-cta-bg-image.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}

.sidebar-cta-box::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 60%;
  z-index: 1;
}

.sidebar-cta-header,
.sidebar-cta-contact-list {
  position: relative;
  z-index: 2;
}

.sidebar-cta-header .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.sidebar-cta-header .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--white-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
}

.sidebar-cta-box:hover .sidebar-cta-header .icon-box::before {
  transform: scale(1);
}

.sidebar-cta-header .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.sidebar-cta-box:hover .sidebar-cta-header .icon-box img {
  filter: brightness(1) invert(1);
}

.sidebar-cta-content h2 {
  font-size: 20px;
  color: var(--white-color);
}

.sidebar-cta-content p {
  color: var(--white-color);
  margin: 10px 0 0 0;
}

.sidebar-cta-contact-list {
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 20px;
}

.sidebar-cta-contact-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-cta-contact-list ul li {
  line-height: 1.5em;
  color: var(--white-color);
  margin-bottom: 10px;
}

.sidebar-cta-contact-list ul li:last-child {
  margin-bottom: 0;
}

.sidebar-cta-contact-list ul li a {
  color: inherit;
}

.page-single-image {
  margin-bottom: 30px;
}

.page-single-image figure {
  display: block;
  border-radius: 20px;
}

.page-single-image img {
  width: 100%;
  aspect-ratio: 1 / 0.6216;
  object-fit: cover;
  border-radius: 20px;
}

.service-entry {
  margin-bottom: 60px;
}

.service-entry h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-entry h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-entry p {
  margin-bottom: 20px;
}

.service-entry h2:last-child,
.service-entry h3:last-child,
.service-entry p:last-child {
  margin: 0;
}

.service-contribute-box,
.service-impact-box {
  margin-top: 60px;
}

.service-contribute-image-box {
  position: relative;
  align-content: end;
  min-height: 450px;
  border-radius: 20px;
  padding: 50px;
  margin-top: 40px;
  overflow: hidden;
}

.service-contribute-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-contribute-image figure {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.service-contribute-image figure::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(33, 41, 59, 0.9) 90%
  );
  width: 100%;
  height: 100%;
}

.service-contribute-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-contribute-item-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  z-index: 1;
}

.service-contribute-item {
  width: calc(50% - 15px);
}

.service-contribute-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.service-contribute-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--white-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.service-contribute-item:hover .icon-box::before {
  transform: scale(1);
}

.service-contribute-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.service-contribute-item:hover .icon-box img {
  filter: brightness(1) invert(1);
}

.service-contribute-item-content h3,
.service-contribute-item-content p {
  color: var(--white-color);
}

.service-impact-item-list {
  display: flex;
  flex-wrap: wrap;
  background: var(--secondary-color);
  border-radius: 20px;
  gap: 30px 50px;
  padding: 40px;
  margin-top: 40px;
}

.service-impact-item {
  width: calc(50% - 25px);
}

.service-impact-item h2 {
  font-size: 40px;
  line-height: 1em;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
}

/************************************/
/*** 	 20. Blog Archive css	  ***/
/************************************/

.page-blog {
  padding: 120px 0;
}

.page-pagination {
  margin-top: 30px;
  text-align: center;
}

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 600;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  background: var(--accent-color);
  color: var(--white-color);
}

/************************************/
/*** 	  21. Blog Single css	  ***/
/************************************/

.page-single-post {
  padding: 120px 0;
}

.post-single-meta ol li {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 15px;
}

.post-single-meta ol li:last-child {
  margin-right: 0;
}

.post-single-meta ol li i {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 5px;
}

.post-image {
  position: relative;
  margin-bottom: 30px;
}

.post-image figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
  border-radius: 20px;
}

.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.post-entry:after {
  content: "";
  display: block;
  clear: both;
}

.post-entry a {
  color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  font-weight: 600;
  line-height: 1.2em;
  margin: 0 0 0.42em;
}

.post-entry h1 {
  font-size: 60px;
}

.post-entry h2 {
  font-size: 48px;
}

.post-entry h3 {
  font-size: 40px;
}

.post-entry h4 {
  font-size: 30px;
}

.post-entry h5 {
  font-size: 24px;
}

.post-entry h6 {
  font-size: 20px;
}

.post-entry p {
  margin-bottom: 20px;
}

.post-entry p:last-child {
  margin-bottom: 0;
}

.post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

.post-entry ol {
  margin: 0 0 30px;
}

.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.post-entry ol:last-child,
.post-entry ul:last-child {
  margin-bottom: 0;
}

.post-entry ol li,
.post-entry ul li {
  position: relative;
  font-size: 18px;
  line-height: 1.5em;
  color: var(--text-color);
  margin-bottom: 15px;
}

.post-entry ul li:last-child {
  margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.post-entry blockquote {
  background: var(--secondary-color) url("../images/icon-blockquote.svg");
  background-repeat: no-repeat;
  background-position: 30px 30px;
  background-size: 45px;
  border-radius: 20px;
  padding: 30px 30px 30px 90px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--primary-color);
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.tag-links {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.post-tags .tag-links a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1em;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 100px;
  padding: 12px 20px;
  transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
  background: var(--primary-color);
}

.post-social-sharing {
  text-align: right;
}

.post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.post-social-sharing ul li:last-child {
  margin-right: 0;
}

.post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
  background: var(--primary-color);
}

.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}

/************************************/
/*** 	 22. Programs Page css	  ***/
/************************************/

.page-programs {
  padding: 120px 0 90px;
}

.page-programs .program-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

/************************************/
/*** 	 23. Program Single css	  ***/
/************************************/

.page-program-single {
  padding: 120px 0;
}

.program-entry {
  margin-bottom: 60px;
}

.program-entry h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.program-entry h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.program-entry p {
  margin-bottom: 20px;
}

.program-entry ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.program-entry ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
}

.program-entry ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.program-entry h2:last-child,
.program-entry h3:last-child,
.program-entry p:last-child,
.program-entry ul li:last-child {
  margin-bottom: 0;
}

.program-expect-box,
.program-how-work-box {
  margin-top: 60px;
}

.program-expect-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.program-expect-content,
.program-expect-image {
  width: calc(50% - 15px);
}

.program-expect-content {
  align-content: center;
}

.program-expect-item-list {
  margin-top: 40px;
}

.program-expect-item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.program-expect-item:last-child {
  margin-bottom: 0;
}

.program-expect-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-expect-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  height: 100%;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.program-expect-item:hover .icon-box::before {
  transform: scale(1);
}

.program-expect-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.program-expect-item-content {
  width: calc(100% - 65px);
}

.program-expect-image figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.program-expect-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.993;
  object-fit: cover;
  border-radius: 20px;
}

.program-how-work-accordion {
  margin-top: 40px;
}

.program-how-work-accordion .accordion-item {
  position: relative;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

.program-how-work-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.program-how-work-accordion .accordion-header {
  margin-bottom: 0;
}

.program-how-work-accordion .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3em;
  color: var(--primary-color);
  border-bottom: 1px solid var(--divider-color);
  padding: 4px 40px 25px 0;
  transition: all 0.3s ease-in-out;
}

.program-how-work-accordion
  .accordion-item:last-child
  .accordion-header
  .accordion-button.collapsed {
  border-bottom: none;
  padding-bottom: 4px;
}

.program-how-work-accordion .accordion-item .accordion-button::after,
.program-how-work-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\f055";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 0px;
  line-height: 1em;
  font-size: 34px;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.program-how-work-accordion .accordion-button:not(.collapsed)::after {
  content: "\f056";
}

.program-how-work-accordion .accordion-item .accordion-body {
  padding: 25px 40px 0 0;
}

/************************************/
/*** 	24. Volunteers Page css	  ***/
/************************************/

.page-volunteers {
  padding: 120px 0 90px;
}

.page-volunteers .volunteer-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

/************************************/
/*** 	25. Volunteer Single css  ***/
/************************************/

.page-volunteer-single {
  padding: 120px 0;
}

.volunteer-single-image {
  margin-bottom: 30px;
}

.volunteer-single-image figure {
  display: block;
  border-radius: 20px;
}

.volunteer-single-image img {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
  border-radius: 20px;
}

.volunteer-member-about,
.volunteer-skills-box {
  margin-bottom: 60px;
}

.volunteer-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.volunteer-contact-item {
  width: calc(50% - 15px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 30px 25px;
}

.volunteer-contact-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.volunteer-contact-item .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.volunteer-contact-item:hover .icon-box:before {
  transform: scale(1);
}

.volunteer-contact-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.volunteer-contact-item-content {
  width: calc(100% - 65px);
}

.volunteer-contact-item-content p {
  margin: 0;
}

.volunteer-contact-item-content h3 {
  font-size: 20px;
  margin-top: 5px;
}

.member-social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
  margin-top: 40px;
}

.member-social-list h3 {
  font-size: 20px;
}

.member-social-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.member-social-list ul li a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.member-social-list ul li a:hover {
  background: var(--accent-color);
}

.member-social-list ul li a i {
  font-size: 18px;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.member-social-list ul li a:hover i {
  color: var(--white-color);
}

.volunteer-skills-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.volunteer-skill-image {
  width: calc(36% - 15px);
}

.volunteer-skill-image figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.volunteer-skill-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.155;
  object-fit: cover;
  border-radius: 20px;
}

.volunteer-skill-list {
  width: calc(64% - 15px);
  align-content: center;
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 40px;
}

.volunteer-skill-list .skills-progress-bar .skill-data .skill-title,
.volunteer-skill-list .skills-progress-bar .skill-data .skill-no {
  color: var(--primary-color);
}

.volunteer-skill-list .skills-progress-bar .skillbar .skill-progress {
  height: 6px;
  background: var(--bg-color);
}

.volunteer-skills-box .section-footer-text.section-satisfy-img {
  justify-content: start;
}

.volunteer-skills-box .section-footer-text {
  margin-top: 40px;
}

/************************************/
/***   26. Testimonials Page css  ***/
/************************************/

.page-testimonials {
  padding: 120px 0 90px;
}

.page-testimonials .testimonial-item {
  min-height: 500px;
  background: var(--secondary-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
}

.page-testimonials .testimonial-item .testimonial-item-header {
  margin-bottom: 40px;
}

/************************************/
/*** 	 27. Image Gallery css	  ***/
/************************************/

.page-gallery {
  padding: 120px 0 90px;
}

.page-gallery-box .photo-gallery {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
  cursor: none;
}

.page-gallery-box .photo-gallery figure {
  display: block;
  border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.8678;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/*** 	 28. Video Gallery css	  ***/
/************************************/

.page-video-gallery {
  padding: 120px 0 90px;
}

.video-gallery-image {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.video-gallery-image a {
  position: relative;
  display: block;
  cursor: none;
}

.video-gallery-image a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  border-radius: 20px;
  opacity: 0%;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
  opacity: 50%;
  visibility: visible;
  transform: scale(1);
}

.video-gallery-image a::after {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.video-gallery-image:hover a::after {
  opacity: 1;
  visibility: visible;
}

.video-gallery-image img {
  width: 100%;
  aspect-ratio: 1 / 0.8678;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/*** 	  29. FAQ's Page css	  ***/
/************************************/

.page-faqs {
  padding: 120px 0;
}

.page-faqs .page-single-faqs {
  margin-bottom: 60px;
}

.page-faqs .page-single-faqs:last-child {
  margin-bottom: 0px;
}

/************************************/
/*** 	30. Contact Us Page css	  ***/
/************************************/

.page-contact-us {
  padding: 120px 0 60px;
}

.contact-us-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-right: 15px;
}

.contact-info-image-box {
  position: relative;
  border-radius: 20px;
  min-height: 415px;
  align-content: end;
  padding: 40px;
  overflow: hidden;
}

.contact-info-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.contact-info-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    var(--primary-color) 90%
  );
  height: 100%;
  width: 100%;
}

.contact-info-image figure {
  display: block;
  height: 100%;
}

.contact-info-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info-item-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  z-index: 1;
}

.contact-info-item {
  position: relative;
  width: calc(50% - 20px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.contact-info-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  background-color: var(--dark-divider-color);
  width: 1px;
  height: 100%;
}

.contact-info-item:nth-child(2n - 2):before,
.contact-info-item:last-child:before {
  display: none;
}

.contact-info-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--white-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.contact-info-item:hover .icon-box::before {
  transform: scale(1);
}

.contact-info-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.contact-info-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.contact-info-item-content {
  width: calc(100% - 65px);
}

.contact-info-item-content p {
  color: var(--white-color);
  margin: 0 0 5px;
}

.contact-info-item-content h3 {
  font-size: 20px;
  color: var(--white-color);
}

.contact-info-item-content h3 a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.contact-info-item-content h3 a:hover {
  color: var(--accent-color);
}

.page-contact-us .contact-us-form {
  height: 100%;
  align-content: center;
}

.contact-us-form {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 50px;
}

.contact-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--primary-color);
  background: #f1f2ff;
  border: none;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: none;
  outline: none;
}

.contact-form .form-control::placeholder {
  color: var(--text-color);
  opacity: 50%;
}

.google-map {
  padding: 60px 0 120px;
}

.google-map-iframe {
  width: 100%;
  height: 650px;
  border-radius: 20px;
  overflow: hidden;
}

.google-map-iframe iframe {
  width: 100%;
  height: 100%;
}

/************************************/
/*** 	 31. 404 Error Page css	  ***/
/************************************/

.error-page {
  padding: 120px 0;
}

.error-page-image {
  text-align: center;
  margin-bottom: 30px;
}

.error-page-image img {
  width: 100%;
  max-width: 750px;
}

.error-page-content {
  text-align: center;
}

.error-page-content .section-title {
  margin-bottom: 15px;
}

/************************************/
/***      32. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px) {
  .our-testimonial {
    padding: 40px;
  }
}

@media only screen and (max-width: 1024px) {
  .main-menu ul li {
    margin: 0;
  }

  .section-content-btn .section-btn {
    margin-top: 20px;
  }

  .section-title-content {
    margin-top: 10px;
  }

  .section-btn {
    text-align: left;
    margin-top: 15px;
  }

  .hero::before {
    background: var(--primary-color);
    opacity: 45%;
  }

  .hero-content-box {
    min-height: auto;
    gap: 20px;
    margin: 0 0 30px;
  }

  .hero-sub-heading-box {
    max-width: 100%;
  }

  .hero-body {
    height: auto;
    flex-direction: row-reverse;
    justify-content: left;
    align-items: center;
  }

  .about-us-image-box {
    max-width: 740px;
    margin: 0 auto 30px;
  }

  .about-us-image.box-1 figure img {
    aspect-ratio: 1 / 1.05;
  }

  .about-us-image.box-2 figure img {
    aspect-ratio: 1 / 1.2;
  }

  .about-us-image.box-3 figure img {
    aspect-ratio: 1 / 1;
  }

  .our-services::before {
    width: 150px;
    height: 170px;
    opacity: 50%;
  }

  .our-services::after {
    width: 140px;
    height: 232px;
    opacity: 50%;
  }

  .services-item-list .service-item {
    padding: 20px;
  }

  .service-cta-box {
    padding: 30px 30px 0;
  }

  .service-cta-image figure {
    margin: 0 -10px;
  }

  .why-choose-image-box {
    max-width: 740px;
    height: auto;
    margin: 0 auto 30px;
  }

  .why-choose-image.image-1 figure,
  .why-choose-image.image-2 figure img,
  .why-choose-content {
    height: auto;
  }

  .why-choose-image.image-1 figure img {
    aspect-ratio: 1 / 1.2;
  }

  .our-features::before {
    width: 150px;
    height: 170px;
    opacity: 50%;
  }

  .feature-item-content {
    width: 100%;
  }

  .feature-counter-item-list {
    gap: 30px;
  }

  .feature-counter-item {
    width: calc(33.33% - 20px);
  }

  .donate-now-content {
    position: initial;
    min-height: auto;
    margin-bottom: 30px;
  }

  .donation-box {
    height: auto;
    min-height: auto;
    margin: 0;
    padding: 30px;
  }

  .faqs-image-box {
    height: auto;
    max-width: 740px;
    margin: 0 auto 30px;
  }

  .faqs-image-box-1,
  .faq-image,
  .faq-image figure,
  .faq-image figure img {
    height: auto;
  }

  .faq-image img {
    aspect-ratio: 1 / 1.1;
  }

  .faq-cta-box {
    max-width: 270px;
    min-height: auto;
    padding: 20px;
  }

  .our-testimonial {
    padding: 0;
  }

  .our-testimonial-image {
    position: initial;
    height: auto;
  }

  .our-testimonial-image figure {
    height: auto;
  }

  .our-testimonial-image figure::before {
    display: none;
  }

  .our-testimonial-image figure img {
    height: auto;
    aspect-ratio: 1 / 0.65;
  }

  .our-testimonial-box {
    padding: 60px 15px;
  }

  .testimonial-slider,
  .testimonial-title-box {
    width: 100%;
    max-width: 100%;
  }

  .testimonial-title-box {
    margin-bottom: 0;
  }

  .testimonial-slider {
    min-height: auto;
    padding: 30px;
  }

  .testimonial-slider .swiper,
  .testimonial-slider .swiper-wrapper,
  .testimonial-item {
    height: auto;
  }

  .testimonial-item-header {
    margin-bottom: 30px;
  }

  .footer-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .footer-links {
    max-width: 33%;
  }

  .footer-links h2 {
    margin-bottom: 20px;
  }

  .footer-links ul li {
    margin-bottom: 10px;
  }

  .footer-links.footer-newsletter-form {
    width: 100%;
    max-width: 100%;
  }

  .footer-links.footer-newsletter-form h2 {
    margin-bottom: 15px;
  }

  .footer-links.footer-newsletter-form p {
    margin-bottom: 20px;
  }

  .footer-copyright-text {
    padding: 30px 0;
    margin-top: 30px;
  }

  .our-approach::before {
    width: 150px;
    height: 170px;
    opacity: 50%;
  }

  .our-approach::after {
    width: 140px;
    height: 232px;
    opacity: 50%;
  }

  .page-single-sidebar {
    margin-right: 0;
  }

  .page-category-list .page-category-list-title {
    padding: 15px 20px;
  }

  .page-category-list ul {
    padding: 20px;
  }

  .page-category-list ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .sidebar-cta-box {
    min-height: 300px;
    padding: 20px;
  }

  .service-entry {
    margin-bottom: 40px;
  }

  .service-contribute-box,
  .service-impact-box {
    margin-top: 40px;
  }

  .service-contribute-image-box {
    min-height: 400px;
    margin-top: 30px;
    padding: 30px;
  }

  .service-impact-item-list {
    margin-top: 30px;
    padding: 30px;
  }

  .program-entry {
    margin-bottom: 40px;
  }

  .program-expect-box,
  .program-how-work-box {
    margin-top: 40px;
  }

  .program-expect-content,
  .program-expect-image {
    width: 100%;
  }

  .program-expect-item-list {
    margin-top: 30px;
  }

  .program-expect-image figure,
  .program-expect-image img {
    height: auto;
  }

  .program-expect-image img {
    aspect-ratio: 1 / 0.6;
  }

  .program-how-work-accordion {
    margin-top: 30px;
  }

  .volunteer-member-about,
  .volunteer-skills-box {
    margin-bottom: 40px;
  }

  .volunteer-contact-list {
    gap: 20px;
  }

  .volunteer-contact-item {
    width: calc(50% - 10px);
    padding: 20px;
  }

  .volunteer-contact-item-content h3 {
    font-size: 18px;
  }

  .member-social-list {
    padding-top: 30px;
    margin-top: 30px;
  }

  .volunteer-skills-body {
    gap: 20px;
  }

  .volunteer-skill-image {
    width: calc(40% - 10px);
  }

  .volunteer-skill-list {
    width: calc(60% - 10px);
    padding: 30px;
  }

  .volunteer-skills-box .section-footer-text {
    margin-top: 30px;
  }

  .page-testimonials .testimonial-item {
    min-height: auto;
  }

  .page-testimonials .testimonial-item .testimonial-item-header {
    margin-bottom: 30px;
  }

  .contact-us-content {
    height: auto;
    margin: 0px 0px 30px;
  }

  .page-contact-us .contact-us-form {
    height: auto;
  }

  .google-map-iframe {
    height: 500px;
  }
}

@media only screen and (max-width: 991px) {
  .btn-default {
    padding: 15px 52px 15px 15px;
  }

  .btn-default::before {
    width: 36px;
    height: 36px;
  }

  header.main-header {
    position: relative;
    top: 0px;
    right: 0px;
    left: 0px;
  }

  header.main-header .header-sticky {
    width: 100%;
    border-radius: 0;
  }

  header.main-header .header-sticky.active {
    width: 100%;
    border-radius: 0;
    top: 0;
    left: 0;
    right: 0;
    border-top: none;
    border-right: none;
    border-left: none;
  }

  .navbar {
    padding: 10px 0;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .header-btn {
    display: none;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title .section-sub-title {
    padding: 8px 12px 8px 25px;
    margin-bottom: 10px;
  }

  .section-title .section-sub-title::before {
    left: 12px;
  }

  .section-title h1 {
    font-size: 44px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .section-title p {
    margin-top: 10px;
  }

  .hero {
    min-height: 720px;
    padding: 60px 0;
  }

  .hero-sub-heading {
    padding: 4px 14px 4px 4px;
    margin-bottom: 15px;
  }

  .satisfy-client-image figure img {
    max-width: 40px;
  }

  .satisfy-client-image.add-more {
    width: 42px;
    height: 42px;
  }

  .satisfy-client-image.add-more i {
    font-size: 18px;
  }

  .satisfy-client-image.add-more img {
    max-width: 20px;
  }

  .satisfy-client-image.add-more h3 {
    font-size: 16px;
  }

  .hero-rating-box {
    padding: 20px;
  }

  .hero-rating-box h2 span {
    font-size: 22px;
  }

  .hero-rating-box h2 i {
    font-size: 18px;
  }

  .hero-rating-box p {
    font-size: 18px;
    margin-top: 15px;
    padding-top: 15px;
  }

  .watch-video-circle a img {
    max-width: 100px;
  }

  .about-us {
    padding: 60px 0;
  }

  .about-us-item-list {
    padding: 30px;
  }

  .about-us-item {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .about-content-footer {
    padding-top: 30px;
    margin-top: 30px;
  }

  .about-us-author-image figure img {
    max-width: 46px;
  }

  .about-us-author-content h3 {
    font-size: 18px;
  }

  .our-services {
    padding: 60px 0;
  }

  .services-item-list {
    margin-bottom: 30px;
  }

  .service-cta-box {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .service-cta-image figure {
    max-width: 380px;
    margin: 0 auto;
  }

  .our-services .section-footer-text {
    margin-top: 40px;
  }

  .section-footer-text,
  .section-footer-text ul {
    margin-top: 10px;
  }

  .section-footer-text ul li {
    margin-right: 5px;
    padding-right: 10px;
  }

  .section-footer-text p span {
    font-size: 12px;
    padding: 4px 10px;
    margin-right: 5px;
  }

  .why-choose-us {
    padding: 60px 0;
  }

  .why-choose-body-content ul li {
    margin-bottom: 10px;
  }

  .why-choose-body-content ul li::before {
    font-size: 16px;
  }

  .why-choose-btn {
    padding-top: 30px;
    margin-top: 30px;
  }

  .our-story {
    padding: 60px 0;
    min-height: 580px;
  }

  .our-story-content .watch-video-circle {
    margin-top: 90px;
  }

  .our-causes {
    padding: 60px 0;
  }

  .our-causes-item {
    min-height: 400px;
    padding: 30px;
  }

  .our-causes-item-tag span {
    font-size: 14px;
    padding: 7px 14px;
  }

  .our-causes-item-button {
    padding-top: 15px;
    margin-top: 15px;
  }

  .our-features {
    padding: 60px 0 60px;
  }

  .feature-item {
    width: calc(50% - 15px);
  }

  .feature-counter-item-list {
    padding: 30px;
    margin: 40px 10px 0;
  }

  .feature-counter-item-list::before {
    top: -10px;
    right: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 10px);
  }

  .feature-counter-item .icon-box {
    margin-bottom: 20px;
  }

  .feature-counter-item-content h2 {
    font-size: 34px;
  }

  .our-programs {
    padding: 60px 0;
  }

  .program-item-body {
    padding: 10px;
  }

  .program-item-meta {
    margin-bottom: 15px;
  }

  .program-item-btn {
    padding-top: 15px;
    margin-top: 15px;
  }

  .programs-pagination.swiper-pagination-bullets {
    margin-top: 30px;
  }

  .our-programs .section-footer-text {
    margin-top: 20px;
  }

  .donate-now {
    padding: 60px 0;
  }

  .donate-now-body-list ul li::before {
    font-size: 16px;
  }

  .skills-progress-bar .skill-data {
    margin-bottom: 15px;
  }

  .donation-pricing-list .donation-value label {
    font-size: 14px;
    padding: 7px 14px;
  }

  .our-faqs {
    padding: 60px 0;
  }

  .contact-us-cricle a img {
    max-width: 110px;
  }

  .faq-cta-content {
    margin-top: 15px;
  }

  .faq-cta-google-rating-content h2 {
    font-size: 22px;
  }

  .faq-accordion .accordion-item {
    margin-bottom: 20px;
  }

  .faq-accordion .accordion-header .accordion-button {
    padding: 15px 45px 15px 15px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    right: 15px;
    font-size: 24px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 15px;
  }

  .testimonial-item-rating i {
    font-size: 18px;
  }

  .testimonial-item-quote img {
    max-width: 36px;
  }

  .testimonial-item-content p {
    font-size: 18px;
  }

  .our-blog {
    padding: 60px 0 30px;
  }

  .post-item {
    min-height: 400px;
    padding: 30px;
  }

  .post-item-meta {
    margin-bottom: 15px;
  }

  .main-footer {
    padding: 60px 0 0;
  }

  .page-header {
    padding: 90px 0;
  }

  .page-header-box h1 {
    font-size: 44px;
  }

  .our-approach {
    padding: 60px 0;
  }

  .approach-item {
    padding: 20px;
  }

  .our-volunteers {
    padding: 60px 0;
  }

  .volunteer-social-list {
    right: 30px;
    top: 30px;
  }

  .volunteer-item-content {
    right: 30px;
    bottom: 30px;
    left: 30px;
  }

  .volunteer-pagination.swiper-pagination-bullets {
    margin-top: 30px;
  }

  .our-volunteers .section-footer-text {
    margin-top: 20px;
  }

  .page-services {
    padding: 60px 0 30px;
  }

  .page-services .service-item {
    min-height: 330px;
    padding: 30px;
  }

  .page-service-single {
    padding: 60px 0;
  }

  .page-single-sidebar {
    position: initial;
    margin-bottom: 30px;
  }

  .page-single-image {
    margin-bottom: 20px;
  }

  .service-entry h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .service-entry p {
    margin-bottom: 15px;
  }

  .service-impact-item-list {
    gap: 30px;
    padding: 30px;
  }

  .service-impact-item {
    width: calc(50% - 15px);
  }

  .service-impact-item h2 {
    font-size: 34px;
    padding-bottom: 15px;
  }

  .page-blog {
    padding: 60px 0;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 60px 0;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry h2 {
    font-size: 38px;
  }

  .post-entry p {
    margin-bottom: 15px;
  }

  .post-entry ol li,
  .post-entry ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .post-entry blockquote {
    background-position: 20px 20px;
    background-size: 40px;
    padding: 20px 20px 20px 70px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .post-tags .tag-links a {
    padding: 12px 15px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .page-programs {
    padding: 60px 0 30px;
  }

  .page-program-single {
    padding: 60px 0;
  }

  .program-entry h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .program-entry p {
    margin-bottom: 15px;
  }

  .program-entry ul li {
    margin-bottom: 10px;
  }

  .program-entry ul li::before {
    font-size: 16px;
  }

  .program-how-work-accordion .accordion-item {
    margin-bottom: 20px;
  }

  .program-how-work-accordion .accordion-header .accordion-button {
    font-size: 18px;
    padding: 2px 35px 15px 0;
  }

  .program-how-work-accordion
    .accordion-item:last-child
    .accordion-header
    .accordion-button.collapsed {
    padding-bottom: 2px;
  }

  .program-how-work-accordion .accordion-item .accordion-button::after,
  .program-how-work-accordion
    .accordion-item
    .accordion-button.collapsed::after {
    font-size: 26px;
  }

  .program-how-work-accordion .accordion-item .accordion-body {
    padding: 15px 30px 0 0;
  }

  .page-volunteers {
    padding: 60px 0 30px;
  }

  .page-volunteer-single {
    padding: 60px 0;
  }

  .volunteer-single-image img {
    aspect-ratio: 1 / 0.82;
  }

  .page-testimonials {
    padding: 60px 0 30px;
  }

  .page-testimonials .testimonial-item {
    padding: 30px;
  }

  .page-gallery {
    padding: 60px 0 30px;
  }

  .page-video-gallery {
    padding: 60px 0 30px;
  }

  .page-faqs {
    padding: 60px 0;
  }

  .page-faqs .page-single-faqs {
    margin-bottom: 40px;
  }

  .page-contact-us {
    padding: 60px 0 30px;
  }

  .contact-info-image-box,
  .contact-us-form {
    padding: 30px;
  }

  .contact-form .form-control {
    padding: 13px 15px;
  }

  .google-map {
    padding: 30px 0 60px;
  }

  .error-page {
    padding: 60px 0px;
  }

  .error-page-image {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .section-row {
    margin-bottom: 30px;
  }

  .section-title h1 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .hero-sub-heading .satisfy-client-image figure img {
    max-width: 26px;
  }

  .hero-body {
    gap: 20px;
  }

  .hero-rating-box {
    max-width: 100%;
    width: calc(100% - 112px);
  }

  .hero-rating-box h2 span {
    font-size: 20px;
  }

  .hero-rating-box h2 i {
    font-size: 16px;
  }

  .hero-rating-box p {
    font-size: 16px;
  }

  .watch-video-circle a img {
    max-width: 90px;
  }

  .about-us-image.box-1 figure,
  .about-us-image.box-3 figure {
    border-width: 3px;
    border-radius: 20px;
  }

  .about-us-image.box-1 figure {
    margin-right: -94px;
  }

  .about-us-image.box-2 {
    padding: 40px 0 50px;
  }

  .about-us-image.box-3 figure {
    margin-left: -88px;
  }

  .about-us-item-list {
    padding: 20px;
  }

  .about-us-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .about-us-item-content {
    width: 100%;
  }

  .about-us-item-content h3 {
    font-size: 18px;
  }

  .about-content-footer {
    gap: 20px;
  }

  .about-us-author-content h3 {
    font-size: 16px;
  }

  .about-us-author-content p {
    font-size: 14px;
  }

  .our-services::before {
    width: 100px;
    height: 110px;
  }

  .our-services::after {
    left: 10px;
    width: 120px;
    height: 200px;
  }

  .services-item-list .service-item {
    width: 100%;
    border-right: none;
    padding: 0 0 20px;
    margin-bottom: 20px;
  }

  .services-item-list .service-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .services-item-list .service-item:nth-last-child(2):nth-child(odd) {
    border-bottom: 1px solid var(--divider-color);
  }

  .service-item-contant h2 {
    font-size: 18px;
  }

  .service-cta-box {
    padding: 20px 20px 0;
  }

  .service-cta-content h3 {
    font-size: 18px;
  }

  .service-cta-btn {
    margin-top: 20px;
  }

  .service-cta-image figure {
    max-width: 280px;
  }

  .section-footer-text ul li {
    font-size: 14px;
  }

  .why-choose-image-box {
    padding-left: 30px;
  }

  .why-choose-image.image-1 figure img {
    aspect-ratio: 1 / 1.465;
  }

  .why-choose-image.image-2 {
    padding-bottom: 30px;
  }

  .why-choose-image.image-2 figure {
    border-width: 3px;
    border-radius: 23px;
    margin-left: -100px;
  }

  .why-choose-volunteer-box {
    top: 30px;
    max-width: 140px;
    border-width: 4px;
    padding: 12px;
  }

  .why-choose-volunteer-item-content h2 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .why-choose-volunteer-box .satisfy-client-image {
    margin-left: -10px;
  }

  .why-choose-volunteer-box .satisfy-client-image:first-child {
    margin: 0;
  }

  .why-choose-volunteer-box .satisfy-client-image figure img {
    max-width: 30px;
  }

  .why-choose-body-content {
    width: 100%;
    padding: 10px;
  }

  .why-choose-body-content h3 {
    font-size: 18px;
  }

  .why-choose-body-content ul {
    margin: 15px 0 0;
    padding: 15px 0 0;
  }

  .why-choose-body-image {
    width: 100%;
    max-width: 100%;
  }

  .why-choose-body-image figure,
  .why-choose-body-image figure img {
    height: auto;
  }

  .our-story {
    min-height: 520px;
  }

  .our-story-content .watch-video-circle {
    margin-top: 50px;
  }

  .our-causes-item {
    min-height: 360px;
    padding: 20px;
  }

  .our-causes-item-content h2 {
    font-size: 18px;
  }

  .our-features::before {
    width: 100px;
    height: 110px;
  }

  .feature-item {
    width: 100%;
  }

  .feature-item-content {
    width: calc(100% - 65px);
  }

  .feature-item-content h3 {
    font-size: 18px;
  }

  .feature-counter-item-list {
    padding: 20px;
  }

  .feature-counter-item {
    width: 100%;
  }

  .feature-counter-item .icon-box {
    margin-bottom: 20px;
  }

  .feature-counter-item-content h2 {
    font-size: 28px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .feature-counter-item-content h3 {
    font-size: 18px;
  }

  .program-item-meta ul li img {
    max-width: 18px;
  }

  .program-item-content h2 {
    font-size: 18px;
  }

  .donate-now-item-content {
    width: 100%;
  }

  .donate-now-item-content h3 {
    font-size: 18px;
  }

  .donate-now-body-list {
    padding-top: 20px;
    margin-top: 20px;
  }

  .donate-now-body-list ul {
    gap: 10px;
  }

  .donate-now-body-list ul li {
    width: 100%;
  }

  .donation-box {
    gap: 20px;
    padding: 20px;
  }

  .donation-form .form-group {
    gap: 5px;
  }

  .donation-form .form-group .form-control {
    width: calc(100% - 55px);
    padding: 10px 12px;
  }

  .donation-form .form-group .btn-default {
    font-size: 0;
    width: 36px;
    height: 36px;
    padding: 0;
  }

  .donation-form .form-group .btn-default::before {
    right: 0;
  }

  .donation-value-body {
    margin-top: 20px;
  }

  .donation-value-skillbar-list,
  .skills-progress-bar {
    margin-bottom: 20px;
  }

  .donation-value-item h3 {
    font-size: 18px;
  }

  .donation-pricing-box {
    padding-top: 20px;
    margin-top: 20px;
  }

  .donation-pricing-list {
    gap: 10px;
  }

  .donation-form-notice {
    padding-top: 20px;
  }

  .donation-form-notice p {
    font-size: 14px;
  }

  .donation-form-notice p img {
    max-width: 18px;
  }

  .faqs-image-box {
    padding: 0 45px 50px 0;
  }

  .faq-image img {
    aspect-ratio: 1 / 1.2;
  }

  .faqs-image-box .contact-us-cricle {
    top: 35px;
  }

  .contact-us-cricle a {
    border-width: 3px;
  }

  .contact-us-cricle a img {
    max-width: 90px;
  }

  .faq-cta-box {
    max-width: 195px;
    gap: 15px;
    border-width: 4px;
    padding: 15px;
  }

  .faq-cta-rating {
    margin-bottom: 15px;
  }

  .faq-cta-rating i {
    font-size: 14px;
  }

  .faq-cta-box-header .satisfy-client-image figure img {
    max-width: 34px;
  }

  .faq-cta-google-rating-box {
    gap: 10px;
  }

  .faq-cta-google-rating-box .icon-box img {
    max-width: 30px;
  }

  .faq-cta-google-rating-content h2 {
    font-size: 18px;
  }

  .faq-cta-content {
    margin-top: 10px;
  }

  .faq-cta-content p {
    font-size: 14px;
  }

  .faq-accordion .accordion-header .accordion-button {
    font-size: 16px;
    padding: 12px 40px 12px 15px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    font-size: 20px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 12px 15px;
  }

  .testimonial-slider {
    padding: 20px;
  }

  .testimonial-item {
    gap: 20px;
  }

  .testimonial-item-header {
    margin-bottom: 20px;
  }

  .testimonial-item-rating i,
  .testimonial-item-content p {
    font-size: 16px;
  }

  .testimonial-item-quote img {
    max-width: 32px;
  }

  .testimonial-item-author {
    padding-top: 20px;
  }

  .testimonial-author-content h2 {
    font-size: 18px;
  }

  .post-item {
    min-height: 350px;
    padding: 20px;
  }

  .post-item-meta ul li img {
    max-width: 18px;
  }

  .post-item-content h2 {
    font-size: 18px;
  }

  .post-item-body {
    transform: translateY(55px);
  }

  .post-item-btn {
    padding-top: 15px;
    margin-top: 15px;
  }

  .footer-social-links,
  .footer-social-links ul {
    gap: 10px;
  }

  .footer-social-links h2 {
    font-size: 18px;
  }

  .footer-social-links ul li a {
    width: 36px;
    height: 36px;
  }

  .footer-social-links ul li a i {
    font-size: 16px;
  }

  .footer-links {
    max-width: 100%;
  }

  footer .footer-quick-link {
    column-count: 2 !important;
  }

  .footer-links h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-newsletter-form .form-group .form-control {
    width: calc(100% - 34px);
    padding: 6px 20px 18px 0;
  }

  .footer-newsletter-form .form-group .newsletter-btn {
    width: 34px;
    height: 34px;
  }

  .footer-copyright-text {
    padding: 15px 0;
  }

  .page-header-box h1 {
    font-size: 28px;
  }

  .our-approach::before {
    width: 100px;
    height: 110px;
  }

  .our-approach::after {
    left: 10px;
    width: 120px;
    height: 200px;
  }

  .approach-item-header .icon-box {
    width: 40px;
    height: 40px;
  }

  .approach-item-header .icon-box img {
    max-width: 18px;
  }

  .approach-item-title h3 {
    font-size: 18px;
  }

  .volunteer-social-list {
    right: 20px;
    top: 20px;
  }

  .volunteer-item-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .volunteer-item-content h2 {
    font-size: 18px;
  }

  .volunteer-item-content p {
    padding-top: 10px;
    margin: 10px 0 0;
  }

  .page-services .service-item {
    min-height: auto;
    gap: 20px;
    padding: 20px;
  }

  .page-services .service-item-btn {
    padding-top: 20px;
  }

  .page-category-list .page-category-list-title {
    font-size: 18px;
  }

  .sidebar-cta-box {
    min-height: auto;
  }

  .sidebar-cta-content h2 {
    font-size: 18px;
  }

  .page-single-image img {
    aspect-ratio: 1 / 0.7;
  }

  .service-entry h2 {
    font-size: 26px;
  }

  .service-entry h3 {
    font-size: 18px;
  }

  .service-contribute-image-box {
    min-height: auto;
    padding: 20px;
  }

  .service-contribute-image figure::before {
    background: var(--primary-color);
    opacity: 50%;
  }

  .service-contribute-item {
    width: 100%;
  }

  .service-contribute-item .icon-box {
    margin-bottom: 15px;
  }

  .service-impact-item-list {
    padding: 20px;
  }

  .service-impact-item {
    width: 100%;
  }

  .service-impact-item h2 {
    font-size: 24px;
  }

  .post-single-meta ol li,
  .post-single-meta ol li i {
    font-size: 16px;
  }

  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    background-size: 30px;
    padding: 60px 20px 20px 20px;
  }

  .post-entry blockquote p {
    font-size: 16px;
  }

  .post-entry h2 {
    font-size: 26px;
  }

  .tag-links {
    font-size: 18px;
  }

  .program-entry h2 {
    font-size: 26px;
  }

  .program-entry h3 {
    font-size: 18px;
  }

  .program-how-work-accordion .accordion-header .accordion-button {
    font-size: 16px;
    padding: 2px 28px 12px 0;
  }

  .program-how-work-accordion .accordion-item .accordion-button::after,
  .program-how-work-accordion
    .accordion-item
    .accordion-button.collapsed::after {
    font-size: 20px;
  }

  .program-how-work-accordion .accordion-item .accordion-body {
    padding: 12px 0 0;
  }

  .volunteer-single-image img {
    aspect-ratio: 1 / 1.2;
  }

  .volunteer-contact-item {
    width: 100%;
    padding: 15px;
  }

  .volunteer-contact-item .icon-box {
    width: 44px;
    height: 44px;
  }

  .volunteer-contact-item .icon-box img {
    max-width: 20px;
  }

  .volunteer-contact-item-content {
    width: calc(100% - 59px);
  }

  .volunteer-contact-item-content h3 {
    font-size: 16px;
  }

  .member-social-list {
    gap: 10px;
  }

  .member-social-list h3 {
    font-size: 18px;
  }

  .member-social-list ul {
    gap: 10px;
  }

  .member-social-list ul li a {
    width: 36px;
    height: 36px;
  }

  .volunteer-skill-image,
  .volunteer-skill-list {
    width: 100%;
  }

  .volunteer-skill-image figure,
  .volunteer-skill-image img {
    height: auto;
  }

  .volunteer-skill-image img {
    aspect-ratio: 1 / 1.155;
  }

  .volunteer-skill-list {
    padding: 20px;
  }

  .page-volunteer-single .section-footer-text.section-satisfy-img {
    justify-content: center;
  }

  .page-testimonials .testimonial-item {
    padding: 20px;
  }

  .page-testimonials .testimonial-item .testimonial-item-header {
    margin-bottom: 20px;
  }

  .contact-info-image-box {
    padding: 20px;
  }

  .contact-info-item-list {
    gap: 20px;
  }

  .contact-info-item {
    width: 100%;
  }

  .contact-info-item::before {
    display: none;
  }

  .contact-info-item-content h3 {
    font-size: 18px;
  }

  .contact-us-form {
    padding: 20px;
  }

  .google-map-iframe {
    height: 350px;
  }
}

/************************************/
/***   33. Home - Version 2 css   ***/
/************************************/

.hero-gold {
  position: relative;
  align-content: end;
  min-height: 750px;
  height: 100vh;
  padding: 240px 0 80px;
}

.hero-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(180deg, rgba(33, 41, 59, 0.8) 0%, transparent 16.15%),
    linear-gradient(
      180deg,
      transparent 50%,
      rgba(33, 41, 59, 0.54) 73.21%,
      rgba(33, 41, 59, 0.9) 99.77%
    );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-gold .hero-bg-video-gold {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero-gold .hero-bg-video-gold video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gold .container {
  position: relative;
  z-index: 2;
}

.hero-gold .section-title {
  margin-bottom: 0;
}

.hero-info-box-gold {
  max-width: 415px;
  border: 1px solid var(--dark-divider-color);
  background: var(--divider-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 10px;
  margin-left: auto;
}

.hero-info-list-gold {
  background: var(--dark-divider-color);
  border-radius: 10px;
  padding: 20px;
}

.hero-info-list-gold ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-info-list-gold ul li {
  position: relative;
  line-height: 1.5em;
  color: var(--white-color);
  padding-left: 25px;
  margin-bottom: 15px;
}

.hero-info-list-gold ul li:last-child {
  margin-bottom: 0px;
}

.hero-info-list-gold ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--white-color);
  top: 0;
  left: 0;
}

.hero-progress-bar-gold {
  padding: 30px 20px 20px;
}

.hero-progress-bar-gold .skills-progress-bar .skill-data .skill-title,
.hero-progress-bar-gold .skills-progress-bar .skill-data .skill-no {
  font-weight: 500;
}

.hero-progress-bar-gold .skills-progress-bar .skillbar .skill-progress {
  background: var(--dark-divider-color);
}

.about-us-gold {
  padding: 120px 0;
}

.about-image-box-gold {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-right: 15px;
}

.about-image-box-1-gold {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.about-us-image-gold figure {
  display: block;
  border-radius: 20px;
}

.about-us-image-gold figure img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-image-box-1-gold .about-us-image-gold {
  height: 100%;
}

.about-image-box-1-gold .about-us-image-gold figure {
  margin-right: -222px;
  height: 100%;
}

.about-image-box-1-gold .about-us-image-gold figure img {
  height: 100%;
  aspect-ratio: 1 / 0.936;
}

.about-image-box-2-gold {
  position: relative;
  width: 50%;
  margin-top: auto;
  z-index: 1;
}

.about-image-box-2-gold figure {
  border: 10px solid var(--bg-color);
  border-radius: 30px;
}

.about-image-box-2-gold .about-us-image-gold figure img {
  aspect-ratio: 1 / 1.392;
}

.about-us-counter-box-gold {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding: 20px;
  margin: 20px 10px 0 20px;
}

.about-us-counter-box-gold .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-counter-box-gold .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
  z-index: 1;
}

.about-us-counter-box-gold:hover .icon-box::before {
  transform: scale(1);
}

.about-us-counter-box-gold .icon-box img {
  position: relative;
  max-width: 24px;
  z-index: 1;
}

.about-counter-content-gold {
  width: calc(100% - 65px);
}

.about-counter-content-gold h2 {
  font-size: 20px;
  color: var(--accent-color);
}

.about-counter-content-gold p {
  margin: 5px 0 0;
}

.about-us-content {
  height: 100%;
  align-content: center;
}

.about-us-item-gold {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.about-us-item-gold:last-child {
  margin-bottom: 0;
}

.about-us-item-gold .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.about-us-item-gold .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
  z-index: 1;
}

.about-us-item-gold:hover .icon-box::before {
  transform: scale(1);
}

.about-us-item-gold .icon-box img {
  position: relative;
  max-width: 24px;
  z-index: 1;
}

.about-us-item-content-gold {
  width: calc(100% - 65px);
}

.about-us-item-content-gold h3 {
  font-size: 20px;
  line-height: 1.4em;
}

.about-us-item-content-gold p {
  margin: 10px 0 0;
}

.about-us-btn-gold {
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}

.our-service-gold {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  z-index: 1;
}

.our-service-gold .container {
  position: relative;
  z-index: 2;
}

.our-service-gold::before,
.our-service-gold::after {
  content: "";
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.our-service-gold::before {
  top: -20px;
  right: 0;
  background-image: url("../images/section-bg-shape-1.png");
  width: 220px;
  height: 240px;
}

.our-service-gold::after {
  bottom: -30px;
  left: 30px;
  background-image: url("../images/section-bg-shape-2.png");
  width: 170px;
  height: 280px;
}

.service-item-gold {
  position: relative;
  background: var(--bg-color);
  border-radius: 20px;
  min-height: 415px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  gap: 40px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
}

.service-item-gold::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.service-item-gold:hover:before {
  top: auto;
  height: 100%;
}

.service-item-gold .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.service-item-gold .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
  z-index: 1;
}

.service-item-gold:hover .icon-box::before {
  transform: scale(1);
}

.service-item-gold .icon-box img {
  position: relative;
  max-width: 24px;
  z-index: 1;
}

.service-item-content-gold {
  position: relative;
  z-index: 1;
}

.service-item-content-gold h2 {
  font-size: 20px;
  line-height: 1.4em;
  transition: all 0.4s ease-in-out;
}

.service-item-content-gold h2 a {
  color: inherit;
}

.service-item-content-gold p {
  margin: 10px 0 0;
  transition: all 0.4s ease-in-out;
}

.service-item-gold:hover .service-item-content-gold h2,
.service-item-gold:hover .service-item-content-gold p {
  color: var(--white-color);
}

.service-item-btn-gold {
  position: relative;
  padding-top: 40px;
  border-top: 1px solid var(--divider-color);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.service-item-gold:hover .service-item-btn-gold {
  border-color: var(--dark-divider-color);
}

.service-item-gold .service-item-btn-gold .readmore-btn {
  transition: all 0.3s ease-in-out;
}

.service-item-gold:hover .service-item-btn-gold .readmore-btn {
  color: var(--white-color);
}

.service-item-gold:hover .service-item-btn-gold .readmore-btn::before {
  filter: brightness(0) invert(1);
}

.why-choose-us-gold {
  padding: 120px 0;
}

.why-choose-content-gold {
  align-content: center;
  height: 100%;
}

.why-choose-body-gold {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.why-choose-body-image-gold {
  width: calc(39% - 15px);
}

.why-choose-body-image-gold figure {
  display: block;
  border-radius: 20px;
  height: 100%;
}

.why-choose-body-image-gold figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.112;
  object-fit: cover;
  border-radius: 20px;
}

.why-choose-body-content-gold {
  width: calc(61% - 15px);
  align-content: center;
}

.why-choose-list-gold ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-choose-list-gold ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
}

.why-choose-list-gold ul li:last-child {
  margin-bottom: 0px;
}

.why-choose-list-gold ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.why-choose-btn-gold {
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
  margin-top: 40px;
}

.why-choose-us-image-gold {
  height: 100%;
  margin-left: 15px;
}

.why-choose-us-image-gold figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.why-choose-us-image-gold figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.96;
  object-fit: cover;
  border-radius: 20px;
}

.our-programs-gold {
  padding: 120px 0;
}

.program-item-gold {
  position: relative;
  border-radius: 20px;
  align-content: end;
  min-height: 460px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 10px;
  overflow: hidden;
}

.program-item-image-gold {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.program-item-image-gold a {
  cursor: none;
}

.program-item-image-gold figure {
  display: block;
  height: 100%;
}

.program-item-image-gold figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.program-item-gold:hover .program-item-image-gold figure img {
  transform: scale(1.06);
}

.program-item-body-gold {
  position: relative;
  background: var(--white-color);
  border-radius: 10px;
  padding: 20px;
  z-index: 1;
}

.program-item-content-gold h2 {
  font-size: 20px;
  line-height: 1.4em;
}

.program-item-content-gold p {
  margin: 10px 0 0;
}

.program-item-btn-gold {
  border-top: 1px solid var(--divider-color);
  padding-top: 20px;
  margin-top: 20px;
}

.our-fact-gold {
  padding: 120px 0;
}

.fact-item-gold {
  background: var(--secondary-color);
  border-radius: 20px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.fact-item-gold:hover {
  transform: translateY(-5px);
}

.fact-item-content-gold h2 {
  font-size: 60px;
  color: var(--primary-color);
}

.fact-item-content-gold p {
  margin: 10px 0 0;
}

.fact-item-image-gold figure {
  display: block;
  border-radius: 20px 20px 0 0;
  margin: 0 -40px -40px;
}

.fact-item-image-gold figure img {
  width: 100%;
  aspect-ratio: 1 / 0.61;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.our-fact-gold .section-footer-text {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.core-features-gold {
  background-image: url("../images/section-bg-shape-2.png");
  background-position: bottom -30px right 30px;
  background-repeat: no-repeat;
  background-size: 190px auto;
  padding: 120px 0;
}

.features-info-item-box-gold {
  background: var(--bg-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  margin-right: 20px;
  height: 100%;
  overflow: hidden;
}

.features-info-item-gold {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}

.features-info-item-gold:nth-child(even) {
  flex-direction: row-reverse;
}

.features-info-item-image-gold {
  width: 50%;
}

.features-info-item-image-gold figure {
  display: block;
  height: 100%;
}

.features-info-item-image-gold figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.867;
  object-fit: cover;
}

.features-info-item-body-gold {
  width: 50%;
  align-content: center;
  text-align: center;
  padding: 30px;
}

.features-info-item-body-gold .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 40px;
  z-index: 1;
}

.features-info-item-body-gold .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
  z-index: 1;
}

.features-info-item-body-gold:hover .icon-box::before {
  transform: scale(1);
}

.features-info-item-body-gold .icon-box img {
  position: relative;
  max-width: 24px;
  z-index: 1;
}

.features-info-item-content-gold h3 {
  font-size: 20px;
}

.features-info-item-content-gold p {
  line-height: 1.4em;
  margin: 10px 0 0;
}

.core-features-content-gold {
  height: 100%;
  align-content: center;
}

.core-features-list-gold ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  padding: 0;
  margin: 0;
}

.core-features-list-gold ul li {
  position: relative;
  width: calc(50% - 10px);
  line-height: 1.5em;
  padding-left: 25px;
}

.core-features-list-gold ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.core-features-btn-gold {
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
  margin-top: 40px;
}

.our-gallery-gold {
  padding: 120px 0;
}

.our-gallery-nav {
  text-align: center;
  margin-bottom: 60px;
}

.our-gallery-nav ul {
  list-style: none;
  text-align: center;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 60px;
  padding: 0;
  margin: 0;
}

.our-gallery-nav ul li a {
  position: relative;
  display: inline-block;
  color: var(--text-color);
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.our-gallery-nav ul li a:before {
  content: "";
  position: absolute;
  top: 5px;
  right: -34px;
  background-color: var(--divider-color);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.our-gallery-nav ul li:last-child a:before {
  display: none;
}

.our-gallery-nav ul li a.active-btn,
.our-gallery-nav ul li a:hover {
  color: var(--accent-color);
}

.gallery-item-gold {
  position: relative;
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.gallery-item-image-gold figure {
  position: relative;
  display: block;
  border-radius: 20px;
}

.gallery-item-image-gold figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 74.71%,
    rgba(33, 41, 59, 0.9) 100%
  );
  z-index: 1;
}

.gallery-item-image-gold figure img {
  width: 100%;
  aspect-ratio: 1 / 1.187;
  object-fit: cover;
  border-radius: 20px;
}

.gallery-item-title-gold {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  text-align: center;
  z-index: 2;
}

.gallery-item-title-gold h3 {
  font-size: 20px;
  color: var(--white-color);
}

.our-gallery-gold .section-footer-text {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.donate-now-gold {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.donate-now-image-gold {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.donate-now-image-gold figure {
  position: relative;
  height: 100%;
}

.donate-now-image-gold figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(33, 41, 59, 0.8) 0%,
    transparent 67.16%
  );
  z-index: 1;
}

.donate-now-image-gold figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.donate-form-content-box-gold {
  position: relative;
  max-width: 635px;
  background-color: var(--secondary-color);
  border: 1px solid transparent;
  border-radius: 20px;
  margin-left: auto;
  overflow: hidden;
  z-index: 2;
}

.donate-box-gold {
  padding: 40px;
}

.donate-box-title-gold {
  background: var(--bg-color);
  text-align: center;
  padding: 20px;
}

.donate-box-title-gold h2 {
  font-size: 18px;
}

.donate-box-content-gold {
  margin-bottom: 30px;
}

.donate-box-content-gold p {
  margin-bottom: 0;
}

.donate-box-header-gold {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.donate-box-header-title-gold h3 {
  font-size: 16px;
}

.donate-box-currency-gold span {
  display: inline-block;
  background: var(--bg-color);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: var(--text-color);
  padding: 6px 15px;
}

.donate-value-box-gold {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.donate-form-gold .donate-value-gold {
  width: calc(33.33% - 6.66px);
}

.donate-value-box-gold .donate-value-gold input {
  position: absolute;
  left: -9999px;
}

.donate-value-box-gold .donate-value-gold label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 500;
  line-height: 1em;
  background-color: var(--bg-color);
  color: var(--primary-color);
  border-radius: 10px;
  padding: 22px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}

.donate-value-box-gold .donate-value-gold input[type="radio"]:hover + label,
.donate-value-box-gold .donate-value-gold input[type="radio"]:focus + label,
.donate-value-box-gold .donate-value-gold input[type="radio"]:checked + label {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.donate-form-gold .form-group {
  margin-bottom: 20px;
}

.donate-form-gold .form-control {
  font-size: 16px;
  line-height: 1.375em;
  font-weight: 500;
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  text-align: center;
  box-shadow: none;
  outline: none;
  padding: 15px 20px;
}

.donate-form-gold .form-control::placeholder {
  color: var(--text-color);
}

.donate-box-gold .donate-form-gold .form-group-btn-gold .btn-default {
  width: 100%;
  display: block;
  text-align: center;
  padding: 17px;
}

.donate-box-gold .donate-form-gold .form-group-btn-gold .btn-default::before {
  display: none;
}

.our-faqs-gold {
  padding: 120px 0;
}

.faqs-content-gold {
  position: sticky;
  top: 30px;
  margin-right: 15px;
}

.faqs-client-box-gold {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 60px;
}

.faqs-client-content-gold h3 {
  font-size: 18px;
}

.faqs-client-content-gold p {
  color: var(--primary-color);
  line-height: 1.4em;
  margin: 5px 0 0;
}

.faq-accordion-gold .accordion-item {
  position: relative;
  background: var(--secondary-color);
  border-radius: 14px;
  margin-bottom: 25px;
  overflow: hidden;
}

.faq-accordion-gold .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion-gold .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.333em;
  background: transparent;
  color: var(--primary-color);
  padding: 23px 60px 23px 23px;
}

.faq-accordion-gold .accordion-item .accordion-button::after,
.faq-accordion-gold .accordion-item .accordion-button.collapsed::after {
  content: "\f055";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 50%;
  right: 23px;
  line-height: 1em;
  font-size: 30px;
  font-weight: 600;
  transform: translateY(-50%);
  color: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.faq-accordion-gold .accordion-button:not(.collapsed)::after {
  content: "\f056";
}

.faq-accordion-gold .accordion-item .accordion-body {
  border-top: 1px solid var(--divider-color);
  padding: 23px;
}

.faq-accordion-gold .accordion-item .accordion-body p:last-child {
  margin: 0;
}

.our-testimonials-gold {
  background-image: url("../images/testimonial-bg-image-gold.png");
  background-repeat: no-repeat;
  background-position: center right -230px;
  background-size: auto;
  padding: 120px 0;
}

.testimonial-image-box-gold {
  position: relative;
  height: 100%;
  margin-right: 15px;
}

.testimonial-image-gold {
  height: 100%;
}

.testimonial-image-gold figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.testimonial-image-gold figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
  border-radius: 20px;
}

.google-review-box-gold {
  position: absolute;
  left: 15px;
  bottom: 15px;
  right: 15px;
  max-width: 365px;
  background-color: var(--white-color);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding: 30px;
  z-index: 1;
}

.google-logo-gold img {
  width: 100%;
  max-width: 40px;
}

.google-review-content-gold {
  width: calc(100% - 55px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.google-review-content-gold h2 {
  width: 75px;
  font-size: 26px;
  line-height: 1.1em;
}

.google-review-content-gold p {
  margin: 0;
}

.testimonial-content-gold {
  height: 100%;
  align-content: center;
}

.testimonial-slider-gold .swiper-wrapper {
  cursor: none;
}

.testimonial-item-gold {
  background-color: var(--bg-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  min-height: 340px;
}

.testimonial-item-content-gold p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--primary-color);
  margin: 0;
}

.testimonial-item-body-gold {
  border-top: 1px solid var(--divider-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
}

.testimonial-author-box-gold {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.testimonial-author-image-gold figure {
  display: block;
  border-radius: 50%;
}

.testimonial-author-image-gold img {
  width: 100%;
  max-width: 50px;
  border-radius: 50%;
}

.testimonial-author-content-gold h2 {
  font-size: 20px;
}

.testimonial-author-content-gold p {
  margin: 5px 0 0;
}

.testimonial-item-quote-gold img {
  width: 100%;
  max-width: 30px;
}

.testimonial-slider-gold .testimonial-pagination-gold {
  position: relative;
  margin-top: 40px;
  text-align: center;
}

.testimonial-slider-gold
  .testimonial-pagination-gold
  .swiper-pagination-bullet {
  position: relative;
  height: 12px;
  width: 12px;
  background: var(--divider-color);
  opacity: 1;
  margin: 0 8px;
  transition: all 0.3s ease-in-out;
}

.testimonial-slider-gold
  .testimonial-pagination-gold
  .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.testimonial-slider-gold
  .testimonial-pagination-gold
  .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.testimonial-slider-gold
  .testimonial-pagination-gold
  .swiper-pagination-bullet-active:before {
  border: 1px solid var(--accent-color);
  height: 24px;
  width: 24px;
}

.main-footer-gold {
  padding: 120px 0 0;
}

.footer-header-gold {
  background-color: var(--dark-divider-color);
  border-radius: 14px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  margin-bottom: 80px;
}

.footer-header-title-gold h2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--white-color);
}

.footer-newsletter-form-gold {
  width: 100%;
  max-width: 500px;
}

.footer-newsletter-form-gold .form-group {
  background: var(--dark-divider-color);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: none;
  padding: 5px;
}

.footer-newsletter-form-gold .form-group .form-control {
  flex: 1;
  line-height: 1.5em;
  color: var(--white-color);
  background: transparent;
  border: none;
  border-radius: 5px;
  outline: none;
  box-shadow: none;
  padding: 10px 20px;
}

.footer-newsletter-form-gold .form-group .form-control::placeholder {
  color: var(--white-color);
  opacity: 50%;
}

.footer-newsletter-form-gold .form-group button.btn-default {
  padding: 17px 20px;
}

.footer-newsletter-form-gold .form-group button.btn-default::before {
  display: none;
}

.about-footer-gold {
  max-width: 330px;
}

.footer-logo-gold img {
  width: 100%;
  max-width: 150px;
}

.about-footer-content-gold {
  margin-top: 20px;
}

.about-footer-content-gold p {
  color: var(--white-color);
  margin-bottom: 0;
}

.footer-social-links-gold {
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 30px;
  padding-top: 30px;
}

.footer-social-links-gold ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.footer-social-links-gold ul li a {
  width: 40px;
  height: 40px;
  color: var(--white-color);
  border: 1px solid var(--dark-divider-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.footer-social-links-gold ul li a:hover {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}

.footer-social-links-gold ul li a i {
  font-size: 18px;
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.footer-links-box-gold {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 7.292vw;
}

.footer-links-gold {
  position: relative;
}

.footer-quick-links-gold {
  width: calc(31% - 4.861vw);
}

.footer-service-links-gold {
  width: calc(38% - 4.861vw);
}

.footer-privacy-policy-gold {
  width: calc(31% - 4.861vw);
}

.footer-links-gold::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -3.646vw;
  transform: translateY(-50%);
  background: var(--dark-divider-color);
  width: 1px;
  height: 85%;
}

.footer-links-gold:last-child:before {
  display: none;
}

.footer-links-gold h2 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 30px;
}

.footer-links-gold ul {
  list-style: disc;
  margin: 0;
  padding: 0 0 0 20px;
}

.footer-links-gold ul li {
  text-transform: capitalize;
  color: var(--white-color);
  line-height: 1.5em;
  margin-bottom: 15px;
}

.footer-links-gold ul li:last-child {
  margin-bottom: 0;
}

.footer-links-gold ul li::marker {
  color: var(--accent-color);
}

.footer-links-gold ul li a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.footer-links-gold ul li a:hover {
  color: var(--accent-color);
}

.footer-copyright-text-gold {
  text-align: center;
  border-top: 1px solid var(--dark-divider-color);
  padding: 60px 0;
  margin-top: 80px;
}

.footer-copyright-text-gold p {
  color: var(--white-color);
  margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
  .hero-gold {
    height: auto;
  }

  .hero-gold::before {
    background: var(--primary-color);
    opacity: 50%;
  }

  .hero-info-box-gold {
    margin: 30px 0 0 0;
  }

  .about-image-box-gold {
    max-width: 740px;
    height: auto;
    margin: 0 auto 30px;
  }

  .about-image-box-1-gold .about-us-image-gold,
  .about-image-box-1-gold .about-us-image-gold figure,
  .about-image-box-1-gold .about-us-image-gold figure img {
    height: auto;
  }

  .about-us-content {
    height: auto;
  }

  .our-service-gold::before {
    width: 150px;
    height: 174px;
    opacity: 50%;
  }

  .our-service-gold::after {
    left: 20px;
    width: 120px;
    height: 200px;
    opacity: 50%;
  }

  .why-choose-content-gold {
    height: auto;
    margin-bottom: 30px;
  }

  .why-choose-body-image-gold figure img {
    aspect-ratio: 1 / 0.93;
  }

  .why-choose-us-image-gold,
  .why-choose-us-image-gold figure {
    height: auto;
  }

  .why-choose-us-image-gold {
    margin: 0;
  }

  .why-choose-us-image-gold figure img {
    height: auto;
    aspect-ratio: 1 / 0.75;
  }

  .core-features-gold {
    background-size: 140px auto;
  }

  .core-features-content-gold {
    height: auto;
    margin-bottom: 30px;
  }

  .core-features-btn-gold {
    margin-top: 30px;
    padding-top: 30px;
  }

  .features-info-item-box-gold {
    height: auto;
    margin: 0;
  }

  .features-info-item-image-gold figure img {
    aspect-ratio: 1 / 0.7;
  }

  .donate-box-gold {
    padding: 30px;
  }

  .faqs-content-gold {
    position: initial;
    margin: 0 0 30px;
  }

  .faqs-client-box-gold {
    margin-top: 30px;
  }

  .our-testimonials-gold {
    background-position: bottom center;
    background-size: 100% auto;
  }

  .testimonial-item-gold {
    min-height: 280px;
    padding: 30px;
  }

  .footer-header-gold {
    margin-bottom: 30px;
  }

  .footer-newsletter-form-gold {
    max-width: 450px;
  }

  .about-footer-gold {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .footer-links-box-gold {
    margin: 0;
  }

  .footer-links-gold h2 {
    margin-bottom: 20px;
  }

  .footer-links-gold ul li {
    margin-bottom: 10px;
  }

  .footer-copyright-text-gold {
    padding: 30px 0;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-gold {
    padding: 60px 0;
  }

  .hero-info-list-gold ul li {
    margin-bottom: 10px;
  }

  .hero-info-list-gold ul li::before {
    font-size: 16px;
  }

  .about-us-gold {
    padding: 60px 0;
  }

  .about-us-btn-gold {
    padding-top: 30px;
    margin-top: 30px;
  }

  .our-service-gold {
    padding: 60px 0;
  }

  .service-item-gold {
    gap: 30px;
    padding: 30px;
    min-height: auto;
  }

  .service-item-btn-gold {
    padding-top: 30px;
  }

  .why-choose-us-gold {
    padding: 60px 0;
  }

  .why-choose-btn-gold {
    padding-top: 30px;
    margin-top: 30px;
  }

  .why-choose-list-gold ul li {
    margin-bottom: 10px;
  }

  .why-choose-list-gold ul li::before {
    font-size: 16px;
  }

  .our-programs-gold {
    padding: 60px 0;
  }

  .program-item-gold {
    min-height: 400px;
  }

  .our-fact-gold {
    padding: 60px 0;
  }

  .fact-item-gold {
    min-height: 360px;
    padding: 30px;
  }

  .fact-item-content-gold h2 {
    font-size: 44px;
  }

  .fact-item-image-gold figure {
    margin: 0 -30px -30px;
  }

  .core-features-gold {
    padding: 60px 0;
  }

  .core-features-list-gold ul li::before {
    font-size: 16px;
  }

  .our-gallery-gold {
    padding: 60px 0;
  }

  .our-gallery-nav {
    margin-bottom: 40px;
  }

  .our-gallery-nav ul {
    gap: 10px 50px;
  }

  .our-gallery-nav ul li a:before {
    right: -29px;
  }

  .gallery-item-image-gold figure img {
    aspect-ratio: 1 / 0.95;
  }

  .donate-now-gold {
    padding: 60px 0;
  }

  .donate-now-image-gold {
    position: initial;
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    margin-bottom: 30px;
  }

  .donate-now-image-gold figure {
    height: auto;
  }

  .donate-now-image-gold figure::before {
    display: none;
  }

  .donate-now-image-gold figure img {
    height: auto;
    aspect-ratio: 1 / 0.7;
  }

  .donate-form-content-box-gold {
    max-width: 100%;
    border-color: var(--divider-color);
  }

  .donate-box-content-gold {
    margin-bottom: 20px;
  }

  .donate-form-gold .form-group {
    margin-bottom: 15px;
  }

  .donate-form-gold .form-control {
    padding: 11px 15px;
  }

  .donate-value-box-gold .donate-value-gold label {
    padding: 18px;
  }

  .donate-box-gold .donate-form-gold .form-group-btn-gold .btn-default {
    padding: 15px;
  }

  .our-faqs-gold {
    padding: 60px 0;
  }

  .faq-accordion-gold .accordion-item {
    margin-bottom: 20px;
  }

  .faq-accordion-gold .accordion-header .accordion-button {
    padding: 15px 45px 15px 15px;
  }

  .faq-accordion-gold .accordion-item .accordion-button::after,
  .faq-accordion-gold .accordion-item .accordion-button.collapsed::after {
    right: 15px;
    font-size: 24px;
  }

  .faq-accordion-gold .accordion-item .accordion-body {
    padding: 15px;
  }

  .our-testimonials-gold {
    padding: 60px 0;
  }

  .testimonial-image-box-gold {
    height: auto;
    margin: 0 0 30px;
  }

  .testimonial-image-gold,
  .testimonial-image-gold figure {
    height: auto;
  }

  .testimonial-image-gold figure img {
    height: auto;
    aspect-ratio: 1 / 0.8;
  }

  .google-review-box-gold {
    padding: 20px;
  }

  .google-review-content-gold h2 {
    width: 65px;
    font-size: 22px;
  }

  .testimonial-content-gold {
    height: auto;
  }

  .testimonial-item-content-gold p {
    font-size: 18px;
  }

  .main-footer-gold {
    padding: 60px 0 0;
  }

  .footer-header-title-gold {
    max-width: 100%;
  }

  .footer-header-title-gold h2 {
    font-size: 30px;
  }

  .footer-newsletter-form-gold {
    max-width: 100%;
  }

  .footer-newsletter-form-gold .form-group button.btn-default {
    padding: 15px 20px;
  }

  .about-footer-content-gold {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-info-list-gold {
    padding: 15px;
  }

  .hero-progress-bar-gold {
    padding: 20px 10px 10px;
  }

  .about-image-box-1-gold .about-us-image-gold figure {
    margin-right: -120px;
  }

  .about-image-box-2-gold .about-us-image-gold figure {
    border-width: 5px;
    border-radius: 25px;
  }

  .about-us-counter-box-gold {
    flex-direction: column;
    align-items: initial;
    gap: 10px;
    margin: 10px 5px 0;
    padding: 12px;
  }

  .about-us-counter-box-gold .icon-box {
    width: 40px;
    height: 40px;
  }

  .about-us-counter-box-gold .icon-box img {
    max-width: 20px;
  }

  .about-counter-content-gold {
    width: 100%;
  }

  .about-counter-content-gold h2 {
    font-size: 18px;
  }

  .about-counter-content-gold p {
    font-size: 14px;
  }

  .about-us-item-content-gold h3 {
    font-size: 18px;
  }

  .our-service-gold::before {
    width: 100px;
    height: 110px;
  }

  .our-service-gold::after {
    left: 10px;
    width: 120px;
    height: 200px;
  }

  .service-item-gold {
    padding: 20px;
    gap: 20px;
  }

  .service-item-content-gold h2 {
    font-size: 18px;
  }

  .service-item-btn-gold {
    padding-top: 20px;
  }

  .why-choose-body-gold {
    gap: 20px;
  }

  .why-choose-body-content-gold,
  .why-choose-body-image-gold {
    width: 100%;
  }

  .why-choose-body-image-gold figure,
  .why-choose-body-image-gold figure img {
    height: auto;
  }

  .program-item-body-gold {
    padding: 15px;
  }

  .program-item-content-gold h2 {
    font-size: 18px;
  }

  .program-item-btn-gold {
    margin-top: 15px;
    padding-top: 15px;
  }

  .fact-item-gold {
    min-height: auto;
    padding: 20px;
  }

  .fact-item-content-gold h2 {
    font-size: 28px;
  }

  .fact-item-image-gold figure {
    margin: 0 -20px -20px;
  }

  .core-features-gold {
    background-position: bottom -20px right 10px;
    background-size: 120px auto;
  }

  .features-info-item-body-gold {
    padding: 15px;
  }

  .features-info-item-body-gold .icon-box {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
  }

  .features-info-item-body-gold .icon-box img {
    max-width: 20px;
  }

  .features-info-item-content-gold h3 {
    font-size: 18px;
  }

  .features-info-item-content-gold p {
    font-size: 14px;
    margin: 5px 0 0;
  }

  .core-features-list-gold ul {
    gap: 10px;
  }

  .core-features-list-gold ul li {
    width: 100%;
  }

  .our-gallery-nav {
    margin-bottom: 30px;
  }

  .our-gallery-nav ul {
    gap: 10px 30px;
  }

  .our-gallery-nav ul li a:before {
    right: -18px;
    width: 6px;
    height: 6px;
  }

  .gallery-item-title-gold {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .gallery-item-title-gold h3 {
    font-size: 18px;
  }

  .donate-box-title-gold {
    padding: 15px;
  }

  .donate-box-title-gold h2 {
    font-size: 16px;
  }

  .donate-box-gold {
    padding: 20px;
  }

  .donate-value-box-gold .donate-value-gold label {
    font-size: 14px;
    padding: 15px 10px;
  }

  .faq-accordion-gold .accordion-header .accordion-button {
    font-size: 16px;
    padding: 12px 40px 12px 15px;
  }

  .faq-accordion-gold .accordion-item .accordion-button::after,
  .faq-accordion-gold .accordion-item .accordion-button.collapsed::after {
    font-size: 20px;
  }

  .faq-accordion-gold .accordion-item .accordion-body {
    padding: 12px 15px;
  }

  .testimonial-image-gold figure img {
    aspect-ratio: 1 / 1.02;
  }

  .google-review-box-gold {
    padding: 15px;
    gap: 10px;
  }

  .google-logo-gold img {
    max-width: 30px;
  }

  .google-review-content-gold {
    width: calc(100% - 40px);
  }

  .google-review-content-gold h2 {
    width: 55px;
    font-size: 18px;
  }

  .testimonial-item-gold {
    gap: 20px;
    padding: 20px;
    min-height: auto;
  }

  .testimonial-item-content-gold p {
    font-size: 16px;
  }

  .testimonial-item-body-gold {
    padding-top: 20px;
  }

  .testimonial-author-content-gold h2 {
    font-size: 18px;
  }

  .footer-header-gold {
    padding: 15px;
  }

  .footer-header-title-gold h2 {
    font-size: 24px;
  }

  .footer-newsletter-form-gold .form-group .form-control {
    padding: 10px;
    font-size: 14px;
  }

  .footer-newsletter-form-gold .form-group button.btn-default {
    font-size: 14px;
    padding: 12px 15px;
  }

  .footer-social-links-gold {
    margin-top: 20px;
    padding-top: 20px;
  }

  .footer-links-box-gold {
    justify-content: space-between;
    gap: 30px;
  }

  .footer-links-gold {
    width: auto;
  }

  .footer-links-gold::before {
    display: none;
  }

  .footer-links-gold h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-copyright-text-gold {
    padding: 15px 0;
  }
}

/************************************/
/***   34. Home - Version 3 css   ***/
/************************************/

.main-header.main-header-silver {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
}

.main-header.main-header-silver .header-sticky {
  max-width: 100%;
  border-bottom: 1px solid var(--dark-divider-color);
  background: transparent;
  border-radius: 0;
}

.main-header.main-header-silver .header-sticky.active {
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  border-color: var(--dark-divider-color);
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

.main-header.main-header-silver .navbar {
  padding: 30px 0;
}

.main-header.main-header-silver .main-menu ul li a {
  color: var(--white-color);
}

.main-header.main-header-silver .main-menu ul li a:hover,
.main-header.main-header-silver .main-menu ul li a:focus {
  color: var(--accent-color);
}

.main-header.main-header-silver .main-menu ul ul li a:hover,
.main-header.main-header-silver .main-menu ul ul li a:focus {
  color: var(--primary-color);
}

.hero-silver {
  position: relative;
  background-image: url("../images/hero-bg-image-silver.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  align-content: end;
  padding: 220px 0 80px;
  min-height: 100vh;
}

.hero-silver:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(180deg, rgba(33, 41, 59, 0.8) 0%, transparent 23.06%),
    linear-gradient(180deg, transparent 29.66%, var(--primary-color) 92.52%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-silver .container {
  position: relative;
  z-index: 2;
}

.hero-content-silver .section-title p {
  max-width: 700px;
}

.hero-content-body-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
}

.hero-client-box-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.hero-client-content-silver h2 {
  font-size: 24px;
  color: var(--white-color);
}

.hero-client-content-silver p {
  color: var(--white-color);
  line-height: normal;
  margin: 5px 0 0;
}

.hero-item-list-silver {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 5.208vw;
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 45px;
  margin-top: 145px;
}

.hero-item-silver {
  position: relative;
  width: calc(33.33% - 3.472vw);
}

.hero-item-silver::before {
  content: "";
  position: absolute;
  right: -2.604vw;
  width: 1px;
  height: 100%;
  background-color: var(--dark-divider-color);
}

.hero-item-silver:nth-child(3n + 3):before,
.hero-item-silver:last-child:before {
  display: none;
}

.hero-item-silver h2 {
  position: relative;
  font-size: 20px;
  color: var(--white-color);
  padding-left: 30px;
}

.hero-item-silver h2::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.hero-item-silver p {
  color: var(--white-color);
  margin: 10px 0 0;
}

.about-us-silver {
  padding: 120px 0;
}

.about-us-image-box-silver {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  margin-right: 15px;
}

.about-us-image-silver.box-1 {
  position: relative;
  width: 50%;
  margin: auto 0 120px;
  z-index: 2;
}

.about-us-image-silver figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.about-us-image-silver figure img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-us-image-silver.box-1 figure {
  border: 6px solid var(--bg-color);
  border-radius: 26px;
}

.about-us-image-silver.box-1 img {
  aspect-ratio: 1 / 1.066;
}

.about-us-image-silver.box-2 {
  width: 50%;
}

.about-us-image-silver.box-2 {
  height: 100%;
}

.about-us-image-silver.box-2 figure {
  margin-left: -188px;
}

.about-us-image-silver.box-2 img {
  height: 100%;
  aspect-ratio: 1 / 1.323;
}

.about-us-content-silver {
  height: 100%;
  align-content: center;
}

.about-us-item-list-silver {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.about-us-item-silver {
  position: relative;
  width: calc(50% - 15px);
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}

.about-us-item-silver::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.about-us-item-silver:hover:before {
  top: auto;
  height: 100%;
}

.about-us-item-silver .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  overflow: hidden;
}

.about-us-item-silver .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
  z-index: 0;
}

.about-us-item-silver:hover .icon-box::before {
  transform: scale(1);
}

.about-us-item-silver .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.about-us-item-content-silver {
  position: relative;
  z-index: 1;
}

.about-us-item-content-silver h3 {
  font-size: 20px;
  line-height: 1.4em;
  transition: all 0.4s ease-in-out;
}

.about-us-item-content-silver p {
  margin: 10px 0 0;
  transition: all 0.3s ease-in-out;
}

.about-us-item-silver:hover .about-us-item-content-silver h3,
.about-us-item-silver:hover .about-us-item-content-silver p {
  color: var(--white-color);
}

.about-us-btn-silver {
  margin-top: 40px;
}

.our-service-silver {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.our-service-silver::before,
.our-service-silver::after {
  content: "";
  position: absolute;
  z-index: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.our-service-silver::before {
  top: -20px;
  right: 0;
  background-image: url("../images/section-bg-shape-1.png");
  width: 220px;
  height: 240px;
}

.our-service-silver::after {
  bottom: -30px;
  left: 20px;
  background-image: url("../images/section-bg-shape-2.png");
  width: 220px;
  height: 365px;
}

.our-service-silver .container {
  position: relative;
  z-index: 2;
}

.service-item-silver {
  background-color: var(--bg-color);
  border-radius: 20px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  transition: all 0.4s ease-in-out;
}

.service-item-silver:hover {
  transform: translateY(-5px);
}

.service-item-header-silver .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  overflow: hidden;
}

.service-item-header-silver .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
  z-index: 0;
}

.service-item-silver:hover .service-item-header-silver .icon-box::before {
  transform: scale(1);
}

.service-item-header-silver .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.service-item-title-silver h2 {
  font-size: 20px;
  line-height: 1.4em;
}

.service-item-title-silver h2 a {
  color: inherit;
}

.service-item-content-silver p:last-child {
  margin-bottom: 0;
}

.service-item-btn-silver {
  border-top: 1px solid var(--divider-color);
  margin-top: 30px;
  padding-top: 30px;
}

.why-choose-us-silver {
  padding: 120px 0;
}

.why-choose-image-silver {
  height: 100%;
}

.why-choose-image-silver figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.why-choose-image-silver figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.964;
  object-fit: cover;
  border-radius: 20px;
}

.why-choose-item-list-silver {
  background-color: var(--white-color);
  border-radius: 20px;
}

.why-choose-item-silver {
  border-bottom: 1px solid var(--divider-color);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 40px;
}

.why-choose-item-silver:last-child {
  border: none;
}

.why-choose-item-silver .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.why-choose-item-silver .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
  z-index: 0;
}

.why-choose-item-silver:hover .icon-box::before {
  transform: scale(1);
}

.why-choose-item-silver .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.why-choose-item-content-silver {
  width: calc(100% - 65px);
}

.why-choose-item-content-silver h3 {
  font-size: 20px;
  line-height: 1.4em;
}

.why-choose-item-content-silver p {
  margin: 10px 0 0;
}

.why-choose-us-silver .section-footer-text {
  margin-top: 60px;
}

.our-volunteer-silver {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.our-volunteer-silver::before,
.our-volunteer-silver::after {
  content: "";
  position: absolute;
  z-index: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.our-volunteer-silver::before {
  top: -20px;
  right: 0;
  background-image: url("../images/section-bg-shape-1.png");
  width: 220px;
  height: 240px;
}

.our-volunteer-silver::after {
  bottom: -30px;
  left: 20px;
  background-image: url("../images/section-bg-shape-2.png");
  width: 220px;
  height: 365px;
}

.our-volunteer-silver .container {
  position: relative;
  z-index: 2;
}

.volunteer-item-silver {
  position: relative;
  background-color: var(--bg-color);
  border-radius: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 10px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.volunteer-item-image-silver {
  margin-bottom: 10px;
}

.volunteer-item-image-silver a {
  display: block;
  cursor: none;
  border-radius: 20px;
  overflow: hidden;
}

.volunteer-item-image-silver figure {
  display: block;
}

.volunteer-item-image-silver img {
  aspect-ratio: 1 / 0.914;
  object-fit: cover;
  width: 100%;
  transition: all 0.6s ease-in-out;
}

.volunteer-item-silver:hover .volunteer-item-image-silver img {
  transform: scale(1.06);
}

.volunteer-item-body-silver {
  background-color: var(--white-color);
  border-radius: 20px;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding: 25px 30px;
  z-index: 1;
}

.volunteer-item-contant-silver {
  width: calc(100% - 65px);
}

.volunteer-item-contant-silver h2 {
  font-size: 20px;
}

.volunteer-item-contant-silver h2 a {
  color: inherit;
}

.volunteer-item-contant-silver p {
  margin: 10px 0 0;
}

.volunteer-social-list-box-silver {
  position: relative;
  border-radius: 50%;
}

.volunteer-social-btn-silver {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.volunteer-social-btn-silver img {
  width: 100%;
  max-width: 24px;
  margin-left: 3px;
}

.volunteer-social-list-silver {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  margin: 0 auto;
  transform: translateY(-50%) scaleX(0);
  z-index: 2;
  transition: all 0.4s ease-in-out;
}

.volunteer-item-silver:hover .volunteer-social-list-silver {
  transform: translateY(-50%) scaleX(1);
}

.volunteer-social-list-silver ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.volunteer-social-list-silver ul li a {
  width: 40px;
  height: 40px;
  background-color: var(--divider-color);
  border: 1px solid var(--dark-divider-color);
  border-radius: 50%;
  color: var(--white-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.volunteer-social-list-silver ul li:hover a {
  background: var(--accent-color);
}

.volunteer-social-list-silver ul li a i {
  font-size: 18px;
  color: inherit;
}

.our-volunteer-silver .section-footer-text {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.our-project-silver {
  padding: 120px 0;
}

.our-project-image-silver {
  height: 100%;
  margin-right: 15px;
}

.our-project-image-silver figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.our-project-image-silver figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.977;
  object-fit: cover;
  border-radius: 20px;
}

.project-content-silver {
  height: 100%;
  align-content: center;
}

.project-item-list-silver {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.project-item-silver {
  width: calc(50% - 15px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.project-item-silver .icon-box {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.project-item-silver .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
  z-index: 0;
}

.project-item-silver:hover .icon-box::before {
  transform: scale(1);
}

.project-item-silver .icon-box img {
  position: relative;
  width: 100%;
  max-width: 20px;
  z-index: 1;
}

.project-item-content-silver {
  width: calc(100% - 55px);
}

.project-item-content-silver h3 {
  font-size: 20px;
  line-height: 1.4em;
}

.project-content-body-silver {
  border-top: 1px solid var(--divider-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
  padding-top: 40px;
  margin-top: 40px;
}

.project-author-item-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.project-author-image-silver figure {
  display: block;
  border-radius: 50%;
}

.project-author-image-silver figure img {
  width: 100%;
  max-width: 50px;
}

.project-author-content-silver {
  width: calc(100% - 65px);
}

.project-author-content-silver h3 {
  font-size: 20px;
}

.project-author-content-silver p {
  margin: 5px 0 0;
}

.our-key-fact-silver {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.our-key-fact-silver .container {
  position: relative;
  z-index: 2;
}

.our-key-fact-silver::before,
.our-key-fact-silver::after {
  content: "";
  position: absolute;
  z-index: 0;
}

.our-key-fact-silver::before {
  top: -20px;
  right: 0;
  background: url("../images/section-bg-shape-1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 220px;
  height: 240px;
}

.our-key-fact-silver::after {
  bottom: -30px;
  left: 20px;
  background: url("../images/section-bg-shape-2.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 220px;
  height: 365px;
}

.fact-item-silver {
  background: var(--bg-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.fact-item-silver:hover {
  transform: translateY(-5px);
}

.fact-item-counter-box-silver {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.fact-item-counter-content-silver h2 {
  font-size: 40px;
}

.fact-item-counter-content-silver p {
  margin: 10px 0 0;
}

.fact-item-counter-box-silver .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.fact-item-counter-box-silver .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
  z-index: 0;
}

.fact-item-silver:hover .icon-box::before {
  transform: scale(1);
}

.fact-item-counter-box-silver .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.fact-item-content-silver p {
  margin-bottom: 0;
}

.fact-item-body-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 20px;
}

.fact-item-list-silver {
  width: calc(50% - 10px);
}

.fact-item-list-silver ul {
  list-style: disc;
  padding: 0 0 0 20px;
  margin: 0;
}

.fact-item-list-silver li {
  line-height: 1.5em;
  margin-bottom: 10px;
}

.fact-item-list-silver li:last-child {
  margin-bottom: 0;
}

.fact-item-list-silver li::marker {
  color: var(--accent-color);
}

.fact-item-image-silver {
  width: calc(50% - 10px);
  text-align: right;
}

.fact-item-image-silver figure {
  margin: 0 -55px -55px 0;
  border-radius: 20px;
}

.fact-item-image-silver figure img {
  width: 100%;
  aspect-ratio: 1 / 0.844;
  object-fit: cover;
  border-radius: 20px;
}

.our-key-fact-silver .section-footer-text {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.core-feature-silver {
  padding: 120px 0;
}

.feature-content-silver {
  height: 100%;
  align-content: center;
}

.feature-item-list-silver {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-item-silver {
  width: calc(50% - 15px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.feature-item-silver .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.feature-item-silver .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
  z-index: 0;
}

.feature-item-silver:hover .icon-box::before {
  transform: scale(1);
}

.feature-item-silver .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.feature-item-content-silver {
  width: calc(100% - 65px);
}

.feature-item-content-silver h3 {
  font-size: 20px;
}

.feature-list-silver {
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
  margin-top: 40px;
}

.feature-list-silver ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list-silver ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
}

.feature-list-silver ul li:last-child {
  margin-bottom: 0;
}

.feature-list-silver ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.feature-btn-silver {
  margin-top: 40px;
}

.feature-image-box-silver {
  display: flex;
  flex-wrap: wrap;
  margin-left: 15px;
  height: 100%;
}

.feature-image-box-1-silver {
  width: 61%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-image-box-2-silver {
  position: relative;
  width: 39%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.feature-image-silver {
  flex: 1;
}

.feature-image-silver figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.feature-image-silver figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.057;
  object-fit: cover;
  border-radius: 20px;
}

.feature-image-box-2-silver .feature-image-silver figure {
  border: 6px solid var(--bg-color);
  border-radius: 26px;
  margin-left: -135px;
}

.feature-experience-box-silver {
  position: relative;
  background: var(--white-color);
  border-radius: 20px;
  text-align: center;
  padding: 30px 20px;
  margin: 30px 20px 0 20px;
  overflow: hidden;
}

.feature-experience-box-silver:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.feature-experience-box-silver:hover:before {
  top: auto;
  height: 100%;
}

.feature-experience-box-silver .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  overflow: hidden;
  z-index: 1;
}

.feature-experience-box-silver .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
  z-index: 0;
}

.feature-experience-box-silver:hover .icon-box::before {
  transform: scale(1);
}

.feature-experience-box-silver .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.feature-experience-box-silver:hover .icon-box img {
  filter: brightness(1) invert(1);
}

.feature-experience-content-silver {
  position: relative;
  z-index: 1;
}

.feature-experience-content-silver p {
  color: var(--primary-color);
  margin: 0;
  transition: all 0.4s ease-in-out;
}

.feature-experience-box-silver:hover .feature-experience-content-silver p {
  color: var(--white-color);
}

.feature-counter-box-silver {
  position: relative;
  max-width: 200px;
  background: var(--accent-color);
  border-radius: 14px;
  align-content: center;
  text-align: center;
  padding: 40px 30px;
  margin: 0 10px 30px 20px;
  transition: all 0.4s ease-in-out;
}

.feature-counter-box-silver:hover {
  background-color: var(--primary-color);
}

.feature-counter-box-silver h2 {
  font-size: 40px;
  color: var(--white-color);
}

.feature-counter-box-silver p {
  color: var(--white-color);
  margin: 5px 0 0;
}

.donate-now-silver {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.donate-now-image-silver {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.donate-now-image-silver figure {
  position: relative;
  height: 100%;
}

.donate-now-image-silver figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(33, 41, 59, 0.8) 0%,
    transparent 67.16%
  );
  z-index: 1;
}

.donate-now-image-silver figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.donate-form-content-box-silver {
  position: relative;
  max-width: 635px;
  background-color: var(--secondary-color);
  border: 1px solid transparent;
  border-radius: 20px;
  margin-left: auto;
  overflow: hidden;
  z-index: 2;
}

.donate-box-silver {
  padding: 40px;
}

.donate-box-title-silver {
  background: var(--bg-color);
  text-align: center;
  padding: 20px;
}

.donate-box-title-silver h2 {
  font-size: 18px;
}

.donate-box-content-silver {
  margin-bottom: 30px;
}

.donate-box-content-silver p {
  margin-bottom: 0;
}

.donate-box-header-silver {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.donate-box-header-title-silver h3 {
  font-size: 16px;
}

.donate-box-currency-silver span {
  display: inline-block;
  background: var(--bg-color);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: var(--text-color);
  padding: 6px 15px;
}

.donate-value-box-silver {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.donate-form-silver .donate-value-silver {
  width: calc(33.33% - 6.66px);
}

.donate-value-box-silver .donate-value-silver input {
  position: absolute;
  left: -9999px;
}

.donate-value-box-silver .donate-value-silver label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 500;
  line-height: 1em;
  background-color: var(--bg-color);
  color: var(--primary-color);
  border-radius: 10px;
  padding: 22px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}

.donate-value-box-silver .donate-value-silver input[type="radio"]:hover + label,
.donate-value-box-silver .donate-value-silver input[type="radio"]:focus + label,
.donate-value-box-silver
  .donate-value-silver
  input[type="radio"]:checked
  + label {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.donate-form-silver .form-group {
  margin-bottom: 20px;
}

.donate-form-silver .form-control {
  font-size: 16px;
  line-height: 1.375em;
  font-weight: 500;
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  text-align: center;
  box-shadow: none;
  outline: none;
  padding: 15px 20px;
}

.donate-form-silver .form-control::placeholder {
  color: var(--text-color);
}

.donate-box-silver .donate-form-silver .form-group-btn-silver .btn-default {
  width: 100%;
  display: block;
  text-align: center;
  padding: 17px;
}

.donate-box-silver
  .donate-form-silver
  .form-group-btn-silver
  .btn-default::before {
  display: none;
}

.our-testimonials-silver {
  padding: 120px 0;
}

.testimonial-content-silver {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-right: 15px;
}

.testimonial-slider-silver .swiper {
  height: 100%;
}

.testimonial-slider-silver .swiper-wrapper {
  cursor: none;
}

.testimonial-item-silver {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
}

.testimonial-item-quote-silver img {
  width: 100%;
  max-width: 40px;
}

.testimonial-item-content-silver p:last-child {
  margin: 0;
}

.testimonial-item-author-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
}

.testimonial-author-image-silver figure {
  display: block;
  border-radius: 50%;
}

.testimonial-author-image-silver figure img {
  width: 100%;
  max-width: 50px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-author-content-silver {
  width: calc(100% - 65px);
}

.testimonial-author-content-silver h3 {
  font-size: 20px;
}

.testimonial-author-content-silver p {
  line-height: normal;
  margin: 5px 0 0;
}

.testimonial-btn-silver {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 15px;
  z-index: 1;
}

.testimonial-slider-silver .testimonial-button-next-silver,
.testimonial-slider-silver .testimonial-button-prev-silver {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.testimonial-slider-silver .testimonial-button-next-silver:hover,
.testimonial-slider-silver .testimonial-button-prev-silver:hover {
  background: var(--accent-color);
}

.testimonial-slider-silver .testimonial-button-next-silver::before,
.testimonial-slider-silver .testimonial-button-prev-silver::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/arrow-primary.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px auto;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.testimonial-slider-silver .testimonial-button-prev-silver::before {
  transform: rotate(225deg);
}

.testimonial-slider-silver .testimonial-button-next-silver:hover:before,
.testimonial-slider-silver .testimonial-button-prev-silver:hover:before {
  filter: brightness(0) invert(1);
}

.testimonial-image-box-silver {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  height: 100%;
}

.testimonial-image-silver {
  width: calc(83% - 15px);
}

.testimonial-image-silver figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.testimonial-image-silver figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.041;
  object-fit: cover;
  border-radius: 20px;
}

.testimonial-rating-box-silver {
  width: calc(17% - 15px);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 60px;
}

.testimonial-rating-counter-silver {
  position: relative;
  min-height: 135px;
}

.testimonial-rating-counter-silver::before {
  content: " ";
  position: absolute;
  bottom: -30px;
  right: 0;
  left: 0;
  background: var(--divider-color);
  width: 100%;
  height: 1px;
}

.testimonial-rating-counter-silver h2 {
  font-size: 48px;
  color: var(--primary-color);
}

.testimonial-rating-star-silver {
  display: block;
  margin-right: 5px;
}

.testimonial-rating-star-silver i {
  color: var(--accent-color);
  margin-bottom: 5px;
}

.testimonial-rating-star-silver i:last-child {
  margin-bottom: 0;
}

.testimonial-rating-content-silver {
  max-height: 280px;
}

.testimonial-rating-content-silver p {
  margin: 0;
}

.our-faqs-silver {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.our-faqs-silver::before,
.our-faqs-silver::after {
  content: "";
  position: absolute;
  z-index: 0;
}

.our-faqs-silver::before {
  top: -20px;
  right: 0;
  background: url("../images/section-bg-shape-1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 220px;
  height: 240px;
}

.our-faqs-silver::after {
  bottom: -30px;
  left: 20px;
  background: url("../images/section-bg-shape-2.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 220px;
  height: 365px;
}

.our-faqs-silver .container {
  position: relative;
  z-index: 2;
}

.faq-image-box-silver {
  position: relative;
  height: 100%;
  margin-right: 15px;
}

.faq-image-silver {
  height: 100%;
}

.faq-image-silver figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.faq-image-silver figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: 20px;
}

.faq-cta-box-silver {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 455px;
  background: var(--secondary-color);
  border-radius: 24px 24px 0 0;
  transform: translateX(-50%);
  padding: 10px;
  padding-bottom: 0;
  z-index: 1;
}

.faq-cta-box-silver:before,
.faq-cta-box-silver:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  mask: url("../images/image-corner-bg-shape.svg");
  -webkit-mask: url("../images/image-corner-bg-shape.svg");
  background-color: var(--secondary-color);
  mask-repeat: no-repeat;
  mask-size: cover;
  z-index: 1;
}

.faq-cta-box-silver:before {
  bottom: 0;
  right: -19px;
}

.faq-cta-box-silver:after {
  bottom: 0;
  left: -19px;
  transform: rotate(270deg);
}

.faq-cta-body-silver {
  background: var(--primary-color);
  border-radius: 20px;
  padding: 30px;
}

.faq-cta-content-silver h2 {
  font-size: 20px;
  color: var(--white-color);
}

.faq-cta-content-silver p {
  color: var(--white-color);
  margin: 10px 0 0 0;
}

.faq-cta-btn-silver {
  margin-top: 30px;
}

.faq-content-silver {
  height: 100%;
  align-content: center;
}

.faq-accordion-silver .accordion-item {
  position: relative;
  background: var(--bg-color);
  border-radius: 14px;
  margin-bottom: 25px;
  overflow: hidden;
}

.faq-accordion-silver .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion-silver .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.333em;
  background: transparent;
  color: var(--primary-color);
  padding: 23px 60px 23px 23px;
}

.faq-accordion-silver .accordion-item .accordion-button::after,
.faq-accordion-silver .accordion-item .accordion-button.collapsed::after {
  content: "\f055";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 23px;
  top: 50%;
  font-size: 30px;
  font-weight: 600;
  transform: translateY(-50%);
  color: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.faq-accordion-silver .accordion-button:not(.collapsed)::after {
  content: "\f056";
}

.faq-accordion-silver .accordion-item .accordion-body {
  border-top: 1px solid var(--divider-color);
  padding: 23px;
}

.faq-accordion-silver .accordion-item .accordion-body p:last-child {
  margin-bottom: 0;
}

.main-footer-silver {
  padding: 120px 0 0;
}

.footer-header-silver {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px 30px;
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.about-footer-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 5.208vw;
}

.footer-logo-silver img {
  width: 100%;
  max-width: 150px;
}

.about-footer-content-silver {
  max-width: 570px;
}

.about-footer-content-silver p {
  color: var(--white-color);
  margin-bottom: 0;
}

.footer-social-links-silver ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.footer-social-links-silver ul li a {
  width: 40px;
  height: 40px;
  color: var(--white-color);
  border: 1px solid var(--dark-divider-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.footer-social-links-silver ul li a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.footer-social-links-silver ul li a i {
  font-size: 18px;
  color: inherit;
}

.footer-newsletter-box-silver .section-title h2 {
  font-size: 40px;
}

.footer-newsletter-form-silver .form-group {
  display: flex;
  flex-wrap: wrap;
  background: var(--dark-divider-color);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px;
}

.footer-newsletter-form-silver .form-group .form-control {
  width: calc(100% - 40px);
  line-height: 1.4em;
  color: var(--white-color);
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding: 5px 15px;
}

.footer-newsletter-form-silver .form-group .form-control::placeholder {
  color: var(--white-color);
  opacity: 50%;
}

.footer-newsletter-form-silver .newsletter-btn-silver {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
  transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-silver .newsletter-btn-silver:hover {
  background: var(--white-color);
}

.footer-newsletter-form-silver .newsletter-btn-silver img {
  width: 100%;
  max-width: 14px;
  transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-silver .newsletter-btn-silver:hover img {
  filter: brightness(0) invert(0);
  transform: rotate(45deg);
}

.footer-links-box-silver {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-left: 60px;
}

.footer-links-silver {
  max-width: 30%;
}

.footer-links-silver h2 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 30px;
}

.footer-links-silver ul {
  list-style: disc;
  padding: 0 0 0 20px;
  margin: 0;
}

.footer-links-silver ul li {
  line-height: 1.5em;
  color: var(--white-color);
  margin-bottom: 15px;
}

.footer-links-silver ul li:last-child {
  margin-bottom: 0;
}

.footer-links-silver ul li::marker {
  color: var(--accent-color);
}

.footer-links-silver ul li a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.footer-links-silver ul li a:hover {
  color: var(--accent-color);
}

.footer-copyright-text-silver {
  text-align: center;
  border-top: 1px solid var(--dark-divider-color);
  padding: 40px 0;
  margin-top: 60px;
}

.footer-copyright-text-silver p {
  color: var(--white-color);
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  .hero-silver {
    min-height: auto;
  }

  .hero-silver:before {
    background: var(--primary-color);
    opacity: 70%;
  }

  .hero-content-silver,
  .hero-content-silver .section-title p {
    max-width: 100%;
  }

  .hero-item-list-silver {
    margin-top: 45px;
  }

  .about-us-image-box-silver {
    max-width: 740px;
    height: auto;
    margin: 0 auto 30px;
  }

  .about-us-image-silver figure,
  .about-us-image-silver.box-2,
  .about-us-image-silver.box-2 img,
  .about-us-content-silver {
    height: auto;
  }

  .about-us-image-silver.box-1 {
    margin: auto 0 80px;
  }

  .about-us-image-silver.box-2 img {
    aspect-ratio: 1 / 1.2;
  }

  .our-service-silver::before {
    width: 150px;
    height: 170px;
    opacity: 50%;
  }

  .our-service-silver::after {
    width: 140px;
    height: 232px;
    opacity: 50%;
  }

  .why-choose-image-silver {
    height: auto;
    margin-bottom: 30px;
  }

  .why-choose-image-silver figure {
    height: auto;
  }

  .why-choose-image-silver figure img {
    height: auto;
    aspect-ratio: 1 / 0.7;
  }

  .our-volunteer-silver::before {
    top: -10px;
    width: 150px;
    height: 164px;
  }

  .our-volunteer-silver::after {
    bottom: -20px;
    left: 10px;
    width: 140px;
    height: 232px;
  }

  .our-project-image-silver {
    height: auto;
    margin: 0 0 30px;
  }

  .our-project-image-silver figure,
  .project-content-silver {
    height: auto;
  }

  .our-project-image-silver figure img {
    height: auto;
    aspect-ratio: 1 / 0.8;
  }

  .our-key-fact-silver::before {
    top: -10px;
    width: 150px;
    height: 170px;
  }

  .our-key-fact-silver::after {
    bottom: -20px;
    left: 10px;
    width: 140px;
    height: 232px;
  }

  .feature-content-silver {
    height: auto;
    margin-bottom: 30px;
  }

  .feature-image-box-silver {
    max-width: 615px;
    height: auto;
    margin: 0 auto;
  }

  .donate-box-silver {
    padding: 30px;
  }

  .testimonial-content-silver {
    height: auto;
    margin: 0 0 30px;
  }

  .testimonial-slider-silver .swiper {
    height: auto;
  }

  .testimonial-item-silver {
    height: auto;
    min-height: auto;
  }

  .testimonial-item-author-silver {
    padding-top: 30px;
  }

  .testimonial-image-box-silver {
    max-width: 740px;
    height: auto;
    margin: 0 auto;
  }

  .our-faqs-silver::before {
    top: -10px;
    width: 150px;
    height: 170px;
  }

  .our-faqs-silver::after {
    bottom: -20px;
    left: 10px;
    width: 140px;
    height: 232px;
  }

  .faq-image-box-silver {
    max-width: 740px;
    margin: 0 auto 30px;
    height: auto;
  }

  .faq-image-silver,
  .faq-image-silver figure,
  .faq-image-silver figure img {
    height: auto;
  }

  .faq-image-silver figure img {
    aspect-ratio: 1 / 1.05;
  }

  .faq-content-silver {
    height: auto;
  }

  .footer-header-silver {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .about-footer-content-silver {
    max-width: 510px;
  }

  .footer-newsletter-box-silver {
    margin-bottom: 30px;
  }

  .footer-links-box-silver {
    margin: 0;
  }

  .footer-links-silver h2 {
    margin-bottom: 20px;
  }

  .footer-links-silver ul li {
    margin-bottom: 10px;
  }

  .footer-copyright-text-silver {
    padding: 30px 0;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .main-header.main-header-silver .navbar {
    padding: 20px 0;
  }

  .hero-silver {
    padding: 150px 0 60px;
  }

  .hero-client-box-silver .satisfy-client-image figure img {
    max-width: 44px;
  }

  .hero-client-content-silver h2 {
    font-size: 20px;
  }

  .hero-item-list-silver {
    gap: 30px;
  }

  .hero-item-silver {
    width: calc(50% - 15px);
  }

  .hero-item-silver::before {
    right: -15px;
  }

  .hero-item-silver:nth-child(3n + 3):before {
    display: block;
  }

  .hero-item-silver:last-child:before,
  .hero-item-silver:nth-child(2n + 2):before {
    display: none;
  }

  .about-us-silver {
    padding: 60px 0;
  }

  .about-us-btn-silver {
    margin-top: 30px;
  }

  .our-service-silver {
    padding: 60px 0;
  }

  .service-item-silver {
    min-height: 360px;
    padding: 30px;
    gap: 30px;
  }

  .service-item-header-silver .icon-box {
    margin-bottom: 30px;
  }

  .why-choose-us-silver {
    padding: 60px 0;
  }

  .why-choose-item-silver {
    padding: 30px;
  }

  .why-choose-us-silver .section-footer-text {
    margin-top: 40px;
  }

  .our-volunteer-silver {
    padding: 60px 0;
  }

  .volunteer-item-body-silver {
    padding: 20px;
  }

  .our-project-silver {
    padding: 60px 0;
  }

  .project-content-body-silver {
    margin-top: 30px;
    padding-top: 30px;
  }

  .project-author-image-silver figure img {
    max-width: 46px;
  }

  .project-author-content-silver {
    width: calc(100% - 61px);
  }

  .project-author-content-silver h3 {
    font-size: 18px;
  }

  .our-key-fact-silver {
    padding: 60px 0;
  }

  .fact-item-silver {
    padding: 30px;
  }

  .fact-item-counter-content-silver h2 {
    font-size: 34px;
  }

  .fact-item-image-silver figure {
    margin: 0 -40px -40px 0;
  }

  .core-feature-silver {
    padding: 60px 0;
  }

  .feature-list-silver {
    padding-top: 30px;
    margin-top: 30px;
  }

  .feature-list-silver ul li {
    margin-bottom: 10px;
  }

  .feature-list-silver ul li::before {
    font-size: 16px;
  }

  .feature-counter-box-silver h2 {
    font-size: 34px;
  }

  .feature-btn-silver {
    margin-top: 30px;
  }

  .donate-now-silver {
    padding: 60px 0;
  }

  .donate-now-image-silver {
    position: initial;
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    margin-bottom: 30px;
  }

  .donate-now-image-silver figure {
    height: auto;
  }

  .donate-now-image-silver figure::before {
    display: none;
  }

  .donate-now-image-silver figure img {
    height: auto;
    aspect-ratio: 1 / 0.7;
  }

  .donate-form-content-box-silver {
    max-width: 100%;
    border-color: var(--divider-color);
  }

  .donate-box-content-silver {
    margin-bottom: 20px;
  }

  .donate-form-silver .form-group {
    margin-bottom: 15px;
  }

  .donate-form-silver .form-control {
    padding: 11px 15px;
  }

  .donate-value-box-silver .donate-value-silver label {
    padding: 18px;
  }

  .donate-box-silver .donate-form-silver .form-group-btn-silver .btn-default {
    padding: 15px;
  }

  .our-testimonials-silver {
    padding: 60px 0;
  }

  .testimonial-slider-silver .testimonial-button-next-silver,
  .testimonial-slider-silver .testimonial-button-prev-silver {
    width: 40px;
    height: 40px;
    background-size: 14px auto;
  }

  .testimonial-slider-silver .testimonial-button-next-silver::before,
  .testimonial-slider-silver .testimonial-button-prev-silver::before {
    background-size: 14px auto;
  }

  .testimonial-rating-counter-silver h2 {
    font-size: 38px;
  }

  .our-faqs-silver {
    padding: 60px 0;
  }

  .faq-accordion-silver .accordion-item {
    margin-bottom: 20px;
  }

  .faq-accordion-silver .accordion-header .accordion-button {
    padding: 15px 45px 15px 15px;
  }

  .faq-accordion-silver .accordion-item .accordion-button::after,
  .faq-accordion-silver .accordion-item .accordion-button.collapsed::after {
    right: 15px;
    font-size: 24px;
  }

  .faq-accordion-silver .accordion-item .accordion-body {
    padding: 15px;
  }

  .main-footer-silver {
    padding: 60px 0 0;
  }

  .about-footer-content-silver {
    max-width: 100%;
  }

  .footer-newsletter-box-silver .section-title h2 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-item-silver {
    width: 100%;
  }

  .hero-client-content-silver h2 {
    font-size: 18px;
  }

  .hero-item-list-silver {
    padding-top: 20px;
    margin-top: 20px;
  }

  .hero-item-silver::before {
    height: 1px;
    width: 100%;
    right: initial;
    bottom: -15px;
  }

  .hero-item-silver:nth-last-child(2n + 2):before {
    display: block;
  }

  .hero-item-silver h2 {
    font-size: 18px;
    padding-left: 25px;
  }

  .hero-item-silver h2::before {
    font-size: 16px;
  }

  .about-us-image-silver.box-1 {
    margin: auto 0 40px;
  }

  .about-us-image-silver.box-2 figure {
    margin-left: -94px;
  }

  .about-us-item-silver {
    width: 100%;
    padding: 20px;
  }

  .about-us-item-silver .icon-box {
    margin-bottom: 20px;
  }

  .about-us-item-content-silver h3 {
    font-size: 18px;
  }

  .our-services-silver::before {
    width: 100px;
    height: 110px;
  }

  .our-services-silver::after {
    left: 10px;
    width: 120px;
    height: 200px;
  }

  .service-item-silver {
    min-height: auto;
    padding: 20px;
    gap: 20px;
  }

  .service-item-header-silver .icon-box {
    margin-bottom: 20px;
  }

  .service-item-title-silver h2 {
    font-size: 18px;
  }

  .service-item-btn-silver {
    margin-top: 20px;
    padding-top: 20px;
  }

  .why-choose-item-silver {
    padding: 20px;
  }

  .why-choose-item-content-silver h3 {
    font-size: 18px;
  }

  .our-volunteer-silver::before {
    width: 100px;
    height: 110px;
  }

  .our-volunteer-silver::after {
    bottom: -10px;
    width: 120px;
    height: 200px;
  }

  .volunteer-item-contant-silver h2 {
    font-size: 18px;
  }

  .project-item-list-silver {
    gap: 20px;
  }

  .project-item-silver {
    width: 100%;
  }

  .project-item-content-silver h3 {
    font-size: 18px;
  }

  .project-content-body-silver {
    gap: 20px;
  }

  .our-key-fact-silver::before {
    width: 100px;
    height: 110px;
  }

  .our-key-fact-silver::after {
    left: 10px;
    width: 120px;
    height: 200px;
  }

  .fact-item-silver {
    padding: 20px;
  }

  .fact-item-counter-box-silver {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .fact-item-counter-content-silver h2 {
    font-size: 28px;
  }

  .fact-item-image-silver figure {
    margin: 0 -30px -30px 0;
  }

  .feature-item-list-silver {
    gap: 20px;
  }

  .feature-item-silver {
    width: 100%;
  }

  .feature-item-content-silver h3 {
    font-size: 18px;
  }

  .feature-image-box-1-silver {
    width: 55%;
    gap: 10px;
  }

  .feature-image-box-2-silver {
    width: 45%;
    gap: 10px;
  }

  .feature-image-box-2-silver .feature-image-silver figure {
    margin-left: -60px;
  }

  .feature-experience-box-silver {
    padding: 12px;
    margin: 15px 0 0 10px;
  }

  .feature-experience-box-silver .icon-box {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .feature-experience-box-silver .icon-box img {
    max-width: 20px;
  }

  .feature-experience-content-silver p,
  .feature-counter-box-silver p {
    font-size: 14px;
  }

  .feature-counter-box-silver {
    max-width: 125px;
    padding: 12px;
    margin: 0 5px 15px 0;
  }

  .feature-counter-box-silver h2 {
    font-size: 24px;
  }

  .donate-box-title-silver {
    padding: 15px;
  }

  .donate-box-title-silver h2 {
    font-size: 16px;
  }

  .donate-box-silver {
    padding: 20px;
  }

  .donate-value-box-silver .donate-value-silver label {
    font-size: 14px;
    padding: 15px 10px;
  }

  .testimonial-item-silver {
    gap: 20px;
  }

  .testimonial-item-author-silver {
    padding-top: 20px;
  }

  .testimonial-author-content-silver h3 {
    font-size: 18px;
  }

  .testimonial-btn-silver {
    position: relative;
    justify-content: center;
    margin-top: 20px;
  }

  .testimonial-image-box-silver {
    gap: 10px;
  }

  .testimonial-image-silver {
    width: calc(83% - 5px);
  }

  .testimonial-rating-box-silver {
    width: calc(17% - 5px);
  }

  .testimonial-rating-box-silver {
    gap: 30px;
  }

  .testimonial-rating-counter-silver {
    min-height: 105px;
  }

  .testimonial-rating-counter-silver::before {
    bottom: -15px;
  }

  .testimonial-rating-counter-silver h2 {
    font-size: 26px;
  }

  .testimonial-rating-star-silver i {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .testimonial-rating-content-silver {
    max-height: 220px;
  }

  .testimonial-rating-content-silver p {
    font-size: 14px;
  }

  .our-faqs-silver::before {
    width: 100px;
    height: 110px;
  }

  .our-faqs-silver::after {
    left: 10px;
    width: 120px;
    height: 200px;
  }

  .faq-cta-box-silver:before,
  .faq-cta-box-silver:after {
    display: none;
  }

  .faq-cta-box-silver {
    max-width: 100%;
    width: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    transform: initial;
    border-radius: 0;
    background: transparent;
    padding: 0;
  }

  .faq-cta-body-silver {
    padding: 15px;
  }

  .faq-cta-content-silver h2 {
    font-size: 18px;
  }

  .faq-cta-content-silver p {
    font-size: 14px;
    margin: 5px 0 0;
  }

  .faq-cta-btn-silver {
    margin-top: 20px;
  }

  .faq-accordion-silver .accordion-header .accordion-button {
    font-size: 16px;
    padding: 12px 40px 12px 15px;
  }

  .faq-accordion-silver .accordion-item .accordion-button::after,
  .faq-accordion-silver .accordion-item .accordion-button.collapsed::after {
    font-size: 20px;
  }

  .faq-accordion-silver .accordion-item .accordion-body {
    padding: 12px 15px;
  }

  .footer-header-silver {
    gap: 20px;
  }

  .footer-newsletter-box-silver .section-title {
    margin-bottom: 20px;
  }

  .footer-newsletter-box-silver .section-title h2 {
    font-size: 24px;
  }

  .footer-links-silver {
    max-width: 100%;
  }

  .footer-links-silver h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-copyright-text-silver {
    padding: 15px 0;
  }
}
.navbar-brand {
  text-decoration: none;
}

.navbar-brand img {
  height: 80px; /* adjust as needed */
  width: auto;
}

.logo-text h5 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
}

.logo-text span {
  font-size: 12px;
  font-weight: 500;
  color: #e51288;
  letter-spacing: 1px;
}
label {
  font-size: 14px;
  margin: 0px 0px 10px 10px;
  font-weight: 600;
  color: #353d97;
}
.contact-box ul {
  margin-top: 20px;
  list-style: none;
  column-count: 2;
}
.contact-box ul li {
  margin-bottom: 10px;
}
.contact-box ul li a {
  color: var(--primary-color);
}
.contact-box ul li a i {
  font-size: 14px;
  color: #e51288;
  margin-right: 5px;
}
footer .footer-quick-link {
  column-count: 3;
}
.footer-links.contact-box ul li a {
  color: var(--bg-color);
}
.icon-box i {
  font-size: 24px;
  color: white;
  z-index: 9;
}
.member-title {
  color: #db1389;
}
.modal-content{
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.modal-title{
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #db1389;
}
#eventModal .modal-dialog{
    max-width: 500px;
}

#eventModal .modal-content{
    border-radius: 20px;
    overflow: hidden;
}

#eventModal .modal-body{
    padding: 0;
}

#eventModal img{
    width: 100%;
    /* max-height: 80vh;    */
    object-fit: contain;
    display: block;
}