/*--------------------- Copyright (c) 2022 ----------------------- 
[Master Stylesheet] 
Project: Nonprofit Charity
Version: 1.0.0 
Author: PixelNX
 ------------------------------------------------------------------- 
[Table of contents] 
	1. Global CSS
	2. Comman CSS
    3. Preloader CSS
    4. Header Start
    5. Banner Start
-------------------------------------------------------------------*/
/*	1. Global CSS  */

body {
  --charity-global-family: "Roboto", sans-serif;
  --charity-title-family: "Fira Sans", sans-serif;
  --charity-body-bg: #ffffff;
  --charity-secondary-color: #ffffff;
  --charity-alternate-color: #fbf5ef;
  --charity-banner-bg-color: #ffefdd;
  --charity-box-bg: #ffffff;
  --charity-title-color: #161c2d;
  --charity-font-color: #43485b;
  --charity-white-color: #ffffff;
  --charity-primary-color: #f69110;
  --charity-blockquote-color: #ffffff;
  --charity-blockquote-bg: #f69110;
  --charity-breadcrumbs-color: #f4f4f4;
  --charity-breadcrumbs-bg: #e9e9e9;
  --charity-input-color: #43485b;
  --charity-placeholder: #e9e9e9;
  --charity-input-border: #ced4da;
  --charity-input-bg: #ffffff;
  --charity-border-color: #ced4da;
  --charity-link-color: #1d2124;
  --charity-footer-bg: #202020;
  --charity-footer-color: #ffffff;
  --charity-copyright-bg: #191919;
  --charity-copyright-color: #ffffff;
  --charity-global-size: 16px;
  --charity-shadow: 0px 0px 60px 0px rgb(0 0 0 / 12%);
  --charity-transition: all 0.5s;
  --charity-scroll-track: #e1e1e1;
  --charity-scroll-thumb: #f69110;
  --charity-error-color: #cb1f1f;
  --charity-social-bg: transparent;
  --charity-header-bg: #ffffff;
  --charity-black-color: #222222;
}

* {
  outline: 0 !important;
}

body {
  background: var(--charity-body-bg);
  font-size: var(--charity-global-size);
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--charity-global-family);
  color: var(--charity-font-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background-color: var(--charity-scroll-track);
}

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

::selection {
  color: var(--charity-white-color);
  background: var(--charity-primary-color);
}

a {
  color: var(--charity-link-color);
}

a:hover,
a:focus {
  color: var(--charity-primary-color);
  text-decoration: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--charity-title-color);
  margin-bottom: 15px;
  text-transform: capitalize;
  font-family: var(--charity-title-family);
  line-height: 1.2;
}

strong {
  font-weight: 700;
  color: var(--charity-title-color);
}

a,
a:hover,
a:focus,
button,
button:hover {
  text-decoration: none;
  -webkit-transition: var(--charity-transition);
  -moz-transition: var(--charity-transition);
  -ms-transition: var(--charity-transition);
  -o-transition: var(--charity-transition);
  transition: var(--charity-transition);
  cursor: pointer;
}

img {
  max-width: 100%;
}

input,
textarea,
select,
button,
button:focus,
button:hover,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
  outline: none;
  box-shadow: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--charity-placeholder);
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--charity-placeholder);
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--charity-placeholder);
  opacity: 1;
}

ul ul {
  list-style: circle;
}

ul ul ul {
  list-style: square;
}

ol ol {
  list-style: lower-alpha;
}

ol ol ol {
  list-style: lower-roman;
}

ul,
p {
  padding: 0;
  margin: 0 0 0px;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}

iframe {
  width: 100%;
  border: none;
}

table {
  width: 100%;
  margin: 0;
}

table th {
  font-weight: 700;
  color: var(--charity-title-color);
}

.display-flex {
  display: flex;
  flex-wrap: wrap;
}
.chrity-primary-color {
  color: var(--charity-primary-color) !important;
}
/*	2. Comman CSS  */

.overflow-hidden {
  overflow: hidden !important;
}

.nice-select .list {
  width: 100%;
}
.charity-container {
  position: relative;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
/* 2.1 Top Button CSS */
.chrity-scroll-top {
  position: fixed;
  right: 35px;
  bottom: 35px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 9;
  visibility: hidden;
  -webkit-transform: translateY(150px);
  -ms-transform: translateY(150px);
  transform: translateY(150px);
  background-color: var(--charity-primary-color);
  border: 0;
}
.chrity-scroll-top.active {
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  animation: bounceInDown 2s;
  -webkit-animation: bounceInDown 2s;
  -moz-animation: bounceInDown 2s;
}
.chrity-scroll-top span {
  color: var(--charity-white-color);
}
.chrity-scroll-top:hover {
  color: var(--charity-white-color);
  background: var(--charity-black-color);
}
/* 2.2 PreLoader CSS */
.preloader-active {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  z-index: 99999;
}
.preloader-active .preloader-holder {
  position: absolute;
  left: 0;
  display: block;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999999;
}
.preloader-holder {
  display: none;
  background-color: var(--charity-primary-color);
}
.preloader-open {
  position: fixed;
  background-color: transparent;
  z-index: 9999;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.preloader-open.loaded {
  opacity: 0;
  visibility: hidden;
}
.preloader-open.loaded:before,
.preloader-open.loaded:after {
  height: 0%;
}
.preloader-open:before,
.preloader-open:after {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.preloader-open:before {
  top: 0;
  left: 0;
  right: 0;
}
.preloader-open:after {
  bottom: 0;
  right: 0;
  left: 0;
}
.preloader-open:before,
.preloader-open:after {
  background-color: var(--charity-primary-color);
}

/* 2.3 Search CSS */

.search-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  left: 0%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  cursor: url(../images/close-search.png), auto;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.search-bar.show {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}

.search-bar.show,
.search-bar {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.search-barContainer {
  width: 50%;
  position: relative;
  text-align: end;
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  -ms-transform: scale(0.85);
  -o-transform: scale(0.85);
  transform: scale(0.85);
  visibility: hidden;
}

.search-bar.show .search-barContainer {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  visibility: visible;
}

.search-bar.show .search-barContainer,
.search-barContainer {
  -webkit-transition: all 2s;
  -moz-transition: all 2s;
  -ms-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}

.search-bar-inner {
  position: relative;
  height: 50px;
}

.search-bar-inner input {
  width: 100%;
  height: 50px;
  padding: 12px 55px 12px 0;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: transparent;
  border-bottom: 2px solid var(--charity-white-color);
  color: var(--charity-white-color);
}

.search-bar-inner input::-webkit-input-placeholder {
  color: var(--charity-white-color);
  opacity: 90%;
}

.search-bar-inner input::-moz-placeholder {
  color: var(--charity-white-color);
  opacity: 90%;
}

.search-bar-inner input:-ms-input-placeholder {
  color: var(--charity-white-color);
  opacity: 90%;
}

.search-bar-inner input:-moz-placeholder {
  color: var(--charity-white-color);
  opacity: 90%;
}

.search-bar-inner button {
  position: absolute;
  right: 3px;
  top: 3px;
  bottom: 3px;
  border: none;
  background: transparent;
  color: var(--charity-white-color);
  width: 45px;
  font-size: 20px;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
}

.closeBtn {
  margin: 0 0 20px 0;
  display: inline-block;
  padding: 0 15px;
}

.closeBtn svg {
  width: 20px;
  fill: var(--charity-white-color);
}

/* 2.4. Button CSS */

.chrity-btn {
  background: var(--charity-primary-color);
  color: var(--charity-white-color);
  display: inline-flex;
  border: 0;
  min-height: 50px;
  text-align: center;
  padding: 5px 15px 5px;
  min-width: 170px;
  margin-top: 10px;
  z-index: 0;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
}

.chrity-btn::after {
  width: 100%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  background: var(--charity-primary-color);
  transition: all 0.52s;
  z-index: -1;
  border-radius: 5px;
}
.chrity-btn:hover::after,
.chrity-btn:focus::after {
  transform: rotateY(90deg);
}
.chrity-btn::before {
  width: 100%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  background: var(--charity-primary-color);
  transition: all 0.52s;
  z-index: -1;
  border-radius: 5px;
}
.chrity-btn:hover::before,
.chrity-btn:focus::before {
  transform: rotateX(90deg);
}
.chrity-btn:hover,
.chrity-btn:focus {
  color: var(--charity-white-color);
  /* background: var(--charity-white-color); */
  box-shadow: 0 0 20px 0 rgba(83, 80, 255, 0.08);
}
.chrity-btn:hover {
  color: var(--charity-primary-color);
  background: var(--charity-white-color);
  box-shadow: 0 0 20px 0 rgba(83, 80, 255, 0.08);
}
.chrity-btn.white::after,
.chrity-btn.white::before {
  background: var(--charity-white-color);
}
.chrity-btn.white:focus {
  /* color: var(--charity-primary-color);
    background: var(--charity-white-color); */
}
.chrity-btn.white {
  background: transparent;
  color: var(--charity-primary-color);
}
.chrity-btn.white:hover {
  color: var(--charity-primary-color);
}

.chrity-btn.white:hover {
  background: var(--charity-white-color);
}

/* 2.5 Title CSS */

.chrity-heading-wrapper {
  margin-bottom: 43px;
}

.chrity-section-heading {
  color: var(--charity-link-color);
  font-size: 32px;
  margin-bottom: 35px;
  font-weight: 700;
}

.chrity-heading-wrapper h2 {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--charity-link-color);
}
.chrity-sub-heading {
  padding-left: 15px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: var(--charity-primary-color);
  position: relative;
}
.chrity-sub-heading:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  background: var(--charity-primary-color);
  top: 0;
  margin: auto;
  border-radius: 50%;
}
.chrity-heading-wrapper h4 {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charity-primary-color);
  display: inline-block;
  padding: 0 15px;
}
.chrity-heading-wrapper h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  background: var(--charity-primary-color);
  top: 0;
  margin: auto;
  border-radius: 50%;
}
.chrity-heading-wrapper h4:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  background: var(--charity-primary-color);
  top: 0;
  margin: auto;
  border-radius: 50%;
}
/*White Title*/
.chrity-white-title h4,
.chrity-white-title h2,
.chrity-white-title p {
  color: var(--charity-white-color);
}
.chrity-white-title.chrity-heading-wrapper h4:before,
.chrity-white-title.chrity-heading-wrapper h4:after {
  background: var(--charity-white-color);
}
/*2.6 Swiper CSS */

.swiper {
  cursor: move;
}

