/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
/*=============== VARIABLES CSS Start ===============*/

:root {
  /*========== Font and typography ==========*/
  --body-font: "Inter", sans-serif;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-bold: 700;
  --font-black: 900;

  /*========== Colors ==========*/
  --black-color: #000;
  --light-color: #2d3a59;
  /* --primary-color: #6ec1e4; */
  /* --primary-color: #6b69f9; */
  --primary-color: #a15ed7;
  /* --secondary-color: #e6eef4; */
  --secondary-color: #f2f6fe;
  --white-color: #ffffff;
  --title-color: #2d3a59;
}
/*=============== VARIABLES CSS End ===============*/

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  overflow-x: hidden !important;
}

html {
  scroll-behavior: smooth;
}

ul {
  list-style: none !important;
}

a {
  text-decoration: none !important;
}

img {
  max-width: 100%;
  height: auto;
}
p {
  margin: 0;
  margin-bottom: 0 !important;
  color: var(--light-color);
}
label,
select,
input {
  color: var(--light-color);
}
::placeholder {
  color: var(--title-color);
}

body,
button,
input {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

select {
  /* -webkit-appearance: none; */
  /* -moz-appearance: none; */
  /* appearance: none; */
  height: 48px;
}

/*=============== REUSABLE CSS CLASSES ===============*/

.global_section {
  padding: 70px 0;
}
.global_section_secondary {
  padding: 40px 0;
}

.global_bg {
  /* background: linear-gradient(
    180deg,
    rgba(120, 118, 254, 1) 0%,
    rgba(96, 95, 245, 1) 35%
  ); */
  /* background: linear-gradient(180deg, #602286 0%, #872ab8 35%); */
  background: var(--secondary-color);
}
.primary_bg {
  background: linear-gradient(180deg, #602286 0%, #872ab8 35%);
}

.global_top_section {
  width: 100vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-blend-mode: overlay;
}

.primary_color {
  color: var(--primary-color);
}
.secondary_color {
  color: var(--primary-color);
}

.title {
  font-size: 35px;
  font-weight: var(--font-bold);
  font-family: var(--body-font);
  color: var(--title-color);
}
.top_title {
  font-size: 72px;
  font-weight: var(--font-bold);
  font-family: var(--body-font);
  color: var(--primary-color);
}

.sub_title {
  color: var(--light-color);
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  font-family: var(--body-font);
}
.home_top_title {
  font-size: 48px;
  font-weight: var(--font-bold);
  font-family: var(--body-font);
  color: var(--white-color);
}

.home_top_sub_title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: var(--white-color);
  font-family: var(--body-font);
}
.sub_title_secondary {
  color: #888888;
  font-size: 14px;
  line-height: 24px;
  font-weight: var(--font-regular);
  font-family: var(--body-font);
}

.fw_7 {
  font-weight: var(--font-bold);
}

#btn-top {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: #fff;
  cursor: pointer;
  padding: 12px 17px;
  border-radius: 10px;
  transition: all 1s;
}

#btn-top:hover {
  background-color: #555;
  transform: scale(1.1);
}

.top_section .content {
  padding: 20px 0;
}

/*=============== REUSABLE CSS END ===============*/

/*=============== HEADER & NAV START ===============*/
/* .navbar-fixed-top {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
} */
.navbar-nav .nav-item {
  margin: auto;
}
.navbar-nav .nav-item a {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--body-font);
  margin: 0 10px;
}
.navbar-nav .nav-item a.active {
  font-weight: var(--font-black);
  color: var(--primary-color) !important;
}

.navbar-nav .nav-item a.donate_btn.active,
.navbar-nav .nav-item a.donate_btn:hover {
  color: var(--white-color) !important;
}
.navbar-nav .nav-item a.donate_btn {
  color: var(--white-color) !important;
  background-color: var(--primary-color);
}
/* .navbar-nav .nav-item .donate_btn.active,
.navbar-nav .nav-item .donate_btn:hover {
  color: var(--white-color) !important;
  background-color: var(--primary-color);
} */
.navbar-nav .nav-item a:hover {
  color: var(--primary-color) !important;
}
.navbar-nav .nav-item a:focus {
  color: var(--primary-color) !important;
}

.border_bottom {
  border-bottom: 1px solid var(--primary-color);
}

