@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
body {
  color: #1D1D1D;
  font-family: "Poppins", sans-serif;
  font-weight: 300 900;
  font-style: normal;
}

:root {
  --blue: #2E7BC2;
  --blue-900: #2E7BC2;
  --dark: #1D1D1D;
  --green: #98327D;
  --purple: #98327D;
  --dark-500: #4d535f;
}

.txt-blue {
  color: var(--blue);
}

.txt-purple{
  color: var(--purple);
}

.bg-blue {
  background-color: var(--blue);
}

html {
  scroll-padding-top: 110px !important;
}

/*********************************/

/*========== Header CSS =============*/
header{
  background-color: var(--blue);
}

.logo {
  width: 140px;
  padding: 10px 0;
}

.hamburger {
  float: right;
}

.hamburger .line {
  width: 35px;
  height: 4px;
  background-color: #000;
  transition: all 0.3s ease;
  margin-bottom: 5px;
  border-radius: 2px;
}

a[aria-expanded="true"] .hamburger .line:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

a[aria-expanded="true"] .hamburger .line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

a[aria-expanded="true"] .hamburger .line:nth-child(2) {
  opacity: 0;
}


.navbar {
  padding: 10px 0;
}

.sticky-header {
  position: sticky;
  top: -100px;
  transition: top 0.3s ease-in-out;
  z-index: 1021;
}

.sticky-header.sticky {
  top: 0;
  /* background-color: rgb(240 240 255 / 70%) !important;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px); */
}

.sticky-header.animate {
  transition: top 0.5s ease-in-out;
}

.cm-link {
  color: var(--dark);
  font-size: 16px;
  margin: 16px;
  position: relative;
  font-weight: 600;
}

.cm-link:after {
  bottom: -4px;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  background: var(--blue);
  opacity: 0.6;
  transition: width 0.3s ease 0s, opacity 0.3s ease 0s;
  width: 0;
}

.cm-link:hover,
.cm-link.active {
  color: var(--blue);
}

.cm-link:hover:after,
.cm-link.active:after {
  width: 100%;
  opacity: 0.9;
}

a {
  text-decoration: none;
}

/*========== Header CSS End =============*/

.btn-blue {
  display: inline-block;
  padding: 10px 16px;
  background-color: var(--green);
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  border: 0;
  transition: 0.5s;
}

.btn-blue:hover {
  background-color: var(--blue-900);
  color: #fff;
}

/*======== Footer CSS =========*/
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--blue);
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  z-index: 2;
}

.scroll-to-top:hover {
  background-color: var(--dark);
}

.scroll-to-top.show {
  opacity: 1;
}

.footer-title {
  font-size: 24px;
  font-weight: 600;
}

.footer-link {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link a {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  display: inline-block;
  color: var(--dark);
}

.footer-link a:hover {
  color: var(--blue);
}


.form-control:focus {
  box-shadow: none;
  outline: none;
}

/***** footer end *****/
.section-banner {
  background-color: #f1f8ff;
}

.banner-title {
  font-size: 40px;
  font-weight: 600;
}

.home-banner-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 500px;
}

.section-mobile-banner {
  background-image: url('../images/home/shape.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-title {
  font-size: 34px;
  font-weight: 500;
  line-height: 40px;
}

.cm-divider {
  width: 10%;
  display: inline-block;
  position: relative;
  top: 7px;
  margin-right: 20px;
  border-width: 3px;
  opacity: 1;
}

.cs-box {
  display: flex;
  justify-content: center;
  align-items: end;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 450px;
  border-radius: 12px;
  position: relative;
  transition: 0.5s;
}

.cs-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000022;
  border-radius: 12px;
  transition: 0.7s;
}

.cs-box:hover {
  transform: translateY(-10px);
}

.cs-box:hover::after {
  background-color: #0000008a;
}

.cs-content {
  transition: 1.5s;
}

.cs-box:hover .cs-content {
  transform: translateY(-10px);
}