.chrity-swiper-button {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto -10%;
  bottom: 0;
  top: 0;
}
svg.swiper-arrow {
  fill: var(--charity-title-color);
  width: 20px;
}
.chrity-swiper-button.chrity-swiper-white svg.swiper-arrow {
  fill: var(--charity-primary-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.chrity-swiper-bullets {
  width: 100%;
  text-align: center;
  position: relative;
  margin: 10px 0 0;
}
.chrity-swiper-bullets span {
  background: var(--charity-primary-color);
  width: 12px;
  height: 12px;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
}
.chrity-bullets-white.chrity-swiper-bullets span {
  background: var(--charity-primary-color);
}
.chrity-bullets-white.chrity-swiper-bullets
  span.swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  animation: pulsees 2s linear infinite;
  -webkit-animation: pulsees 2s linear infinite;
  -moz-animation: pulsees 2s linear infinite;
}
.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-button-next,
.swiper-button-prev,
.swiper-button-prev1:hover,
.swiper-button-next1:hover,
.swiper-button-prev1,
.swiper-button-next1 {
  -webkit-transition: var(--charity-transition);
  -moz-transition: var(--charity-transition);
  -ms-transition: var(--charity-transition);
  -o-transition: var(--charity-transition);
  transition: var(--charity-transition);
}

/*2.7 Link CSS */

.chrity-link {
  position: relative;
  display: inline-block;
  top: auto;
  left: auto;
  height: auto;
  width: auto;
  font-size: 15px;
  line-height: 21px;
  font-weight: 700;
  color: var(--charity-primary-color);
  z-index: 1;
  overflow: hidden;
}
.chrity-link-txt {
  position: relative;
  margin-right: 0;
  display: inline-block;
  vertical-align: middle;
  text-indent: -110px;
  visibility: hidden;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: visibility 0.4s ease, margin-right 0.4s ease-out,
    text-indent 0.5s ease-out, opacity 0.4s ease;
  -ms-transition: visibility 0.4s ease, margin-right 0.4s ease-out,
    text-indent 0.5s ease-out, opacity 0.4s ease;
  transition: visibility 0.4s ease, margin-right 0.4s ease-out,
    text-indent 0.5s ease-out, opacity 0.4s ease;
  will-change: visibility, margin-right, text-indent, opacity;
}
.chrity-link-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.chrity-link .chrity-link-icon svg {
  height: 20px;
  fill: var(--charity-primary-color);
  vertical-align: middle;
}
.chrity-link-icon {
  display: inline-block;
}
.chrity-link:hover .chrity-link-txt {
  opacity: 1;
  text-indent: 0;
  margin-right: 6px;
  visibility: visible;
  -webkit-transition: visibility 0.4s ease, margin-right 0.3s ease-out,
    text-indent 0.4s ease-out, opacity 0.4s ease;
  -ms-transition: visibility 0.4s ease, margin-right 0.3s ease-out,
    text-indent 0.4s ease-out, opacity 0.4s ease;
  transition: visibility 0.4s ease, margin-right 0.3s ease-out,
    text-indent 0.4s ease-out, opacity 0.4s ease;
}
/* 2.8 Spacer */
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
/* 3. Header CSS */

.chrity-header-wrapper {
  background: var(--charity-header-bg);
  padding: 18px 0 19px;
  position: absolute;
  top: 0;
  z-index: 9;
  width: 100%;
}
.chrity-header-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-image: linear-gradient(to left, #ffaf6d, #ffc494);
}
.main-menu-wrapper ul > li.active > a {
  color: var(--charity-primary-color);
}

.chrity-search-wrapper ul {
  justify-content: space-between;
  align-items: center;
}

.main-menu-wrapper ul > li.active > a {
  color: var(--charity-primary-color);
}

.chrity-search-wrapper .chrity-btn {
  margin: 0;
}

.chrity-search-wrapper {
  position: relative;
}

.chrity-search-wrapper li {
  display: flex;
}

.chrity-search-btn {
  width: 16px;
  display: inline-block;
  font-size: 16px;
  margin-right: 24px;
}

.main-menu-parent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.main-menu-wrapper ul,
.main-menu-wrapper li {
  display: inline-block;
  position: relative;
}

.main-menu-wrapper ul > li > a {
  padding: 12px 20px;
  display: inline-block;
  font-weight: 600;
}

.main-menu-wrapper > ul > li {
  position: relative;
}
/* Social Icons*/
.charity-social ul {
  display: flex;
  flex-wrap: wrap;
}
.charity-social ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--charity-social-bg);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin: 5px 10px 5px 0px;
  z-index: 1;
  color: var(--charity-primary-color);
  position: relative;
  border: 1px solid;
}
.charity-social ul > li > a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  z-index: -1;
  box-shadow: inset 0 0 0 35px var(--charity-social-bg);
  -webkit-transform: scale3d(0.9, 0.9, 1);
  transform: scale3d(0.9, 0.9, 1);
  -webkit-transition: box-shadow 0.3s, -webkit-transform 0.3;
  transition: box-shadow 0.3s, transform 0.3s;
}
.charity-social ul > li > a:hover::after {
  box-shadow: inset 0 0 0 1px var(--charity-primary-color);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

/* 4 Banner Start CSS */

.chrity-banner-wrapper {
  position: relative;
  background-color: var(--charity-banner-bg-color);
  width: 100%;
  overflow: hidden;
  padding: 112px 0 82px;
}
.chrity-blurbg-wrapper {
  position: relative;
  overflow: hidden;
}
.chrity-blurbg-wrapper:before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 100%;
  top: -110px;
  left: -370px;
  opacity: 0.5;
  background: radial-gradient(
    ellipse at center,
    rgb(246 145 16 / 60%) 0%,
    rgba(246, 145, 16, 0.6) 0%,
    rgba(0, 95, 252, 0) 68%,
    rgba(0, 95, 252, 0) 100%
  );
  -webkit-background: radial-gradient(
    ellipse at center,
    rgb(246 145 16 / 60%) 0%,
    rgba(246, 145, 16, 0.6) 0%,
    rgba(0, 95, 252, 0) 68%,
    rgba(0, 95, 252, 0) 100%
  );
}
.chrity-blurbg-wrapper:after {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 100%;
  top: 37px;
  right: -390px;
  opacity: 0.5;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 82, 25, 0.6) 0%,
    rgba(255, 82, 25, 0.6) 0%,
    rgba(255, 82, 25, 0) 68%,
    rgba(255, 82, 25, 0) 100%
  );
  -webkit-background: radial-gradient(
    ellipse at center,
    rgba(255, 82, 25, 0.6) 0%,
    rgba(255, 82, 25, 0.6) 0%,
    rgba(255, 82, 25, 0) 68%,
    rgba(255, 82, 25, 0) 100%
  );
}
/* Dots*/

.chrity-dots-animation {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style: none;
}

.chrity-dots-animation li {
  position: absolute;
  background: var(--charity-primary-color);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  opacity: 0.9;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}
.chrity-dots-animation li:first-child {
  top: 15%;
  right: 5%;
  animation: zoom-in-zoom-out 1s ease-out infinite;
}
.chrity-dots-animation li:nth-child(2) {
  bottom: 43%;
  right: 13%;
  width: 13px;
  height: 13px;
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

.chrity-dots-animation li:nth-child(3) {
  top: 18%;
  left: 34%;
  width: 10px;
  height: 10px;
  animation: zoom-in-zoom-out 3s ease-out infinite;
}

.chrity-dots-animation li:nth-child(4) {
  top: 0;
  bottom: 10%;
  margin: auto;
  left: 3%;
  width: 18px;
  height: 18px;
  animation: zoom-in-zoom-out 2.5s ease-out infinite;
}

.chrity-dots-animation li:nth-child(5) {
  bottom: 14%;
  left: 34%;
  width: 14px;
  height: 14px;
  animation: zoom-in-zoom-out 1.2s ease-out infinite;
}

.chrity-dots-animation li:nth-child(6) {
  bottom: 0;
  right: 18%;
  width: 19px;
  height: 19px;
  animation: zoom-in-zoom-out 2.1s ease-out infinite;
}
.chrity-dots-animation li:nth-child(7) {
  top: 20%;
  right: 40%;
  width: 30px;
  height: 30px;
  animation: zoom-in-zoom-out 2s ease-out infinite;
}
.chrity-dots-animation li:nth-child(8) {
  top: 40%;
  right: 20%;
  width: 40px;
  height: 40px;
  animation: zoom-in-zoom-out 1s ease-out infinite;
}
.chrity-dots-animation li:nth-child(9) {
  top: 20%;
  left: 10%;
  width: 24px;
  height: 24px;
  animation: zoom-in-zoom-out 2.1s ease-out infinite;
}
.chrity-dots-animation li:nth-child(10) {
  bottom: 10%;
  left: 16%;
  width: 20px;
  height: 20px;
  animation: zoom-in-zoom-out 1s ease-out infinite;
}
.chrity-dots-animation li:nth-child(11) {
  bottom: 8%;
  right: 40%;
  width: 20px;
  height: 20px;
  animation: zoom-in-zoom-out 2.1s ease-out infinite;
}
.chrity-dots-animation li:nth-child(12) {
  bottom: 24%;
  left: 10%;
  width: 20px;
  height: 20px;
  animation: zoom-in-zoom-out 2.1s ease-out infinite;
}
.chrity-dots-animation li:nth-child(13) {
  bottom: 40%;
  left: 50%;
  width: 30px;
  height: 30px;
  animation: zoom-in-zoom-out 2s ease-out infinite;
}
.chrity-dots-animation li:nth-child(14) {
  bottom: 2%;
  left: 28%;
  width: 30px;
  height: 30px;
  animation: zoom-in-zoom-out 1s ease-out infinite;
}

/* Images */

.chrity-img-animation {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style: none;
}

.chrity-img-animation li {
  position: absolute;
  bottom: 43%;
  right: 13%;
  bottom: 10%;
  right: 6%;
  animation: zoom-in-zoom-out 2s ease-out infinite;
}
.chrity-banner-img {
  margin: 0 0 30px;
  -webkit-animation: moverUpDown 2s infinite alternate;
  animation: moverUpDown 2s infinite alternate;
}
.chrity-banner-text {
  margin: 0px 0 30px;
}
.chrity-banner-text h1 {
  font-size: 58px;
  line-height: 70px;
  font-weight: 700;
}

.chrity-banner-text h4 {
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: inline-block;
  padding: 0;
  position: relative;
  color: var(--charity-primary-color);
  padding-left: 15px;
}
.chrity-banner-text h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  background: var(--charity-primary-color);
  top: 0;
  margin: auto;
  border-radius: 50%;
}
.chrity-banner-text p {
  font-size: 18px;
  font-weight: 500;
  max-width: 720px;
  margin: 9px 0 23px;
}
.chrity-banner-text h4 span {
  position: relative;
  z-index: 1;
}

.go-down-btn {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 22px;
  height: 40px;
  border: 1px solid var(--charity-primary-color);
  border-radius: 30px;
  right: 0;
  margin: auto;
}
.go-down-btn::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--charity-primary-color);
  animation: scroll 3s linear infinite alternate;
}
.go-down-btn::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 2px;
  background: var(--charity-primary-color);
  bottom: 5px;
  right: 0;
  margin: auto;
}
/********************************************************
	6. About Start
*******************************************************/

.chrity-about-wrapper {
  padding: 78px 0 15px;
}
.chrity-about-wrapper.chrity-about-home {
  padding: 75px 0 50px;
  background: var(--charity-alternate-color);
}
.chrity-about-wrapper .chrity-sub-headingm {
  text-transform: uppercase;
}
.chrity-sub-heading {
  text-transform: uppercase;
}
.chrity-about-img {
  margin: 0 0 30px;
}

.chrity-about-img img {
  position: relative;
  width: 100%;
}
.chrity-about-text {
  display: inline-block;
  width: 100%;
  margin: 0 0 30px;
}
.chrity-about-text h2 {
  font-size: 42px;
  line-height: 50px;
  margin-bottom: 10px;
  font-weight: 700;
}

.chrity-list-item li {
  display: inline-block;
  width: 45%;
  line-height: 30px;
  font-weight: 500;
}

.chrity-list-item li span {
  margin-right: 10px;
}

.chrity-list-item li a {
  color: var(--charity-primary-color);
  font-weight: 500;
}

.chrity-list-item li a:hover {
  color: var(--charity-link-color);
}

.chrity-list-item {
  margin-top: 16px;
  margin-bottom: 21px;
  display: block;
}

.chrity-divider {
  height: 9px;
}
/********************************************************
	7. Counter Start
*******************************************************/

.chrity-counter-wrapper {
  position: relative;
  background: var(--charity-primary-color);
  background-image: url(../images/charity-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 42px;
}
.counter-item {
  margin: 0 0 30px;
}
.counter-item h1 {
  font-size: 42px;
  color: var(--charity-white-color);
}

.counter-item p {
  font-size: 18px;
  color: var(--charity-white-color);
}

.chrity-counter-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border: 1px solid var(--charity-white-color);
  margin: auto;
  border-radius: 50%;
  margin-bottom: 20px;
}

