@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Freehand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Schoolbell&display=swap');

*,
body {
  color: #161625;
  font-family: 'Satoshi-Variable', 'Satoshi-Light', 'Satoshi-Regular', 'Satoshi-Medium', 'Satoshi-Bold', 'Satoshi-Black', sans-serif;
  font-weight: 300 900;
  font-style: normal;
}

:root {
  --pink: #201ce5;
  --light: #FFF4F9;
  --light-500: rgb(255 255 255 / 40%);
  --light-400: #F5F5F5;
  --dark-500: #2E2E2D;
  --dark: #17181C;
  --muted: #707070;
  --gray: #3D3D3D;
  --red: #ff0000;
  --coffee: rgba(122, 18, 8, 1);
}

.pink {
  color: var(--pink);
}
.txt-blue {
  color: var(--pink) !important;
}
.text-coffee{
  color: var(--coffee) !important;
}
.opacity-80{
  opacity: 0.8;
}

.bg-red {
  background-color: var(--red);
}

.light {
  color: var(--light);
}

.light-500 {
  color: var(--light-500);
}

.dark-500 {
  color: var(--dark-500) !important;
}

.dark {
  color: var(--dark);
}

.gray {
  color: var(--gray);
}

.bg-dark {
  background-color: var(--dark);
}

.bg-pink {
  background-color: var(--pink);
}

.bg-pink-light {
  background-color: var(--light);
}

.bg-light-400 {
  background-color: var(--light-400);
}

.muted {
  color: var(--muted);
}

.f-12 {
  font-size: 12px;
  line-height: 12px;
}

.f-14 {
  font-size: 14px;
}

.f-16 {
  font-size: 16px;
}

.f-18 {
  font-size: 18px;
  line-height: 30px;
}


a {
  color: var(--pink);
  text-decoration: none;
}

html {
  scroll-padding-top: 110px !important;
}

.object-cover {
  object-fit: cover;
}

/*********************************/
.cm_group_btn {
  display: flex;
  padding: 0;
  border: 0;
  background: transparent;
  width: 100%;
  align-items: center;
}

.cm_group_btn a {
  color: var(--dark-500);
}


.cm-btn-outline {
  padding: 10px 18px 12px;
  border-radius: 60px;
  border: 1px solid var(--dark-500);
  color: var(--dark-500);
  font-size: 18px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.02em;
  transition: all 0.5s;
  display: inline-flex;
  align-items: center;
}

.cm_group_btn:hover .cm-btn-outline a {
  color: #fff;
}

.btn_outline{
  padding: 10px 18px 12px;
  border-radius: 60px;
  border: 1px solid var(--pink);
  color: var(--pink);
  font-size: 18px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.02em;
  transition: all 0.5s;
  display: inline-flex;
  align-items: center;
}

.cm-btn-outline:hover,
.cm_group_btn:hover .cm-btn-outline, .btn_outline:hover {
  background-color: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.cm-btn-outline .btnIcon {
  width: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: width 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  overflow: hidden;
  top: -2px;
  position: relative;
}

.cm-btn-outline:hover .btnIcon {
  margin-left: 6px;
  width: 24px;
  opacity: 1;
  transform: translateX(0);
}

.btnIconFill {
  display: none;
}

.btnIconFill,
.btnIconOutline {
  margin-right: 6px;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.cm-btn-outline:hover .btnIconOutline,
.cm_group_btn:hover .btnIconOutline {
  display: none;
}

.cm-btn-outline:hover .btnIconFill,
.cm_group_btn:hover .btnIconFill {
  display: inline-block;
}

.cstmBtn {
  width: 50%;
}

.cm-btn-more {
  transition: all 0.5s;
}

.cm-btn-outline:hover+.cm-btn-more,
.cm-btn-more:hover {
  font-weight: 700;
}

.btnArrow {
  width: 50px;
  margin-left: 16px;
  transform: rotate(0deg);
  transition: 0.3s;
}

.cm-btn-outline:hover~.btnArrow,
.btnArrow:hover {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}


/*****************************/

.cm-btn-outline:hover .cbo-icon {
  color: #fff !important;
}

.cm-btn {
  padding: 12px 24px 12px 24px;
  border-radius: 60px;
  background-color: var(--pink);
  border: 1px solid var(--pink);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.02em;
  transition: 0.5s;
  text-align: center;
}

.cm-btn:hover {
  background-color: #1e1d1d;
  color: #fff;
}

.ff-bell {
  font-family: "Schoolbell", cursive;
}

/*========== Header CSS =============*/
.logo {
  width: 320px;
}

.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;
}


.top-13 {
  top: 13px;
}

#offcanvasNavigation {
  height: 36vh;
}

