/* ---------------------- globle ----------------------  */
/* Font Cairo */
@font-face {
  font-family: "Cairo";
  src: url("../../fonts/Cairo/static/Cairo-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("../../fonts/Cairo/static/Cairo-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("../../fonts/Cairo/static/Cairo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("../../fonts/Cairo/static/Cairo-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("../../fonts/Cairo/static/Cairo-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("../../fonts/Cairo/static/Cairo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("../../fonts/Cairo/static/Cairo-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("../../fonts/Cairo/static/Cairo-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

:root {
  --item-content-width: 1650px;
  --item-gap: 0px;
  --item-full-width: calc(var(--item-content-width) + var(--item-gap));
  --total-items: 8;
  --animation-duration: 200s;
}

* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
body {
  margin: 0;
  font-family: "Cairo", Arial, Helvetica, sans-serif;
  background: #f9f9f9;
}
.clr-primary {
  color: #304998;
}
.clr-secondary {
  color: #ef7d07;
}
.clr-1 {
  color: #e6e6e6;
}
.clr-2 {
  color: #e8eaf2;
}
.max-cont {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.btn-main-custom-orange {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}
[dir=ltr] .btn-main-custom-orange {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: -10rem;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.btn-main-custom-orange span {
  color: white !important;
}
.btn-main-custom-orange::before,
.btn-main-custom-orange::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.btn-main-custom-orange::before {
  background: linear-gradient(90deg, #ffc181, #ef7b03);
  opacity: 1;
}

.btn-main-custom-orange::after {
  background: linear-gradient(360deg, #1e398e, #3c549f);
  opacity: 0;
}

.btn-main-custom-orange:hover::before {
  opacity: 0;
}

.btn-main-custom-orange:hover::after {
  opacity: 1;
}

.btn-main-custom-orange span,
.btn-main-custom-orange img {
  position: relative;
  z-index: 1;
}
.btn-main-custom-blue {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}
[dir=ltr] .btn-main-custom-blue {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.btn-main-custom-blue span {
  color: white !important;
}
.btn-main-custom-blue::before,
.btn-main-custom-blue::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.btn-main-custom-blue::before {
  background: linear-gradient(360deg, #1e398e, #3c549f);
  opacity: 1;
}

.btn-main-custom-blue::after {
  background: linear-gradient(90deg, #ffc181, #ef7b03);
  opacity: 0;
}

.btn-main-custom-blue:hover::before {
  opacity: 0;
}

.btn-main-custom-blue:hover::after {
  opacity: 1;
}

.btn-main-custom-blue span,
.btn-main-custom-blue img {
  position: relative;
  z-index: 1;
}

.btn-custom-blue {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  background: linear-gradient(360deg, #1e398e, #3c549f);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-custom-blue span {
  color: white !important;
}

.btn-custom-blue:hover {
  background: linear-gradient(90deg, #ffc181, #ef7b03);
}

.btn-custom-blue span,
.btn-custom-blue img {
  position: relative;
  z-index: 1;
}

.text-start {
  text-align: right !important;
}

.navbar-brand {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.dropdown-toggle::after {
  margin-right: 0.255em;
  margin-left: 0.255em;
}
.hidden {
  background-color: transparent !important;
  border: none !important;
}
.my-card {

  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
  margin-top: 3rem;
  transition: box-shadow .3s ease;
}
.my-card:hover {
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

/* -------------------------- navbar -------------------------- */
.bg-blue-gradient {
  background: linear-gradient(360deg, #1e398e, #3c549f);
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: rgb(233, 232, 232) !important;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: rgb(233, 232, 232) !important;
}
.nav-link:focus {
  color: #ef7b03 !important;
}
  .logo-size {
    width: 120px;
    height:90px;
  }
@media (max-width: 768px) {
  .logo-size {
    width: 100px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .button-header {
    padding: 3px 8px;
    font-size: 0.875rem;
    width: 153px;
    height: 40px;
  }
}
@media (max-width: 576px) {
  .logo-size {
    width: 80px;
  }
}
@media (max-width: 576px) {
  .button-header {
    padding: 3px 8px;
    font-size: 11px;
    width: 80px;
    height: 30px;
  }
  .navbar-brand {
    margin: 0 !important;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    margin-left: auto;
  }
}

.navbar-toggler-icon {
  background-image: url("../../images/new/Vector (1).png");
  padding: 0;
}
.nav-link-home::before {
  content: url(../../images/new/home\ icon.svg);
}
.nav-link-about::before {
  content: url(../../images/new/about\ icon.svg);
}
.nav-link-programs::before {
  content: url(../../images/new/programs\ icon.svg);
}
.nav-link-donations::before {
  content: url(../../images/new/donations\ icon.svg);
}
.nav-link-media-center::before {
  content: url(../../images/new/media\ center\ icon.svg);
}

.navbar-nav :hover {
  color: #f26222;
}

.nav-item :active {
  color: #f26222;
}
#langDropdown {
  right: -6rem !important;
}

@media (max-width: 768px) {
  .navbar {
    min-height: auto !important;
  }
  ul.dropdown-menu.text-start.show {
    border: 0;
  }
}
ul.dropdown-menu.text-start.show {
  border: none;
  background-color: white;
  box-shadow: none;
  color: #304998;
}
ul.dropdown-menu.text-start.show:hover {
  border: none;
  background-color: white;
  box-shadow: none;
  color: orange;
}
.item1 {
  animation-delay: calc(
    var(--animation-duration) / var(--total-items) * (var(--total-items) - 1) *
      -1
  );
}
.item2 {
  animation-delay: calc(
    var(--animation-duration) / var(--total-items) * (var(--total-items) - 2) *
      -1
  );
}
.item3 {
  animation-delay: calc(
    var(--animation-duration) / var(--total-items) * (var(--total-items) - 3) *
      -1
  );
}
.item4 {
  animation-delay: calc(
    var(--animation-duration) / var(--total-items) * (var(--total-items) - 4) *
      -1
  );
}
.item5 {
  animation-delay: calc(
    var(--animation-duration) / var(--total-items) * (var(--total-items) - 5) *
      -1
  );
}
.item6 {
  animation-delay: calc(
    var(--animation-duration) / var(--total-items) * (var(--total-items) - 6) *
      -1
  );
}
.item7 {
  animation-delay: calc(
    var(--animation-duration) / var(--total-items) * (var(--total-items) - 7) *
      -1
  );
}
.item8 {
  animation-delay: calc(
    var(--animation-duration) / var(--total-items) * (var(--total-items) - 8) *
      -1
  );
}

a.nav-link-home.clr-primary.text-decoration-none {
  padding: 10px;
}

.hover-gray a {
  color: #304998;
}
.hover-gray a:hover {
  color: #ef7d07;
}
.hover-gray:hover {
  background-color: #ffffff;
  border: solid 0px;
  border-radius: 10px;
}

a#navbarDropdownMenuLink {
  padding: 5px 0px;
}

.scrolling-sentence {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1rem;
  color: #fff;
}

.scrolling-sentence .orange-dot {
  width: 8px;
  height: 8px;
  background-color: orange;
  border-radius: 50%;
  margin-right: 6px;
  flex-shrink: 0;
}

.scrolling-sentence .icon-spacing {
  margin-right: 15px;
  margin-left: 15px;
  font-size: 0.9em;
}

.scrolling-sentence .phone-number {
  text-decoration: underline;
}
.list-divider > li:not(:last-child) {
  position: relative;
  padding-inline-end: 1rem;
  margin-inline-end: 1rem;
}

.list-divider > li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  border-left: 1px solid #4b77ff;
}

[dir="rtl"] .list-divider > li:not(:last-child)::before {
  right: auto;
  left: 0;
}

[dir="ltr"] .list-divider > li:not(:last-child)::before {
  left: auto;
  right: 0;
}
.socials-header {
  border-width: 0 0.1px;
  border-style: solid;
  border-color: #3c549f;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.socials-header :hover {
  background-color: #3c549f;
  transition-delay: 100ms;
  cursor: pointer;
}
.navbar-nav .nav-link.active {
  color: #304998 !important;
}
.contact-info-item i {
  min-width: 25px;
  text-align: center;
}

.contact-info-item a {
  line-height: 1.6;
  word-break: break-word;
}

.contact-info-item {
  gap: 10px;
}
li.position-relative a:hover div.position-absolute {
  opacity: 1;
  transition: opacity 0.3s;
}

/* --------------------------- cart ------------------------------------ */
.btn:focus-visible {
  color: 2F4F7F !important;
  background-color: white;
  border-color: white;
}
.sticky-cart-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cart-count-badge {
  margin-bottom: -.7rem;
  line-height: 1;
  z-index: 99;
}

.cart-quantity-badge {
  font-size: 0.875rem;
  padding: 0.35rem 0.65rem;
  min-width: 1.75rem;
  display: inline-block;
  text-align: center;
}

.sticky-cart-button {
  background-color: #ffffff;
  color: #2f4f7f;
  border: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 0;
}

.sticky-cart-button:hover {
  background-color: #1a3350;
  color: #fff;
}

.sticky-cart-button svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

@media (max-width: 767.98px) {
  .sticky-cart-button {
    padding: 0.5rem 0.75rem;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }
  .sticky-cart-button svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.offcanvas.offcanvas-bottom {
  left: 60% !important;
  height: 100% !important;
  transform: translateX(100%);
}
@media (max-width: 1280px) {
  .offcanvas.offcanvas-bottom {
    left: 40% !important;
  }
}
@media (max-width: 767.98px) {
  .offcanvas.offcanvas-bottom {
    left: 0 !important;
  }
}
[dir="ltr"] .offcanvas-header .btn-close {
  margin-right: 0 !important;
}
.offcanvas-header .btn-close {
  margin-left: 0 !important;
}
.offcanvas-header {
  justify-content: space-between;
}
.offcanvas-body .card {
  border-radius: 15px !important;
  min-height: 165px;
}
@media (max-width: 767.98px) {
  .offcanvas-body .card {
    min-height: 150px;
  }
  .offcanvas-body .btn-custom-blue {
    padding: 6px 12px 6px 12px;
    font-size: 0.8rem;
    border-radius: 8px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .offcanvas.show {
    visibility: visible;
    width: 60%;
  }
}
#offcanvasDonationCart .offcanvas-body {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

/* //////////////////////////----------------///////////////// */
.hover-orange {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hover-orange:hover {
  background: linear-gradient(
    135deg,
    rgba(250, 125, 0, 0.5) 0%,
    rgba(239, 123, 3, 1) 100%
  );
}

.hover-orange:hover img {
  filter: brightness(0) invert(1);
}

.hover-orange:hover hr {
  border-top-color: white !important;
}

.hover-orange:hover span {
  color: white !important;
}

.responsive-heading {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .responsive-heading {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .responsive-heading {
    font-size: 5rem;
  }
}
.responsive-header-img {
  min-height: 200px;
  max-height: 300px;
}

@media (min-width: 576px) {
  .responsive-header-img {
    min-height: 250px;
    max-height: 400px;
  }
}

@media (min-width: 768px) {
  .responsive-header-img {
    min-height: 300px;
    max-height: 500px;
  }
}
.btn-primary {
  padding: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .swiper.mySwiper.d-lg-none.swiper-initialized.swiper-horizontal.swiper-rtl.swiper-backface-hidden {
    height: auto !important;
    padding: 50px 20px;
  }
}
.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 425px) {
  .card-img-top {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 15px;
    padding: 15px;
  }
}
.custom-card-alt {
  height: 170px;
  width: 250px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .object-fit-cover {
    height: 400px !important;
    margin-top: auto;
    margin-bottom: 60px;
  }
}
:root {
  --swiper-theme-color: #ef7b03 !important;
}
.card.h-100.p-4.shadow {
  width: 100%;
  margin-bottom: 20px;
  /* margin: 15px; */
}
[dir="ltr"] .card.h-100.p-4.shadow {
  width: 100%;
  margin-bottom: 20px;
  margin: 15px;
}
.card-lg:hover {
  background: linear-gradient(to right, #ffc181, #ef7b03);
  color: white !important;
}
.card-lg:hover,
.card-lg:hover * {
  color: white !important;
}
@media (max-width: 767.98px) {
  .no-gutter-mobile {
    --bs-gutter-x: 0 !important;
  }
}
.swiper.mySwiper.d-lg-none.swiper-initialized.swiper-horizontal.swiper-rtl.swiper-backface-hidden {
  padding: 20px;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  background: linear-gradient(to right, #ffc181, #ef7b03);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#nav-air {
  position: fixed;
  /* display:none !impo; */
  top: 0;
  width: 100%;
  z-index: 1000;
}
@media (max-width: 575.98px) {
  .mobile-padding-left {
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  div#offcanvasNavbar {
    width: 100%;
  }
}
/* @media (min-width: 1024px) {
  div#offcanvasNavbar {
    width: 50% !imp;
  }
} */
@media (max-width: 767.98px) {
  .ml-mobile-10 {
    margin-left: 10px;
  }
}
[dir="ltr"] #langDropdown {
  left: -3rem !important;
  right: 0 !important;
}

[dir="ltr"] .dropdown-menu[data-bs-popper] li {
  text-align: start;
}

.swiper-wrapper {
  padding: 10px 0px !important;
}
[dir="ltr"] .form-label{
  text-align: left;
}
[dir="ltr"] #country{
  text-align: left;
}
[dir="rtl"] #country{
  text-align: right;
}
[dir="ltr"] .form-label-pop{
  text-align: left;
}
[dir="rtl"] .form-label-pop{
  text-align: right;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .object-fit-contain {
    width: 250px;
    height: auto;
    object-fit: contain;
  }
}
.removelink a {
  text-decoration: none !important;
  color: black !important;
}
.pdf-label {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  text-align:right ;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
  color: #212529;
}

.pdf-label:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

/* ---------------------------------Media patiner-------------------------------------------*/
@media (max-width: 425px) {
  .partiner {
    padding: 0px 0px !important;
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .custom-card-alt {
    height: 140px;
    width: 190px;
    border-radius: 15px;
  }
  .partiner {
    margin-left: 20px;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .custom-card-alt {
    height: 120px;
    width: 150px;
    border-radius: 12px;
  }
}
/*------------------------------------------------ Partiner media----------------------------------------*/
.howitwork {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  height: 94%;
  border-radius: 18px;
  filter: drop-shadow(10px 20px 30px rgba(255, 255, 255, 0.25));
}

.howwork {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin-right: 0px;
  height: 100%;
  max-width: 100%;
}
.wrapper {
  width: 100%;
  margin-inline: auto;
  position: relative;
  height: 50px;
  overflow: hidden;
  background-color: #1e398e;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes scrollRight {
  to {
    right: calc(-1 * var(--item-full-width));
  }
}
.item {
  width: var(--item-content-width);
  height: 50px;
  background-color: transparent;
  position: absolute;
  right: max(calc(var(--item-full-width) * var(--total-items)), 100%);
  animation-name: scrollRight;
  animation-duration: var(--animation-duration);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  display: flex;
  min-width: 130%;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  padding-left: var(--item-gap);
  padding-right: 60px;
  white-space: nowrap;

  margin-right: 200px;
}


@keyframes scrollLeft {
  to {
    left: calc(-1 * var(--item-full-width));
  }
}
[dir="ltr"] .item {
  width: var(--item-content-width);
  height: 50px;
  background-color: transparent;
  position: absolute;
  left: max(calc(var(--item-full-width) * var(--total-items)), 100%);
  animation-name: scrollLeft;
  animation-duration: var(--animation-duration);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  padding-left: var(--item-gap);
  padding-right: 60px;
  white-space: nowrap;
}

.wrapper:hover .item {
  animation-play-state: paused;
}
.swiper-slide {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.card-text {
  text-align: center;
}
/* ------------------------------hasab-elzakah-------------------------------------------- */
.zaka {
  margin-left: 2px;
  margin-bottom: 20px;
  margin-right: 0;
  direction: rtl;
  text-align: right;
  float: right;
}
.w-40 {
  width: 40%;
}
.zakacard {
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin: 0px 0px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 580px) {
  .zakacard {
    margin-top: 30px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
/* ------------------------------hasab-elzakah-------------------------------------------- */

.form {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 20px;
}

.sizeicon {
  width: 30px;
  height: 30px;
}

.img-inside-card {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.btn-rokya {
  all: unset;
  color: #1e398e;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  margin-left: 10px;
}

.text-orange-custom {
  color: #ef7d07;
}

.card.shadow-sm {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  height: 366px !important;
  padding: 10px;
}

.card-text {
  /* text-align: center; */
  font-size: 20px;
  font-weight: 600;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 50px;
}

.swiper-pagination {
  position: absolute;
  bottom: -5px !important;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

@media (max-width: 575.98px) {
  .flex-between {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

@media (max-width: 575.98px) {
  .mobilecard {
    margin: 0px 30px;
    padding: 10px 0px;
  }

  .card-img-top {
    border-radius: 15px;
  }

  #card-carasoual {
    padding: 0px;
    box-shadow: none;
  }

  .card {
    border-radius: 10px;
    /* margin: 20px 20px; */
  }
}

.card-img-top {
  border-radius: 15px;
}

@media (max-width: 991.98px) {
  .card-img-top {
    height: 270px !important;

    border-radius: 15px;
    padding: 10px;
  }
}
@media (min-width: 992px) {
  .card.shadow-sm {
    height: 325px !important;
  }
  .card-lg {
    height: auto;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }
}

.btn.send {
  width: 20%;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(to right, #3c549f, #1e398e);
  color: white;
  border: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}
@media (max-width: 575.98px) {
  .swiper-slide h5 {
    font-weight: 700;
    font-size: 1.5rem;
  }
}

.btn.send:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
}
@media (min-width: 992px) {
  .col-lg-5th {
    width: 20%;
    flex: 0 0 20%;
  }

  .form-control {
    display: inline-block;
    background-color: white;
    padding: 10px 12px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 8px rgba(237, 234, 234, 0.5);
  }

  .boxicon {
    border-radius: 10px;
    padding-top: 30px;
    height: 300px;
  }

  .sub {
    color: #1e398e;
    font-size: 50px;
  }
}
.new {
  background-color: white;
  padding: 8px 5px;
  border-radius: 10px;
}
.new:hover {
  background-color: #ef7d07;
}
.new img {
  width: 20px;
  transition: filter 0.3s ease;
}
.new:hover img {
  filter: brightness(0) invert(1);
}
.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

.swiper-slide {
  width: 80%;
}

@media (min-width: 768px) {
  .swiper-slide {
    width: 300px;
  }
}

.fs-1 {
  font-size: 24px;
  font-weight: 900;
  margin-top: 16px;
}
.fs-2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}
.fs-3 {
  font-size: 18px;
  font-weight: 400;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.text-orange-custom {
  color: #ef7d07;
}

.carousel-item > img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.icon-background-left {
  opacity: 10;
  background: linear-gradient(#1e398e, #4b77ff);
  border: solid 0px;
  border-radius: 100px;
  padding-top: 9px;
  padding-bottom: 3px;
  padding-right: 8px;
  padding-left: 11px;
}

.icon-background-right {
  opacity: 10;
  background: linear-gradient(#1e398e, #4b77ff);
  border: solid 0px;
  border-radius: 100px;
  padding-top: 9px;
  padding-bottom: 4px;
  padding-right: 11px;
  padding-left: 9px;
}
.carousel-control-next-icon {
  left: 10px !important;

}
.arrow_section_about {
  margin-top: 12rem;
}

.text-orange {
  color: #ffa500;
}

.text-dark-blue {
  color: #2f4f7f;
}
@media (max-width: 991.98px) {
  .about-section {
    padding: 1rem;
    margin: 2rem auto;
  }
  .text-content {
    text-align: center;
    margin-top: 1.5rem;
  }
  .text-content .btn {
    width: 100%;
  }
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 15px;
  height: 15px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  border: 2px;
  background-color: #b5b5b5ff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transition: opacity 0.6s ease;
  border: solid 0px;
  border-radius: 50px;
}

.carousel-indicators .active {
  background-color: #ef7d07;
}

.carousel-indicators :hover {
  background-color: #ef7d07;
}
section.container-fluid.donations-methods {
  background-image: url("../../images/new/background tabs section.webp");
  width: 100%;
  background-size: cover;
}
[dir="ltr"].card.h-100.p-4.shadow {
  margin-bottom: 40px;
}
/*---------------------------------------- footer----------------------------------- */

.footer-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../../images/new/bg-image.png");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: -1;
}
.link-hover {
  color: white;
  transition: all 0.3s ease-in-out;
}
.link-hover:hover {
  color: #ef7d07;
}

.item-footer {
  padding-bottom: 1rem;
}

.footer-list {
  margin-top: 35px;
}
img.d-flex.justify-content-start {
  /* margin-left: 20px; */
}
.item-footer :hover {
  color: #f26222;
}

.container-fluid-footer {
  background-color: #304998;
  padding-bottom: 10px;
  padding-top: 60px;
}

.footer-list {
  text-decoration: none;
  list-style: none;
  padding-right: 0px;
}

.container-fluid.subfooter {
  border-top: solid 1px;
  padding-top: 15px;
  margin-top: 10px;
}

/* --------------------------footer End---------------------------------------------------*/

/* --------------------------Last Section (Join CTA)--------------------------------------*/
.last-section {
  min-height: 300px;
  overflow: hidden;
}



.last-section .max-cont {
  max-width: 1200px;
  margin: 0 auto;
}

.last-section .new {
  text-decoration: none;
}

.last-section .new div {
  background-color: #ffffff !important;
  transition: all 0.3s ease;
}

.last-section .new:hover div {
  background-color: #ef7d07 !important;
}

.last-section .new:hover div span {
  color: #ffffff !important;
}

.last-section .new:hover div img {
  filter: brightness(0) invert(1);
}

/* --------------------------Last Section End--------------------------------------------*/

/* --------------------------Cart Offcanvas-----------------------------------------------*/
#cart-offcanvas {
  max-height: 80vh;
  height: auto;
}

#cart-offcanvas .offcanvas-body {
  max-height: calc(80vh - 60px);
  overflow-y: auto;
}

#cart-offcanvas .cart-items {
  max-height: calc(80vh - 200px);
  overflow-y: auto;
}


/* --------------------------Cart Offcanvas End------------------------------------------*/

/* --------------------------Text Orange-----------------------------------------------*/
.text-orange {
  color: #ffa500;
}

/* --------------------------Text Orange End--------------------------------------------*/