.global_btn {
  padding: 12px 20px !important;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white-color) !important;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.global_btn:hover {
  border: 2px solid var(--primary-color);
  background-color: var(--white-color);
  color: var(--primary-color) !important;
}

.navbar-nav .join_us {
  position: relative;
}
.navbar-nav .join_us:hover {
  background-color: var(--white-color);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.navbar-nav .join_us_links {
  display: none;
  position: absolute;
  background-color: var(--white-color);
  z-index: 10;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  top: 40px;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.navbar-nav .join_us_links:hover {
  display: block;
}
.join_us_links li {
  white-space: nowrap;
  display: inline-block;
  float: left;
  transition: opacity 0.3s ease-in-out;
}
.navbar-nav .join_us:hover .join_us_links {
  display: block;
  height: auto;
}
/* =============== Privacy Policy links =============== */
.dropdown-policies:hover .dropdown-item {
  width: auto;
  /* Fixes Bootstrap's default margin */
}

.policies_links_menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: .5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
}
.policies_links_menu.show {
  display: block; /* Show on hover */
}

/*=============== HEADER & NAV END ===============*/

/*=============== HOME START ===============*/
.home .top_section .carousel-item {
  position: relative;
}
.home .top_section .img_section {
  height: 100%;
  min-height: 600px;
  max-height: 600px;
  background-blend-mode: darken;
  background-position: center !important;
}
.home .top_section .first_item .img_section {
  background: rgba(0, 0, 0, 0.5) url(../images/Home/Online_Quran_Classes_1.jpg);
}
.home .top_section .second_item .img_section {
  background: rgba(0, 0, 0, 0.5) url(../images/Home/HomeTop2.webp);
}
.home .top_section .third_item .img_section {
  background: rgba(0, 0, 0, 0.5) url(../images/Home/HomeTop3.webp);
}
.home .top_section .carousel-item .content {
  position: absolute;
  top: 50%;
  left: 32%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  width: 800px;
  padding: 1rem 0;
}

.home .top_section .control_btn i {
  background-color: var(--black-color);
  border-radius: 50%;
  padding: 15px;
  opacity: 0.8;
  border-radius: 1px solid var(--black-color);
  font-size: 18px;
  border-radius: 50%;
}
.home .top_section .carousel-inner img {
  max-height: 600px;
  min-height: 600px;
  object-fit: cover;
}
.home .top_section .control_btn i:hover {
  opacity: 1;
}

/* .home_founder_section .top_section h1 {
  letter-spacing: 0.1px;
  font-family: var(--body-font);
  font-weight: var(--font-bold);
}
.home_founder_section .top_section p {
  font-family: var(--body-font);
  font-weight: var(--font-regular);
} */
.infografic_row {
  height: 375px;
}
.infografic_inner.first {
  background-color: #0bc3b9;
}
.infografic_inner.second {
  background-color: #4fbced;
}
.infografic_inner.third {
  background-color: #edab06;
}
.infografic_inner.fourth {
  background-color: #f14f3f;
}
.infografic_inner {
  border-radius: 15px;
  padding: 0 20px;
  width: 95%;
  height: 150px;
  position: absolute;
  top: 200px;
}
.infografic_inner .inner_section {
  background-color: var(--white-color);
  text-align: center;
  padding: 70px 15px;
  border-radius: 15px;
  position: absolute;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  top: -90px;
  left: 16px;
  width: 90%;
  left: 50%;
  transform: translate(-50%);
}
.infografic_inner .inner_section h2 {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 24px;
  color: var(--title-color);
}
.infografic_inner .inner_section p {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 16px;
}

.infografic_inner .inner_section .number {
  position: absolute;
  font-size: 40px;
  font-weight: 500;
  background-color: var(--white-color);
  color: var(--title-color);
  padding: 10px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.infografic_inner.second,
.infografic_inner.fourth {
  top: 80px;
}
.infografic_inner.second .inner_section,
.infografic_inner.fourth .inner_section {
  top: 15px;
}
.infografic_inner.second .number,
.infografic_inner.fourth .number {
  top: 100%;
}

.infografic_inner.first .number {
  border: 10px solid #0bc3b9;
}
.infografic_inner.second .number {
  border: 10px solid #4fbced;
}
.infografic_inner.third .number {
  border: 10px solid #edab06;
}
.infografic_inner.fourth .number {
  border: 10px solid #f14f3f;
}

.line {
  width: 55px;
  border: 2px solid var(--primary-color);
  margin: 5px 0;
}
/* .home_founder_section .line {
  margin-top: 2rem;
}
.home_founder_section .inner_section .card_inner {
  background-color: var(--secondary-color);
  width: auto;
  border-radius: 15px;
  margin: 0 auto;
  transition: all 0.5s;
}
.home_founder_section .inner_section .card_inner:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.home_founder_section .inner_section .card_info {
  padding: 0 10px;
}

.home_founder_section .inner_section .card_info {
  padding: 20px;
}
.home_founder_section .inner_section .card_info h2 {
  font-size: 22px;
  font-weight: var(--font-bold);
  font-family: var(--body-font);
  color: var(--black-color);
}
.home_founder_section .inner_section .card_img {
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}
.home_founder_section .inner_section img {
  transition: 0.5s;
}
.home_founder_section .inner_section .card_inner:hover img {
  transform: scale(1.1);
}

.home_founder_section .inner_section .card_info p {
  color: var(--black-light);
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 24px;
  font-weight: var(--font-regular);
  margin-top: 1rem;
  color: var(--black-color);
} */

/* .home_effort_section .top_section {
  background: url("https://soodcharityfoundation.org/wp-content/uploads/2021/07/topstrip-bg2.jpg");
  background-size: cover;
  padding: 25px;
  background-repeat: no-repeat;
  padding: 20px 0px 20px 0px;
  border-radius: 15px 15px 0 0;
} */

/* .home_effort_section .top_section span {
  font-size: 14px;
  font-weight: 400;
  color: var(--black-light);
  font-family: var(--body-font);
}

.home_effort_section .inner_section {
  background: url("https://soodcharityfoundation.org/wp-content/uploads/2021/07/Image_VideoSection-1.jpg");
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  padding: 70px 70px;
  border-radius: 0 0 15px 15px;
}
.home_effort_section .line {
  margin: 10px 0;
  border-color: var(--primary-color);
}
.home_effort_section .right_section {
}
.home_effort_section .right_section .sub_title_secondary {
  opacity: 0.8;
} */

.home_counter {
  background: url("https://soodcharityfoundation.org/wp-content/uploads/2021/07/Image_InfographicSection_1920x700-1.jpg");
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}
.home_counter_section .top_counter_section {
  padding: 70px 0;
}
.home_counter_section .top_counter_section .sub_title {
  font-size: 22px;
  font-weight: 400;
}
.home_effort_section .left_section iframe {
  width: 100%;
  height: 310px;
}

/* Cards Design Start */

.home_voices_section .card_inner {
}
.home_voices_section .card_inner .desc {
  background-color: var(--primary-color);
  padding: 20px;
  color: var(--white-color);
  font-family: var(--body-font);
  font-weight: 400;
  border-radius: 15px 15px 0 0;
}
.home_voices_section .card_inner .border_top {
  position: absolute;
  left: 40px;
  border-top: 12px solid var(--primary-color);
  border-left: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 12px solid transparent;
}
.home_voices_section .card_inner .profile_section {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0 0 15px 15px;
}
.home_voices_section .card_inner .profile_inner img {
  width: 80px;
  border-radius: 50%;
  padding-right: 20px;
}
.home_voices_section .card_inner .profile_inner h2 {
  font-size: 22px;
  font-family: var(--body-font);
  font-weight: 500;
}
.home_voices_section .card_inner .profile_inner span {
  font-size: 16px;
  color: var(--primary-color);
  font-family: var(--body-font);
  font-weight: 400;
}

/* Slider Start */
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-initialized .slick-slide {
  display: block;
  margin: 0 1rem;
  cursor: pointer;
  text-align: center;
}
/* Slider End */

.home_voices_section {
  /* background: url("https://soodcharityfoundation.org/wp-content/uploads/2022/05/h1-parallax-for-SCF-website.jpg");
  background-size: cover; */
  background-color: #ffffff;
  padding-bottom: 70px;
  border-radius: 0 0 15px 15px;
}

/* .home_support_section .inner_section {
  background: url("https://soodcharityfoundation.org/wp-content/uploads/2021/07/1_ImagesBelowBanner-1.jpg");
  width: 100%;
  height: auto;
  padding: 60px 30px;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}
.home_support_section .inner_section:hover {
  transform: scale(1.08);
}
.home_support_section .inner_section h2 {
  font-size: 22px;
  color: var(--white-color);
  line-height: 28px;
  font-weight: 700;
  text-shadow: 0 0 black;
  font-family: var(--body-font);
}
.home_support_section .inner_section a {
  width: fit-content;
  margin-top: 1rem;
} */

.home_vision_section .image_section img,
.home_mision_section .image_section img {
  border-radius: 15px;
  width: 100%;
}
.home_vision_section,
.home_mision_section {
  background-color: var(--white-color);
  border-radius: 15px;
  padding: 50px;
}

.home_how_it_work_section .top_section {
  background-color: var(--title-color);
  min-height: 300px;
  border-radius: 15px 15px 0 0;
}
.home_how_it_work_section .content_section {
  background-color: #ffffff;
  box-shadow: rgb(0 0 0 / 3%) 0px 6px 18px;
  max-height: 300px;
  border-radius: 0 0 15px 15px;
}
.home_how_it_work_section .content_section .inner_card {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 15px;
  padding: 20px;
  background-color: #ffffff;
  top: -110px;
  top: -90px;
  min-height: 325px;
  /* max-height: 370px; */
}
.project_section .content_section .inner_card {
  min-height: 410px;
}
.home_how_it_work_section .content_section .inner_card .step {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 10px 12px;
  border-radius: 50%;
}
.home_how_it_work_section .content_section .inner_card .step span {
  font-size: 24px;
  border-radius: 50%;
  padding: 2px 8px;
  color: #6b69f9;
  font-weight: 800;
  opacity: 0.7;
}

.home_how_it_work_section .content_section .inner_card .card_image img {
  width: 150px;
  height: 150px;
  margin-top: 1rem;
}
.home_how_it_work_section .content_section .inner_card .card_title {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--body-font);
  color: var(--title-color);
}
.home_how_it_work_section .content_section .inner_card .card_desc {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--body-font);
  line-height: 20px;
}