.chrity-counter-icon img {
  width: 40px;
  position: relative;
}

.counter-item:hover .chrity-counter-icon {
  background: var(--charity-primary-color);
  box-shadow: 0px 0px 20px 0 rgba(255, 255, 255, 0.16);
}

.counter-item,
.counter-item:hover .chrity-counter-icon,
.counter-item:hover,
.counter-item .chrity-counter-icon {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

/********************************************************
	8. Event Start
*******************************************************/
.chrity-event-thumb-wrapper.chrity-event-page-wrapper {
  padding: 80px 0 50px;
}
.chrity-event-wrapper {
  padding: 0 0 50px;
  position: relative;
  width: 100%;
}
.chrity-event-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 50px;
  background: url(../images/hand-img.png);
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: bottom left;
}
.chrity-event-section {
  margin: 0 0 30px;
  background: var(--charity-box-bg);
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 40px 0 rgb(0 0 0 / 8%);
  padding: 20px 20px;
}
.chrity-event-date {
  width: 100px;
  text-align: center;
  position: relative;
  padding-right: 20px;
}
.chrity-event-date:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  background: var(--charity-border-color);
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
}
.chrity-event-info {
  width: calc(100% - 100px);
  padding-left: 30px;
}
.chrity-event-info ul {
  display: flex;
  flex-wrap: wrap;
}
.chrity-event-info ul span svg {
  height: 16px;
  fill: var(--charity-primary-color);
}
.chrity-event-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
}
.chrity-event-info ul a {
  font-weight: 500;
  font-size: 14px;
}
.chrity-event-date h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--charity-primary-color);
  margin: 0;
}
.chrity-event-date span {
  font-weight: 500;
  font-size: 14px;
  color: var(--charity-primary-color);
}
.chrity-event-info ul li:not(:first-of-type) {
  margin-left: 20px;
}
.chrity-event-info ul a span {
  margin: 0 6px 00 0;
}
.chrity-event-info h4:hover {
  color: var(--charity-primary-color);
}
.chrity-event-info h4:hover,
.chrity-event-info h4 {
  -webkit-transition: var(--charity-transition);
  -moz-transition: var(--charity-transition);
  -ms-transition: var(--charity-transition);
  -o-transition: var(--charity-transition);
  transition: var(--charity-transition);
}
.charity-event-img {
  margin: 0 0 30px;
}
.charity-event-img img {
  border-radius: 10px;
}
/********************************************************
	9. Testimonials Start
*******************************************************/

.chrity-testimonial-wrapper {
  padding: 75px 0 74px;
  position: relative;
  background: var(--charity-alternate-color);
  background-image: url(../images/charity-bg.png);
  background-position: center;
  background-repeat: no-repeat;
}
.chrity-testimonial-slider {
  position: relative;
}
.charity-quote-icon {
  margin: 0 0 11px;
}
.charity-quote-icon svg {
  height: 80px;
  fill: var(--charity-primary-color);
}
.chrity-client-quote h4 {
  color: var(--charity-link-color);
  font-size: 20px;
  font-weight: 700;
  width: 230px;
  margin: auto;
  margin-top: 6px;
}
.chrity-client-quote h4 span {
  font-size: 14px;
  font-weight: 600;
  color: var(--charity-primary-color);
  display: block;
  margin: 7px 0 0;
}
.chrity-client-img img {
  width: 80px;
  height: 80px;
  object-fit: fill;
  border-radius: 100%;
  margin: 23px 0 0;
  border: 3px solid var(--charity-border-color);
}
.chrity-partner-section {
  display: flex;
  flex-wrap: wrap;
  background: var(--charity-white-color);
  padding: 40px 15px 35px;
  width: 100%;
  border: none;
  border-radius: 8px;
  text-align: center;
}
.chrity-testimonial-slider .chrity-bullets {
  margin: 34px 0 0;
}
.chrity-testimonial-slider .chrity-swiper-button {
  bottom: 40px;
}
.chrity-client-quote p {
  font-weight: 500;
}
/********************************************************
	10. Case Study Start
*******************************************************/
.chrity-case-study-wrapper {
  padding: 80px 0 50px;
}
.mix {
  display: none;
}
.charity-filter-overlay ul li:last-of-type svg {
  height: 20px;
}
.charity-filter-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 0 40px;
}
.charity-filter-menu .filter {
  border: 0;
  font-size: 15px;
  font-weight: 500;
  min-width: 100px;
  text-align: center;
  padding: 15px 25px 13px;
  background: #f0f0f0;
  color: var(--charity-font-color);
}
.charity-filter-menu .filter.active {
  background: var(--charity-primary-color);
  color: var(--charity-white-color);
}
.charity-filter-menu .filter:hover {
  color: var(--charity-primary-color);
}
.charity-filter-menu .filter.active:hover {
  color: var(--charity-white-color);
}
.chrity-case-study-section {
  position: relative;
  margin: 0 00 25px;
}
.chrity-case-study-img {
  position: relative;
  margin: 0 0 17px;
  border-radius: 10px;
  overflow: hidden;
}
.chrity-case-study-img > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.charity-filter-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: rgb(20 20 20 / 80%);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}
.chrity-case-study-section:hover .charity-filter-overlay {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
.charity-filter-overlay ul {
  display: flex;
  flex-wrap: wrap;
}
.charity-filter-overlay ul li a {
  width: 50px;
  height: 50px;
  background: var(--charity-primary-color);
  margin: 0 10px;
  display: inline-block;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
}
.charity-filter-overlay ul li a svg {
  height: 24px;
  width: 24px;
  fill: var(--charity-white-color);
}
.chrity-case-study-section h4 {
  font-size: 18px;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.charity-filter-menu .filter:first-of-type {
  border-radius: 30px 0 0 30px;
}
.charity-filter-menu .filter:last-of-type {
  border-radius: 0 30px 30px 0;
}
/********************************************************
	11.  Error Page Start
*******************************************************/
.chrity-error-wrapper {
  padding: 46px 0 80px;
}
.chrity-error-content img {
  max-height: 480px;
}
.chrity-error-content {
  max-width: 680px;
  margin: auto;
  font-weight: 500;
}
.chrity-error-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 00 10px;
}
.chrity-error-content .chrity-btn {
  margin: 23px 0 0;
}
/********************************************************
	12.  Causes Start
*******************************************************/
.chrity-causes-wrapper {
  padding: 75px 0 80px;
}
.chrity-causes-section {
  position: relative;
  margin: 0 0 30px;
  background: var(--charity-white-color);
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 6%);
  border-radius: 10px;
  overflow: hidden;
}
.chrity-causes-section:hover {
  transform: translateY(-10px);
}
.chrity-causes-section:hover,
.chrity-causes-section,
.chrity-causes-section:hover .chrity-causes-info h4,
.chrity-causes-section .chrity-causes-info h4 {
  -webkit-transition: var(--charity-transition);
  -moz-transition: var(--charity-transition);
  -ms-transition: var(--charity-transition);
  -o-transition: var(--charity-transition);
  transition: var(--charity-transition);
}
.chrity-causes-section:hover .chrity-causes-info h4 {
  color: var(--charity-primary-color);
}
.chrity-causes-img img {
  max-height: 250px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.progress {
  width: 100%;
  height: 5px;
  overflow: unset;
  background: #fdebd4;
  border-radius: 0;
}
.bar {
  position: relative;
  height: 100%;
  background: var(--charity-primary-color);
}
.percent {
  position: absolute;
  bottom: 100%;
  left: calc(100% - 25px);
  margin: 0;
  font-size: 10px;
  color: var(--charity-white-color);
  font-weight: 500;
  background: var(--charity-primary-color);
  padding: 3px 3px;
  border-radius: 3px 3px 0px 0px;
}
.chrity-causes-info ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0 0;
}
.chrity-causes-info h4 {
  font-size: 18px;
  font-weight: 600;
}
.chrity-causes-img {
  position: relative;
}
.chrity-budget {
  position: absolute;
  top: 20px;
  left: 10px;
  background: #f15c5c;
  color: var(--charity-white-color);
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 3px;
}
.chrity-causes-info {
  padding: 20px 30px 20px;
}
.chrity-causes-info ul li {
  padding: 0 5px;
}
.chrity-causes-info ul li span {
  font-weight: 500;
  font-size: 12px;
}
.chrity-causes-info ul li h5 {
  font-weight: 800;
  font-size: 18px;
  margin: 0;
  color: #6c6c6c;
}
.chrity-causes-info ul li:first-of-type h5 {
  color: #2fb92d;
}
.chrity-causes-info ul li:nth-child(2) h5 {
  color: #32c1b4;
}
.chrity-causes-info ul li:nth-child(3) h5 {
  color: #ff6f4e;
}
/********************************************************
	13. Donation Start
*******************************************************/

.chrity-donation-wrapper {
  padding: 80px 0 50px;
  background: var(--charity-alternate-color);
  background-image: url(../images/charity-bg.png);
  background-position: center;
  background-repeat: no-repeat;
}

.chrity-donation-form h4 {
  font-size: 32px;
  margin-bottom: 43px;
  line-height: 32px;
}

.chrity-donation-form input {
  width: 100%;
  height: 50px;
  background: var(--charity-input-bg);
  border: 1px solid var(--charity-border-color);
  border-radius: 3px;
  padding: 20px;
  color: var(--charity-font-color);
}

.chrity-donation-form textarea {
  width: 100%;
  height: 123px;
  background: var(--charity-input-bg);
  border: 1px solid var(--charity-border-color);
  border-radius: 3px;
  padding: 20px;
  color: var(--charity-font-color);
}

.chrity-donation-form .chrity-btn {
  margin-top: 20px;
}

.chrity-donation-form input:focus,
.chrity-donation-form textarea:focus {
  opacity: 1;
}