.cs-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.cs-desc {
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.campaignSwiper .swiper-button-next,
.campaignSwiper .swiper-button-prev {
  color: #fff;
}

.sub-title {
  font-size: 22px;
  font-weight: 600;
}

.sf-box {
  border: 3px solid #E83D3D59;
  box-shadow: 0px 0px 21px 7px rgba(243.9234375, 207.27692377505093, 207.27692377505093, 0.5);
  transition: 0.5s;
  height: 100%;
  border-radius: 8px;
  padding: 20px;
}

.sf-box:hover {
  background-color: #E51D1DC9;
}

.sf-box p {
  margin: 0;
}

.sf-box:hover .sub-title,
.sf-box:hover p {
  color: #fff;
}

.sf-box:hover .sf-icon {
  fill: var(--blue);
}

.sf-icon-box {
  background-color: #fff;
  margin: auto;
  margin-top: -65px;
  border-radius: 60px;
  padding: 10px;
  box-shadow: 0px 0px 26px 0px rgba(180.16015624999997, 178.15905668839162, 178.15905668839162, 0.5);
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
}

.sf-icon {
  width: 46px;
}

.sf-box .sub-title {
  color: var(--blue);
}

.cta-row {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  border-radius: 20px;
  position: relative;
}

.cta-row:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000080;
  border-radius: 20px;
}

/****** Gallery Css ********/
.gallery-item {
  display: block;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.gallery-item:hover img {
  transform: scale(1.05);
  /* Adjust the scale factor for the zoom level */
}

.gallery-item img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 20px;
}

.gallery-item:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}

.gallery-item::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  transition: 0.5s;
}

.gallery-item:hover::after {
  background-color: #00000054;
}

.lightbox-modal .modal-content {
  background-color: rgb(0 0 0 / 0.75);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: #fff !important;
}

.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
  height: 700px;
  object-fit: contain;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: rgb(0 0 0 / 0.75);
  color: #fff !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

.ts-box {
  background-image: url('../images/home/shap-1.webp');
  background-size: 150px;
  background-position: top left;
  background-repeat: no-repeat;
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px #0000004f;
  height: 100%;
}

.client-img {
  height: 90px;
  width: 90px;
  object-fit: cover;
  border-radius: 60px;
  display: inline-block;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
}

.swiper-pagination-bullet-active {
  width: 36px;
  border-radius: 16px;
  background-color: var(--blue);
}

.testimonialSwiper .swiper-slide {
  height: initial;
}

/******* campaign page ********/
.campaign-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}

.campaign-banner h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 72px;
  color: #fff;
}

.form-select:focus {
  box-shadow: none;
  outline: none;
}

.location-dropdown select {
  background-color: var(--blue);
  color: #fff;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.location-dropdown select option {
  color: #fff;
}

.location-dropdown label {
  color: #fff !important;
}

.location-dropdown label::after {
  background-color: transparent !important;
}

.campaign-list {
  overflow: hidden;
  border-radius: 12px;
}

.campaign-list .cs-box {
  height: 390px;
}

.campaign-list .cs-box::after {
  background-color: #00000015;
}

.campaign-list .cs-box:hover {
  transform: scale(1.04);
}

.campaign-list .cs-box:hover .cs-title {
  color: var(--blue);
}

/****** load more button *******/
.js-load-more {
  display: inline-block;
  text-align: center;
  transition: background-color 0.25sease-out, color 0.25sease-out;
  vertical-align: middle;
  border: 1px solid #000;
  padding: 8px 12px;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
}