.trust_section .card_section {
  box-shadow: rgb(0 0 0 / 3%) 0px 6px 18px;
  background-color: var(--white-color);
  border-radius: 15px;
  padding: 20px;
  min-height: 280px;
  padding-top: 10px;
}

.trust_section .card_heading {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--title-color);
}
.trust_section .card_desc {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin-top: 10px;
}
.trust_section .card_img img {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 10px;
  width: 64px;
}

.home_interest_inner {
  background-color: var(--white-color);
  padding: 25px;
  border-radius: 15px;
  box-shadow: rgb(0 0 0 / 3%) 0px 6px 18px;
  min-height: 270px;
}
.home_interest_inner .content_section {
  margin-top: 1.5rem;
}
.home_interest_inner .content_section h3 {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 22px;
  color: var(--title-color);
}
.home_interest_inner .content_section p {
  font-family: var(--body-font);
  font-weight: 400;
}
.home_interest_inner .image_section img {
  width: 90px;
}

.quotes_bottom {
  transform: rotate(180deg);
}
.download_btn img {
  width: 150px;
}

/*=============== HOME END ===============*/

/*=============== FOOTER START ===============*/
.footer_section {
  background-color: var(--title-color);
}
.footer_section .footer_heading {
  color: #fff;
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2rem;
}
.footer_about_us p {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  line-height: 24px;
}
.footer_section ul {
  padding-left: 0 !important;
}
.footer_section ul li a,
.footer_section .reach_us_section p {
  color: var(--white-color);
  font-family: var(--body-font);
  line-height: 24px;
  font-size: 14px;
  font-weight: 400;
}
/* .footer_section ul li a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-right: 10px;
} */