.chrity-donation-form input:focus,
.chrity-donation-form textarea:focus,
.chrity-donation-form input,
.chrity-donation-form textarea {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.chrity-donation-form input::-webkit-input-placeholder {
  color: var(--charity-font-color);
  opacity: 90%;
}

.chrity-donation-form input::-moz-placeholder {
  color: var(--charity-font-color);
  opacity: 90%;
}

.chrity-donation-form input:-ms-input-placeholder {
  color: var(--charity-font-color);
  opacity: 90%;
}

.chrity-donation-form input:-moz-placeholder {
  color: var(--charity-font-color);
  opacity: 90%;
}

.chrity-donation-form textarea::-webkit-input-placeholder {
  color: var(--charity-font-color);
  opacity: 90%;
}

.chrity-donation-form textarea::-moz-placeholder {
  color: var(--charity-font-color);
  opacity: 90%;
}

.chrity-donation-form textarea:-ms-input-placeholder {
  color: var(--charity-font-color);
  opacity: 90%;
}

.chrity-donation-form textarea:-moz-placeholder {
  color: var(--charity-font-color);
  opacity: 90%;
}
.chrity-donation-form {
  margin: 0 0 30px;
}
.chrity-donation-img {
  margin: 0 0 30px;
}
/********************************************************
	14. Team Start
*******************************************************/

.chrity-team-wrapper {
  padding: 75px 0 50px;
}

.team-slider.swiper-container {
  padding-bottom: 36px;
}
.chrity-team-img {
  background: var(--charity-alternate-color);
  position: relative;
  width: 200px;
  margin: auto;
  height: 200px;
  border-radius: 50%;
}
.chrity-team-img img {
  width: 100%;
  border: none;
  border-radius: 8px;
}

.chrity-team-identity {
  padding: 20px 12px;
}

.chrity-team-identity > a {
  color: var(--charity-link-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  display: inline-block;
}

.chrity-team-section:hover .chrity-team-identity a {
  color: var(--charity-primary-color);
}
.chrity-team-section {
  margin: 0px 0 30px;
  border: none;
  padding: 30px 20px 3px;
  background: var(--charity-white-color);
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 6%);
  border-radius: 10px;
  overflow: hidden;
}
.chrity-team-section:hover .chrity-team-identity h4,
.chrity-team-section:hover {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.chrity-team-social {
  width: 100%;
  display: inline-block;
}
.chrity-team-social {
  margin-top: 20px;
}
.chrity-team-social li {
  display: inline-block;
  margin: 0 6px;
  line-height: 1;
  padding-top: 8px;
}
.chrity-team-social li a {
  color: var(--charity-white-color);
}
.chrity-team-social li a:hover {
  color: var(--charity-primary-color);
}
.chrity-team-social ul {
  width: auto;
  background: rgba(249, 249, 249, 0.1);
  display: inline-block;
  padding: 6px 20px;
  border: none;
  border-radius: 30px;
}
.swiper-button-prev1,
.swiper-button-next1 {
  width: 40px;
  color: var(--charity-primary-color);
  cursor: pointer;
  position: absolute;
  height: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.swiper-button-prev1 {
  left: -90px;
}
.swiper-button-next1 {
  right: -100px;
}
.chrity-team-button {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.swiper-button-next1.swiper-button-disabled,
.swiper-button-prev1.swiper-button-disabled {
  color: var(--main-txt-color);
}
.chrity-team-wrapper.chrity-team-page-wrapper {
  padding: 80px 0 50px;
}
.chrity-team-wrapper.chrity-team-page-wrapper .chrity-team-section {
  margin-bottom: 30px;
}
.chrity-team-wrapper .chrity-heading-wrapper {
  margin-bottom: 41px;
}

.team-social li {
  list-style: none;
  position: relative;
  margin: 8px 0;
}
.chrity-team-section img {
  height: 200px;
  width: 200px;
  min-width: 200px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  transition: 0.8s ease-in-out;
}
.team-social li a {
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 35px;
  text-align: center;
  background: var(--charity-primary-color);
  color: var(--charity-white-color);
}
.team-social .sub-team-social {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: rotate(28deg);
  text-align: right;
  opacity: 0;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  width: 100%;
}
.team-social .sub-team-social li:nth-child(1) {
  left: -12px;
  bottom: -2px;
}
.team-social .sub-team-social li:nth-child(2) {
  left: 10px;
}
.team-social .sub-team-social li:nth-child(3) {
  left: 15px;
}
.team-social .sub-team-social li:last-child {
  margin-bottom: 25px;
}
.team-social > li > a {
  position: absolute;
  bottom: -3px;
  right: 35px;
  font-size: 14px;
  transition: 0.8s ease-in-out;
}
.chrity-team-section:hover .team-social .sub-team-social {
  transform: rotate(0);
  opacity: 1;
}
/********************************************************
	15. Partner Start
*******************************************************/

.chrity-partner-wrapper {
  padding: 0 0 50px;
}
.chrity-partners-container img {
  opacity: 0.85;
  max-height: 124px;
}
.chrity-partners-container img:hover {
  opacity: 1;
}
.chrity-partners-container {
  border: 1px dotted var(--charity-border-color);
  border-radius: 8px;
}
.chrity-partners-container:hover {
  border-color: var(--charity-primary-color);
}
.chrity-partners-container:hover,
.chrity-partners-container,
.chrity-partners-container img:hover,
.chrity-partners-container img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
/********************************************************
	16. Footer Start
*******************************************************/

footer {
  background: var(--charity-footer-bg);
  color: var(--charity-footer-color);
}

.chrity-footer-wrapper {
  padding: 80px 0 28px;
  color: var(--charity-footer-color);
}

.chrity-widgets > p {
  margin: 20px 0 18px;
}
.chrity-footer-wrapper .chrity-sub-heading {
  margin-bottom: 26px;
  text-transform: capitalize;
  margin-top: 12px;
}
.chrity-widgets .chrity-sub-heading {
  display: inline-block;
  font-size: 22px;
  margin-top: 0;
}
.chrity-footer-address li {
  margin-bottom: 13px;
}

.chrity-footer-menu ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 13px;
}
.chrity-footer-menu ul li a {
  position: relative;
  color: var(--charity-footer-color);
}
.chrity-footer-menu ul li a:after {
  content: "\f105";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  left: -20px;
  top: 0;
  font-size: 15px;
}
.chrity-footer-address h6 {
  font-size: 18px;
  margin-bottom: 8px;
  margin-top: 20px;
  color: var(--charity-white-color);
}
.chrity-footer-address h5 {
  font-size: 26px;
  color: var(--charity-white-color);
}
.chrity-footer-menu ul li a {
  display: inline-block;
  position: relative;
}
.chrity-footer-menu ul li a:before {
  background: var(--charity-primary-color);
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: 0;
}
.chrity-footer-menu ul li a:hover:before {
  width: 100%;
}
.chrity-widgets .chrity-sub-heading:before {
  display: none;
}
.chrity-widgets .chrity-sub-heading {
  padding-left: 0;
  color: var(--charity-primary-color);
}
.chrity-footer-menu ul li a,
.chrity-footer-menu ul li a:hover,
.chrity-footer-menu ul li a:before,
.chrity-footer-menu ul li a:hover:before {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.chrity-copyright-wrapper {
  padding: 14px 0 11px;
  color: var(--charity-copyright-color);
  background: var(--charity-copyright-bg);
}

.chrity-copyright-wrapper a {
  color: var(--charity-primary-color);
}
.chrity-copyright-wrapper a:hover {
  color: var(--charity-primary-color);
}
.chrity-copyright-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.chrity-copyright-menu ul li a {
  color: var(--charity-copyright-color);
  font-weight: 500;
}
.chrity-copyright-menu ul li a:hover {
  color: var(--charity-primary-color);
}
.chrity-copyright-menu ul li:not(:first-of-type) {
  margin-left: 15px;
  padding-left: 15px;
  position: relative;
}
.chrity-copyright-menu ul li:not(:first-of-type):before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 2px;
  background: var(--charity-border-color);
}
/********************************************************
	17. Page Title Start
*******************************************************/

.chrity-page-title-wrapper {
  position: relative;
  width: 100%;
  padding: 181px 0 84px;
  background: var(--charity-breadcrumbs-bg);
  color: var(--charity-link-color);
  background: url(../images/charity-pagetitle-bg.png);
  background-position: center;
  background-size: cover;
}
.chrity-page-title-text h1 {
  color: var(--charity-title-color);
  font-size: 38px;
  line-height: 46px;
  font-weight: 700;
  margin-bottom: 6px;
}

.chrity-page-title-text ul {
  display: flex;
  justify-content: center;
}

.chrity-page-title-text ul > li {
  position: relative;
  padding-left: 20px;
}

.chrity-page-title-text ul > li:first-child {
  padding-left: 0;
}

.chrity-page-title-text ul > li:before {
  content: "\f105";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 5px;
  left: 6px;
}

.chrity-page-title-text ul > li:first-child:before {
  content: unset;
}

.chrity-page-title-text ul > li a {
  color: var(--charity-link-color);
}

/********************************************************
	18. About Page Why Us Start
*******************************************************/

.chrity-tabs-nav {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--charity-border-color);
  border-radius: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  margin-top: 17px;
}

.chrity-tabs-nav li {
  width: 33.33%;
  height: 70px;
  text-align: center;
  position: relative;
  border-right: 1px solid var(--charity-border-color);
  padding: 21px 0;
}

.chrity-tabs-nav li:last-child {
  border-right: 0px;
}

.chrity-tabs-nav li a {
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  position: relative;
}

.chrity-tabs-nav li::before {
  content: "";
  background: var(--charity-primary-color);
  width: 0%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.chrity-tabs-nav li.active::before,
.chrity-tabs-nav li:hover::before {
  width: 60%;
}

.chrity-tabs-nav li,
.chrity-tabs-nav li::before,
.chrity-tabs-nav li.active::before,
.chrity-tabs-nav li:hover::before {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.charity-summury {
  font-weight: 500;
  padding: 20px 20px 20px 40px;
  margin: 20px 0;
  background: #f5f5f5;
  border-left: 4px solid var(--charity-primary-color);
  border-radius: 4px;
  font-size: 18px;
  line-height: 1.6;
}
.charity-summury b {
  color: #ff651b;
  font-weight: 700;
}
.charity-summury span {
  color: #00b98e;
  font-weight: 500;
}
.chrity-work-text h2 {
  margin: 0 0 10px;
}

.chrity-work-wrapper {
  padding: 75px 0 50px;
}
.chrity-work-text h2 {
  font-size: 42px;
  line-height: 50px;
  margin-bottom: 10px;
  font-weight: 700;
}
.chrity-work-text {
  margin: 0 0 30px;
}
/********************************************************
	20. FAQ's CSS Start
*******************************************************/
.chrity-faq-thumb-wrapper {
  padding: 80px 0 50px;
}
.accordion-button:not(.collapsed) {
  color: var(--charity-primary-color);
  background: var(--charity-secondary-color);
  box-shadow: none;
}
.accordion-item {
  border: 0;
  background: #f5f5f5;
  margin: 0 0 20px;
}
.accordion-item .accordion-header .accordion-button {
  background: #f5f5f5;
  box-shadow: none;
  font-weight: 600;
  outline: 0;
}
.accordion-button::after {
  background: url(../images/faq-arrow.svg);
}
.accordion-button:not(.collapsed)::after {
  background: url(../images/faq-arrow.svg);
  transform: rotate(-180deg);
}
.accordion-header {
  border-bottom: 1px solid var(--charity-border-color);
}
/********************************************************
	21. Features CSS Start
*******************************************************/

.chrity-features-wrapper {
  padding: 75px 0 45px;
}

.chrity-features-icon img {
  height: 50px;
  position: relative;
}
.chrity-features-icon {
  position: relative;
  margin: 0 0 10px;
  padding: 0 0 10px;
}
.chrity-features-icon:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 25px;
  left: 13px;
  height: 25px;
  background: var(--charity-primary-color);
  border-radius: 50%;
}
.features-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}
.features-item {
  background: var(--charity-box-bg);
  box-shadow: 0px 4px 70px 30px rgb(0 0 0 / 5%);
  padding: 30px 30px 23px;
  border-radius: 10px;
  margin: 0 0 30px;
}
.chrity-features-wrapper .row .col-lg-3:first-of-type .features-item h4 {
  color: #27c3c3;
}
.chrity-features-wrapper
  .row
  .col-lg-3:nth-child(1)
  .features-item
  .chrity-features-icon:before {
  background: #27c3c3;
}
.chrity-features-wrapper .row .col-lg-3:nth-child(2) .features-item h4 {
  color: #ff9a39;
}
.chrity-features-wrapper
  .row
  .col-lg-3:nth-child(2)
  .features-item
  .chrity-features-icon:before {
  background: #ff9a39;
}
.chrity-features-wrapper .row .col-lg-3:nth-child(3) .features-item h4 {
  color: #2984ff;
}
.chrity-features-wrapper
  .row
  .col-lg-3:nth-child(3)
  .features-item
  .chrity-features-icon:before {
  background: #2984ff;
}
.chrity-features-wrapper .row .col-lg-3:nth-child(4) .features-item h4 {
  color: #5fb35b;
}
.chrity-features-wrapper
  .row
  .col-lg-3:nth-child(4)
  .features-item
  .chrity-features-icon:before {
  background: #5fb35b;
}
.chrity-features-wrapper .row .col-lg-3:nth-child(1) .features-item {
  background: #f4fffd;
  border: 1px solid #65c9bb;
}
.chrity-features-wrapper .row .col-lg-3:nth-child(2) .features-item {
  background: #fff8f2;
  border: 1px solid #ff9a39;
}
.chrity-features-wrapper .row .col-lg-3:nth-child(3) .features-item {
  background: #eef5ff;
  border: 1px solid #2984ff;
}
.chrity-features-wrapper .row .col-lg-3:nth-child(4) .features-item {
  background: #fbfff3;
  border: 1px solid #5fb35b;
}
.features-item:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.features-item:hover .chrity-features-icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.features-item:hover .chrity-features-icon img,
.features-item:hover .chrity-features-icon,
.features-item .chrity-features-icon img,
.features-item:hover,
.features-item {
  -webkit-transition: var(--charity-transition);
  -moz-transition: var(--charity-transition);
  -ms-transition: var(--charity-transition);
  -o-transition: var(--charity-transition);
  transition: var(--charity-transition);
}

/********************************************************
	22. Blog Page Start
*******************************************************/
.chrity-blog-sidebar {
  position: sticky;
  top: 20px;
}
/* Blog Grid */
.blog-grid-col.chrity-blog-wrapper {
  background: var(--charity-alternate-color);
  padding: 80px 0 80px;
}
.blog-grid-col.chrity-blog-wrapper .chrity-blog-data h4:hover,
.blog-grid-col.chrity-blog-wrapper .chrity-blog-data h4 {
  -webkit-transition: var(--charity-transition);
  -moz-transition: var(--charity-transition);
  -ms-transition: var(--charity-transition);
  -o-transition: var(--charity-transition);
  transition: var(--charity-transition);
}
.blog-grid-col.chrity-blog-wrapper .chrity-blog-data h4:hover {
  color: var(--charity-primary-color);
}
.chrity-blog-wrapper {
  padding: 80px 0 30px;
}

.chrity-sidebar-widgets {
  margin-bottom: 42px;
}

.chrity-sidebar-widgets:last-child {
  margin-bottom: 0px;
}

.chrity-blog-sidebar,
.chrity-sidebar-widgets {
  width: 100%;
}

.chrity-search-field {
  position: relative;
}

.chrity-search-field input {
  width: 100%;
  border: 1px solid var(--charity-input-border);
  height: 50px;
  border-radius: 6px;
  padding: 0 50px 0 30px;
  position: relative;
  line-height: 50px;
  margin-bottom: 4px;
  background: var(--charity-input-bg);
  color: var(--charity-input-color);
}

.chrity-search-field > a {
  position: absolute;
  right: 18px;
  top: 0;
  color: var(--charity-primary-color);
  bottom: 0;
  line-height: 50px;
}

.chrity-sidebar-widgets .chrity-sub-heading {
  margin-bottom: 16px;
}

.chrity-category-field ul li,
.chrity-archives-field ul li {
  padding: 0 0 12px 20px;
  position: relative;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}

.chrity-category-field ul li a,
.chrity-archives-field ul li a {
  width: calc(100% - 60px);
}

.chrity-category-field ul li:before,
.chrity-archives-field ul li:before {
  content: "\f105";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  top: -2px;
  left: 0;
}

.chrity-category-field ul li:last-child,
.chrity-archives-field ul li:last-child {
  padding-bottom: 0;
}

.chrity-latestPost-field ul li {
  display: flex;
  margin-bottom: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.chrity-latestPost-field ul li:last-child {
  margin-bottom: 0px;
}

.chrity-latestPost-field ul li .chrity-blog-thumb {
  margin-right: 10px;
  width: 70px;
  display: inline-block;
}

.chrity-blog-thumb img {
  border: none;
  border-radius: 3px;
}

.chrity-blog-title-wrap {
  width: calc(100% - 80px);
}

.chrity-blog-title {
  font-weight: 700;
  text-transform: capitalize;
}

.chrity-blog-date {
  color: var(--charity-primary-color);
  font-weight: 700;
  font-size: 14px;
}

.chrity-insta-field ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.chrity-insta-field ul li {
  width: 31%;
  margin: 0 0 10px;
}

.chrity-insta-field ul li img {
  width: 83px;
  height: auto;
  border-radius: 3px;
  object-fit: cover;
}

.chrity-blog-img,
.chrity-blog-thumb,
.chrity-effect {
  position: relative;
  overflow: hidden;
}

.chrity-blog-img img {
  border: none;
  border-radius: 10px;
}

.chrity-blog-img:after,
.chrity-blog-img:before,
.chrity-blog-thumb:after,
.chrity-blog-thumb:before,
.chrity-effect:after,
.chrity-effect:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  z-index: 1;
  background: var(--charity-white-color);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.chrity-blog-img:before,
.chrity-blog-img:hover:before,
.chrity-blog-thumb:before,
.chrity-blog-thumb:hover:before,
.chrity-effect:hover:before,
.chrity-effect:before {
  right: 0;
  top: 0;
}

.chrity-blog-img:hover:after,
.chrity-blog-img:hover:before,
.chrity-blog-thumb:hover:after,
.chrity-blog-thumb:hover:before,
.chrity-effect:hover:after,
.chrity-effect:hover:before {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.chrity-blog-img:after,
.chrity-blog-img:hover:after,
.chrity-blog-thumb:after,
.chrity-blog-thumb:hover:after,
.chrity-effect:after,
.chrity-effect:hover:after {
  left: 0;
  bottom: 0;
}

.chrity-blog-img:after,
.chrity-blog-thumb:after,
.chrity-effect:after {
  opacity: 0.3;
}

.chrity-blog-info ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.chrity-blog-info ul li {
  margin-right: 60px;
}

.chrity-blog-info ul li:last-child {
  margin-right: 0px;
}

.chrity-blog-info {
  padding: 30px 0 21px;
}

.chrity-blog-info ul li img.chrity-user,
.chrity-blog-info ul li i {
  margin-right: 10px;
}

.chrity-blog-info ul li .chrity-user-name,
.chrity-blog-info ul li i {
  color: var(--charity-primary-color);
}

img.chrity-user {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

.chrity-blog-info ul li a {
  color: var(--main-txt-color);
}

.chrity-blog-info ul li a:hover {
  color: var(--charity-primary-color);
}

.chrity-blog-heading {
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  display: inline-block;
  margin-bottom: 12px;
}

.chrity-blog-btn {
  margin-top: 21px;
}

.chrity-blog-section {
  margin-bottom: 41px;
  border-radius: 10px;
  overflow: hidden;
}
.blog-grid-col.chrity-blog-wrapper .chrity-blog-section {
  background: var(--charity-box-bg);
}
.chrity-blog-data {
  padding: 20px 20px 10px;
}
.chrity-blog-section .chrity-blog-img img {
  border-radius: 10px 10px 0 0;
}
.chrity-blog-data h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}
.chrity-blog-data .chrity-link {
  margin: 10px 0 4px;
}
.blog-pagination-wrapper ul li {
  display: inline-block;
  font-size: 18px;
}

.blog-pagination-wrapper ul li a,
.blog-pagination-wrapper ul li.dot:hover a {
  color: var(--charity-link-color);
  font-weight: 700;
  width: 40px;
  height: 40px;
  line-height: 42px;
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  background: var(--charity-alternate-color);
}

.blog-pagination-wrapper ul li.dot:hover a {
  cursor: none;
}

.blog-pagination-wrapper ul li.blog-page-prev a,
.blog-pagination-wrapper ul li.blog-page-next a {
  width: 40px;
  height: 40px;
}

.blog-pagination-wrapper ul li.blog-page-prev:hover a,
.blog-pagination-wrapper ul li.blog-page-next:hover a {
  background: var(--charity-white-color);
  color: var(--charity-primary-color);
}

.blog-pagination-wrapper ul li.active a,
.blog-pagination-wrapper ul li:hover a {
  color: var(--charity-white-color);
  background: var(--charity-primary-color);
}

.chrity-sidebar-widgets.chrity-sidebar-cat-widgets
  .chrity-sub-heading.relative {
  margin-bottom: 14px;
}

.chrity-sidebar-widgets.chrity-sidebar-arc-widgets
  .chrity-sub-heading.relative {
  margin-bottom: 14px;
}

.chrity-sidebar-widgets.chrity-sidebar-cat-widgets {
  margin-bottom: 40px;
}

.chrity-sidebar-widgets.chrity-sidebar-arc-widgets {
  margin-bottom: 41px;
}

.chrity-sidebar-widgets.chrity-sidebar-insta-widgets
  .chrity-sub-heading.relative {
  margin-bottom: 20px;
}

/********************************************************
	23. Blog Single Page Start
*******************************************************/

.chrity-blockquote {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.chrity-blockquote-img {
  width: 160px;
  margin-right: 10px;
  position: relative;
}

.chrity-blockquote-quote {
  width: calc(100% - 170px);
  color: var(--charity-link-color);
  position: relative;
  text-align: center;
}

.chrity-blockquote-quote p,
.chrity-quote-user {
  text-align: left;
}

.chrity-blockquote-img img.chrity-quote-user {
  border: 3px solid var(--charity-primary-color);
  border-radius: 50%;
  width: 130px;
  height: 130px;
}

.chrity-blockquote-img:before {
  content: "\f10e";
  right: 12px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  color: var(--charity-primary-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 40px;
  height: 40px;
  line-height: 32px;
  background: var(--charity-white-color);
  border: 5px solid var(--charity-primary-color);
  padding-left: 8px;
  border-radius: 100%;
  z-index: 1;
}

.chrity-quote-user {
  color: var(--charity-link-color);
  font-weight: 700;
  font-size: 20px;
  width: 100%;
  display: inline-block;
}

.chrity-quote-user > span {
  color: var(--main-txt-color);
  font-size: 16px;
  font-weight: 400;
}

.chrity-blockquote-quote:before {
  content: "\f10e";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  color: var(--charity-primary-color);
  position: absolute;
  left: 0;
  right: 0;
  font-size: 2%;
  margin: auto;
}

.chrity-blockquote-quote:before {
  content: "\f10e";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  color: var(--charity-primary-color);
  position: absolute;
  left: 0;
  right: 0;
  font-size: 84px;
  margin: auto;
  top: 50%;
  opacity: 0.1;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.chrity-img-text-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.chrity-img-text-container img {
  width: 370px;
  display: inline-block;
  margin: 6px 15px 6px 0;
}

.chrity-img-text-container p {
  display: inline-block;
  width: calc(100% - 385px);
}

.chrity-author-message-box {
  background: var(--charity-primary-color);
  border: none;
  border-radius: 6px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 74px 0 73px;
  color: var(--charity-white-color);
}

.chrity-author-content h5 {
  color: var(--charity-white-color);
  font-weight: 700;
  font-size: 20px;
}

.chrity-author-content h5 span {
  font-weight: 400;
  font-size: 16px;
}

.chrity-author-content {
  width: calc(100% - 140px);
}

.chrity-author-image {
  width: 110px;
  height: 110px;
  overflow: hidden;
  margin-right: 30px;
}

.chrity-author-image img {
  width: 110px;
  height: 110px;
  border: none;
  border-radius: 100%;
  object-fit: fill;
}

.chrity-comment-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.chrity-comment-detail {
  width: calc(100% - 130px);
}

.chrity-comment-user {
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin-right: 30px;
}

.chrity-comment-user img {
  width: 100px;
  height: 100px;
  border: none;
  border-radius: 100%;
  object-fit: fill;
}

.chrity-blog-comment > ul > li {
  margin-bottom: 26px;
  display: inline-block;
}
.chrity-blog-comment ul,
.chrity-blog-comment ol {
  list-style: none;
}
.chrity-blog-comment ul li ul {
  padding-left: 80px;
}

.chrity-blog-comment > ul > li > ul > li {
  margin-top: 26px;
}

.chrity-comment-form {
  margin-top: 43px;
}

.chrity-form-field {
  width: 100%;
  border: 1px solid var(--charity-input-border);
  padding: 0 20px;
  height: 50px;
  border-radius: 6px;
  display: flex;
  background: var(--charity-input-bg);
  color: var(--charity-input-color);
}

textarea.chrity-form-field {
  height: 150px;
  resize: none;
  padding: 12px 20px;
}

.chrity-field-holder {
  margin-bottom: 30px;
}

.chrity-comment-form .chrity-section-heading {
  margin-bottom: 40px;
}

.chrity-comment-form .chrity-btn {
  margin: 0;
}

.chrity-reply-btn {
  color: var(--charity-primary-color);
  margin-left: 15px;
}

.chrity-reply-btn svg {
  width: 16px;
  fill: var(--charity-primary-color);
}

/********************************************************
	24. Contact Page Start
*******************************************************/

.chrity-contact-wrapper {
  padding: 80px 0;
}

.chrity-contact-wrapper .col-lg-4.d-flex {
  padding-left: 0;
  padding-right: 20px;
}

.chrity-info-bg {
  background: var(--charity-primary-color);
}

.chrity-contact-wrapper > div > .row {
  background: var(--charity-white-color);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  border: none;
  border-radius: 6px;
  overflow: hidden;
  margin: 0;
}
.chrity-contact-form {
  position: relative;
}
.chrity-contact-form {
  padding: 44px 35px 41px 15px;
}

.chrity-contact-form .chrity-sub-heading {
  margin-bottom: 30px;
  font-size: 26px;
  color: var(--charity-link-color);
}

.chrity-contact-info {
  padding: 44px 35px 0 50px;
  color: var(--charity-white-color);
}

.chrity-contact-info .chrity-sub-heading {
  color: var(--charity-white-color);
  margin-bottom: 28px;
  font-size: 26px;
}

.chrity-contact-info .chrity-sub-heading:before {
  background: var(--charity-white-color);
}

.chrity-conatact-section > h4 {
  color: var(--charity-white-color);
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 4px;
}

.chrity-contact-info-inner {
  padding: 0 0 0 25px;
  font-size: 18px;
  position: relative;
  line-height: 28px;
}

.chrity-contact-info-inner span {
  position: absolute;
  left: 0;
  top: 0;
}

.chrity-contact-info-inner svg {
  width: 16px;
  fill: var(--charity-white-color);
}

.chrity-conatact-section {
  margin-bottom: 29px;
  padding-bottom: 22px;
  position: relative;
}

.chrity-conatact-section:before {
  content: "";
  border-bottom: 1px solid var(--charity-white-color);
  position: absolute;
  bottom: 0px;
  left: -50px;
  right: -34px;
  opacity: 0.2;
}

.chrity-conatact-section:last-child:before {
  content: unset;
}

.chrity-contact-form .chrity-field-holder {
  margin-bottom: 20px;
}

.chrity-contact-form textarea.chrity-form-field {
  height: 140px;
}

.chrity-map {
  width: 100%;
  padding: 0;
}

.chrity-map iframe {
  display: block;
  width: 100%;
  height: 640px;
  margin: 0 auto;
}

.chrity-contact-form .chrity-btn {
  width: 160px;
  font-size: 15px;
}

/* Color Switch */
.color-switcher {
  position: fixed;
  bottom: 20px;
  z-index: 999;
  height: fit-content;
  margin: auto;
  left: 10px;
}
.switches-container {
  width: 60px;
  display: flex;
  background: #262626;
  line-height: 30px;
  margin-right: auto;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
}
.color-switcher svg {
  fill: var(--charity-white-color);
  margin-right: 2px;
  height: 16px;
  vertical-align: text-bottom;
  width: 16px;
}
.switches-container input {
  visibility: hidden;
  position: absolute;
  top: 0;
}
.switches-container label {
  width: 50%;
  padding: 0;
  margin: 0;
  text-align: center;
  cursor: pointer;
  color: var(--charity-white-color);
}
.switch-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  padding: 3px;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.switch {
  border-radius: 3px;
  background: var(--mu-theme-color);
  height: 100%;
}
.switch div {
  width: 100%;
  text-align: center;
  opacity: 0;
  display: block;
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0.125s;
  will-change: opacity;
  position: absolute;
  top: 0;
  color: var(--charity-white-color);
  font-weight: 600;
  left: 0;
  border-radius: 30px;
  background: var(--charity-primary-color);
}
.switches-container input:nth-of-type(1):checked ~ .switch-wrapper {
  transform: translateX(0%);
}
.switches-container input:nth-of-type(2):checked ~ .switch-wrapper {
  transform: translateX(100%);
}
.switches-container
  input:nth-of-type(1):checked
  ~ .switch-wrapper
  .switch
  div:nth-of-type(1) {
  opacity: 1;
}
.switches-container
  input:nth-of-type(2):checked
  ~ .switch-wrapper
  .switch
  div:nth-of-type(2) {
  opacity: 1;
}

/* Switch End */

/* NewsLetter CSS */
.chrity-newsletter-wrapper {
  background: var(--charity-primary-color);
  border-radius: 8px;
  max-width: 1170px;
  margin: 80px auto;
  padding: 50px 0px 20px 50px;
  background-image: url(../images/charity-newsletter.png);
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
  width: 95%;
}
.chrity-newsletter-wrapper:before {
  content: "";
  background-image: url(../images/charity-subscribe-bg.png);
  background-position: right;
  background-repeat: repeat;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.chrity-newsletter-wrapper .row {
  align-items: center;
  position: relative;
}
.chrity-newsletter-img {
  text-align: right;
}
.chrity-newsletter-content {
  margin: 0 0 35px;
}
.chrity-newsletter-content h2 {
  color: var(--charity-white-color);
  font-weight: 800;
  font-size: 32px;
  margin: 0 0 6px;
}
.chrity-newsletter-content p {
  color: var(--charity-white-color);
  font-weight: 500;
  margin: 0 0 23px;
}
.chrity-newsletter-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
}
.chrity-newsletter-field .chrity-btn {
  min-width: 140px;
  border-radius: 0 10px 10px 0;
  margin: 0;
  border-left: 0;
  min-height: 50px;
  background: var(--charity-title-color);
  color: var(--charity-white-color);
}
.chrity-newsletter-field .chrity-form-field {
  border-radius: 10px 0px 0px 10px;
  width: calc(100% - 140px);
  border: 0;
  background: var(--charity-white-color);
  color: var(--charity-title-color);
}
.chrity-newsletter-field .chrity-btn:after {
  background: #1e1e1e;
  border-radius: 0px 5px 5px 0px;
}
.chrity-newsletter-field .chrity-btn:hover {
  background: var(--charity-title-color);
}
.chrity-newsletter-field .chrity-btn:before,
.chrity-newsletter-field .chrity-btn:after {
  background: var(--charity-title-color);
}
/* Video **/
.charity-video-wrapper {
  padding: 80px 0 80px;
}
.video-wrap {
  position: relative;
}
.video-icon svg {
  height: 80px;
  fill: var(--charity-primary-color);
}
.video-wrap .popup-youtube {
  position: relative;
  display: block;
}
.video-wrap .popup-youtube:before {
  content: "";
  position: absolute;
  background: rgb(91 105 59 / 28%);
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  border-radius: 10px;
}
.video-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.video-wrap img {
  border-radius: 10px;
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.video-icon span {
  width: 80px;
  height: 80px;
  background: var(--charity-white-color);
  border-radius: 50%;
  position: relative;
}
.video-icon span:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  -webkit-animation: sonarWave 1.5s linear infinite;
  animation: sonarWave 1.5s linear infinite;
  border-radius: 50%;
  background: var(--charity-primary-color);
}
@-webkit-keyframes sonarWave {
  from {
    opacity: 0.4;
  }
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes sonarWave {
  from {
    opacity: 0.4;
    @include transform(scale(1));
  }
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
    @include transform(scale(0.9));
  }
}
/**/
.hidden-div {
  visibility: hidden;
  opacity: 0;
  height: 0;
}
.single-tab,
.single-tab.hidden-div {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.response {
  color: var(--charity-error-color);
  position: absolute;
  right: 12px;
  bottom: 12px;
}
.relative {
  position: relative;
}
/*-------------colorpicker css start ------------------*/
#style-switcher .bottom .settings {
  background: var(--charity-primary-color);
  display: block;
  height: 40px;
  position: absolute;
  width: 40px;
  padding: 3px;
  line-height: 35px;
  font-size: 18px;
  text-align: center;
  color: var(--charity-white-color);
  border-radius: 6px 0px 0px 6px;
  left: -40px;
  top: 20px;
  bottom: 0;
  text-decoration: none !important;
}
#style-switcher > div > h3 {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--charity-white-color);
}
#style-switcher {
  right: -160px;
  position: fixed;
  top: 25%;
  width: 160px;
  z-index: 9999;
  padding: 20px 20px;
  background: var(--charity-copyright-bg);
  border-radius: 10px 0 0 10px;
}
.colors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px;
  list-style: none;
}
.colors li p {
  cursor: pointer;
  display: block;
  height: 35px;
  width: 35px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  font-size: 0px;
  border: 2px solid transparent;
}
.colors li #color1 {
  background: #f69110;
  border-color: #f69110;
}
.colors li #color2 {
  background: #ff7155;
  border-color: #ff7155;
}
.colors li #color3 {
  background: #8743df;
  border-color: #8743df;
}
.colors li #color4 {
  background: #dc3545;
  border-color: #dc3545;
}
.colors li #color5 {
  background: #3c6908;
  border-color: #3c6908;
}
.colors li #color6 {
  background: #3cd2a5;
  border-color: #3cd2a5;
}
.colors li #color7 {
  background: #2128bd;
  border-color: #2128bd;
}
.colors li #color8 {
  background: #00fff3;
  border-color: #00fff3;
}
.colors li #color9 {
  background: #f34fa0;
  border-color: #f34fa0;
}
.colors li #color10 {
  background: #30beff;
  border-color: #30beff;
}
.colors li #color11 {
  background: #6200ff;
  border-color: #6200ff;
}
.colors li #color12 {
  background: #ff7600;
  border-color: #ff7600;
}
.colors li #color13 {
  background: #935a12;
  border-color: #935a12;
}
.colors li #color14 {
  background: #26767a;
  border-color: #26767a;
}
.colors li #color15 {
  background: #b33d3d;
  border-color: #b33d3d;
}
.colors li #color16 {
  background: #e83de9;
  border-color: #e83de9;
}
.colors li #color17 {
  background: #5800ff;
  border-color: #5800ff;
}
.colors li #color18 {
  background: #01ad00;
  border-color: #01ad00;
}