.nav-link {
  color: var(--dark-500);
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
}

.nav-link:hover {
  color: var(--pink);
}

.navbar {
  padding: 20px 0;
}

.sticky-header {
  position: sticky;
  top: -100px;
  transition: top 0.3s ease-in-out;
  z-index: 1021;
}

.sticky-header.sticky,
.changed {
  top: 0;
  background-color: rgb(240 240 255 / 70%) !important;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}

.changed {
  margin-bottom: 20px;
}

.sticky-header.animate {
  transition: top 0.5s ease-in-out;
}



/*========== Header CSS End =============*/



/*======== Footer CSS =========*/
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--pink);
  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(--gray);
}

.scroll-to-top.show {
  opacity: 1;
}

.footer-form label {
  font-family: "Inter", sans-serif;
  position: absolute;
  top: 8px;
  left: 10px;
  color: #000;
  font-size: 10px;
  line-height: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-form .form-control {
  font-family: "Inter", sans-serif;
  border: 1px solid rgb(0 0 0 / 60%);
  background-color: transparent;
  color: #000;
  padding-top: 24px;
}

.form-control:focus {
  box-shadow: none;
}

.footer-title {
  font-family: "Inter", sans-serif;
  color: var(--pink);
  font-size: 16px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-link a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: var(--dark-500);
}

.footer-link a:hover {
  color: var(--pink);
}

.newsletter-form input {
  border-right: 0;
}

.newsletter-form input:focus {
  border-color: #dee2e6;
}

.newsletter-form .btn {
  border: 1px solid #dee2e6;
  border-left: 0;
}

.newsletter-form .btn:active {
  border-color: #dee2e6;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.social-link a {
  border-radius: 50px;
  border: 1px solid #00000020;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  margin-right: 4px;
  transition: 0.5s;
}

.social-link a:hover {
  background-color: var(--pink);
}

.social-link a:hover .sl-icon {
  color: #fff;
}

.copyright-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgb(46 46 45);
}

/*======== Footer CSS End =========*/

/****** Home start ******/
.banner_video iframe {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}


.banner_button {
  position: absolute;
  width: 46%;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.section_title {
  font-size: 34px;
  font-weight: 700;
  line-height: 42px;
  color: #000;
  margin-bottom: 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

/* .campaignSwiper {
  overflow: visible;
} */

.campaign_slider_section {
  overflow: hidden;
}

.campaignBox .campaign_img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  margin-bottom: 0;
}

.campaignBox .campaign_tag span {
  padding: 4px 12px 4px 12px;
  gap: 10px;
  border-radius: 20px;
  background-color: var(--light-400);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  margin-right: 6px;
  color: hwb(0 0% 100% / 0.50);
  display: inline-block;
  margin-top: 6px;
}

.campaignBox .campaign_title {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.campaignBox .campaign_price {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.campaignBox .campaign_price span {
  font-size: 14px;
  font-weight: 500;
  line-height: 12px;
  color: hwb(0 0% 100% / 0.50);
}

.cm-btn-outline:hover .cbo-img {
  filter: invert(1);
}

.pledgeSwiper {
  overflow: visible;
}

.pledge_swiper_section {
  overflow: hidden;
}

.pledgeSwiper .plg_slide_img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  object-position: left;
}

.pledgeSwiper .plg_content {
  position: absolute;
  bottom: 35px;
  top: unset;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: auto;
  text-align: center;
  width: 300px;
}

.pledgeSwiper .plg_content h6 {
  font-family: "Freehand", cursive;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  color: #FFC1C1;
}

.pledgeSwiper .plg_content h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
  color: #fff;
  margin-bottom: 16px;
}

.pledgeSwiper .plg_content a {
  display: block;
  transition: 0.5s;
}

.pledgeSwiper .plg_content a:hover {
  transform: translate3d(0px, -7px, 0px);
}

#cardLeftswipeIcon {
  position: absolute;
  top: 32%;
  left: -60px;
  z-index: 9;
}