.footer_section .reach_us_section a {
  color: var(--primary-color);
  font-family: var(--body-font);
  line-height: 24px;
  font-size: 14px;
  font-weight: 400;
}

.footer_section .social_icons {
  display: flex;
  margin-top: 1rem;
}
.footer_section .social_icons i {
  color: var(--white-color);
  margin: 0.5rem;
  font-size: 24px;
}
.footer_section .social_icons i:first-child {
  margin-left: 0;
}

/*=============== FOOTER END ===============*/

/*=============== ABOUT START ===============*/
.about .top_section {
  background: rgba(0, 0, 0, 0.5) url("../images/About/AboutTop.webp") center;
}
.about_trustees_section .image_section {
}
.about_trustees_section .image_section img {
  border-radius: 15px;
  width: 100%;
}
.about_trustees_section .sub_title {
  text-align: justify;
}

.about_adviser_section .profile_name h2 {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 22px;
  color: var(--title-color);
  background-color: var(--white-color);
  padding: 1rem;
  box-shadow: rgb(0 0 0 / 4%) 0px 6px 18px;
}
.about .top_section .sub_title {
  font-size: 16px;
}

.about_adviser_section .profile_image img {
  border-radius: 15px 15px 0 0;
}
.about_adviser_section .profile_name h2 {
  border-radius: 0 0 15px 15px;
}
.about .slick-list img {
  border-radius: 15px;
}