body .colors .active p {
  border-color: var(--charity-white-color) !important;
}
/**/
/* Blog  Grid  CSS */
.chrity-blog-cat {
  position: absolute;
  font-weight: 500;
  top: 15px;
  left: 0;
  background: var(--charity-primary-color);
  color: var(--charity-white-color);
  padding: 10px 15px 9px;
  display: inline-block;
  text-align: center;
  min-height: auto;
  text-transform: uppercase;
  z-index: 1;
  font-size: 14px;
}
.chrity-blog-cat:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  display: inline-block;
  border-top: 20px solid var(--charity-primary-color);
  border-bottom: 20px solid var(--charity-primary-color);
  border-right: 10px solid transparent;
}

/* Volunteer Section CSS */

.chrity-volunteer-wrapper {
  padding: 70px 0 80px;
}
.chrity-volunteer-content {
  box-shadow: var(--charity-shadow);
  background: var(--charity-secondary-color);
  border-radius: 20px;
  padding: 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 100px;
  margin-top: 30px;
}
.chrity-volunter-msg h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 10px;
}
.chrity-volunter-msg {
  font-weight: 500;
  font-size: 18px;
  width: 55%;
  padding: 30px 0 30px 30px;
}
.chrity-volunteer-img {
  width: 45%;
  margin: -100px 0 -30px;
}
.chrity-volunteer-img img {
  -webkit-animation: moverUpDown 3s infinite alternate;
  animation: moverUpDown 3s infinite alternate;
}
.chrity-volunter-msg .chrity-btn {
  margin-top: 22px;
}
/********************************************************
    6. Responsive CSS
*******************************************************/

