@keyframes scrollVertical {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
@keyframes animateContainer {
  0% {
    opacity: 0;
    transform: scale(0);
    box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.25) inset,
      0 0 0 65px rgba(255, 255, 255, 0.25) inset;
  }
  25% {
    opacity: 1;
    transform: scale(0.9);
    box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.25) inset,
      0 0 0 65px rgba(255, 255, 255, 0.25) inset;
  }
  43.75% {
    transform: scale(1.15);
    box-shadow: 0 0 0 43.334px rgba(255, 255, 255, 0.25) inset,
      0 0 0 65px rgba(255, 255, 255, 0.25) inset;
  }
  62.5% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25) inset,
      0 0 0 21.667px rgba(255, 255, 255, 0.25) inset;
  }
  81.25% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25) inset,
      0 0 0 0 rgba(255, 255, 255, 0.25) inset;
  }
  to {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25) inset,
      0 0 0 0 rgba(255, 255, 255, 0.25) inset;
  }
}
@keyframes animateCheck {
  0% {
    stroke-dashoffset: 80;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes animateShadow {
  0% {
    opacity: 0;
    width: 100%;
    height: 15%;
  }
  25% {
    opacity: 0.25;
  }
  43.75% {
    width: 40%;
    height: 7%;
    opacity: 0.35;
  }
  to {
    width: 85%;
    height: 15%;
    opacity: 0.25;
  }
}
@keyframes animateCross {
  0% {
    stroke-dashoffset: 80;
  }
  to {
    stroke-dashoffset: 0;
  }
}
:root {
  --bg-color: #fffaf3;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
a {
  text-decoration: none;
  transition: 0.3s;
}
.nav_li a:hover,
a:hover {
  color: #009dff;
}
body {
  overflow-x: hidden;
}
.first_nav,
.navbar_cstm {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar_cstm,
body {
  background-color: var(--bg-color);
}
.navbar_cstm {
  height: 74px;
  padding: 10px 80px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.first_nav {
  gap: 55px;
}
.logo_cstm img {
  width: 180px;
  margin-top: 10px;
}
.dark_logo {
  display: none;
}
.nav_links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 500px;
  margin: 0;
}
.nav_li a,
a {
  color: #000;
}
.causes_arrow {
  display: none;
}
.causes_list {
  position: relative;
}
.causes_list_special {
  margin: 0;
}
.mega_menu {
  position: absolute;
  top: 72px;
  width: fit-content;
  padding: 20px;
  background-color: #fff;
  z-index: 9999;
  left: 200px;
  visibility: hidden;
  opacity: 0;
}
.causes_list:hover .mega_menu {
  visibility: visible;
  opacity: 1;
}
.mega_menu_links {
  display: flex;
  padding: 0;
}
.mega_menu_links li {
  width: 190px;
  text-align: left;
}
.mega_menu_links li ul {
  padding: 5px;
  margin-top: 15px;
}
.mega_menu_links li ul li {
  padding: 4px 20px 4px 0;
}
.mega_menu_links li ul li a {
  font-weight: 400;
  font-size: 14px;
  transition: ease-in 0.3s;
}
.special_links {
  color: #7e7a7a !important;
}
.special_links:hover {
  color: #007bff !important;
  transition: ease-in 0.3s;
}
.nav_links li,
.recent_tag li {
  list-style-type: none;
}
.form_group label,
.nav_links li a,
.recent_detail span {
  font-weight: 600;
}
.social_icons {
  display: none;
}
.track_menu {
  justify-content: center;
}
.recent_nav,
.track_menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.donation_track {
  font-size: 17px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  -moz-text-decoration-color: #aeaeae;
  text-decoration-color: #777;
  text-underline-offset: 5px;
  cursor: pointer;
  color: #000;
}
.recent_nav_icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.heart_icon,
.search_icon {
  cursor: pointer;
}
.desk-login-btn,
.desk-profile-menu a {
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.desk-login-btn {
  display: inline-flex;
  gap: 6px;
  padding: 8px 20px;
  background: #50b9ff;
  color: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}
.desk-login-btn:hover {
  background: #000;
  color: #fff;
}
.desk-login-btn i {
  font-size: 16px;
}
.desk-profile-dropdown {
  position: relative;
}
.desk-profile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  z-index: 1000;
  overflow: hidden;
}
.desk-profile-menu.active {
  display: block;
}
.desk-profile-menu a {
  display: flex;
  gap: 10px;
  padding: 12px 18px;
  color: #333;
  transition: background 0.2s ease;
}
.desk-profile-menu a:hover {
  background: #f5f5f5;
  color: #000;
}
.desk-profile-menu .desk-logout-link:hover {
  background: #fff0f0;
  color: #ff4500;
}
.menubar {
  display: none;
}
.search {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-color);
  z-index: 999999;
  overflow-x: hidden !important;
  transform: translateY(-100%);
  will-change: transform;
}
.search_active {
  transform: translateY(0);
  transition: ease-in 0.4s;
}
.search_close_container {
  position: relative;
}
.search_close {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 5px;
  font-size: 20px;
  font-weight: 500;
  border: 0;
  outline: 0;
  background-color: transparent;
  color: #000;
  opacity: 0.5;
}
.search_container {
  display: flex;
  border-bottom: 2px solid #000;
  margin-top: 60px;
}
.dropdown_search {
  position: relative;
}
.dropdown_search::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -10px;
  width: 2px;
  height: 30px;
  background-color: #000;
}
.default_select {
  padding: 10px;
  border: 0;
  outline: 0;
  background-color: transparent;
  font-size: 20px;
  width: 250px;
}
.default_select option {
  font-size: 14px;
  height: 200px;
}
.default_select option:hover {
  background-color: #000;
  color: #fff;
}
.search_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.search_input {
  padding: 10px 30px;
  width: 100%;
  outline: 0;
  color: #000;
  font-size: 20px;
}
.search_btn,
.search_input {
  background-color: transparent;
  border: 0;
}
.recent_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  padding: 0;
}
.recent_tag li {
  color: #000;
  padding: 5px;
}
.nav_links li a,
.recent_tag li a {
  color: #000;
  text-decoration: none;
}
.footer_address li p a:hover,
.recent_tag li a:hover {
  color: #009dff;
  transition: ease-in 0.4s;
}
.also_like {
  margin-top: 50px;
}
.also_like_container {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  overflow: hidden;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.also_like_container::-webkit-scrollbar {
  display: none;
}
.also_like_container > * {
  flex: 0 0 auto;
  width: 200px;
}
.like_card {
  display: flex;
  flex-direction: column;
  width: 200px;
  height: 300px;
  overflow: hidden;
}
.like_image {
  border-radius: 10px;
  overflow: hidden;
}
.like_image img {
  width: 200px;
  height: 235px;
}
.like_content {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
.recently_view {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background-color: #fffaf3;
  width: 470px;
  z-index: 9999;
  overflow: auto;
  overflow-x: hidden;
  transform: translateX(100%);
}
.recently_view_active {
  transform: translateX(0);
  transition: ease-in-out 0.3s;
}
.body_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}
.recently_view::-webkit-scrollbar {
  width: 6px;
}
.recently_view::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.recently_view::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}
.recently_view::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}
.recently_view_container {
  position: relative;
  padding: 60px;
}
.recently_close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 27px;
  background-color: transparent;
  outline: 0;
  border: 0;
  font-weight: 500;
  color: #6b6b6b;
}
.recently_view_content {
  padding-top: 80px;
  text-align: center;
  text-decoration-thickness: 2px;
  text-underline-offset: 14px;
}
.recently_view_heading {
  font-size: 20px;
  text-decoration: underline;
  border-bottom: 1px solid #a0a0a0;
  padding: 10px;
}
.recently_content {
  display: flex;
  flex-direction: column;
}
.recently_content_container {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px;
  border-bottom: 1px solid #a0a0a0;
}
.recently_content_container img {
  width: 80px;
  height: 80px;
  border-radius: 20px;
}
.recent_detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.recent_detail p {
  margin: 0;
  font-weight: 600;
}
.container-fluid {
  padding: 0;
}
.video_container {
  position: relative;
}
#video_background {
  width: 100%;
  height: 72vh;
  object-fit: cover;
  vertical-align: middle;
  background-color: #000;
}
.video_description {
  background-color: #000;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
  width: 530px;
  padding: 24px 33px 30px 30px;
  position: absolute;
  bottom: -125px;
  right: 3%;
  z-index: 999;
  border-radius: 20px;
  color: #fff;
}
.video_floating_icon {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 20px;
  left: 10px;
}
.video_floating_content {
  width: 250px;
}
.video_floating_content span {
  color: #fff;
}
.video_floating_content h4 {
  color: #009dff;
  font-size: 22px;
}
.card_section {
  margin-top: 40px;
}
.head_text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.row_container {
  max-height: 980px;
  overflow: auto;
  scrollbar-width: thin;
}
.row_container::-webkit-scrollbar {
  display: none;
}
.category_card {
  margin-bottom: 40px;
  margin-top: 20px;
}
.card_category {
  border: 2px solid #000;
  border-radius: 40px;
  padding: 10px 5px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
}
.card_category span {
  font-weight: 500;
  list-style-type: none;
  cursor: pointer;
}
.acitve_category {
  background-color: #000;
  color: #fff;
  padding: 2px 20px;
  border-radius: 20px;
}
.category_content {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.category_image {
  width: 300px;
  height: 400px;
}
.category_content_1 img,
.category_image img {
  transition: transform 0.3s ease;
  border-radius: 20px;
  object-fit: cover;
}
.category_image img {
  width: 100%;
  height: 100%;
}
.custom_badge {
  position: absolute;
  top: 5px;
  left: 10px;
  color: #fff;
  padding: 2px;
  border-radius: 5px;
  z-index: 999;
  background-color: #0063fe;
  font-size: 11px;
  text-transform: uppercase;
}
.donate_btn,
.education_content a,
.healthcare_content a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
.donate_btn {
  background-color: #009dff;
  padding: 0;
  font-size: 13px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  white-space: nowrap;
  text-align: center;
  width: 100%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.donate_btn:hover {
  color: #fff !important;
  background-color: #0080d4;
}
.category_content:hover .donate_btn {
  max-height: 40px;
  opacity: 1;
  padding: 6px 0;
}
.category_content_1 img {
  width: 300px;
  height: 400px;
  overflow: hidden;
}
.category_content:hover img,
.category_content_1:hover img,
.gallery_container_page:hover .gallery_img img {
  transform: scale(1.05);
  overflow: hidden;
}
.card_content,
.whatsapp_container {
  position: absolute;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.whatsapp_container {
  z-index: 100;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.3);
  height: 45px;
  width: 45px;
  border-radius: 100%;
  justify-content: center;
}
.card_content {
  bottom: 0px;
  left: 0px;
  right: 0px;

  padding: 5px;

  z-index: 5;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px;
}

.card_content::before {
  content: "";
  position: absolute;

  bottom: 0;
  left: 0;
  right: 0;
  top: 0;

  z-index: -1; /* keep it behind content */

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.card_content h5 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85), 0 1px 2px rgba(0, 0, 0, 0.9);
}
.card_content h5 a {
  color: #fff;
  text-decoration: none;
}
.card_content p,
.card_content span {
  color: #f9fa57;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85), 0 1px 2px rgba(0, 0, 0, 0.9);
}
.card_content span {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.card_content p {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0;
}
.contact_custom ul,
.row_banner {
  padding: 0;
}
.banner_container {
  overflow: hidden;
}
.banner,
.education_banner {
  width: 100%;
  position: relative;
}
.education_banner {
  background-image: url(../images/education-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  opacity: 0.4;
}
.banner {
  height: 500px;
}
.education_banner::before,
.healthcare_banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.healthcare_banner {
  background-image: url(../images/healthcare-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  padding: 0;
  opacity: 0.4;
  position: relative;
}
.education_content,
.healthcare_content {
  position: absolute;
  display: flex;
  flex-direction: column;
}
.education_content {
  top: 37%;
  right: 78px;
  z-index: 1;
  width: 274px;
  height: 279px;
  align-items: center;
}
.education_content::after {
  content: "";
  top: -56px;
  left: -3px;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/shap.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.education_content h2 {
  font-size: 50px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: #000;
}
.education_content h4 {
  text-transform: uppercase;
  letter-spacing: 4px;
  padding: 0;
  margin: 0;
  color: #000;
}
.education_content a,
.healthcare_content a {
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  margin-top: 5px;
  background-color: #50b9ff;
}
.healthcare_content a {
  background-color: #009dff;
  white-space: nowrap;
  margin-top: 20px;
}
.healthcare_content {
  top: 174px;
  left: 40px;
  align-items: self-start;
}
.healthcare_content h2 {
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  z-index: 9;
}
.health_care_modal {
  z-index: 1055 !important;
}
.gradient-bg {
  background: linear-gradient(135deg, #fffaf3, #f0e8d4, #d1c3a3);
}
.volunteer_section {
  background-color: #fff1f1;
  padding: 80px 0;
}
.volunteer_row {
  padding: 30px 20px;
  box-shadow: 0 1px 40px 0 rgba(40, 63, 116, 0.1);
}
.volunteer_content_1 {
  width: 300px;
  position: relative;
}
.volunteer_content_1 img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 99;
}
.all_btn::after,
.volunteer_content_1::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  z-index: -1;
}
.volunteer_content_1 img,
.volunteer_content_1::after {
  width: 100%;
  transition: all 0.8s;
  border-radius: 50% 50%0 0;
}
.volunteer_content_1::after {
  left: 0;
  border: 1px solid;
  border-color: #000 !important;
}
.volunteer_content_1:hover img {
  transform: translate(10px, -10px);
}
.volunteer_content_1:hover::after {
  transform: translate(-10px, 10px);
  z-index: 1;
  border-color: #000;
  transition: all 0.8s;
}
.volunteer_heading h2 {
  font-weight: 650;
}
.volunteer_description {
  color: #222;
}
.all_btn,
.gallery_content span {
  color: #fff;
  text-transform: uppercase;
}
.all_btn {
  background-color: #009dff;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 12px;
  outline: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}
.all_btn_1:hover {
  color: #fff;
}
.all_btn::after {
  left: -100%;
  width: 5%;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(10px);
  transition: left 0.6s ease, right 0.6s ease;
  pointer-events: none;
}
.all_btn:hover::after {
  left: 100%;
  transition: left 0.6s ease;
}
.all_btn:active::after {
  left: 100%;
}
.form_group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}
.form_input {
  border: 1px solid #000;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  transition: all 0.3s ease-in-out;
  border-radius: 10px !important;
  outline: 0;
}
.account {
  color: #7e7a7a;
}
.sign_in {
  color: #000;
  text-decoration: none;
}
#volunteer_form {
  border: 1px solid #000;
  padding: 25px;
  border-radius: 30px;
  display: none;
}
.home_gallery {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}
.gallery_container,
.home_gallery {
  overflow: hidden;
}
.gallery_container img {
  border-style: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  cursor: pointer;
  transition: ease-in 0.2s;
}
.gallery_container img:hover {
  transform: scale(1.3) rotate(-20deg);
  transition: ease-in 0.2s;
}
.footer_address li p,
.instagram_link {
  color: #000;
  font-weight: 500;
}
.follow_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}
.follow_link_icon img {
  width: 22px;
}
footer {
  border-top: 1px solid #000;
}
.footer_top {
  padding-top: 40px;
}
.footer_cont {
  border-bottom: 1px solid #dbdada;
  padding-bottom: 40px;
}
.footer_container {
  display: flex;
  align-items: self-start;
  justify-content: center;
  flex-direction: column;
}
.footer-head {
  margin-bottom: 25px;
}
.footer-head h5 {
  font-weight: 700;
}
.footer-head img {
  width: 200px;
}
.footer_address {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact_custom ul li,
.food_list li,
.footer_address li,
.timeline_menu_container li {
  list-style-type: none;
}
.footer_address li p,
.get_touch_content div p {
  margin: 0;
}
.contact_custom ul li a,
.footer_address li p a {
  color: #000;
  text-decoration: none;
}
.footer_address li p a {
  transition: ease-in 0.4s;
}
.footer_bottom {
  padding: 20px 0;
}
.footer_bottom_container p {
  font-weight: 500;
}
.footer_bottom_container p a {
  text-decoration: none;
  color: #009dff;
}
.about_heading {
  font-weight: 650;
  color: #000;
}
.counter {
  font-weight: 500;
  font-size: 45px;
}
.about-content .text {
  font-weight: 500;
  font-size: 20px;
}
.main-img {
  width: 100%;
}
.main_img img {
  width: 30vw;
  border-radius: 20px;
}
.main_content h2 {
  font-size: 45px;
  letter-spacing: -0.9px;
  font-weight: 600;
  color: #000;
  line-height: 1.1;
  margin-bottom: 50px;
}
.ceo_container_1 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.ceo_container_1 img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
}
.ceo_details h3 {
  font-weight: 700;
  font-size: 20px;
}
.get_touch {
  background-color: #000;
  height: 100px;
  padding: 0 40px;
  text-align: center;
}
.get_touch,
.get_touch_content,
.get_touch_content div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.get_touch_content {
  color: #fff;
  gap: 100px;
}
.get_touch_content div {
  gap: 20px;
  margin: 0;
}
.get_touch_content div span {
  font-size: 30px;
}
.get_touch_content button {
  padding: 10px 20px;
  border: 0;
  outline: 0;
  background-color: var(--bg-color);
  border-radius: 15px;
  font-weight: 650;
}
.team_section_container {
  margin: 100px 0 60px;
}
.team_section {
  display: flex;
  flex-direction: column;
}
.team_section h2 {
  font-weight: 650;
  color: #000;
}
.ceo_director {
  display: flex;
  align-items: center;
  gap: 50px;
}
.ceo_director_container {
  border-radius: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.ceo_container {
  width: 250px;
  height: 250px;
}
.ceo_container img,
.image_section img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.image_section img {
  object-fit: contain;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 0 24px 6.5px #dfdfdf;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ceo_director_container h4 {
  margin: 10px 0 0;
}
.image_section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 150px;
  gap: 12px;
  position: relative;
}
#img_1,
#img_2,
#img_3 {
  grid-column: span 1;
  grid-row: span 1;
}
#img_3 {
  grid-column: span 2;
}
#img_4 {
  grid-column: span 1;
  grid-row: span 2;
}
#img_5 {
  grid-column: span 2;
  grid-row: span 1;
}
.image_section img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.3);
}
.inner_content_section {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.7s ease-out, opacity 0.5s ease-out;
}
.inner_content_section.active {
  max-height: 350px;
  opacity: 1;
  display: block;
}
.gallery_category {
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.gallery_category_list {
  text-transform: uppercase;
  cursor: pointer;
}
.gallery_category_list_active {
  color: #009dff;
}
.gallery_container_page {
  height: 307px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.gallery_img {
  position: relative;
}
.gallery_img img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  transition: transform 0.3s ease;
}
.gallery_content {
  background-color: #000;
  position: absolute;
  bottom: -400px;
  padding: 20px;
  width: 85%;
  border-radius: 0 20px;
  transition: all 0.5s;
}
.gallery_container_page:hover .gallery_content {
  bottom: 0;
}
.gallery_content span {
  padding: 4px;
  border-radius: 5px;
  font-size: 13px;
  margin-bottom: 20px;
}
.gallery_content h4 {
  color: #fff;
  margin-top: 15px;
}
.contact_heading {
  font-weight: 650;
}
.text_show {
  font-weight: 700;
  font-size: 150px;
  position: absolute;
  top: 150px;
  right: 50px;
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.1);
  color: transparent;
  z-index: -1;
}
.section_head {
  margin-bottom: 30px;
}
.section_head h3 {
  font-size: 40px;
  font-weight: 600;
}
.locations-box-inner {
  padding: 0 25px;
}
.contact_info,
.country_media {
  display: flex;
  align-items: center;
}
.country_media {
  background: #000;
  justify-content: center;
  width: fit-content;
  border-radius: 40px;
  margin-bottom: 20px;
  padding: 5px 30px 5px 5px;
}
.country_media h6,
.country_media img {
  border-radius: 100%;
  margin-right: 15px;
}
.country_media h6 {
  margin-bottom: 0;
  color: #ffff;
  font-size: 18px;
}
.dz_content h4 {
  font-weight: 400;
  padding: 5px 0;
}
.contact_info {
  margin-top: 25px;
  gap: 50px;
}
.contact_custom h4 {
  font-weight: 700;
  font-size: 22px;
}
.contact_custom ul li a {
  font-weight: 500;
  transition: ease-out 0.3s;
}
.contact_custom ul li a:hover {
  color: #009dff;
  transition: ease-out 0.3s;
}
.contact-map {
  margin-top: 10px;
}
.contact-map h4 {
  color: #000;
}
.contact-form {
  margin-top: 20px;
  padding: 25px;
  background-color: #fffaf3;
  border-radius: 15px;
  box-shadow: 4px 4px 10px #c1dee6, -4px -4px 10px #c1dee6;
}
.contact-form h4.title {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}
.contact_btn {
  background-color: #007bff;
  color: #fff;
  font-size: 1.2rem;
  padding: 10px 20px;
  border-radius: 10px;
  border: 0;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 25px;
  width: 100%;
}
.form-control {
  padding: 10px;
  outline: 0;
}
.form-control:focus {
  background-color: transparent;
  border: 1px solid #000;
  outline: 0;
  box-shadow: none;
}
.customize_causes {
  padding: 0 80px;
  position: relative;
}
.causes_detail_container {
  position: sticky;
  top: 0;
  padding-right: 30px;
}
.causes_detail {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
  border: 1px solid #000;
  border-radius: 20px;
}
.causes_title {
  justify-content: space-around;
  border-bottom: 1px solid #cfcfcf;
  padding: 10px 0;
}
.causes_title span {
  font-size: 14px;
}
.causes_description,
.causes_title,
.causes_title_content {
  display: flex;
  align-items: center;
}
.causes_title_content {
  gap: 10px;
}
.causes_title_content img {
  width: 70px;
  border-radius: 15px;
}
.causes_title_content p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
.causes_description {
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.causes_description_images img {
  width: 5vw;
  border-radius: 10px;
  height: 105px;
}
.causes_description p {
  font-size: 13px;
  color: #7e7a7a;
}
.causes_form {
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(133, 133, 133, 0.5);
}
.form-control {
  border: 1px solid #000;
}
.label-title,
.recommend_name span {
  font-weight: 600;
}
.causes_btn {
  text-decoration: none;
}
.customized_packages {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}
.customized_packages::-webkit-scrollbar {
  display: none;
}
.packages_container,
.packages_container img {
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.packages_container {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
.customize_checkbox,
.packages_container .customize_checkbox {
  display: none;
}
.packages_container img {
  width: 100%;
  height: 150px;
  border-radius: 10px;
}
.packages_container {
  position: relative;
}
.packages_container label::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
}
.packages_container .customize_checkbox:checked + label::after {
  content: "✓";
  font-size: 14px;
  position: absolute;
  color: #fff;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border: 2px solid #2196f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background-color: #2196f3;
  z-index: 2;
}
.packages_container .customize_checkbox:checked + label img {
  border: 2px solid #2563eb;
}
.packages_container p {
  font-size: 14px;
  margin: 0;
  color: #a8a8a8;
}
.special_checkbox {
  display: none;
}
.add_on {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.toggle_bar {
  width: 45px;
  height: 20px;
  background-color: #cacaca;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.toggle_bar::before {
  content: "";
  position: absolute;
  height: 20px;
  left: 0;
  width: 20px;
  background-color: #fff;
  border-radius: 100%;
  transition: all 0.2s ease;
}
.toggle_bar_active {
  background-color: #41d67c;
}
.toggle_bar_active::before {
  transform: translateX(25px);
}
.special_checkbox_container {
  flex-wrap: wrap;
  gap: 10px 30px;
}
.add_price,
.form_check,
.special_checkbox_container {
  display: flex;
  align-items: center;
}
.form_check {
  gap: 10px;
}
.add_price {
  font-size: 14px;
  color: #aaa;
}
.add_on_1 {
  color: #000;
  font-size: 15px;
  font-weight: 400;
}
.unique_images img,
.unique_images video {
  width: 100%;
  border-radius: 20px;
}
.unique_description p {
  font-size: 18px;
  color: #000;
}
.unique_refund a {
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  color: #009dff;
}
.recommend_causes_container {
  position: sticky;
  top: 0;
  padding-left: 30px;
}
.recommend_causes {
  border: 1px solid #000;
  border-radius: 20px;
  padding: 10px;
  height: 400px;
  overflow: hidden;
  position: relative;
  box-shadow: 8px 8px 10px #c1dee6, -8px -8px 10px #c1dee6;
}
.recent_donor::-webkit-scrollbar,
.recommend_causes::-webkit-scrollbar {
  display: none;
}
.recommend_details {
  display: flex;
  flex-direction: column;
  animation: scrollVertical 5s linear infinite;
}
.recommend_details:hover {
  animation-play-state: paused;
}
.recommend_box {
  padding: 5px;
  border-bottom: 1px solid #a0a0a0;
}
.recommend_amount,
.recommend_box a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recommend_box a {
  gap: 10px;
}
.recommend_amount {
  width: 100%;
}
.recommend_amount :first-child {
  font-weight: 600;
}
.recommend_amount :nth-child(2) {
  text-align: end;
}
.recommend_name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.recommend_name img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}
.recent_donor_container {
  margin-top: 40px;
}
.recent_donor {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 10px;
  height: 500px;
  overflow: auto;
  overflow-x: hidden;
}
.recent_donor_detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  border-bottom: 1px solid #a0a0a0;
}
.recent_donor_amount,
.recent_donor_name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.recent_donor_amount p,
.recent_donor_name p,
.track_video_description p {
  margin: 0;
}
.recent_donor_amount .amount_title,
.recent_donor_name .name_title {
  font-weight: 700;
}
.breadcrumb-item {
  position: relative;
  color: #000;
  font-weight: 500;
}
.breadcrumb-item-1 {
  font-weight: 500;
}
.breadcrumb-item a {
  color: #000;
  text-decoration: none;
}
.breadcrumb-item::after {
  content: ">";
  position: relative;
  top: 0;
  right: 0;
  font-weight: 600;
  padding: 5px;
}
.otp_container {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.otp-label {
  font-weight: 500;
  margin-bottom: 10px;
}
.otp_number {
  padding: 10px;
  width: 100%;
  border-radius: 10px;
}
.customize_track {
  padding: 30px 100px;
}
.customize_track_left {
  box-shadow: 8px 8px 10px #c1dee6, -8px -8px 10px #c1dee6;
  border-radius: 20px;
  padding: 30px;
}
.track_btn_container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.track_btn_track {
  font-size: 16px;
  padding: 12px 3px;
  border: 1px solid red;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.track_btn_blue,
.track_btn_green {
  background-color: transparent;
}
.track_btn_green {
  color: #31a56d;
  border: 1px solid #31a56d;
}
.track_btn_blue:hover,
.track_btn_green:hover {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.track_btn_green:hover {
  background-color: #31a56d;
  border: 1px solid #31a56d;
}
.track_btn_blue {
  color: #009dff;
  border: 1px solid #009dff;
  width: 100%;
}
.track_btn_blue:hover {
  background-color: #009dff;
  border: 1px solid #009dff;
}
.track_btn_black {
  color: #000;
  background-color: transparent;
  border: 1px solid #000;
  cursor: pointer;
}
.track_btn_black:hover,
.track_btn_red:hover {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  transition: all 0.3s ease-in-out;
}
.track_btn_red:hover {
  background-color: #d23636;
  border: 1px solid #d23636;
}
.track_btn_red {
  color: #d23636;
  background-color: transparent;
  border: 1px solid #d23636;
  width: 100%;
}
.timeline_container,
.timeline_menu_container {
  position: relative;
}
.timeline_menu_container::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 10px;
  background-color: transparent;
  height: 90%;
  width: 2px;
  border-left: 2px dashed #a8a8a8;
}
.timeline_badge {
  border-radius: 50%;
  height: 1.375rem;
  left: -32px;
  position: absolute;
  top: 3px;
  width: 1.375rem;
  border-width: 0.125rem;
  border-style: solid;
  padding: 0.25rem;
  background-color: #fff;
}
.option_color_before {
  border: 2px solid #ff5031;
}
.option_color_after {
  border: 2px solid #31a56d;
}
.option_color_after::after,
.option_color_before::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 100%;
  display: block;
}
.option_color_before::after {
  background: #ff5031;
}
.option_color_after::after {
  background: #31a56d;
}
.timeline_box {
  margin-left: 25px;
}
.timeline_panel {
  color: #000;
  text-decoration: none;
}
.timeline_panel span {
  font-size: 14px;
}
.track_video {
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}
.track_video_description {
  border-bottom: 2px solid #e9e9e9;
  width: 100%;
}
.track_video_container {
  width: 100%;
  border-bottom: 2px solid #eee;
  padding: 5px 0;
}
.track_video_container img,
.track_video_container video {
  width: 170px;
  height: 250px;
  border-radius: 5px;
}
.track_video_container img {
  object-fit: cover;
}
.what_was_container {
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.what_was_image {
  width: 100%;
}
.what_was_image,
.what_was_image img {
  position: relative;
}
.what_was_image img,
.what_was_image video {
  width: 100%;
  height: 210px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.what_was_description {
  height: 200px;
  overflow-y: auto;
}
.what_was_description::-webkit-scrollbar {
  display: none;
}
.what_was_description p {
  color: #a8a8a8;
}
.what_was_btn {
  background-color: #cc0d39;
}
.what_was_description_2 {
  padding: 30px 25px 25px;
  background-color: #000;
  color: #fff;
  border-radius: 0 0 30px 30px;
}
.what_was_description_2 p {
  font-size: 14px;
}
.donor_track {
  padding: 0 60px;
}
.donor_track p {
  font-weight: 700;
  margin: 0;
  color: #297080;
}
.donor_track_para {
  background-color: #cff4fc;
  padding: 25px;
  border-radius: 15px;
}
.donor_heading h3 {
  padding: 5px;
  border-bottom: 1px solid #dfdfdf;
}
.donor_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5px;
  border: 1px solid #dfdfdf;
  border-radius: 20px;
  flex-wrap: wrap;
  transition: ease-in 0.1s;
  gap: 10px;
}
.donor_container:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 5px rgba(0, 0, 0, 0.08);
}
.donor_container h5 {
  font-weight: 700;
  word-break: break-all;
}
.donor_track_btn a {
  text-decoration: none;
  background-color: #31a56d;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.donor_amount {
  color: #009dff;
}
.robot_container {
  position: relative;
}
.robot_checkbox {
  position: absolute;
}
.error-msg,
.toast {
  right: 2px;
  color: #fff;
  border-radius: 5px;
}
.toast {
  text-align: right;
  position: fixed;
  top: 82px;
  width: fit-content;
  background-color: #50b9ff;
  padding: 10px 20px;
  border: 0;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  box-shadow: 0 1px 40px 0 rgba(40, 63, 116, 0.1);
  z-index: 99999;
}
.toast.show {
  opacity: 1;
  transform: translateX(0);
}
.toast.hide {
  opacity: 0;
  transform: translateX(100%);
}
.error-msg {
  position: absolute;
  top: -10px;
  background-color: #ff2929;
  padding: 2px 6px;
}
.error-msg::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ff2929;
}
.check-container .check-background,
.main-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-container {
  flex-flow: column;
  height: 50vh;
}
.check-container,
.fail-container {
  width: 6.25rem;
  height: 7.5rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}
.check-container .check-background {
  height: calc(100% - 1.25rem);
  background: linear-gradient(to bottom right, #5de593, #41d67c);
  box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.25) inset,
    0 0 0 65px rgba(255, 255, 255, 0.25) inset;
  transform: scale(0.84);
  border-radius: 50%;
  animation: animateContainer 0.75s ease-out forwards 0.75s;
  opacity: 0;
}
.check-container .check-background svg,
.fail-container .fail-background svg {
  width: 65%;
  transform: translateY(0.25rem);
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: animateCheck 0.35s forwards 1.25s ease-out;
}
.fail-container .fail-background svg {
  animation: animateCross 0.35s forwards 1.25s ease-out;
}
.check-container .check-shadow {
  bottom: calc(-15% - 5px);
  left: 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, #49da83, transparent);
  animation: animateShadow 0.75s ease-out forwards 0.75s;
}
.fail-container .fail-background {
  width: 100%;
  height: calc(100% - 1.25rem);
  background: linear-gradient(to bottom right, #e05d5d, #d44141);
  box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.25) inset,
    0 0 0 65px rgba(255, 255, 255, 0.25) inset;
  transform: scale(0.84);
  border-radius: 50%;
  animation: animateContainer 0.75s ease-out forwards 0.75s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.fail-container .fail-shadow {
  bottom: calc(-15% - 5px);
  left: 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, #da4949, transparent);
  animation: animateShadow 0.75s ease-out forwards 0.75s;
}
.success_reciept,
.success_reciept img {
  width: 100%;
}
.success_buttons {
  margin-top: 20px;
  display: flex;
  margin-bottom: 50px;
  gap: 20px;
}
.dn_btn,
.track_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dn_btn:hover,
.hover-white:hover,
.track_btn:hover {
  color: #fff;
}
.track_btn {
  font-size: 16px;
  padding: 12px 30px;
  border: 1px solid red;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  background-color: #cc0d39;
  color: #fff;
}
.contact_submit {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  z-index: 99999;
}
.category_track {
  word-break: break-all;
}
.badge_danger,
.badge_success {
  color: #fff;
  padding: 8px;
  margin-bottom: 12px;
}
.badge_success {
  background-color: #208829;
}
.badge_danger {
  background-color: #da4747;
}
.what_was_description_2 {
  height: 100px;
  overflow-y: auto;
}
.desk_icon_categories::-webkit-scrollbar,
.what_was_description_2::-webkit-scrollbar {
  display: none;
}
.what_detail {
  padding: 0 5px;
}
.track_image_container img {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  object-fit: inherit;
}
.food_list {
  text-align: left;
  padding: 0;
}
.alter {
  height: 145px;
  width: 200px;
  border-radius: 10px;
}
.custom_modal_body {
  background-color: #fffaf3;
}
.hover-white {
  background-color: #009dff;
}
.iti {
  width: 100% !important;
}
.cause_search_container {
  padding: 0 150px;
}
.cause_search {
  width: 100%;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 0;
  outline: 0;
  background-color: #fffcf8;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2),
    -4px -4px 10px rgba(255, 255, 255, 0.5);
}
.head_text {
  overflow: hidden;
}
.card_category_new,
.desk_icon_categories {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.card_category_new {
  padding: 20px;
  gap: 5px;
  scroll-snap-type: x mandatory;
  width: 100%;
}
.desk_icon_categories {
  gap: 15px;
  padding: 10px 0;
  justify-content: center;
  border: 0 !important;
}
.desk_icon_categories .category_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  border-radius: 8px;
  min-width: 75px;
  background-color: #f5f5f5;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  border: 0;
  transition: background-color 0.3s ease;
}
.desk_icon_categories .category_list:hover {
  background-color: #e0e0e0;
}
.desk_icon_categories .category_list img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  border-radius: 50%;
}
.desk_icon_categories .category_list.acitve_category,
.desk_icon_categories .category_list.active_category {
  background-color: #c2d4f8;
  color: #1f2937;
  padding: 10px 15px;
  border-radius: 8px;
}
.birthday_section {
  padding: 60px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid #e9e9e9;
}
.birthday_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.birthday_content h2 {
  font-family: "Brush Script MT", cursive;
  font-weight: 500;
  font-size: 80px;
  position: relative;
  width: fit-content;
  text-align: center;
  z-index: 1;
}
.celebrate_img {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 50px;
  z-index: -10;
}
.birthday_para {
  font-size: 24px;
}
.birthday_img {
  height: 300px;
  width: 300px;
  border-radius: 8px;
  object-fit: cover;
}
.all_btn_orphanage:hover,
.volunteer_btn:hover {
  background-color: #009dff;
  color: #fff;
}
.volunteer_btn {
  background-color: #07c;
  color: #fff;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}
.get_in_touch {
  padding: 80px 0;
  border-bottom: 1px solid #e9e9e9;
}
.get_in_touch_heading {
  font-size: 30px;
  font-weight: 500;
  color: #009dff;
}
.get_in_touch_description {
  font-size: 32px;
  font-weight: 600;
}
.icon-container {
  width: 400px;
  border: 2px solid #faf0f0;
  border-radius: 8px;
  box-shadow: 3px 3px 0#f3f3e9, 6px 6px 0#ece8e0;
}
.whatsapp {
  padding: 5px 15px;
}
.touch-icon {
  font-size: 30px;
}
.insta {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.call,
.insta {
  width: 300px;
  padding: 10px 5px;
}
.ri-whatsapp-fill {
  color: #41d67c;
}
.ri-instagram-fill {
  color: #a8309a;
}
.ri-mail-fill {
  color: #007bff;
}
.ri-road-map-fill {
  color: #105c37;
}
.ri-phone-fill {
  color: #000;
}
.facebook {
  color: #515bd4;
}
.twitter {
  color: #000;
}
.linkedin {
  color: #007bff;
}
.youtube {
  color: red;
}
.footer-icons {
  font-size: 30px;
}
.transparency-seciton {
  padding: 60px 0;
  border-bottom: 1px solid #e9e9e9;
}
.cstm-transparency {
  margin-top: 100px;
}
.commitment {
  font-size: 48px;
}
.transparency {
  background-color: #000;
  color: #fff;
  border-radius: 8px;
  padding: 5px;
  display: inline-block;
  transform: rotate(0.8deg);
}
.trans-img {
  width: 130px;
}
.volunteer_section_campaign {
  overflow: hidden;
}
.donation_count {
  display: flex;
  align-items: center;
  padding: 0 20px;
  width: 70%;
  justify-content: space-around;
}
.cause-icon,
.icon-collection h3 {
  font-size: 20px;
}
.size {
  font-size: 12px;
}
.video_wrapper {
  height: 300px;
}
.video_overlay_2,
.video_overlay_3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.video_wrapper {
  position: relative;
  width: 300px;
}
.birthday_video,
.video_overlay {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  cursor: pointer;
}
.birthday_video {
  object-fit: cover;
  max-width: 100%;
}
.video_overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.hidden {
  display: none;
}
.video_play_button {
  background: 0 0;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .video_wrapper {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 576px) {
  .video_wrapper {
    width: 150px;
    height: 150px;
  }
  .video_play_button svg {
    width: 40px;
    height: 40px;
  }
  p.mt-3 {
    font-size: 0.9rem;
  }
}
#toast_content {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}
.footer_bottom_container p {
  color: #ccc;
}
.footer_bottom_container a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}
.orphange_img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}
.all_btn_orphanage {
  background-color: #009dff;
}
.annual-heading {
  font-weight: 650;
}
.report-desc {
  color: #07c;
}
.detail-description {
  font-size: 18px;
}
.c-btn {
  padding: 8px 10px;
  border-radius: 6px;
  border: 0;
  outline: 0;
}
.view-btn,
.view-btn:hover {
  color: #fff;
  background-color: #009dff;
}
.download-btn {
  background-color: #ff4500;
  color: #fff;
}
.download-btn:hover {
  color: #fff;
}