/*=============== ABOUT END ===============*/

/*=============== FAQ START ===============*/
.faq .top_section {
  background: rgba(0, 0, 0, 0.7) url("../images/Faq/Faq.webp") center;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125) !important;
  margin: 1rem 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.accordion-button:not(.collapsed) {
  color: var(--primary-color) !important;
}
.faq_section {
  background-color: #f3f4f6;
}
.faq_inner_section button {
  font-family: var(--body-font);
  font-weight: 600;
}

.accordion-button:focus {
  border-color: none !important;
  box-shadow: none !important;
}

/*=============== FAQ END ===============*/

/*=============== GALLARY START ===============*/
.gallary .top_section {
  background: rgba(0, 0, 0, 0.6) url("../images/gallary/GallaryTop.webp") center;
}
.gallary .tab,
.ftc_inner .tab,
.joinus_inner_section .tab {
  overflow: hidden;
  border: 1px solid #ccc;
  margin: 0 8px;
  border-radius: 10px;
  width: 320px;
  margin: auto;
}
.ftc_inner .tab {
  width: 500px;
}
.gallary .tab button,
.ftc_inner .tab button,
.joinus_inner_section .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  width: 100%;
  font-size: 16px;
  font-family: var(--body-font);
  font-weight: 600;
}

.tab button.active {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}
.gallary #image {
  display: block;
}

.gallary .video_section iframe {
  width: 100%;
  height: 365px;
}
/*=============== GALLARY END ===============*/

/*=============== CONTACT START ===============*/
.contact_us .top_section {
  background: rgba(0, 0, 0, 0.5) url("../images/Contact/ContactTop.webp") center;
}

.contact_us .contact_form .form_field {
  margin: 1rem 0;
}

.contact_us .contact_form .form_field label {
  display: block;
}

.contact_us .contact_form .form_field input,
.contact_us .contact_form .form_field textarea,
.contact_us .contact_form .form_field select {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  background-color: var(--secondary-color);
  border: none;
  border-radius: 10px;
  
}

.contact_us .form_row {
  padding: 40px;
  border-radius: 15px;
}
.contact_us .contact_form .form_field {
  min-height: 100px;
}

.contact_us .map_section iframe {
  width: 100%;
  height: 550px;
  border-radius: 10px;
}

.contact_btn {
  padding: 12px 50px !important;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white-color) !important;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.contact_btn:hover {
  border: 2px solid var(--primary-color);
  background-color: var(--white-color);
  color: var(--primary-color) !important;
}
.contact_btn:hover .text-light{
  color: black !important;

}
.contact_methods .contact_method{
  min-height: 150px;
  /* background-color: black; */
}
.error-message{
  color: red;
}
/*=============== CONTACT END ===============*/

/*=============== PROJECT END ===============*/
.project > .top_section {
  background: rgba(0, 0, 0, 0.6) url("../images/Project/ProjectTop.webp") center;
}

.basic_program .top_section {
  background: rgba(0, 0, 0, 0.7) url("../images/Project/SupportTop.webp") center;
}

.basic_program_form .form_field input,
.basic_program_form .form_field textarea,
.basic_program_form .form_field select {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  background-color: var(--secondary-color);
  border: none;
  border-radius: 10px;
}
.basic_program_form .form_field {
  margin: 1rem 0;
}
.basic_program_form .form_field label {
  display: block;
  color: var(--title-color);
}
.basic_program_form .form_row {
  padding: 40px;
  border-radius: 15px;
}