@media (min-width: 991.98px) {
  .menu-btn {
    display: none;
  }
  ul.sub-menu {
    position: absolute;
    width: max-content;
    min-width: 200px;
    top: 60px;
    left: 0;
    z-index: 9;
    transform: translate(20px, 0px);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    border: none;
    border-radius: 0 0 10px 10px;
    padding: 0 0 15px;
    background: var(--charity-white-color);
  }
  ul.sub-menu li {
    display: block;
    text-align: left;
    padding: 0;
  }
  ul.sub-menu li a {
    display: block;
    padding: 12px 20px 0;
    overflow: hidden;
    position: relative;
  }
  .main-menu-wrapper > ul > li:hover ul.sub-menu {
    transform: translate(0px, 0px);
    visibility: visible;
    opacity: 1;
  }
  .main-menu-wrapper ul > li > a,
  .main-menu-wrapper ul > li > a:hover,
  .main-menu-wrapper ul > li:hover > a {
    color: var(--charity-link-color);
  }
  .main-menu-wrapper > ul.sub-menu > li:hover > a,
  .main-menu-wrapper > ul.sub-menu > li > ul li a {
    color: var(--charity-white-color);
  }
  body .sub-menu {
    background: var(--charity-primary-color);
  }
  .chrity-blog-heading {
    width: 100%;
  }
  body .main-menu-wrapper > ul > li .sub-menu li a {
    color: var(--charity-white-color) !important;
  }
  header.chrity-header-wrapper.fixed-header {
    position: fixed;
    padding: 15px 0;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
    padding: 0;
  }
  .closeBtn {
    display: none;
  }
  .chrity-search-wrapper {
    padding-left: 25px;
  }
}
@media (max-width: 1700px) {
  .chrity-swiper-button {
    margin: auto;
    display: none;
  }
}
@media (min-width: 1750px) {
  .charity-container {
    max-width: 1630px;
  }
}
@media (max-width: 1400px) {
  .swiper-button-next1 {
    right: 4px;
  }
  .swiper-button-prev1 {
    left: 13px;
  }
}

