/*
Theme Name: Name - Bootstrap_5
Author: mdasibkhan100@gmail.com
Support: mdasibkhan100@gmail.com
Description: Creative  Bootstrap_5 template.
Version: 5.3.1


CSS Index
-----------------------------------
1. Theme default css
2. header
3. slider
4. about-area
5. features-box
6. department
7. team
8. video-area
9. counter
10. footer
*/

/* font */
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Geist:wght@100..900&family=Manrope:wght@200..800&display=swap");

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
}

a {
  text-decoration: none;
}

.img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Crimson Text", serif;
  margin-top: 0px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: "Geist", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #0f172a;
  margin-bottom: 15px;
  line-height: 28px;
}

a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea {
  outline: none;
  background-color: transparent;
  width: 100%;
  font-size: 15px;
  color: var(--ak-common-black);
  border: 0;
  border-bottom: 1px solid #57595c;
  font-weight: 500;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #57595c;
}

input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
textarea:-moz-placeholder {
  color: #57595c;
}

input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #57595c;
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #57595c;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
textarea:focus {
  border-color: var(--ak-common-black);
}

textarea {
  line-height: 1.4;
  padding-top: 17px;
  padding-bottom: 17px;
}

*::-moz-selection {
  background: #333;
  color: #fff;
  text-shadow: none;
}

*::selection {
  background: #333;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  font-size: 15px;
  opacity: 1;
  font-weight: 500;
}

*::placeholder {
  font-size: 15px;
  opacity: 1;
  font-weight: 500;
}

/*========== Page loader CSS ==========*/
#preloader {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader3 {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  padding: 0;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: linear-gradient(99.38deg, #f2ff00 -0.7%, #8f00fc 87.79%);
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

/* --------------- Style Start ----------- */
/* --------------- Button Start ----------- */
.neno-button {
  background: #0e807259;
  box-shadow: 0px 10px 15px -3px #0000001a;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  padding: 12px 16px;
  border-radius: 100px;
  color: #1cffe5 !important;
}

.neno-button:hover {
  background: rgba(33, 219, 198, 0.349) !important;
}