.basic_program_form button {
  color: var(--primary-color);
  font-size: 18px;
  border-radius: 15px;
}
.adopt_orphan .top_section {
  background: rgba(0, 0, 0, 0.6) url("../images/Project/AdoptTop.webp") center;
}
.orphan_empowerment .top_section {
  background: rgba(0, 0, 0, 0.6) url("../images/Project/OrphanTop.webp") top;
}
.project .project_inner {
  box-shadow: rgb(0 0 0 / 5%) 0px 6px 18px;
  border-radius: 15px;
  min-height: 568px;
}
.project .project_inner .img_section img {
  border-radius: 15px 15px 0 0;
  height: 250px;
  width: 100%;

  object-fit: cover;
}
.project .project_inner .content_section {
  padding: 20px;
}
.project .project_inner .content_section h2 {
  font-family: var(--body-font);
  font-size: 24px;
  font-weight: 600;
  color: var(--title-color);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.project .project_inner .content_section p {
  font-family: var(--body-font);
  font-weight: 400;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.project .project_inner .content_section .view_btn {
  padding: 12px 8px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
  background-color: var(--white-color);
  border: 2px solid var(--primary-color);
}
.project .project_inner .content_section a {
  border-radius: 8px;
  width: 50%;
  text-align: center;
}
.project .project_inner .content_section i {
  transition: all 0.5s;
}
.project .project_inner .content_section a:hover i {
  transform: translateX(5px);
}

/*=============== PROJECT END ===============*/

/*=============== DONATE START ===============*/
.donate .top_section {
  background: rgba(0, 0, 0, 0.7) url("../images/Donate/DonateTop.webp") center;
}
.donate_section form .form_field {
  margin: 1rem 0;
}

.donate_section form input {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  background-color: var(--secondary-color);
  border: none;
  border-radius: 10px;
}
.donate form label {
  display: block;
  color: var(--title-color);
}
.donate .form_row {
  padding: 40px;
  border-radius: 15px;
  box-shadow: rgb(0 0 0 / 3%) 0px 6px 18px;
}
.donate form button {
  color: var(--primary-color);
  font-size: 18px;
  border-radius: 15px;
}

.donate .image_section img {
  border-radius: 15px;
  box-shadow: rgb(0 0 0 / 10%) 0px 6px 18px;
}
.donate .title_section {
  /* border: 1px solid var(--black-color); */
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 2rem;
  padding-left: 10px;
  padding-right: 10px;
}

.donate .title_section {
  background-color: rgba(161, 94, 215, 0.2);
}
.donate .title_section h4 {
  color: var(--primary-color);
  font-family: var(--body-font);
  font-weight: 400;
  margin: 0;
  font-size: 20px;
}
.project .view_btn:hover {
  color: var(--primary-color) !important;
}
.project .donate_btn {
  background-color: var(--primary-color) !important;
}

/*=============== DONATE END ===============*/

/*=============== JOINUS START ===============*/
.joinus .top_section {
  background: rgba(0, 0, 0, 0.7) url("../images/Joinus/JoinusTop.webp") center;
}

.joinus_inner_section .form_field label {
  display: block;
}
.joinus_inner_section .form_field input,
.joinus_inner_section .form_field select {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  background-color: var(--white-color);
  border: 1px solid #000;
  border-radius: 10px;
}
.joinus_inner_section .form_row {
  width: 75% !important;
}
.joinus_inner_section .form_field {
  margin-top: 1rem;
}

.donor .top_section {
  background: rgba(0, 0, 0, 0.6) url("../images/Joinus/DonorTop.webp") center
    no-repeat;
  background-size: cover;
}
.mentor .top_section {
  background: rgba(0, 0, 0, 0.7) url("../images/Joinus/MentorTop.webp") center
    no-repeat;
  background-size: cover;
}
/*=============== JOINUS END ===============*/

/*=============== MOBILEAPP START ===============*/
.mobile_app .top_section {
  background: rgba(0, 0, 0, 0.5) url("../images/MobileApp/MobileAppTop.webp")
    center;
}
.mobile_app .android_row {
  margin-top: 5rem;
}

/*=============== MOBILEAPP END ===============*/

/*=============== FTC IMPACT START ===============*/
.ftc_impact .top_section {
  background: rgba(0, 0, 0, 0.6) url("../images/FTC/FTCTop.webp") center
    no-repeat;
  background-size: cover;
}
.swiper {
  width: 100%;
  height: auto;
}
.swiper-button-prev {
  left: 20px !important;
}
.swiper-button-prev,
.swiper-button-next {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 30px;
  border-radius: 50%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 30px !important;
  color: var(--white-color);
}
.video_testimonial_inner .video_section iframe {
  width: 100%;
  height: 280px;
}

.audio_testimonial_inner img,
.audio_testimonial_inner audio {
  width: 100%;
  cursor: pointer;
}
audio::-webkit-media-controls-panel {
  background-color: #e6eef4;
  width: 350px;
  border-radius: 0;
}

/*=============== FTC IMPACT END ===============*/

/*=============== BLOG START ===============*/
.blog .top_section {
  background: rgba(0, 0, 0, 0.7) url("../images/Blog/blog.jpg") center no-repeat;
  background-size: cover;
}
.blog .blog_card_inner {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  overflow: hidden;
  transition: all 0.2s ease-in;
  background-color: var(--white-color);
  border-radius: 15px;
  margin-top: 2rem;
  min-height: 378px;
}
/* It will select 1,2,3 cards of blogs */
.blog .blog_inner .blog_col:nth-child(-n + 3) .blog_card_inner {
  margin-top: 0;
}
.blog .blog_card_inner:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 16px 8px 0px;
  transform: translateY(-15px);
}

.blog .blog_card_inner .image_inner {
  -webkit-transition: 0.5s ease;
  transition: all 0.4s ease;
}
.blog .blog_card_inner:hover .image_inner {
  transform: scale(1.05);
}
.blog .blog_card_inner .content_inner {
  padding: 20px;
}
.blog .blog_card_inner .content_inner .blog_title {
  font-size: 22px;
  font-weight: 700;
  color: var(--title-color);
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 10px;
}
.blog .blog_card_inner .content_inner p {
  font-size: 16px;
  font-weight: 400;
  color: var(--title-color);
  text-transform: capitalize;
}
/*=============== BLOG END ===============*/

/*=============== BLOG DETAIL START ===============*/

.blog_detail .blog_image img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.blog_detail .blog_details_content .blog_title h2 {
  font-size: 38px;
  font-weight: 500;
  color: var(--title-color);
}
.blog_detail .blog_details_content .blog_desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  margin: 1rem 0;
}
/*=============== BLOG DETAIL END ===============*/
/*=============== DONATION START ===============*/
.donation {
  background-color: #EFF5FD;
}