#cardRightSwipeIcon {
  position: absolute;
  top: 32%;
  right: -60px;
  z-index: 9;
}

.num_box_1 {
  background-image: url('../images/home/ellipse.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 60px 0 30px;
}

.num_box_2 h3 {
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 10px;
}

.num_box_2 h3 span {
  font-size: 20px;
  font-weight: 700;
}

.num_box_2 p {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  color: var(--gray);
}

.trustee_box {
  box-shadow: 0px 2px 40px 0px #0000001f;
  border-radius: 32px;
  background-color: #fff;
}

.trustee_img {
  border-radius: 32px;
}

.trustee_box h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 0;
}

.trustee_box p {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--muted);
}

.trustee_box h5 {
  font-size: 18px;
  font-weight: 900;
  line-height: 18px;
}

.trustee_box h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
}

.adoptGirlSwiper {
  overflow: visible;
}

.section_adopt_girl {
  overflow: hidden;
}

.ags_title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: var(--dark-500);
}

.ags_title span {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
}

.ags_desc {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--dark-500);
}

.ags_box .ags_main_img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
}

.ags_box .ags_support_img {
  background-color: #fff;
  padding: 6px;
  border-bottom-right-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.adoptGirlSwiper .swiper-slide,
.ogs_box {
  box-shadow: 0px 8px 24px 0px #959DA533;
  padding: 24px;
  border-radius: 40px;
  transition: 0.5s;
}

.adoptGirlSwiper .swiper-slide:hover,
.ogs_box:hover {
  box-shadow: 0px 8px 24px 0px #959da58e;
}

.special_day_form .form-control {
  color: var(--gray);
  border: none;
  border-bottom: 1px solid var(--dark-500);
  border-radius: 0;
  background-color: transparent;
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
}

.success_stories_section h1 {
  font-family: "Sacramento", cursive;
  color: var(--dark);
}

.swiper-pagination-bullet-active {
  background: var(--pink);
}

.agg-box {
  display: inline-block;
  position: relative;
  padding: 8px;
}

.agg-img {
  border-radius: 100%;
  width: 160px;
  height: 160px;
  object-fit: cover;
  transition: 0.5s;
}

.agg-overlay {
  display: none;
  position: absolute;
  width: 160px;
  height: 160px;
  line-height: 210px;
  border-radius: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  transition: filter 0.5s ease;
  z-index: 1;
}

.agg-box:hover .agg-overlay {
  display: block;
}

.agg-box:hover .agg-img {
  filter: grayscale(100%);
}

.agg-overlay p {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2%;
}

.support_campaign_section .card {
  box-shadow: 0px 7px 29px 0px #64646F33;
  border-radius: 20px;
  padding: 40px;
  border: none;
}

.celebrate_video {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  background-color: #000;
  object-fit: cover;
}

.scs_select {
  width: 100%;
  -webkit-appearance: none;
  /* Remove default arrow */
  -moz-appearance: none;
  appearance: none;
  background: url('../images/home/cheveron.svg') no-repeat right 10px center;
  padding: 15px 40px 15px 20px;
  position: relative;
}

.csr_form .form-control {
  border: 0;
  border-bottom: 1px solid var(--dark);
  color: var(--dark);
  border-radius: 0;
  padding: 16px 0;
}

.section_subtitle {
  font-size: 32px;
  font-weight: 700;
}

.csr_tmal_img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
}