@media (max-width: 1199.98px) {
  .chrity-widgets .chrity-sub-heading {
    font-size: 18px;
  }
  .chrity-event-wrapper:before {
    display: none;
  }
  .chrity-banner-text h1 {
    font-size: 60px;
    line-height: 60px;
  }
  .chrity-about-text h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .chrity-project-read p {
    width: auto;
  }
  .charity-social ul > li > a {
    width: 35px;
    height: 35px;
    margin: 5px 0px 5px 5px;
  }
  .header-info ul li:not(:first-of-type) {
    margin-left: 20px;
    padding-left: 20px;
  }
  .chrity-img-animation {
    opacity: 0.1;
  }
  .chrity-volunter-msg h2 {
    font-size: 28px;
  }
  .chrity-volunter-msg {
    font-size: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .chrity-nav-items {
    width: 68%;
  }
  .chrity-btn {
    padding: 0 30px;
  }
  .chrity-nav-items ul > li > a {
    padding: 0 8px;
  }
  .chrity-search-wrapper li:last-of-type {
    margin-left: 6px;
  }
  .chrity-insta-field ul li {
    margin: 0 0 6px;
  }
}
@media (max-width: 991.98px) {
  body {
    font-size: 14px;
    line-height: 20px;
  }
  .menu-btn {
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    line-height: 26px;
    border: 1px solid transparent;
    border-radius: 50%;
    padding: 17px 0 16px 0;
  }
  .menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    transition: 0.3s;
    margin: 0 auto 3px;
    background: var(--charity-primary-color);
  }
  .menu-btn-wrap.open .menu-btn span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
  }
  .menu-btn-wrap.open .menu-btn span:nth-child(1) {
    transform: translate(0px, 4px) rotate(-48deg);
  }
  .menu-btn-wrap.open .menu-btn span:nth-child(3) {
    transform: translate(0px, -6px) rotate(48deg);
  }
  .main-menu-wrapper {
    position: fixed;
    left: -300px;
    top: 0;
    bottom: 0;
    width: 300px;
    z-index: 999;
    overflow: hidden;
    overflow-y: auto;
    background: var(--charity-white-color);
    box-shadow: 2px 4px 28px 0px rgba(0, 0, 0, 0.1);
  }
  .main-menu-wrapper.open {
    left: 0;
  }
  .main-menu-wrapper,
  .main-menu-wrapper.open {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .main-menu-wrapper li {
    width: 100%;
    text-align: left;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--charity-border-color);
  }
  .main-menu-wrapper li.has-submenu {
    padding-left: 0;
  }
  .main-menu-wrapper li.has-submenu > ul {
    display: none;
  }
  .main-menu-wrapper li:last-child {
    border: none;
    padding-bottom: 0;
  }
  .main-menu-wrapper li > ul > li {
    padding-left: 25px;
  }
  .main-menu-wrapper ul > li > a {
    padding: 15px 20px 0px;
    width: 100%;
  }
  .main-menu-wrapper li.has-submenu:before,
  .main-menu-wrapper li.has-submenu:after {
    position: absolute;
    bottom: 0;
    content: "";
  }
  .main-menu-wrapper li.has-submenu:after {
    right: 21px;
    width: 12px;
    height: 2px;
    top: 25px;
  }
  .main-menu-wrapper li.has-submenu:before {
    right: 26px;
    width: 2px;
    height: 12px;
    top: 20px;
  }
  .main-menu-wrapper li.has-submenu.open::before {
    content: unset;
  }
  .main-menu-wrapper::-webkit-scrollbar {
    width: 3px;
  }
  .main-menu-wrapper::-webkit-scrollbar-track {
    background-color: var(--charity-border-color);
  }
  .main-menu-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--main-txt-color);
  }
  .chrity-btn {
    min-width: 130px;
    min-height: 40px;
  }

  .chrity-search-wrapper {
    width: 100%;
  }
  .chrity-search-wrapper ul {
    justify-content: flex-end;
  }
  .main-menu-wrapper li.has-submenu:before,
  .main-menu-wrapper li.has-submenu:after {
    background: var(--charity-primary-color);
  }
  .chrity-search-btn {
    text-align: center;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0;
  }
  .chrity-banner-text h1 {
    font-size: 42px;
    line-height: 1.2;
  }
  .chrity-list-item li {
    width: 49%;
  }
  .chrity-partner-section {
    flex-wrap: wrap;
  }
  .chrity-testimonial-wrapper {
    padding: 70px 0 80px;
  }
  .chrity-project-inner {
    margin-bottom: 18px;
  }
  .chrity-heading-wrapper h2 {
    font-size: 30px;
  }
  .chrity-tabs-nav li a {
    font-size: 16px;
  }
  .chrity-tabs-nav {
    margin-bottom: 20px;
  }
  .chrity-tabs-nav li {
    height: 60px;
  }
  .chrity-search-field input {
    padding: 0 40px 0 20px;
  }
  .chrity-img-text-container img,
  .chrity-img-text-container p {
    width: 100%;
  }
  .chrity-img-text-container img {
    margin: 15px 0;
  }
  .chrity-project-wrapper.chrity-project-page-wrapper {
    padding: 80px 0 44px;
  }
  .chrity-blog-section {
    margin-bottom: 44px;
  }
  .chrity-contact-info {
    width: 100%;
  }
  .chrity-contact-wrapper .col-lg-4.d-flex {
    padding: 0 0 15px 0;
  }
  .chrity-contact-info {
    padding: 44px 15px 0 15px;
  }
  .chrity-contact-form {
    padding: 44px 0 41px 0;
  }
  .header-info ul li:not(:first-of-type) {
    margin-left: 10px;
    padding-left: 10px;
  }
  .chrity-copyright-menu ul {
    justify-content: center;
    margin: 10px 0 0;
  }
  .chrity-copyright-wrapper {
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .chrity-about-wrapper .row {
    align-items: center;
  }

  .chrity-category-field ul li a,
  .chrity-archives-field ul li a,
  .chrity-blog-title-wrap {
    width: 100%;
  }
  .chrity-latestPost-field ul li .chrity-blog-thumb {
    width: 100%;
    margin: 0 0 12px;
  }
  .chrity-insta-field ul li {
    margin: 0 0 5px;
  }
  .chrity-footer-address h5 {
    font-size: 25px;
  }
  .chrity-about-wrapper {
    padding: 76px 0 44px;
  }
  .chrity-counter-wrapper {
    padding: 91px 0 45px;
  }

  .chrity-testimonial-wrapper {
    padding: 74px 0 80px;
  }
  .chrity-project-wrapper {
    padding: 74px 0 44px;
  }
  .chrity-team-wrapper {
    padding: 74px 0 44px;
  }
}