.g-button:hover {
  background: linear-gradient(90deg, #b20e2a 0%, #b20e2a 70.67%);
  color: #fff !important;
}

.g-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: linear-gradient(90deg, #5d2ffd 0%, #371c97 70.67%);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 100000px;
  font-weight: 600;
  color: #ffffff;
  width: fit-content;
  border: 1px solid transparent;
  transition: 0.3s;
  height: 54px;
  font-size: 16px;
}

.tranparent-btn:hover {
  background: linear-gradient(90deg, #de1135 0%, #de1135 70.67%);
  color: #fff !important;
  border: 1px solid transparent !important;
  transition: 0.3s;
}

.tranparent-btn {
  border: 1px solid #1c191717;
  border-radius: 100px;
  font-weight: 600;
  color: #0f172a;
  background-color: transparent;
  transition: 0.3s;
  padding: 0 24px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.g-button.red-bg {
  transition: 0.3s ease-in-out;
}

.g-button.red-bg:hover {
  background: #198f51 !important;
  color: #fff;
}

.border-button {
  display: inline-block;
  text-align: center;
  padding: 0 24px;
  gap: 8px;
  font-weight: 600;
  background: transparent;
  border-radius: 100000px;
  color: #0f172a;
  border: 1px solid #00000033;
  transition: 0.25s ease;
  font-size: 16px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.border-button:hover {
  background: turquoise;
  color: #000 !important;
  border: 1px solid transparent !important;
}

.g-button.green-bg {
  transition: 0.3s;
}

.g-button.green-bg:hover {
  background: linear-gradient(90deg, #5d2ffd 0%, #371c97 70.67%) !important;
  color: #ffffff !important;
}

.tranparent:hover {
  color: green;
}

:root {
  --img-white: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  --img-black: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%)
    hue-rotate(309deg) brightness(93%) contrast(107%);
  --img-red: brightness(0) saturate(100%) invert(11%) sepia(99%) saturate(6450%)
    hue-rotate(342deg) brightness(91%) contrast(105%);
}

/* --------------- Button Start ----------- */
.header-area {
  width: 100%;
  z-index: 999;
}

.header-border {
  z-index: 999;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--colors-background-opacity-white-12, #ffffff1f);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header-area.page-header.is-sticky {
  position: fixed;
  padding: 20px 0;
  padding-bottom: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
  -webkit-animation: slideDown 0.35s ease-out;
  animation: slideDown 0.35s ease-out;
  background: #000;
}

.hero-area {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  padding-bottom: 150px;
  padding-top: 240px;
}

.hero-area:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: #0003;
  height: 100%;
  content: "";
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 117.58%
  );
}

.hero-content h1 {
  margin-bottom: 12px;
  line-height: 120%;
  color: #fff;
}

.hero-content p {
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 48px;
}

.hero-content {
  z-index: 9;
  position: relative;
}

/* conter area  */
.counter-area {
  background: linear-gradient(90deg, #5d2ffd 0%, #371c97 85.58%);
  text-align: center;
  padding: 28px 0;
}

.counter-item p,
.counter-item h4 {
  color: #fff;
}

.counter-item p {
  margin-bottom: 0;
}

/* targeted area  */

.targeted-area {
  padding-top: 100px;
  padding-bottom: 240px;
}

.section-title h1 {
  line-height: 120%;
  margin-bottom: 40px;
}

.section-title p {
  color: #0f172a;
}

.section-title p.fns-18.text-white {
  margin-bottom: 0;
}

.targeted-content h3 {
  line-height: 48px;
  margin-bottom: 20px;
}

.targeted-items p {
  font-size: 20px;
  line-height: 27px;
  color: #0f172a;
  margin-bottom: 30px;
}

.targeted-items span {
  font-size: 20px;
  line-height: 27px;
  display: inline-block;
}

.targeted-items {
  display: flex;
  align-items: start;
}

.targeted-sponsor {
  background: #ffffff;
  border: 1px solid var(--Colors-Stroke-System-_secondary, #1c191717);
  box-shadow: 0px 4px 6px -2px #0000000d;
  box-shadow: 0px 10px 15px -3px #0000001a;
  border-radius: 24px;
  margin-top: 150px;
}

.targeted-sponsor .img img {
  border-radius: 24px 24px 0 0;
}

.targeted-align {
  padding: 50px;
  padding-top: 20px;
}

.targeted-align h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 48px;
  margin-bottom: 25px;
}

.targeter-amount span {
  display: inline-block;
  font-size: 16px;
  margin-bottom: 12px;
}

.targeted-amount {
  margin-bottom: 12px;
}

.currency-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.currency-label {
  color: #6c757d;
}

.currency-flag {
  object-fit: cover;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  margin-right: 8px;
}

.currency-code {
  font-weight: bold;
  color: #000;
}

.dropdown-arrow {
  font-size: 12px;
  margin-left: 2px;
}

.donation-option {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.donation-option:hover {
  background-color: #e9ecef;
}

.donation-option input[type="radio"] {
  display: none;
}

.circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.circle-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
  display: none;
}

.donation-option.active .circle {
  border: 4px solid #64b21b;
}

.donation-option.active .circle-inner {
  display: block;
}

/* galary-area */

.galary-area {
  padding: 100px 0;
  background-color: #121212;
}

.galary-img img {
  width: 100%;
  border-radius: 8px;
}

.campaign-section {
  padding: 65px 0;
  background: linear-gradient(90deg, #5d2ffd 0%, #371c97 85.58%);
  position: relative;
}

.campaign-card img {
  width: 100%;
  height: auto;
}

.campaign-shape img {
  position: absolute;
  z-index: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-main {
  position: relative;
}

.campaign-card img {
  border-radius: 16px;
  margin-bottom: 24px;
}

.campaign-body h3 {
  line-height: 48px;
  margin-bottom: 8px;
}

.campaign-body p {
  line-height: 27px;
  margin-bottom: 30px;
  height: 215px;
}

.btn-learn {
  border: 1px solid var(--Colors-Stroke-System-_on-color, #ffffff);
  color: #ffffffb2;
  padding: 12px 20px;
  border-radius: 100px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.25s ease;
  width: fit-content;
  margin: 0 auto;
}

.btn-learn:hover {
  background: #fff;
  color: #000;
}
.btn-learn:hover img {
  filter: var(--img-black);
}

.campaign-card .btn-learn img {
  width: 17px;
  margin-bottom: 0;
}

.footer {
  background-color: #f9f9f9;
  padding: 100px 0;
}

.top-footer p {
  margin-bottom: 8px;
}

.footer .email-box {
  display: flex;
  align-items: center;
  padding: 14px 12px;
  background: var(--Colors-Background-System-_tertiary, #1717171a);
  border: 1px solid;
  border-image-source: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 12px;
  line-height: 0;
}

.footer .email-box input {
  border: none;
  background: transparent;
  flex: 1;
  margin-left: 8px;
}

.footer .social-icons a {
  margin-right: 0;
  color: #000;
  text-align: center;
  margin-right: 0;
  background: #fff1f2;
  border-radius: 40px;
  width: 40px !important;
  display: inline-flex;
  height: 40px;
  text-align: center;
  transition: 0.35s ease;
}

.footer .social-icons a:hover {
  opacity: 0.65;
}

.footer .social-icons a img {
  width: 18px;
  text-align: center;
  margin-left: 12px;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.logo-footer img {
  width: 100px;
}

.logo-footer {
  display: inline-block;
  margin-bottom: 10px;
}

.footer-items {
  line-height: 120%;
  margin-bottom: 0;
  border-right: 1px solid #e0e0e0;
  padding-right: 24px;
}

.footer-items p {
  color: #78716c;
  line-height: 150%;
  margin-bottom: 0;
}

.list-unstyled li a:hover {
  opacity: 0.5;
}

.border-box-footer hr {
  margin: 30px 0;
  color: inherit;
  border: 0;
  border-top: 1px solid #e0e0e0;
  opacity: 1;
}

.list-unstyled li a {
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 32px;
  display: inline-block;
  color: #0f172a;
}

.location a {
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  display: inline-block;
  color: #0f172a;
}

.col-md-4.pl-90 a {
  color: #0f172a;
}

.location p {
  margin-bottom: 0;
}

.location p.mb-15.fns-14.fnw-600 {
  margin-bottom: 15px;
}

.border-box-footer {
  border: 1px solid #1c191717;
  padding: 32px 40px;
  border-radius: 16px;
}

.nav-colum {
  column-gap: 64px;
  display: flex;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#Headeroffcanvas {
  height: 100vh;
  width: 100%;
  z-index: 9999;
}

/* page 2 */

.main-menu ul li {
  display: inline-block;
  margin-left: 32px;
}

.main-menu ul li a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  vertical-align: middle;
  display: flex;
  align-items: center;
}

.hero-area.page_2:before {
  /* display: none; */
}

.hero-area.page_2 {
  /* background: #000; */
  background: #00000085;
}

.targeted-sponsor.black-bg .targeted-align {
  padding: 32px;
  padding-top: 32px;
}

.targeted-sponsor.black-bg {
  border: 1px solid;
  border-image-source: linear-gradient(180deg,rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(48px);
  background: #262626;
  margin-top: 0;
}

.targeted-sponsor.black-bg .targeted-align .donation-option {
  background: var(--colors-background-opacity-white-12, #ffffff1f);
  box-shadow: 0px 1px 2px 0px #0a0d120d;
  border: 1px solid;
  border-image-source: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.targeted-sponsor.black-bg .dropdown-toggle.d-flex.align-items-center {
  color: #fff;
  padding: 8px 12px;
  border-radius: 100px;
  margin-left: 10px;
  border: 1.3px solid var(--colors-background-opacity-white-12, #ffffff1f);
  width: max-content;
}

.all-content {
  padding: 78px 56px;
}

.say-items {
  width: 623px;
}

.say-img img {
  border-radius: 12px;
  box-shadow: 7px 7px 34px 0px #00000040;
}

.back-img {
  padding: 75px 56px;
  background-size: cover;
  background-position: center;
  background-color: #031a1799;
  position: relative;
  border-radius: 12px !important;
}

.back-img:before {
  position: absolute;
  content: "";
  background: #031a1799;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 12px;
}

.products_area {
  background: linear-gradient(
    116.72deg,
    rgba(14, 128, 114, 0.05) 0%,
    rgba(14, 128, 114, 0.15) 100%
  );
  padding-top: 120px;
  padding-bottom: 95px;
}

.product-all-content {
  padding: 0 32px;
}

.product-img img {
  width: 100%;
  border-radius: 12px;
}

.slider-area {
  position: relative;
}

.swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.swiper-slide::before {
  position: absolute;
  content: "";
  width: 100%;
  /* background: #2323234d; */
  background: #2323239c;
  height: 100%;
  z-index: 0;
}

.slider-pagination {
  position: absolute;
  z-index: 2;
  top: 0;
  color: #fff;
  font-size: 20px;
  width: 100%;
  padding-top: 32px;
  line-height: 1;
  padding-right: 48px;
  height: 0;
}

.slider-top-content p {
  position: relative;
}

.slider-top-content p::before {
  position: absolute;
  right: 0;
  background: #757575e5;
  height: 2px;
  width: 75%;
  content: "";
  top: 14px;
}

.button-slider {
  position: absolute;
  z-index: 2;
  bottom: 80px;
  color: #fff;
  font-size: 20px;
  width: 100%;
  padding-top: 0;
  line-height: 1;
  padding-right: 32px;
  height: 0;
}

.ak-arrow {
  padding: 10px;
  border: 2px solid #ffffff;
  border-radius: 100px;
  margin-left: 10px;
}

.ak-arrow:hover {
  background: #fff;
}

.ak-arrow:hover img {
  filter: var(--img-black);
}

.testimonies-content {
  border: 1px solid var(--Colors-Stroke-Specific-Input-negative, #f2a0ae);
  padding: 20px;
  border-radius: 12px;
  transition: 0.35s ease;
  width: 390px;
}

.testimonies-content:hover {
  box-shadow: 5px 6px 15px 1px rgba(0, 0, 0, 0.15);
}

.accordion-button {
  color: #0f172a;
  font-size: 20px;
  padding: 20px 16px;
}

.accordion-button:not(.collapsed) {
  color: #e50914;
}

.accordion-button:after {
  filter: brightness(0) saturate(100%) invert(54%) sepia(1%) saturate(1765%) hue-rotate(189deg) brightness(100%) contrast(94%);
}

.tranparent img {
  margin-left: 12px;
}

.counter-area-2 {
  padding-bottom: 32px;
}

#Headeroffcanvas {
  background: #d0d0d0;
}

.offcanvas-body {
  padding: 10px;
}

.offcanvas-menu ul li a {
  color: #000;
  font-weight: 600;
  font-size: 20px;
  line-height: 0;
}

.offcanvas-menu ul li {
  list-style: none;
  margin-bottom: 30px;
}

.hero-area.page_2 .donation-option.active .circle {
  border: 4px solid #b20e2a;
}

.btn-close.f-right:focus {
  outline: none;
  box-shadow: none;
}

.lang-dropdown-toggle {
  border: none;
  background: none;
  font-weight: 500;
  color: #78716c;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu {
  min-width: 100%;
  text-align: center;
}

.logout-btn {
  border: 1px solid #1c191717;
  padding: 6px 16px;
  border-radius: 25px;
  font-weight: 600;
  color: #0f172a;
  background-color: transparent;
  transition: 0.3s;
}

.logout-btn:hover {
  background-color: #f1f1f1;
}

.header-area.page-header.page-header-3.is-sticky {
  padding: 8px;
  border-bottom: 1px solid var(--Colors-Stroke-System-_secondary, #1c191717);
  background: var(--Colors-Background-System-_primary, #ffffff99);
  background: #fff;
}

.header-area .dropdown-toggle::after {
  display: none;
}

.tabs-area,
.gallery-area {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.image-upload.g-button.red-bg:hover {
  color: #fff !important;
}

hr.dotted {
  border-top: 3px dotted #575151;
  margin: 16px auto 50px;
  width: 97%;
}

.nav-tabs .nav-link.active {
  color: #e60023;
  background: none !important;
}

.nav-tabs-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.nav-tabs-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.nav-tabs {
  flex-wrap: nowrap;
  width: max-content;
}

.nav-tabs .nav-link {
  border: none;
  font-size: 16px;
  color: #a3a3a3;
  font-weight: 600;
  white-space: nowrap;
  padding: 0;
  padding-right: 0px;
  padding-right: 20px;
}

.tabs-nab-and-content {
  background: var(--Colors-Background-System-_primary, #ffffff99);
  border: 1px solid var(--Colors-Stroke-System-_secondary, #1c191717);
  border-radius: 12px;
  padding: 32px 20px;
}

.card-img-top {
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.card {
  background: none;
  padding: 0 4px;
}

.badge-copies {
  background-color: #ffe9ed;
  color: #e60023;
  font-size: 0.85rem;
  border-radius: 20px;
  display: inline-block;
  padding: 4px 12px;
  line-height: 140%;
  display: inline-block;
}

/* Enable drag scrolling with mouse */
.nav-tabs-wrapper {
  cursor: grab;
}

.border-bottom {
  border-bottom: none !important;
}

.card-body span {
  color: #0e8072;
}

.main-menu-2 ul li a,
.offcanvas-menu-2 ul li a {
  text-transform: uppercase;
}

.offcanvas-menu ul li:hover a,
.main-menu-2 ul li:hover a,
.offcanvas-menu-2 ul li:hover a {
  color: #b20e2a !important;
}

.main-menu-2 ul li a img,
.offcanvas-menu-2 ul li a img {
  transition: 0.3s;
}

.main-menu-2 ul li:hover a img,
.offcanvas-menu.offcanvas-menu-2 ul li:hover a img {
  -webkit-filter: var(--img-red);
  filter: var(--img-red);
}

.offcanvas-menu.offcanvas-menu-2 ul li a img {
  -webkit-filter: var(--img-black);
  filter: var(--img-black);
}

.h-85-vh {
  height: 75vh;
  border-top: 1px solid #bdaaaa;
  padding-left: 65px;
  padding-top: 20px;
}

.offcanvas-menu ul li {
  margin-bottom: 20px;
}

.offcanvas-menu ul li a {
  font-size: 16px;
}

.dashboard-content {
  padding: 20px;
  border: 1px solid var(--Colors-Stroke-System-_secondary, #1c191717);
  background: var(--Colors-Background-System-_primary, #ffffff99);
  border-radius: 12px;
  transition: 0.25s ease;
}

.dashboard-content:hover {
  box-shadow: 5px 5px 15px 1px rgba(0, 0, 0, 0.1);
}

.section-title-3 {
  margin-bottom: 0 !important;
}

.dashboard-text {
  padding: 15px 0;
}

.dashboard-text p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.dashboard-items .dashboard-title h4 {
  padding-bottom: 5px;
}

.clipboard {
  position: relative;
  display: flex;
  align-items: center;
}

/* You just need to get this field */
.copy-input {
  width: 100%;
  cursor: pointer;
  border: none;
  color: #6c6c6c;
  font-size: 14px;
  border-radius: 5px;
  padding: 5.5px 45px 5.5px 0;
  background: transparent;
}

.copy-input:focus {
  outline: none;
}

.copy-btn {
  width: 40px;
  font-size: 18px;
  padding: 0;
  border-radius: 5px;
  border: none;
  color: #6c6c6c;
  margin-left: 7px;
  transition: all 0.4s;
}

.copy-btn:focus {
  outline: none;
}

.copy-btn {
  width: 40px;
  font-size: 18px;
  padding: 0;
  border-radius: 5px;
  border: none;
  color: #6c6c6c;
  transition: all 0.4s;
  border: 1px solid var(--Colors-Background-Opacity-Black-_12, #1212121f);
  background: #1212121f;
  padding: 8px;
  line-height: 1;
  border-radius: 100px;
  flex: 0 0 auto;
}

.copy-btn:hover {
  background: rgba(18, 18, 18, 0.322);
}

.dashboard-social-icons a {
  width: 36px;
  height: 36px;
  display: inline-block;
  border: 0.69px solid var(--Colors-Stroke-System-_secondary, #1c191717);
  background: var(--Colors-Background-System-_secondary-1, #1717170d);
  border-radius: 50px;
  text-align: center;
  line-height: 1.6;
}

.dashboard-social-icons a:hover {
  background: #cabdbd;
}

.dashboard-content h3 sub {
  bottom: 0;
}

.dashboard-icon-button img {
  padding: 14px;
  background: var(--Backgrounds-_Brand-Secondary---light, #e6f2f1);
  border-radius: 50px;
}

.dashboard-content .text-gray.ff-Manrope.button {
  padding: 12px 0;
  margin: 0;
}

.btn-close.f-right {
  margin-top: 18px;
}

.offcanvas-body .header-button {
  padding-left: 65px;
  padding-top: 20px;
  border-top: 1px solid #bdaaaa;
}

.dashboard-content .mb-8 {
  margin-bottom: 8px;
}

.tranparent-btn-2 {
  padding: 0 16px;
  line-height: 0;
}

.tranparent-btn-2 img {
  -webkit-filter: var(--img-black);
  filter: var(--img-black);
}

.tranparent-btn-2:hover img {
  -webkit-filter: var(--img-white);
  filter: var(--img-white);
}

.dashboard-content .tranparent-btn-2 {
  height: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  margin-top: 10px;
}

.header-area ul li a.active {
  color: #b20e2a !important;
}

.tranparent-sm {
  display: none;
}

.footer ul li:hover a,
.contact a:hover,
.location a:hover {
  color: #b20e2a;
}

.main-menu.hover ul li:hover a {
  color: #1cffe5 !important;
}

.dashboard-social-icons a {
  margin-right: 5px;
}

/* ============== Step Section ================ */

.level {
  display: none;
}

.step_level_one .level_one,
.step_level_two .level_two,
.step_level_three .level_three,
.step_level_four .level_four,
.step_level_five .level_five,
.step_level_six .level_six,
.step_level_seven .level_seven,
.step2_level_one .level_one,
.step2_level_two .level_two,
.step2_level_three .level_three,
.step2_level_four .level_four,
.step2_level_five .level_five,
.step2_level_six .level_six,
.step2_level_seven .level_seven {
  display: block;
}

/* ================= update ================== */
.dropdown_white .dropdown-toggle {
  border: 1.5px solid #1c191724;
  padding: 0 13px;
  height: 36px;
  border-radius: 10rem;
}

.dropdown_white .currency-label {
  display: block;
}

/* ============================ Modal ================================= */
.close_btn:focus {
  opacity: 1;
  box-shadow: none;
}

.close_btn {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 99;
  color: #a3a3a3;
}

.modal-dialog {
  max-width: 612px;
}

.modal_logo {
  display: block;
}

.modal_logo img {
  width: 80px;
  margin: 0 auto;
}

.modal_top p {
  font-size: 14px;
  color: #78716c;
  font-weight: 600;
}

.modal_top h4 {
  color: #0f172a;
  font-weight: 600;
}

.modal_top {
  padding-bottom: 48px;
}

.progress {
  background: #e9e9e9;
  height: 5px;
}

.progress-bar {
  background: #de1135;
  border-radius: 10rem;
}

.mr_box h6 {
  font-size: 20px;
  color: #0f172a;
  font-weight: 400;
  font-family: "Geist", sans-serif;
  margin-bottom: 0;
}

.mr_box {
  text-align: center;
  margin-top: 5px;
}

.mr_box p {
  color: #78716c;
  font-size: 14px;
  margin: 0;
}

.modal-content {
  background: #f4f4f4;
}

.modal-body {
  padding: 32px;
}

.targeted-align.v2 {
  padding: 24px 0 0 0;
}

.targeted-align.v2 .donation-option {
  background: #fff;
  box-shadow: 0px 1px 2px 0px #0a0d120d;
  border: 1px solid var(--Colors-Stroke-System-_secondary, #1c191717);
}

.donation-option.active .circle {
  border-color: #de1135;
}

.targeted-align.v2 .donation-option:hover {
  background: #f1f1f1;
}

.optional_input input {
  border-bottom: 0.1rem solid #1c191724;
  color: #000000;
}

.optional_input input::placeholder {
  color: #a3a3a3;
}

.optional_input input:focus {
  border-color: #000;
}

.targeter-amount.v1 span {
  color: #78716c;
  font-size: 16px;
  margin: 0;
}

/* .red-bg */
.red-bg,
.green-bg,
.btn_gradient,
.g-button {
  position: relative;
}

.red-bg::after,
.green-bg::after,
.btn_gradient:after,
.btn_gradient2:after {
  background: #de1135;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10rem;
  transition: 0.35s ease;
}

.green-bg::after {
  background: #01594f;
}

.btn_gradient:after {
  background: linear-gradient(90deg, #5d2ffd 0%, #371c97 70.67%);
}

.btn_gradient2:after {
  background: linear-gradient(180deg, #5b2efa 0%, #371c97 100%);
}

.red-bg::before,
.green-bg::before,
.btn_gradient:before,
.btn_gradient2:before {
  background: linear-gradient(
    135.34deg,
    #8c421d 15.43%,
    #fbe67b 38.47%,
    #fcfbe7 53.36%,
    #f7d14e 69.97%,
    #d4a041 86.26%
  );
  content: "";
  width: calc(100% + 0.2rem);
  height: calc(100% + 0.2rem);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10rem;
}

.btn_gradient::before {
  background: linear-gradient(
    79.63deg,
    #8c421d 6.05%,
    #fbe67b 9.28%,
    #fcfbe7 11.1%,
    #f7d14e 12.14%,
    #d4a041 15.47%
  );
  box-shadow: 0px 10px 15px -3px #0000001a;
}

.btn_gradient2:before {
  box-shadow: 0px 10px 15px -3px #0000001a;
}

.red-bg:hover:after {
  background: #bb0829;
}

.green-bg:hover:after {
  background: #06423b;
}

.btn_gradient:hover,
.btn_gradient2:hover {
  opacity: 0.75;
}

.red-bg span,
.green-bg span,
.btn_gradient span,
.g-button span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.targeted-amount.v2 > div {
  gap: 45px;
  justify-content: flex-end;
}

.targeted-amount.v2 {
  margin: 0;
}

.targeted-amount.v2 .currency-label {
  color: #78716c;
  font-size: 16px;
  font-weight: 600;
}

/* ================= Step level two ================== */
.back_btn {
  color: #78716c;
  font-size: 16px;
  padding: 0;
  display: flex;
  gap: 5px;
  cursor: pointer;
  transition: 0.35s ease;
}

.title_md {
  color: #0f172a;
  font-size: 16px;
  padding: 15px 0 0;
  margin: 0;
}

.radio_content span {
  color: #0f172a;
  font-size: 16px;
}

.radio_content p {
  color: #78716c;
  font-size: 14px;
  padding: 0;
  margin: 0;
  line-height: 1.15;
}

.back_btn:hover {
  opacity: 0.75;
}

/* =============== Stepthree ================= */
.note p span {
  color: #e11d48;
}

.note p {
  font-size: 16px;
  text-align: center;
}

.note p {
  color: #78716c;
  font-weight: 600;
  line-height: 1.45;
}

.form_left label {
  color: #78716c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  padding-bottom: 0.4rem;
}

.form_left input::placeholder {
  color: #0f172a;
  font-size: 16px;
  line-height: 1.5;
}

.form_left input {
  padding-bottom: 12px;
  border-bottom: 1px solid #e7e5e4;
}

.copy_btn_style p {
  color: #0e8072;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  margin: 0;
}

.copy_btn_style {
  width: 83px;
  height: 36px;
  padding: 0 12px;
  background: #e6f2f1;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0.1rem solid #1c191717;
  transition: 0.25s;
}

.copy_btn_style:hover {
  background: #d8e7e6;
}

.copy_btn_style img {
  flex: 0 0 auto;
  width: 16px;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 83px;
  align-items: center;
}

.pdbg_12 {
  padding: 12px;
  background: #ffffff99;
  border-radius: 12px;
  border: 0.1rem solid #1c191717;
  box-shadow: 0px 1px 2px 0px #0a0d120d;
}

.border-b-0 {
  border-bottom: none !important;
}

/* ========== Successfull ============== */
.tik_mark {
  width: 100px;
  margin: 0 auto;
  display: block;
}

.successfull {
  text-align: center;
}

.successfull h4 {
  color: #098d26;
  padding: 32px 0;
  margin: 0;
}

.successfull span,
.successfull p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #0f172a;
  padding-bottom: 8px;
}

.successfull p {
  color: #78716c;
  margin: 0;
  font-weight: 500;
}

/* ================ Form v2 ============== */
.form_2 .row {
  --bs-gutter-y: 16px;
  --bs-gutter-x: 0rem;
}

.form_control {
  height: 52px;
  border-radius: 8px;
  border: none !important;
  padding: 0 12px;
  display: flex;
  align-items: center;
  background: #ffffffd9 !important;
  width: 100%;
  border: 0.1rem solid #1c191724 !important;
}

.form_control::placeholder,
.nice-select .current {
  color: #a3a3a3 !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.form_group2 label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 145%;
  color: #0f172a;
  padding-bottom: 8px;
  opacity: 0.6;
}

#phone {
  width: 100%;
}

.iti {
  width: 100%;
}

.iti--show-selected-dial-code .iti__selected-flag {
  background: transparent !important;
}

.iti__selected-dial-code {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #a3a3a3;
  margin-left: 9px !important;
}

.iti__arrow {
  border: none;
  position: relative;
  background: url(../img/angle_down.svg) no-repeat center center / 9px 4.5px;
  width: 9px;
  height: 4.5px;
  margin-left: 8px;
}

.iti__arrow::before {
  width: 1.5px;
  height: 24px;
  position: absolute;
  content: "";
  background: #1717171a;
  right: -12px;
  top: -10px;
}

.iti__selected-flag {
  padding: 0 20px 0 12px;
}

.nice-select:after {
  border: none !important;
  background: url(../img/angle_down.svg) no-repeat center center / 9px 4.5px;
  width: 9px;
  height: 4.5px;
  transform: rotate(0deg);
  transition: 0s;
}

.nice-select.open:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.list {
  width: 100%;
}

.normal_btn {
  display: inline-block;
  text-align: center;
  padding: 16px 24px;
  border-radius: 100000px;
  font-weight: 600;
  width: auto;
  transition: 0.3s;
  color: #0f172a;
  width: 100%;
}

.normal_btn:hover {
  background: #eee8e8;
}

.modal_part2 button {
  height: 54px;
  padding: 0 24px;
}

.form_top p {
  color: #78716c;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.copy_tik {
  display: none;
  filter: brightness(0) saturate(100%) invert(38%) sepia(72%) saturate(476%)
    hue-rotate(123deg) brightness(90%) contrast(96%);
}

.copy_btn.copied .copy_tik {
  display: block;
}

.copy_btn.copied .Copy_icon {
  display: none;
}

.copy_btn.copy-error {
  background-color: #f44336;
}

.copy_btn.copied {
  opacity: 0.5;
  pointer-events: none;
}

.white_space_nowrap {
  white-space: nowrap;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
  scrollbar-width: 0;
  display: none;
}

/* =================================== Login popop ================================== */
.nav_tabs {
  padding: 4px;
  border-radius: 12px;
  background: #1717170d;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-bottom: 65px;
}

.nav_link {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  color: #a3a3a3;
  font-size: 14px;
}

.nav_link.active {
  background: #fff;
  color: #0f172a;
}

.en_tab {
  padding-bottom: 45px;
}

.en_tab p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
  padding-top: 8px;
  margin: 0;
}

.email_number_tab {
  padding-top: 10px;
}

.en_tab input::placeholder {
  color: #0f172a !important;
}

.f_400 {
  font-weight: 400 !important;
}

.f_700 {
  font-weight: 700 !important;
}

/* ===================== write_code ==================== */
.write_code input {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-color: #1c191724;
  color: #0f172a;
  padding-top: 6px;
  font-size: 24px;
}

.write_code input::placeholder {
  color: #0f172a;
  font-size: 24px;
}

.write_code {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 65px;
}

/* ================ Progress bar ============== */
@keyframes growProgressBar {
  0%,
  33% {
    --pgPercentage: 0;
  }

  100% {
    --pgPercentage: var(--value);
  }
}

@property --pgPercentage {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

.progressbar2[role="progressbar"] {
  --size: 32px;
  --fg: #143c7c;
  --bg: transparent;
  --pgPercentage: var(--value);
  animation: growProgressBar 3s 1 forwards;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
      closest-side,
      #f1f1f1 80%,
      transparent 0 99.9%,
      white 0
    ),
    conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
  font-family: Helvetica, Arial, sans-serif;
  font-size: calc(var(--size) / 5);
  color: var(--fg);
}

/* ================ gallery_popup ================= */
.gallery_middle {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  border-radius: 12px;
  overflow: hidden;
}

.gallery_middle img {
  width: 100%;
}

.gallery_modal_top .text_xl {
  color: #78716c;
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.gallery_modal_top h3 {
  color: #0f172a;
  font-family: "Manrope", sans-serif;
  font-family: sans-serif;
  font-weight: 600;
  margin: 0;
  padding: 24px 0 12px;
}

.text_md {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.gallery_modal_top .text_md {
  color: #0f172a;
  padding: 0;
  margin: 0;
}

.gallery_badge {
  font-size: 16px;
  color: #de1135;
  font-weight: 600;
  padding: 0 12px;
  line-height: 30px;
  background: #fce7eb;
  border-radius: 10rem;
  width: fit-content;
}

.pl_12 {
  padding-left: 12px;
}

.pr_12 {
  padding-right: 12px;
}

.gallery_bottom a {
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 8px;
  height: 56px;
  transition: 0.25s ease;
  border-radius: 99999px;
}

.gallery_bottom p {
  padding: 0;
  margin: 0;
}

.edit_btn {
  color: #0f172a;
}

.edit_btn:hover {
  background: rgb(15, 23, 42, 0.15);
}

.delete_btn {
  color: #b20e2a;
}

.delete_btn:hover {
  background: rgb(178, 14, 42, 0.15);
}

.form_top2 h4 {
  font-family: "Manrope", sans-serif;
}

.form_top2 {
  text-align: left !important;
}

.form_top2 p {
  color: #78716c;
  font-size: 16px;
  font-weight: 500;
}

.dark_form input::placeholder,
.dark_form input,
.dark_form .current {
  color: #0f172a !important;
}

/*  */
.clipboard {
  display: flex;
  align-items: center;
}

.clipboard input::placeholder,
.clipboard input {
  color: #0f172a !important;
  font-size: 18px;
  padding-right: 0;
  width: 100%;
  /* Adjust based on your font size to fit ~50 chars */
  white-space: nowrap;
  /* Prevent text from wrapping */
  overflow: hidden;
  /* Hide overflow */
  text-overflow: ellipsis;
  /* Add "..." at the end */
}

.text_sm {
  font-size: 14px !important;
}

.text_dark70 {
  color: #0f172a !important;
  opacity: 0.7;
}

.text_dark60 {
  color: #0f172a !important;
  opacity: 0.6;
}

.without_border {
  border-color: transparent !important;
  font-weight: 600;
}

.mr-5 {
  margin-right: 5px;
}

/* ============ say-button ============= */
.say-button {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tranparent-md:hover {
  opacity: 0.65;
}

.green_only {
  background: #0e8072 !important;
}

.green_only:hover {
  background: #0c534b !important;
}

.red_only_btn {
  background: #de1135 !important;
  box-shadow: 0px 10px 15px -3px #0000001a;
}

.red_only_btn:hover {
  background: #a1102b !important;
}


/* accordion */
.accordion-item {
  border: 1px solid #e3e2e2;
  border-radius: 16px !important;
  overflow: hidden;
}

.accordion {
  display: grid;
  gap: 8px;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid #e3e2e2;
}

.accordion-body p {
  color: #78716c;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
}

.card-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;  
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 24px;
}

/* marquee */
.js-marquee {
    display: flex;
    gap: 24px;
}

.marquee > div {
    display: flex;
}


/* .marquee_right {
    transform: translateX(90vw);
}

.marquee_left {
    transform: translateX(-90vw);
} */