.csr_tmal_row {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.csr_tmal_title {
  font-size: 54px;
  font-weight: 900;
  color: #fff;
  width: 240%;
  position: relative;
}

.csr_quote_icon {
  position: absolute;
  top: 70px;
  right: 10px;
}

.csr_tmal_desc {
  font-size: 16px;
  padding-top: 44px;
}

.csr_taml_pagination {
  position: absolute;
  left: 50px;
  bottom: 30px;
  z-index: 1;
}

.csr_taml_pagination img {
  height: 34px;
  width: 34px;
}

.testimonialSwiper {
  height: 500px;
}

.footer_sticky_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(245 65 143 / 1);
  padding: 10px;
  z-index: 9;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

/****** Home end ******/

/***** campaign details start*****/
.cds_info_icon {
  position: absolute;
  top: -18px;
  right: -14px;
  width: 40px;
  z-index: 9;
}

.cds_product_info {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  background: #DFDFDF;
}

.cds_product_info p {
  display: flex;
  gap: 12px;
  color: #000;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  margin-bottom: 0;
}

.campaign_video iframe,
.campaign_video video {
  width: 100%;
  height: 415px;
  background-color: var(--dark);
  border-radius: 20px;
  object-fit: cover;
}

.cds_gallery .date {
  position: relative;
  top: 5px;
  font-weight: bold;
  font-size: 20px;
}

#leftCdsGalleryIcon img,
#rightCdsGalleryIcon img {
  width: 35px;
  box-shadow: 0 10px 10px #00000033;
  border-radius: 50px;
  margin-left: 10px;
}

.cds_title {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
}

.cds_ckeditor h2,
.cds_sub_title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.cds_ckeditor p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.cds_social_link a {
  display: inline-block;
  margin-right: 10px;
  transition: 0.5s;
}

.cds_social_link a:hover {
  transform: scale(1.09);
}

.cds-pt-110 {
  top: 110px;
}

.cds_form .form-control {
  height: 40px;
}

.cds_form .form-control,
.cds_form .form-control::placeholder,
.cds_form .form-check-label {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  padding-left: 6px;
}

.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: 200px;
}

.form-check {
  position: relative;
}

.form-check input[type="checkbox"] {
  display: none;
}

/* Create a custom checkbox */
.form-check .checkmark {
  position: absolute;
  left: 0;
  top: 3px;
  height: 20px;
  width: 20px;
  background-color: white;
  border: 2px solid var(--pink);
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
}

.form-check input[type="checkbox"]:checked+.checkmark {
  border-color: var(--pink);
  background-color: #FFECF4;
}

.form-check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--pink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-check input[type="checkbox"]:checked+.checkmark:after {
  display: block;
  border-color: var(--pink);
}

.cds_btn {
  padding: 14px 24px 14px 24px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.02em;
  background-color: var(--pink);
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  transition: 0.4s;
  border: none;
}

.cds_btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cds_product_img {
  height: 20px;
  width: 20px;
  object-fit: cover;
  margin-right: 10px;
  position: relative;
  top: 3px;
}

.cds_product_title {
  position: relative;
  top: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  padding-left: 5px;
}

.cds_product_price {
  padding: 3px;
  background: #F5418F1A;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 900;
  line-height: 12px;
}

.cds_pbox {
  border-bottom: 2px solid rgb(0 0 0 / 10%);
  padding: 16px 0;
}

.cds_pbox:last-child {
  border: none;
}

.cds_qty {
  display: inline;
  margin-left: 2px;
}

.cds_qty .qty-minus,
.cds_qty .qty-plus {
  background: #0000001A;
  height: 24px;
  width: 22px;
  border: none;
  font-size: 16px;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  border-radius: 4px;
  position: relative;
  top: 4px;
}

.cds_qty .qty {
  height: 24px;
  width: 22px;
  border: none;
  text-align: center;
  font-weight: 900;
  font-size: 16px;
}

.cds_qty .qty-minus {
  background-image: url('../images/campaign/remove.svg');
}

.cds_qty .qty-plus {
  background-image: url('../images/campaign/add.svg');
}

.cds_badge span {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 10px;
}

/***** campaign details end*****/

/***** gallery css start*******/
@keyframes zoomin {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.gallery-item {
  display: block;
}

.gallery-item img {
  height: 133px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 20px;
}

.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;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}

[data-bs-theme="dark"] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme="dark"] .lightbox-modal .carousel-control-prev-icon {
  filter: none;
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
  position: absolute;
  top: 1.25rem;
  right: 3.5rem;
  z-index: 10;
  border: 0;
  background: transparent;
  opacity: 0.6;
  font-size: 1.25rem;
}

/***** gallery css end*****/


/*********** Our Girls page css start **********/
.ogs_img {
  height: 84px;
  width: 84px;
  object-fit: cover;
  border-radius: 12px;
}

.ogs_box .ags_title {
  font-size: 18px;
}