.js-load-more:hover,
.js-load-more:focus,
.js-load-more.load-more {
  background-color: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.load-more span {
  animation-name: loading;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  background-color: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

@keyframes loading {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.load-more span:nth-child(2) {
  animation-delay: 0.2s;
}

.load-more span:nth-child(3) {
  animation-delay: 0.4s;
}

.social-link a {
  display: inline-block;
  height: 36px;
  width: 36px;
  line-height: 38px;
  text-align: center;
  border-radius: 60px;
  color: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
  transition: 0.5s;
}

.social-link a:hover {
  opacity: 0.7;
}

.social-link a i {
  color: #fff;
  font-size: 18px;
}

.social-link .fb-link {
  background-color: #3b5998;
}

.social-link .insta-link {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.campaign-video iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
}

.cm-top-110 {
  top: 120px
}

.cps-amount-radio {
  position: relative;
  margin-bottom: 10px;
}

.cps-amount-radio label {
  display: block;
  border-radius: 8px;
  padding: 5px 20px;
  color: #000;
  font-weight: bold;
  border: 1px solid #000;
  cursor: pointer;
}

.cps-amount-radio .cps-radio {
  position: absolute;
  right: 15px;
  top: 12px;
}

.cps-active {
  background-color: #000;
  color: #fff !important;
}

.cps-active i {
  color: #fff;
}

.custom_amt_input .input-group-text,
.custom_amt_input .form-control {
  border-color: #000;
}

.cds_custom_amt span {
  position: absolute;
  top: 9px;
  left: 12px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.cds_custom_amt .form-control {
  padding-left: 216px;
}

.btn-outline-dark:hover i {
  color: #fff;
}

.donor-box {
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #E71414;
  box-shadow: -2px 3px 6px 1px #e7141496;
  text-align: center;
}

.donor-title {
  color: var(--green);
}

.border-blue {
  border-color: var(--blue);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--blue);
  color: #fff;
}

.accordion-button {
  background-color: #e0e0e0;
}

.accordion-item {
  margin-bottom: 10px;
}

.csr-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000007a;
}

.csr-box {
  margin-top: -50px;
  position: relative;
}

.standout-card {
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--blue);
  box-shadow: 0 0 10px #c41b1b7b;
  text-align: center;
  height: 100%;
}

.standout-card img {
  width: 62px;
}

.track-data-box {
  position: relative;
  padding-left: 40px;
}

.track-data-box::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  position: absolute;
  left: 0;
  top: 10px;
}

.track-data-box.one::before {
  background-color: rgb(253, 182, 25);
}

.track-data-box.two::before {
  background-color: rgb(194, 37, 59);
}

.track-data-box.three::before {
  background-color: rgb(25, 80, 85);
}

.track-data-box.four::before {
  background-color: rgb(250, 230, 213);
}

.track-data-box.five::before {
  background-color: rgb(14, 16, 38);
}

.google-map-box {
  width: 100%;
  height: 400px;
  border-radius: 12px;
}

.contact-form {
  padding: 20px;
  border-radius: 20px;
  border: 2px solid var(--blue);
  box-shadow: 0 0 10px #c41b1b7b;
}

.contact-form .form-control {
  border: 0;
  border-bottom: 1px solid #000;
  appearance: auto;
}

.about-card {
  position: relative;
  padding-bottom: 10px;

}

.about-card img {
  width: 140px;
}

.flip-btn {
  position: absolute;
  right: 16px;
  bottom: 25px;
  border: 0;
  background-color: #fbe6e6;
  padding: 4px 6px;
  z-index: 9;
}

.flip-btn i {
  color: var(--blue);
}

.flip-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
}

.flip-box {
  display: none;
}

.rotate-icon {
  display: block;
  transform: rotate(135deg);
  /* Rotate plus icon to 'X' */
  transition: transform 0.3s ease-in-out;
  left: -1px;
  position: relative;
  top: -1px;
}

.flip-btn img {
  width: 20px;
  transition: transform 0.3s ease-in-out;
}

.flip-btn img.default {
  display: block;
  transform: rotate(0deg);
  /* Ensure smooth transition back to original */
}