.donation .inner_section {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 15px;
}

.donation .inner_section h2 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.donation .donation_detail_form label,
#PAYNOW form label {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.donation .donation_detail_form input,
.donation .donation_detail_form select {
  border-radius: 12px;
  border: 1px solid rgba(35, 47, 111, 0.2);
  height: 53px;
  color: #232F6F;
  font-size: 16px;
  font-weight: 300;
  line-height: 23px;
  width: 100%;
  background-color: transparent;
  padding: 10px 12px;
  margin-top: 5px;
  appearance: none;
}

.donation .arrow_icon {
  position: absolute;
  top: 22px;
  opacity: 0.5;
  right: 10px;
}

.pay_tabs {
  max-width: 800px !important;
  margin: auto;
  display: block;
  margin-top: 1rem;
}

.pay_tabs .tab {
  margin-top: 2rem;
}

.pay_tabs .tabcontent {
  display: none;
  margin-top: 10px;
}

.pay_tabs .tabcontent p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 1rem !important;
}

.pay_tabs .tablinks {
  border-radius: 12px 0 0 12px;
  height: 53px;
  border: 1px solid #9A54CD;
  padding: 10px;
  background-color: transparent;
  width: 160px;
  color: #9A54CD;
  font-size: 20px;
  font-weight: 500;
}

.pay_tabs .tablinks:nth-child(2) {
  border-radius: 0 12px 12px 0;
}

.pay_tabs .tablinks.active {
  background-color: #9A54CD;
  color: #fff;
}

#PAYNOW .donation_title {
  margin-bottom: 10px;
}

#PAYNOW .form_field input,
#PAYLATER input[type="text"] {
  border-radius: 12px;
  background: rgba(35, 47, 111, 0.1);
  height: 53px;
  padding: 10px 12px;
  border: none;
  width: 100%;
  margin-top: 10px;
}

#PAYNOW .qr_code {
  margin: 1.6rem 0;
}

#PAYNOW .qr_code h2 {
  text-align: center;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

#PAYNOW .qr_code img {
  display: block;
  margin: auto;
}

#PAYNOW #amount,
#PAYLATER input {
  border: 1px solid rgba(35, 47, 111, 0.2);
  background-color: transparent;
}