.pagination .page-link {
  color: var(--dark);
}

.pagination .page-link.active,
.pagination .page-link:hover,
.pagination .page-link:hover span {
  color: #fff;
  background-color: var(--pink);
  border-color: var(--pink);
}

.pagination .page-link:focus {
  box-shadow: none;
}

/*********** Our Girls page css end **********/

/******* Success stories ***********/
.ssb_banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 450px;
  border-radius: 20px;
  padding: 40px;
}

.ssb_badge {
  display: inline-block;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  background: #4B6BFB;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.ssb_title {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
}

.ssb_user span {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.ssb_user img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 100%;
  margin-right: 10px;
}

.ssg_location {
  background: #4B6BFB0D;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.ssg_title {
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  color: #000;
  transition: 0.4s;
}

.ssg_title:hover {
  color: var(--pink);
}

.ss_grid .card {
  border: 1px solid #E8E8EA;
  padding: 16px;
  border-radius: 12px;
  transition: 0.4s;
}

.ss_grid .card:hover {
  box-shadow: 0px 8px 24px 0px #959da58e;
}

.ssg_img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
}

.sps_badge {
  background: #4B6BFB;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.sps_title {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
}

.sps_ckeditor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 16px;
  border-radius: 12px;
}

.sps_ckeditor h2 {
  font-size: 24px;
  font-weight: 700;
}

.sps_ckeditor p {
  font-size: 20px;
}

.ssg_location img {
  height: 16px;
  position: relative;
  top: -2px;
}

/****** CSR page css start *******/
.csr_banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 570px;
}

.csr_main_title {
  font-weight: 900;
  font-size: 32px;
}

.csr_subtitle {
  font-size: 26px;
  font-weight: bold;
}

.csr_box {
  display: inline-block;
  height: 298px;
  width: 298px;
  border-radius: 100%;
  padding: 75px;
  text-align: center;
}

.csr_bg1 {
  background-color: var(--pink);
}

.csr_bg2 {
  background-color: #faff00;
}

.csr_bg3 {
  background-color: #03f7e8;
}

.csr_box p {
  display: flex;
  font-family: "Schoolbell", cursive;
  align-items: center;
  height: 100%;
}

.csr_middle_box {
  margin-left: -40px;
  margin-right: -40px;
  z-index: 1;
  position: relative;
}

/****** CSR page css end *******/

/******* Profile start*********/
.profile .nav-link {
  font-size: 14px;
  font-weight: 500;
  padding: 7px 10px;
  border: 0;
}

.profile .nav-link:hover {
  color: var(--pink);
}

.profile .nav-link.active {
  color: var(--pink);
  border-bottom: 3px solid var(--pink);
}

.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: 720px;
  border: 0;
}

.my_donation_tbl td,
.my_donation_tbl th {
  border: 0;
}

.mdt_cancel_btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: underline;
}

.mdt_cancel_btn:hover {
  color: var(--pink);
}

/******* Profile end*********/
.md-btn {
  box-shadow: 0px 0px 0px 7px #FFFFFF inset;
  border: 3px solid #000000;
  background: #FFDCEB;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  transition: 0.5s;
}

.md-btn:hover {
  background: var(--pink);
  color: #fff;
}

.md-btn:hover .mtd_icon {
  filter: invert(1);
}

.border-mute {
  border-color: #BDC4CD;
}

.sign_in_section .form-control {
  border: 0.89px solid #BDC4CD;
  padding: 8px 24px;
  color: #000;
  font-size: 16px;
}


.cps-amount-radio {
  position: relative;
  margin-bottom: 10px;
}

.cps-amount-radio label {
  display: block;
  border-radius: 20px;
  padding: 5px 20px;
  color: var(--pink);
  font-weight: bold;
  border: 1px solid var(--pink);
  cursor: pointer;
}

.cps-amount-radio .cps-radio {
  position: absolute;
  right: 15px;
  top: 12px;
}