.team-box {
  height: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.team-box .team-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.team-content {
  border-top: 6px solid #E71414;
  padding: 10px;
  text-align: center;
}

.stand-out-row .so-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-1 {
  background-color: #f47921;
}

.bg-2 {
  background-color: #b92930;
}

.bg-3 {
  background-color: #fcb609;
}

.bg-4 {
  background-color: #245348;
}

.bg-5 {
  background-color: #eee3d5;
}

.bg-6 {
  background-color: #111320;
}

.counter {
  padding: 16px;
  text-align: center;
  border: 1px solid var(--blue);
  box-shadow: 0 0 10px #c41b1b7b;
  border-radius: 20px;
  height: 100%;
}

.counter h2,
.counter h2 span {
  color: var(--dark-500);
}

.caseStorySwiper .story-img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 100%;
}

.caseStorySwiper .swiper-button-next, .caseStorySwiper .swiper-button-prev{
  color: var(--blue);
}

.caseStorySwiper{
  border: 1px solid #00000047;
  border-radius: 12px;
}

.form-left-div img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
}

.form-check-input:checked {
  background-color: var(--blue);
  border-color: var(--blue);
}
.form-check-input:focus{
  box-shadow: none;
  outline: 0;
}


/********* Pofile My donain tab start **********/
.f-12{
  font-size: 12px;
}
.f-14{
  font-size: 14px;
}
.f-16{
  font-size: 16px;
}
.profile .nav-link {
  font-size: 18px;
  font-weight: 500;
  padding: 7px 10px;
  border: 0;
  color: #000;
}

.profile .nav-link:hover {
  color: var(--blue);
}

.profile .nav-link.active {
  color: var(--blue);
  border-bottom: 3px solid var(--blue);
}

.profile form label {
  font-size: 14px;
  font-weight: 500;
}

.profile_img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.pedit_icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.tb-container input {
  display: none;
}

.tb-container label {
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.table-responsive {
  overflow-x: auto;
  white-space: nowrap;
}

.mdt_img {
  height: 52px;
  width: 52px;
  border-radius: 15px;
}

.my_donation_tbl {
  width: 100%;
  border: 0;
}

.my_donation_tbl td,
.my_donation_tbl th {
  border: 0;
}

.mdt_cancel_btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-500);
  text-decoration: underline;
}

.mdt_cancel_btn:hover {
  color: var(--blue);
}

.profile .cm-btn{
  font-size: 20px;
}

.thank-you-section .tys-img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.thank-you-section h3{
  font-family: "Space Mono", monospace;
}
.thank-you-section p, .thank-you-section label {
  font-family: "Space Mono", monospace;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

/********* Pofile My donain tab end **********/

@media only screen and (max-width: 991px) {
  .cm-link {
    display: block;
    text-align: left;
    margin: 20px 0;
  }

  #offcanvasNavigation .btn-close {
    position: relative;
    top: -36px;
  }

  .home-banner-img {
    height: 200px;
  }

  .cm-divider {
    display: none;
  }

  .campaign-details-banner.section-banner {
    height: 100%;
  }

  .campaign-details-banner .home-banner-img {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .caseStorySwiper .story-img {
    width: 300px;
    height: 300px;
  }
  .my_donation_tbl{
    width: 720px;
  }
}

@media only screen and (max-width: 767px) {
  .cta-row {
    margin: 0;
  }

  .campaign-banner h1 {
    font-size: 38px;
    line-height: 50px;
  }

  .flip-box h4 {
    font-size: 22px;
  }

  .flip-box p {
    font-size: 13px;
  }

  .counter {
    padding: 10px;
  }

  .caseStorySwiper .story-content{
    padding: 0 20px;
  }

  .thank-you-section .tys-img {
    height: 400px;
  }
  
  .mob_btn{
    position: fixed;
    bottom: 0px;
    left: 0;
    right: 0;
    border-radius: 0;
  }

  footer.home_footer{
    margin-bottom: 54px;
  }

  .scroll-to-top{
    bottom: 70px;
  }

}