#PAYNOW #upload_sheet {
  border-radius: 12px;
  border: 1px dashed rgba(154, 84, 205, 0.5);
  background-color: transparent;
  height: 53px;
  margin-top: 10px;
}

#PAYNOW .upload_ss_label {
  color: #9A54CD;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  padding-top: 13px;
  padding-left: 10px;
}

#PAYNOW .upload_btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 12px;
  border: 1px solid #9A54CD;
  color: #9A54CD;
  height: 53px;
  width: 93px;
  background-color: transparent;
  padding-top: 16px;
  text-align: center;
}

#PAYNOW .submit_btn,
#PAYLATER .submit_btn {
  border-radius: 12px;
  background: #9A54CD;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  height: 53px;
  padding: 10px 40px;
  width: fit-content;
  display: block;
  margin: 0 auto;
  margin-top: 2rem;
}

.donation .project {
  border-radius: 12px;
  border: 1px solid rgba(35, 47, 111, 0.2);
  padding: 0;
  width: 98%;
  margin: auto;
  margin-top: 2rem;
}

.donation .project .content {
  padding: 20px;
}

.donation .project img {
  height: 100%;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
}

.donation .project .content h2 {
  color: #000;
  margin-bottom: 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.donation .project .content p {
  color: #232F6F;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  opacity: 0.5;
  line-height: 23px;
  /* 143.75% */
}

#PAYLATER>h2 {
  margin-top: 10px;
}

#PAYLATER .radio_buttons label {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 10px;
}

#PAYLATER label {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

#PAYLATER input[type="radio"] {
  height: 20px;
  width: 20px;
  appearance: none;
  border-radius: 50%;
}

#PAYLATER input[type="radio"]:checked {
  background-color: #9A54CD !important;
  outline: 1px solid #9A54CD !important;
  border: 3px solid #fff !important;
}

#PAYLATER input {
  background-color: transparent !important;
  border: 1px solid rgba(35, 47, 111, 0.2) ;
}
.border-danger{

    border: 1px solid red !important;
}
.remark{
    border-radius: 12px;
     padding: 10px 12px;
    border: none;
    width: 100%;
    margin-top: 10px;
    background: transparent;
    border: 1px solid rgba(35, 47, 111, 0.2) ;
}
/*=============== DONATION END ===============*/




/* NEW UPDATE START */
.home .tech_section .inner_section {
    border-radius: 25px;
    background: linear-gradient(96deg, #A87CD4 8.64%, #8649C3 94.56%);
  }

  .home .tech_section .inner_section .content {
    padding-left: 140px;
    height: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  .home .tech_section .inner_section h2 {
    color: #FFF;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
  }

  .home .tech_section .inner_section p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 15px;
  }

  .home .tech_section .inner_section .download_btn {
    margin-top: 25px;
  }

  .home .tech_section .vector_left {
    width: 275px;
    height: 34px;
    position: absolute;
    bottom: 30px;
    left: 0;
    padding: 0;
  }

  .home .tech_section .vector_right {
    position: absolute;
    right: 0;
    width: 639px;
    height: 170px;
    padding: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
  }
  .home .tech_section .right_section img {
    height: 386px;
  }
 .home_video video {
  width: 100vw;
  height: auto;
  object-fit: cover;
  max-height: 100vh;
}

  /* NEW UPDATE END */
  /*=============== PRIVACY POLICIES START ===============*/


.privacy_policy h1 {
  margin-top: 1rem;
  color: #a15ed7;
}

.privacy_policy_section .top_section {
  background: rgba(0, 0, 0, 0.7) url("../images/policies/Privacy_Policies.png") center no-repeat;
  background-size: cover;
}

.terms_and_conditions_section .top_section {
  background: rgba(0, 0, 0, 0.7) url("../images/policies/Terms_and_Conditions.png") center no-repeat;
  background-size: cover;
}

.cancellation_and_refund_section .top_section {
  background: rgba(0, 0, 0, 0.7) url("../images/policies/Cancellation_and_refund.png") center no-repeat;
  background-size: cover;
}

.shipping_policy_section .top_section {
  background: rgba(0, 0, 0, 0.7) url("../images/policies/Shipping_Policies.png") center no-repeat;
  background-size: cover;
}

/*=============== PRIVACY POLICIES END ===============*/