.cps-active {
  background-image: linear-gradient(90deg, #201ce5 0%, #201ce56b 100%);
  color: #fff !important;
}

.cps-active i {
  color: #fff;
}

.custom_amt_input .input-group-text,
.custom_amt_input .form-control {
  border-color: var(--pink);
}


/*****pleadge swiper slider******/
.sw-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(0deg, #000000, #201ce500);
  border-radius: 20px;
}

/**** home swiper*****/
.homeBannerSwiper .swiper-slide img {
  height: 800px;
  width: 100%;
  object-fit: cover;
}

#bannerSwipeRightIcon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  height: 100%;
  display: flex;
  align-items: center;
}

#bannerSwipeLeftIcon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  height: 100%;
  display: flex;
  align-items: center;
}

.arrow-icon {
  width: 70px;
}

.campaign_img {
  height: 360px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 10px;
}

.footer-mobile-btn {
  position: fixed;
  bottom: -1px;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 5px 10px;
  background-color: #fff;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 0 10px #0000004a;
}


/************** NEW CSS************
**************************/
/* deadline */
.deadline {
  display: flex;
}

.deadline-format {
  background-color: var(--pink);
  color: #fff;
  margin-right: 3%;
  display: grid;
  place-items: center;
  text-align: center;
  width: 5rem;
  height: 5rem;
  border-radius: 12px;
}

.deadline-format h2 {
  color: #fff;
  margin-bottom: 0;
}

.deadline-format span {
  text-transform: uppercase;
  font-size: 0.85rem;
  display: block;
  letter-spacing: 2px;
  margin-top: -22px;
  color: #fff;
}

.deadline-format h2:not(.expired) {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.25rem;
}

.bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.campaignSwiper .swiper-slide {
  background-color: #fff;
  border-radius: 20px;
}

.cmp_btn {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  width: 95%;
}

.cmp_desc {
  padding-bottom: 60px;
}

.btn_white {
  background-color: #fff;
  color: #000;
}

.home_seva_box {
  background-color: #f1ecff;
}

.pledgeSwiper .swiper-slide {
  background-color: #f1ecff;
  border-radius: 20px;
}

.accordion-button:focus {
  box-shadow: none;
}

/*****Progress bar*****/
@keyframes growProgressBar {

  0%,
  33% {
    --pgPercentage: 0;
  }

  100% {
    --pgPercentage: var(--value);
  }
}

@property --pgPercentage {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

div[role="progressbar"] {
  --size: 12rem;
  --fg: #349c03;
  --bg: #fff;
  --pgPercentage: var(--value);
  animation: growProgressBar 3s 1 forwards;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(closest-side,
      #f1ecff 80%,
      transparent 0 99.9%,
      #f1ecff 0),
    conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
  font-family: Helvetica, Arial, sans-serif;
  font-size: calc(var(--size) / 5);
  color: var(--fg);
}

div[role="progressbar"]::before {
  counter-reset: percentage var(--value);
  content: counter(percentage) "%";
}


@media only screen and (min-width: 1600px) {
  .csr_banner {
    height: 700px;
  }

  .my_donation_tbl {
    width: 800px;
  }
}

@media only screen and (min-width: 992px) {
  .projectPageNumber {
    margin-top: -150px;
  }
}

@media only screen and (max-width: 991px) {
  .homeBannerSwiper .swiper-slide img {
    height: 250px;
  }

  .pledgeSwiper .plg_content h2 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 10px;
  }

  .pledgeSwiper .plg_slide_img {
    height: 230px;
  }

  .num_box_1 {
    padding: 0px 0 30px;
  }

  .num_box_2 h3 {
    font-size: 26px;
    padding-bottom: 0;
  }

  .num_box_2 h3 span {
    font-size: 14px;
  }

  .trustee_box h2 {
    font-size: 34px;
  }

  .cstmBtn {
    width: 60%;
  }

  .campaignBox .campaign_img {
    height: 210px;
  }

  .campaign_video iframe {
    height: 250px;
  }

  .csr_banner {
    height: 330px;
  }

  .csr_box {
    height: 220px;
    width: 220px;
    padding: 30px;
  }
}

@media only screen and (max-width: 767px) {
  footer {
    margin-bottom: 80px;
  }

  .scroll-to-top {
    bottom: 78px;
  }

  #offcanvasNavigation {
    height: 100vh;
  }

  #offcanvasNavigation .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .pledgeSwiper .plg_slide_img {
    height: 200px;
  }

  .pledgeSwiper .plg_content h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .section_title {
    font-size: 32px;
    line-height: 40px;
  }

  .trustee_box h2 {
    font-size: 28px;
  }

  .trustee_box p {
    font-size: 22px;
    line-height: 30px;
  }

  .agg-img {
    height: 100px;
    width: 100px;
  }

  .cstmBtn {
    width: 70%;
  }

  #cardLeftswipeIcon {
    top: 62px;
    left: -30px;
  }

  #cardRightSwipeIcon {
    top: 62px;
    right: -30px;
  }

  #cardLeftswipeIcon img,
  #cardRightSwipeIcon img {
    width: 80px;
  }

  .project_core_values a {
    font-size: 24px;
  }

  .cds_gallery .date {
    font-size: 16px;
  }

  .cds_product_title {
    font-size: 12px;
  }

  .cds_product_price {
    font-size: 12px;
  }

  .cds_qty .qty-minus,
  .cds_qty .qty-plus,
  .cds_qty .qty {
    height: 20px;
    width: 20px;
    font-size: 12px;
  }

  .ssb_banner {
    padding: 24px;
  }

  .sps_title {
    font-size: 28px;
    line-height: 34px;
  }

  .csr_middle_box {
    margin: 0;
  }

  .csr_tmal_title {
    width: 100%;
    font-size: 28px;
  }

  .csr_tmal_img {
    position: absolute;
    top: 0px;
    right: 0;
    height: 90px;
    width: 75px;
    border-bottom-left-radius: 16px;
  }

  .csr_tmal_row {
    height: 100%;
  }

  .csr_taml_pagination {
    left: 24px;
  }

  .nav-link {
    font-size: 14px;
  }
}