@media (max-width: 767.98px) {
  .menu-btn {
    height: 40px;
    padding: 16px 0 0;
  }
  .search-barContainer {
    width: 80%;
  }
  .chrity-project-inner img {
    width: 100%;
  }
  .chrity-search-wrapper li:last-of-type {
    padding: 0 15px;
  }
  .chrity-search-wrapper .chrity-btn {
    width: auto;
    padding: 0 20px;
  }
  .menu-btn {
    margin: 0;
  }
  .chrity-banner-text h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .chrity-banner-text h4 {
    font-size: 16px;
  }

  .chrity-donation-wrapper > div > .row {
    flex-direction: column-reverse;
  }
  .chrity-search-bar input {
    padding: 6px 100px 6px 15px;
  }
  .chrity-insta-field ul {
    justify-content: flex-start;
  }
  .chrity-insta-field ul li img {
    width: 100%;
  }
  .chrity-insta-field ul li {
    width: 20%;
    margin: 0 10px 10px 0;
  }
  .chrity-blog-heading {
    font-size: 30px;
    line-height: 40px;
  }
  .chrity-banner-wrapper .row {
    align-items: flex-end;
  }
  .chrity-banner-text {
    padding: 10px 0px 34px;
  }
  .menu-btn {
    padding: 13px 0 0;
  }
  .chrity-about-text {
    margin-bottom: 80px;
  }
  .chrity-about-wrapper {
    padding: 100px 0 44px;
  }
  .chrity-counter-wrapper {
    padding: 91px 0 39px;
  }
  .chrity-testimonial-wrapper {
    padding: 74px 0 80px;
  }
  .chrity-project-wrapper {
    padding: 74px 0 44px;
  }
  .chrity-donation-wrapper {
    padding: 76px 0 0;
  }
  .chrity-donation-form {
    margin-bottom: 24px;
  }
  .chrity-team-wrapper {
    padding: 74px 0 44px;
  }
  .chrity-whyUs-wrapper {
    padding: 74px 0 70px;
  }
  .chrity-blog-section {
    margin-bottom: 44px;
  }
  .blog-pagination-wrapper ul li a {
    margin-right: 5px;
  }
  .chrity-whyUs-wrapper .chrity-heading-wrapper {
    margin-bottom: 38px;
  }
  .chrity-footer-wrapper {
    padding: 80px 0 48px;
  }
  .header-info,
  .charity-social {
    width: 100%;
  }
  .header-info ul,
  .charity-social ul {
    justify-content: center;
  }
  .chrity-about-wrapper.about-page {
    padding: 78px 0 15px;
  }

  .chrity-newsletter-wrapper {
    padding: 50px 50px;
    text-align: center;
  }
  .chrity-newsletter-img {
    text-align: center;
  }
  .chrity-volunteer-content {
    margin: 0;
    padding: 20px 20px;
  }
  .chrity-volunteer-img {
    width: 100%;
    margin: 0;
  }
  .chrity-volunter-msg {
    font-size: 14px;
    width: 100%;
    padding: 20px 20px;
  }
}
@media (max-width: 575.98px) {
  .main-menu-wrapper {
    left: -200px;
    width: 200px;
  }
  .menu-btn {
    padding: 10px 0 0;
  }
  .response {
    position: unset;
  }

  .chrity-header-wrapper {
    padding: 15px 0;
  }
  .chrity-logo {
    text-align: center;
  }
  .chrity-search-bar-container {
    width: 80%;
  }
  .chrity-banner-text h4 {
    margin-bottom: 10px;
  }
  .chrity-banner-text h4 {
    font-size: 12px;
  }
  .chrity-btn {
    padding: 0 30px;
    width: auto;
    height: 40px;
    line-height: 40px;
  }
  .chrity-search-wrapper .chrity-btn {
    margin: 0;
  }
  .chrity-search-wrapper li:last-of-type {
    padding: 0;
  }
  .chrity-list-item li {
    width: 100%;
  }
  .chrity-client-img img {
    width: 160px;
    height: 160px;
  }
  .chrity-about-text {
    padding-top: 15px;
  }
  .chrity-project-wrapper > div > .row > .row {
    margin: 0;
  }
  .chrity-donation-wrapper .padder0,
  .chrity-team-wrapper .padder0,
  .chrity-footer-wrapper .padder-left,
  .chrity-footer-wrapper .padder-right,
  .chrity-footer-wrapper .padder0 {
    padding: 0 15px;
  }
  .chrity-tabs-nav li {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ececec;
  }
  .chrity-tabs-nav li:last-child {
    border: none;
  }
  .chrity-blog-info ul li:first-child {
    width: 100%;
    margin: 0 0 20px;
  }
  .chrity-blog-info ul li {
    margin: 0 30px 0 0;
  }
  .chrity-blockquote-quote,
  .chrity-author-content,
  .chrity-comment-detail {
    width: 100%;
    margin: 12px 0 0 0;
  }
  .chrity-banner-text {
    text-align: center;
  }
  .chrity-whyUs-wrapper .chrity-heading-wrapper {
    margin-bottom: 23px;
  }
  .blog-pagination-wrapper ul li a,
  .blog-pagination-wrapper ul li.dot:hover a {
    width: 30px;
    height: 30px;
    line-height: 32px;
    margin-right: 2px;
  }
  .blog-pagination-wrapper ul li.blog-page-prev a,
  .blog-pagination-wrapper ul li.blog-page-next a {
    width: 30px;
    height: 30px;
  }
  .blog-pagination-wrapper ul li {
    font-size: 14px;
  }
  .chrity-search-btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .menu-btn {
    height: 30px;
    width: 30px;
  }
  .menu-btn {
    padding: 7px 0 0;
  }
  .chrity-search-wrapper .chrity-btn {
    min-width: auto;
    padding: 4px 10px;
    min-height: auto;
    height: auto;
    line-height: 1.5;
  }
  /**/
  .chrity-newsletter-field .chrity-form-field {
    width: 100%;
    border-radius: 10px;
    margin: 0 0 10px;
  }
  .chrity-newsletter-field .chrity-btn {
    border: 2px solid;
    border-radius: 10px;
    width: 100%;
  }
  .chrity-event-info {
    width: 100%;
    padding: 10px 0 0;
  }
}

/* Dark Mode CSS */

body.dark-mode {
  --charity-body-bg: #0d0d0e;
  --charity-secondary-color: #0d0d0e;
  --charity-alternate-color: #070708;
  --charity-banner-bg-color: #000000;
  --charity-box-bg: #121212;
  --charity-title-color: #ffffff;
  --charity-font-color: #b8b8b8;
  --charity-white-color: #ffffff;
  --charity-primary-color: #f69110;
  --charity-blockquote-color: #ffffff;
  --charity-blockquote-bg: #f69110;
  --charity-breadcrumbs-color: #f4f4f4;
  --charity-breadcrumbs-bg: #070820;
  --charity-input-color: #b8b8b8;
  --charity-placeholder: #e9e9e9;
  --charity-input-border: #0c0c0c;
  --charity-input-bg: #161515;
  --charity-border-color: #363636;
  --charity-link-color: #ffffff;
  --charity-footer-bg: #050608;
  --charity-footer-color: #ffffff;
  --charity-copyright-bg: #000000;
  --charity-copyright-color: #ffffff;
  --charity-scroll-track: #e1e1e1;
  --charity-scroll-thumb: #f69110;
  --charity-error-color: #cb1f1f;
  --charity-social-bg: transparent;
  --charity-header-bg: #0d0d0e;
  --charity-black-color: #222222;
}
.dark-mode .charity-social ul > li > a {
  color: var(--charity-white-color);
}
.chrity-blog-img:after,
.chrity-blog-img:before,
.chrity-blog-thumb:after,
.chrity-blog-thumb:before,
.chrity-effect:after,
.chrity-effect:before {
  background: var(--charity-primary-color);
}
body.dark-mode .chrity-team-section,
body.dark-mode .charity-summury,
body.dark-mode .chrity-partner-section,
body.dark-mode .chrity-causes-section {
  background: var(--charity-box-bg);
}
body.dark-mode
  .chrity-features-wrapper
  .row
  .col-lg-3:nth-child(1)
  .features-item,
body.dark-mode
  .chrity-features-wrapper
  .row
  .col-lg-3:nth-child(2)
  .features-item,
body.dark-mode
  .chrity-features-wrapper
  .row
  .col-lg-3:nth-child(3)
  .features-item,
body.dark-mode
  .chrity-features-wrapper
  .row
  .col-lg-3:nth-child(4)
  .features-item {
  background: #2c2c2c;
  color: var(--charity-white-color);
}
body.dark-mode .chrity-blurbg-wrapper:before,
body.dark-mode .chrity-blurbg-wrapper:after {
  opacity: 20%;
}
body.dark-mode .chrity-page-title-wrapper {
  background: #000000;
}
body.dark-mode .chrity-logo img {
  filter: invert(1);
}
body.dark-mode .charity-filter-menu .filter {
  background: #1c1c1c;
}
body.dark-mode .charity-filter-menu .filter.active {
  background: var(--charity-primary-color);
}
body.dark-mode .chrity-contact-wrapper > div > .row {
  background: var(--charity-box-bg);
}
body.dark-mode .accordion-item .accordion-header .accordion-button,
body.dark-mode .accordion-item {
  background: #222222;
  color: var(--charity-white-color);
}
body.dark-mode
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  color: var(--charity-primary-color);
}
body.dark-mode .chrity-newsletter-field .chrity-btn,
body.dark-mode .chrity-newsletter-field .chrity-btn:before,
body.dark-mode .chrity-newsletter-field .chrity-btn:after {
  background: #000000;
}
body.dark-mode .chrity-newsletter-field .chrity-form-field {
  color: #000000;
}
@media (max-width: 991.98px) {
  .dark-mode .main-menu-wrapper {
    background: var(--charity-secondary-color);
  }
}

/* Animations CSS Start */

@keyframes leftTopMover {
  0% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px);
  }

  50% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px);
  }

  100% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px);
  }
}

@-webkit-keyframes moverUpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes moverUpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0px);
  }
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.8, 0.8);
  }
  50% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0.8, 0.8);
  }
}

@-webkit-keyframes particle-animation-1 {
  0% {
    -webkit-transform: translate3d(92vw, 3vh, 308px) rotate(30deg);
    transform: translate3d(18vw, 66vh, 262px) rotate(26deg);
  }
  100% {
    -webkit-transform: translate3d(20vw, 85vh, 261px) rotate(40deg);
    transform: translate3d(14vw, 52vh, 191px) rotate(80deg);
  }
}
@keyframes particle-animation-1 {
  0% {
    -webkit-transform: translate3d(49vw, 60vh, 83px) rotate(68deg);
    transform: translate3d(17vw, 56vh, 319px) rotate(24deg);
  }
  100% {
    -webkit-transform: translate3d(10vw, 26vh, 262px) rotate(101deg);
    transform: translate3d(16vw, 70vh, 292px) rotate(19deg);
  }
}
@keyframes scroll {
  0% {
    top: 5px;
  }
  50% {
    top: 23px;
  }
  100% {
    top: 5px;
  }
}

@-webkit-keyframes circle {
  0% {
    top: 8%;
    left: 9%;
  }
  25% {
    top: 8%;
    left: 94%;
  }
  50% {
    top: 94%;
    left: 94%;
  }
  75% {
    top: 94%;
    left: 9%;
  }
  100% {
    top: 9%;
    left: 9%;
  }
}

@keyframes circle {
  0% {
    top: 9%;
    left: 9%;
  }
  25% {
    top: 9%;
    left: 94%;
  }
  50% {
    top: 94%;
    left: 94%;
  }
  75% {
    top: 94%;
    left: 9%;
  }
  100% {
    top: 9%;
    left: 9%;
  }
}

@-webkit-keyframes plus {
  0% {
    -webkit-transform: translateX(0px) rotate(360deg);
    transform: translateX(0px) rotate(360deg);
  }
  50% {
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
  }
  100% {
    -webkit-transform: translateX(0px) rotate(360deg);
    transform: translateX(0px) rotate(360deg);
  }
}

@keyframes plus {
  0% {
    -webkit-transform: translateX(0px) rotate(360deg);
    transform: translateX(0px) rotate(360deg);
  }
  50% {
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
  }
  100% {
    -webkit-transform: translateX(0px) rotate(360deg);
    transform: translateX(0px) rotate(360deg);
  }
}

@-webkit-keyframes square {
  0% {
    -webkit-transform: translateX(0px) rotate(360deg);
    transform: translateX(0px) rotate(360deg);
  }
  50% {
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
  }
  100% {
    -webkit-transform: translateX(0px) rotate(360deg);
    transform: translateX(0px) rotate(360deg);
  }
}

@keyframes square {
  0% {
    -webkit-transform: translateX(0px) rotate(360deg);
    transform: translateX(0px) rotate(360deg);
  }
  50% {
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
  }
  100% {
    -webkit-transform: translateX(0px) rotate(360deg);
    transform: translateX(0px) rotate(360deg);
  }
}

@-webkit-keyframes triangle {
  0% {
    -webkit-transform: translateX(0px) translateY(50px) rotate(180deg);
    transform: translateX(0px) translateY(50px) rotate(180deg);
  }
  50% {
    -webkit-transform: translateX(40px) translateY(-40px);
    transform: translateX(40px) translateY(-40px);
  }
  100% {
    -webkit-transform: translateX(0px) translateY(50px) rotate(180deg);
    transform: translateX(0px) translateY(50px) rotate(180deg);
  }
}

@keyframes triangle {
  0% {
    -webkit-transform: translateX(0px) translateY(50px) rotate(180deg);
    transform: translateX(0px) translateY(50px) rotate(180deg);
  }
  50% {
    -webkit-transform: translateX(40px) translateY(-40px);
    transform: translateX(40px) translateY(-40px);
  }
  100% {
    -webkit-transform: translateX(0px) translateY(50px) rotate(180deg);
    transform: translateX(0px) translateY(50px) rotate(180deg);
  }
}
@keyframes pulsees {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.06);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.06);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.06);
  }
  40% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  80% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes pulsees {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.06);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.06);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.06);
  }
  40% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  80% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-moz-keyframes pulsees {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.06);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.06);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.06);
  }
  40% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  80% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

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