@media only screen and (max-width: 600px) {
  .navbar-collapse {
    position: absolute;
    background-color: #0b6fb8;
    width: 93%;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    border-radius: 12px;
    margin-top: 5px;
  }

  .navbar-collapse .nav-link {
    color: #fff;
  }
}

@media (max-width: 2000px) {
  .banner_video {
    height: 730px;
  }
}


@media (max-width: 992px) {
  .banner_video {
    height: 500px;
  }
}


@media (max-width: 768px) {
  .banner_video {
    height: 350px;
  }

}

@media (max-width: 576px) {
  .banner_video {
    height: 250px;
  }
}


.cds_ckeditor img {
  max-width: 100%
}

.sps_ckeditor {
  max-width: 100%
}

.section_trustee {
  background-image: linear-gradient(45deg, #dfdfdf38, #201ce514);
}

.divider {
  width: 40px;
  border-width: 3px;
  border-color: var(--pink);
  opacity: 1;
}

.project_card .card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/********** gallery start ***************/
.gallery-box {
  position: relative;
}

.gallery-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 20px -15px 0px #959595;
  border-radius: 20px;
  z-index: -1;
  width: 85%;
}

.gallery-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 7px -8px 0px #333;
  border-radius: 20px;
  z-index: -1;
  width: 95%;
}

.gallery-img {
  border-radius: 20px;
  height: 280px;
  object-fit: cover;
  box-shadow: 0px -4px 0 #17e4a6;
  width: 100%
}

.gallery-box:hover .gallery-img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.gallery-box:hover .gallery-content {
  display: block;
}

.gallery-content {
  display: none;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(0deg, #00000099, #00000000);
  padding: 15px 25px;
}

.gallery-content h3 {
  color: #FFF;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 35px;
}

.gallery-content h4 {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.gallery-content p {
  color: #FFF;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
}

.photo-gallery .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.3s ease;
  border-radius: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
}

.photo-gallery .gallery-item:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
  transform: scale(1.08);
}

/********** gallery end **************/

.blog_row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.num_box_2 {
  background-color: #e7f4ff;
  border: 1px solid #3735e833;
}

.about_img {
  height: 190px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  transition: 0.6s;
}

.img_box_div {
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.about_history_section .card:hover .about_img {
  transform: scale(1.06);
}

.about_history_section .card {
  padding: 0;
}

.about_history_section .card h3 {
  padding: 10px;
}

.site_plan_box .site_img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.project_banner{
  background: linear-gradient(180deg, #F5F5F5 0%, rgba(245, 245, 245, 0) 100%);
}
