@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/***** General CSS *****/
body {
  word-break: break-word;
  font: 15px / 25px "Montserrat", sans-serif;
  color: #000;
  overflow-x: hidden;
  overflow-y: scroll;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

a {
  text-decoration: none;
  font-family: "Montserrat", serif;
  color: #000;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #000;
}

a:hover {
  transition: all 0.2s ease-in-out;
}

img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  transition: all 0.5s ease;
  outline: none;
}

select,
input,
textarea {
  font-family: "Montserrat", serif;
  appearance: auto;
}

/***** Font Files *****/
@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cocogoose";
  src: url(../fonts/Cocogoose.ttf);
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Uni";
  src: url(../fonts/Uni.otf);
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Cutmark";
  src: url(../fonts/Cutmark.ttf);
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

/***** Custom Classes *****/
select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  color: #575757;
}

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8,
.pb_8,
.py_8,
.sec {
  padding: 80px 0;
}

.flexRow,
.flexCol {
  display: flex;
  align-items: center;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Cocogoose";
  text-transform: uppercase;
  margin: 0 0 10px;
}

h1 {
  font-size: 72px;
  line-height: 1;
  color: #0a1a2f;
  font-weight: 500;
}

h2 {
  font-size: 55px;
  line-height: 1.2;
  color: var(--primaryColor);
  font-weight: 500;
}

h3 {
  font-size: 37px;
  line-height: 1.2;
  color: var(--secondaryColor);
  font-weight: 600;
  font-family: 'Uni';
}

h4 {
  font-size: 30px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
}

h5 {
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
}

h6 {
  font-size: 19px;
  font-family: var(--secondaryFont);
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
}

p {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  color: #000;
  opacity: 0.7;
  font-family: var(--secondaryFont);
  margin: 0 0 10px 0;
}

.subheading {
  opacity: 1;
  text-transform: uppercase;
}

:root {
  --secondaryColor: #b22234;
  --primaryColor: #0a1a2f;
  --gradient: linear-gradient(132deg, #4f46e5 4.27%, #6366f1 100%);
  --primaryFont: var(--primaryFont);
  --secondaryFont: "Montserrat", serif;
  --tertiaryFont: "Uni";
}

.red {
  color: var(--secondaryColor);
}

.blue {
  color: var(--primaryColor);
}

.cocogoose {
  font-family: "Cocogoose";
}

.montserrat {
  font-family: var(--secondaryFont);
}

.uni {
  font-family: var(--tertiaryFont);
}

.cutmark {
  font-family: "Cocogoose";
}

.black {
  color: #000;
}

.white {
  color: #fff;
}

.cutmark {
  font-family: "Cutmark";
}

/* Menu */
.nav ul {
  list-style: none;
  text-align: center;
  justify-content: space-around;
  display: flex;
  align-items: center;
  height: 100%;
  width: 101%;
}

.nav ul li a {
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  color: #000;
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  display: block;
  opacity: 0.8;
}

section.header .nav.stroke {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.nav.stroke ul li a:after,
.nav.fill ul li a:after {
  transition: 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 0;
  width: 0%;
  content: ".";
  color: transparent;
  background: #0000;
  height: 2px;
  transform: translateX(-50%);
}

.nav.stroke ul li a.active {
  color: #000 !important;
}

/* Buttons Css Start*/
.theme-btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 15px 15px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  overflow: hidden;
  font-family: 'Montserrat';
  font-weight: 600;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

span.theme-btn-image {
  padding: 21px 15px;
  background: transparent;
  border-radius: 5px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00000021;
}

img.theme-arrow {
  width: 20px;
}

.theme-btn-text::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  transition: 0.5s ease-in-out;
  background: var(--secondaryColor);
}

.theme-btn-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background-color: var(--primaryColor);
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.theme-btn:hover .theme-btn-text::after {
  width: 100%;
  height: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme-btn:hover .theme-btn-text {
  color: #fff;
}

.style1 span.theme-btn-text {
  padding: 15px 35px;
  border: 1px solid var(--secondaryColor);
  color: var(--secondaryColor);
}

.style1 span.theme-btn-text::before {
  background: transparent;
}

/* Buttons Css End*/

/* Loader start */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 1s ease;
  flex-direction: column;
  gap: 5px;
}

#loader.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

img.loader {
  width: 10vw;
}

/* Loader end */

/* Custom Scrollbar  */
#style-6::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar-thumb {
  background-color: #f48a12;
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
}

.scrollbar {
  overflow-y: scroll;
}

/* Custom Scrollbar  */

/* Home Page start*/

/* Header */
.hdr_logo a img {
  object-fit: scale-down;
  display: block;
  width: 150px;
  padding: 10px 0;
}

.hdr-btn {
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #00000021;
}

.hdr-btn a {
  font-size: 14px;
  font-family: 'Montserrat';
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.8;
  padding: 15px 30px;
  display: flex;
  width: fit-content;
  justify-self: center;
}

.header-bar {
  border-bottom: 1px solid #00000021;
}

/* Header end*/

/* Banner */
.banner_sec {
  position: relative;
  z-index: 1;
}

.banner-slider .slick-list {
  height: 100%;
}

.banner-slider .slick-track {
  height: 100%;
}

.banner-style h6 {
  font-family: "Cutmark";
  font-weight: 200;
  letter-spacing: 3px;
  color: var(--secondaryColor);
}

.banner-heading {
  padding: 50px 0;
}

.banner-style {
  display: flex;
  align-items: center;
}

span.line {
  height: 1px;
  background: #0000004f;
  width: 30%;
}

span.square {
  width: 12px;
  height: 12px;
  background: var(--secondaryColor);
}

.banner-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.padd_bottom {
  padding-bottom: 80px;
}

/* Banner end*/

/* section start */

.about_image {
  padding: 15px;
  width: 95%;
  background: #f3f3f3;
  border-radius: 10px;
}

img.about {
  height: 700px;
  border-radius: 10px;
  box-shadow: 0 0 1px 0 #0000002e;
}

.about_text span.red {
  display: block;
}

section.about_sec {
  margin: -80px 0 0 0;
  position: relative;
  z-index: 1;
}

.gray-heading {
  padding: 0 0 20px 0;
  border-bottom: 1px solid #00000021;
}

/* section end */

/* section start */
.counter-text {
  padding: 80px 0 0 0;
  position: relative;
  z-index: 1;
}

.counter-text::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #00000021;
  content: '';
}

.counter-text::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 20%;
  background: var(--secondaryColor);
  content: '';
}

.right::after {
  height: 0;
}

.right::before {
  height: 0;
}

.counter-text h3,
.counter-text h5 {
  text-align: center;
}

.right h5 {
  text-align: right;
}

.left * {
  text-align: left !important;
}

/* section end */

/* section start */
.heading-btn {
  display: flex;
  justify-content: end;
}

ul.goal-list {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 13px 0;
  border-top: 1px solid #00000021;
}

ul.goal-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

ul.goal-list * {
  margin: 0;
}

span.what-number {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffff;
  border-radius: 50%;
  margin: 0 0 0 30px;
}

.what-card-text {
  margin: -40px 0 0 0;
  position: relative;
  z-index: 1;
}

.what-card-image img {
  height: 300px;
  border-radius: 20px;
}

.what-card {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  margin: 30px 0;
  box-shadow: 0 0 4px 0 #00000038;
}

img.check {
  width: 18px;
}

ul.stand-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.stand-bottom-text {
  padding: 20px;
}

ul.stand-list li h6 {
  margin: 0;
}

.stand-top-text h2 span.red {
  display: block;
}


img.stand1 {
  height: 520px;
  border-radius: 10px 10px 10px 0;
}

img.stand2 {
  height: 380px;
  border-radius: 10px 0 10px 10px;
}

.stand-top-text {
  padding: 0 30px 0 0;
}

/* section end */

/* section start */
.earn-sec {
  position: relative;
  z-index: 1;
  padding: 150px 0;
}

.earn-sec::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: url(../images/earn-bg.jpg);
  background-size: cover;
  background-position: center;
  content: '';
  z-index: -2;
}

.earn-sec::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 26, 47, 1) 0%, rgba(10, 26, 47, 1) 24%, rgba(0, 0, 0, 0) 63%);
  content: '';
  z-index: -1;
}

.style2 span.theme-btn-image {
  background: #fff;
  border: none;
}

img.gallery-img {
  height: 350px;
  margin: 0 0 12px 0;
}

.gallery-text {
  width: 35.2%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 110px 40px;
  background: #b22234;
  border: 14px solid #fff;
}

.gallery-main-box {
  position: relative;
  z-index: 1;
}

/* section end */

/* section start */

section.team-sec {
  background: #f3f3f3;
}

.slider-nav .slick-slide {
  margin: 0;
}

.slider-for .slick-slide {
  margin: 0 5px;
  opacity: 1;
}

img.team-img {
  height: 400px;
  border-radius: 7px;
}

ul.list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5px 0;
}

ul.list * {
  margin: 0;
}

.team-text {
  padding: 30px 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--secondaryColor);
  border-radius: 7px;
}

.team-card {
  position: relative;
  margin: 20px 0;
}

.team-image {
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

.team-image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a1a2f82;
  z-index: 0;
  content: '';
  border-radius: 7px;
}

.team-text p {
  margin: 0;
  color: #fff;
}

ul.list li i {
  color: #fff;
  font-size: 20px;
}

ul.list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-left-text h2,
.team-left-text p,
.team-left-text a {
  margin: 45px 0;
  display: flex;
}

/* section end */

/* section start */


.real-main-bx:hover {
  color: #fff;
}

.real-main-bx {
  padding: 17px 16px;
  border-radius: 5px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.real-main-bx * {
  transition: 0.3s ease-in-out;
}

.real-main-bx:hover h6,
.real-main-bx:hover p {
  color: #fff;
  transition: 0.3s ease-in-out;
}

.real-main-bx::before {
  content: "";
  background-color: #fafaf7;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.real-main-bx::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background-color: var(--secondaryColor);
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.real-slid .slick-active {
  opacity: 1;
}

.real-img-sm img {
  width: 70px;
  border-radius: 7px;
  height: 70px;
  object-fit: cover;
  border: 5px solid #fafaf7;
  transition: 0.3s ease-in-out;
}

.real-main-bx:hover .real-img-sm img {
  border: 5px solid #fff;
  transition: 0.3s ease-in-out;
}

.real-img-sm {
  display: flex;
  align-items: center;
  gap: 20px;
}

.real-img-sm h5 {
  font-size: 17px;
  color: #2e2e2e;
  margin: 0;
  line-height: 20px;
}

.real-img-sm h5 span {
  display: block;
  font-family: "trajan";
  font-size: 12px;
}

.real-talk-txt {
  text-align: center;
}

.real-talk-txt p {
  color: #141414;
  width: 54%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.real-main-bx p {
  font-size: 14px;
  color: #363636;
  margin-top: 15px;
}

.star {
  display: flex;
  gap: 20px;
  align-items: center;
}

.main-bx-work:hover h4 {
  background-color: #fff;
  color: #000;
}

.star ul {
  display: flex;
  align-items: center;
  margin: 0;
}

.star ul li a i {
  color: #f39f1e;
}

.star h5 {
  font-size: 14px;
  color: #363636;
  margin: 0;
}

.star h6 {
  font-size: 14px;
  margin: 0;
}

.real-img-sm h6 {
  font-size: 14px;
  margin: 0;
}

.real-img-sm h6 span {
  display: block;
  font-size: 13px;
}

.real-slid {
  width: 100vw;
}

.real-main-bx:hover::after {
  width: 100%;
  height: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.blog-box-text ul li i {
  color: var(--secondaryColor);
}

.blog-box-text ul li p {
  margin: 0;
}

.blog-box-text ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-box-text ul {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 10px 0;
  gap: 30px;
}

.blog-box-text h4 {
  color: #000;
  font-size: 31px;
}

.blogtopbar.topbar.text_center p {
  width: 91%;
}

.blog-box {
  margin: 30px 0;
}

.blog-box_image img {
  height: 300px;
  border-radius: 7px;
}

.blog-box-text h6 {
  font-size: 20px;
  text-transform: capitalize;
  opacity: 0.8;
}

.blog-box-text {
  margin: 20px 0 0 0;
}

/* section end */

/*Contact home STart*/
.h-map {
  position: relative;
  bottom: -7px;
  height: 500px;
  display: flex;
  align-items: end;
  z-index: 2;
}

section.donate-sec {
  margin: 100px 0 0;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #fff;
}

section.donate-sec .iframe-box {
  width: 100%;
  position: absolute;
  height: 500px;
  /* filter: brightness(0) saturate(100%) invert(6%) sepia(60%) saturate(986%) hue-rotate(179deg) brightness(102%) contrast(94%); */
}

section.donate-sec .container-fluid {
  padding: 0;
}

.h-map h3 {
  color: #fff;
  position: absolute;
  bottom: 50px;
  left: 4%;
  z-index: 9;
  font-size: 73px;
}

.danate-form {
  width: 100%;
  max-width: 550px;
  padding: 60px 40px;
  top: -90px;
  right: 0;
  z-index: 9;
  position: absolute;
  background: var(--secondaryColor);
  box-shadow: 0 0 20px 0 #00000069;
}

.danate-form h4 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.danate-form p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}

.price-options {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
  padding: 20px 0px;
}

.price-options label {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  color: #fff;
  align-items: center;
  gap: 8px;
  font-family: 'Uni';
  font-weight: 200;
}

.price-options input {
  display: none;
  /* Hide default radio buttons */
}

/* Custom Radio Button */
.price-options input+span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Active State */
.price-options input:checked+span::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  display: block;
}

ul.donate-no {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.danate-form input {
  width: 100%;
  height: 55px;
  margin: 0 0 40px;
  color: #fff;
  outline: none;
  padding: 0 20px;
  border-radius: 5px;
  border: 1px solid #ffffff7a;
  background-color: transparent;
}

.danate-form input::placeholder {
  color: #fff;
}

ul.donate-no li a {
  font-size: 20px;
  color: #717070;
  font-family: 'Montserrat';
  font-weight: 600;
}

.other label {
  position: relative;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  color: #fff;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.other label input {
  display: none;
  /* Hide default radio buttons */
}

/* Custom Radio Button */
.other input+span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Active State */
.other label input:checked+span::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  display: block;
}

.other input {
  width: 85%;
  border: 0;
  background: #fff;
  height: 50px;
  color: #000;
  border-radius: 5px;
  margin: 0 0 0px !important;
}

.other {
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

ul.scv {
  gap: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul.scv li a {
  border: 1px solid #000;
  color: #000;
  width: 250px;
}

ul.scv li a:hover {
  background: #000;
  color: #fff;
}

.donate-btn {
  text-align: center;
  position: relative;
}

.donate-btn button {
  border: 0;
  background: none;
}

.donate-btn:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0px;
  background: #000;
  top: 70%;
  left: 0;
  z-index: -1;
}

.rdo-active {
  color: #d39540 !important;
  position: relative;
}

.rdo-active:before {
  content: '\f192';
  position: absolute;
  font-family: 'Font Awesome 5 Pro';
  left: -26px;
  color: #d39540;
  font-weight: 400;
  font-size: 16px;
  top: 1px;
}

/*Contact home End*/

/*Footer Start*/

footer {
  background: #0a1a2f;
  padding: 50px 0 32px 0px;
}

footer h5 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 15px;
}

.quicklink ul {
  column-count: 2;
}

.quicklink ul li a {
  font-size: 13px;
  line-height: 40px;
  color: #fff;
  font-family: 'Montserrat';
  text-transform: uppercase;
}

.quicklink {
  height: 100%;
  padding: 25px 0px;
  border-right: 1px solid #ffffff12;
}

.contact-f ul li a {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  font-size: 12px;
  color: #fff;
  line-height: 50px;
}

.contact-f {
  padding: 25px 0px;
}

.contact-f ul li a i {
  font-size: 20px;
  width: 25px;
}

.f-web {
  text-align: center;
}

.f-web p {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

.footerbottom {
  background: #081526;
  padding: 22px 20px;
  border: 1px solid #ffffff85;
  margin: 50px 0 0 0;
}

.f-media ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
  margin: 0;
}

.f-media ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
}

.f-media ul li a:hover {
  background: #d39540;
}

.donate-btn button .theme-btn-text {
  border: 1px solid #fff;
}

.h-map h2 {
  color: #ffff;
  margin: 0 0 50px 0;
}

section.donate-sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  content: '';
  background: #0a1a2fe6;
}



/*Footer End*/

/* Home Page end*/

/* InnerPage Aboutus start */
.abt-para {
  margin: 40px 0 0 0;
}

img.approve {
  width: 20px;
}

ul.approve-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
}

ul.approve-list li * {
  margin: 0;
}

ul.approve-list li h6 {
  font-family: 'Cocogoose';
}

ul.approve-list {
  column-count: 2;
}


.about-stand-sec .stand-top-text {
  padding: 0 0 0 40px;
}

.about-stand-sec img.stand1 {
  height: 380px;
  border-radius: 10px 10px 0 10px;
}

.about-stand-sec img.stand2 {
  height: 400px;
  border-radius: 0 10px 10px 10px;
}

/* InnerPage Aboutus end */

/*Contact Start*/

.map iframe {
  width: 100%;
  height: 500px;
  filter: brightness(0.5);
}

.contact-frm h4 {
  color: #fff;
  font-size: 45px;
  margin-bottom: 50px;
  text-transform: capitalize;
}

.contact-frm input {
  border: 0;
  border-bottom: 1px solid #afafaf;
  width: 100%;
  color: #fff;
  margin: 0 0 40px;
  background-color: transparent;
  padding: 0 0 16px;
  outline: 0;
}

.contact-frm button {
  background: #fff;
  border: 0;
  border-radius: 5px;
  color: var(--secondaryColor);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 55px;
  box-shadow: 0 0 20px 0 #00000085;
}

.main0body .footer-top-section {
  display: none;
}

.ctct-detl {
  background: #0a1a2f;
  padding: 89px 40px;
  border-radius: 0px 15px 15px 0px;
  position: relative;
  box-shadow: 0px 0px 49px 0px rgba(65, 65, 65, 0.14);
}

.ctct-detl ul li {
  display: inline-block;
}

.ctct-detl ul {
  display: flex;
  align-items: center;
  line-height: 30px;
  margin-bottom: 26px;
  gap: 30px;
}

.ctct-detl ul li i {
  color: #fff;
  font-size: 25px;
  margin: 0 30px 0 0;
  width: 30px;
}

.ctct-detl ul li a {
  font-size: 14px;
  color: #fff;
}

.ctct-detl ul li span {
  display: block;
  text-align: center;
}

.contact-frm {
  padding: 71px 40px;
  background: #050f1c;
  position: relative;
  width: 104%;
  border-radius: 15px 0px 0px 15px;
  box-shadow: 0px 0px 49px 0px rgba(65, 65, 65, 0.14);
}

.cont-inner {
  width: 80%;
  margin: 0 auto;
  margin-top: -210px;
  z-index: 999;
  position: relative;
}

.map {
  z-index: -1;
}

section.contact-sec {
  padding: 100px 0;
}

.ctct-detl h4 {
  font-size: 39px;
  text-transform: uppercase;
  color: #fff;
}

.contact-frm input::placeholder {
  color: #fff;
}

/*Contact Start*/

/* InnerPage Aboutus start */

/* Detail Section Styles */
.what-detail-sec {
  padding: 60px 0;
}

.what-detail-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 4px 0 #00000038;
  overflow: hidden;
  position: relative;
}

.what-detail-image {
  position: relative;
}

.what-detail-image img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  border-radius: 20px;
  object-position: top;
}

.what-detail-sec span.what-number {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: -50px;
  left: 30px;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.what-detail-text {
  padding: 80px 30px 30px;
  position: relative;
  z-index: 1;
}

.what-detail-text h6.cocogoose {
  font-size: 20px;
  white-space: nowrap;
}

.what-detail-text p {
  line-height: 1.8;
  margin-bottom: 15px;
}

ul.goal-list {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 13px 0;
  border-top: 1px solid #00000021;
}

ul.goal-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

ul.goal-list * {
  margin: 0;
}

.what-detail-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}


ul.stand-list li h6 {
  margin: 0 !important;
}

.stand-detail-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stand-detail-box p {
  width: 72%;
  padding: 15px;
  border-left: 1px solid #00000021;
}

span.what-number h3 {
  margin: 0;
}

/* InnerPage Aboutus end */

/* InnerPage Aboutus start */

/* INNER GALLERY ONLY */
.innergallery .gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}


.innergallery a {
  width: 100%;
  display: block;
}

img.gallery-img.gallery-img1 {
  height: 250px;
}

img.gallery-img.gallery-img2 {
  height: 450px;
}

img.gallery-img.gallery-img3 {
  height: 250px;
}

img.gallery-img.gallery-img4 {
  height: 450px;
}

img.gallery-img.gallery-img5 {
  height: 250px;
}

img.gallery-img.gallery-img6 {
  height: 250px;
}

img.gallery-img.gallery-img7 {
  height: 350px;
}

img.gallery-img.gallery-img8 {
  height: 350px;
}

img.gallery-img.gallery-img9 {
  height: 250px;
}

/* InnerPage Aboutus end */

/* InnerPage Aboutus start */


.donation-form {
  margin: 30px auto;
  color: #333;
}

/* =====================
 HEADINGS & LABELS
===================== */
.donation-form h4 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #000;
}

.donation-form label.title {
  font-size: 15px;
  font-weight: 600;
}

/* =====================
 FORM ELEMENTS
===================== */
.donation-form input[type="text"],
.donation-form select,
.donation-form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  outline: none;
  color: #00000061;
  font-weight: 600;
  margin: 5px 0;
}

.donation-form textarea {
  height: 80px;
  resize: none;
}

.donation-form input::placeholder,
.donation-form textarea::placeholder {
  color: #aaa;
}

/* =====================
 RADIO & CHECKBOX
===================== */
.donation-form .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
}

.donation-form .radio-group input {
  margin-right: 6px;
}

.donation-form .checkbox {
  font-size: 13px;
  color: #666;
}

.donation-form .checkbox input {
  margin-right: 6px;
}

/* =====================
 CARD INLINE INPUTS
===================== */
.donation-form .inline-inputs {
  display: flex;
  gap: 15px;
}

/* =====================
 BUTTON
===================== */
.donation-form .submit-btn {
  background: #c4122f;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


.radio-group label {
  opacity: 0.7;
  width: 33%;
  margin: 10px 0;
  font-size: 15px;
  color: #000;
  font-weight: 600;
}

.form-row {
  margin: 10px 0;
}

button.theme-btn {
  border: none;
  background: transparent;
}


/* ===============================
   RADIO & CHECKBOX CUSTOM STYLE
================================ */

.donation-form input[type="radio"],
.donation-form input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #cfcfcf;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  margin-right: 8px;
  vertical-align: middle;
}

/* Radio Checked */
.donation-form input[type="radio"]:checked {
  border-color: #c4122f;
}

.donation-form input[type="radio"]:checked::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #c4122f;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Checkbox (override radio shape) */
.donation-form .checkbox input[type="radio"] {
  border-radius: 3px;
}

/* Checkbox Checked */
.donation-form .checkbox input[type="radio"]:checked::before {
  content: "✔";
  font-size: 11px;
  color: #fff;
  background: #c4122f;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Radio Group spacing */
.donation-form .radio-group label {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #555;
  cursor: pointer;
}

/* Checkbox text */
.donation-form .checkbox label {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* Hover effect */
.donation-form input[type="radio"]:hover {
  border-color: #c4122f;
}

/* InnerPage Aboutus end */

/* InnerPage Aboutus start */

/* ===============================
   NEWS DETAIL SECTION
================================ */

.news-detail-sec {
  padding: 60px 0;
}

.news-detail-box {
  max-width: 100%;
}

/* Image */
.news-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 20px;
  display: block;
}

/* Meta */
.news-detail-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

.news-detail-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-detail-meta i {
  color: #c4122f;
  font-size: 13px;
}


/* Content */
.news-detail-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

.news-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-title h6 {
  text-transform: capitalize;
  opacity: 0.7;
}

/* InnerPage Aboutus end */

/* InnerPage Aboutus start */

.style3 .theme-btn-text::before {
  background-color: transparent;

}

.style3 .theme-btn-text {
  color: #000;
  padding: 15px 30px;
  border: 1px solid #00000021;
}

.finance-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

img.finance-img {
  height: 310px;
  border-radius: 10px;
}

.finance-title {
  display: flex;
  align-items: center;
  margin: 10px 0;
  gap: 20px;
}

img.pdf-img {
  width: 30px;
}

.finance-title h6 {
  text-transform: capitalize;
  opacity: 0.7;
  margin: 0;
}

.finance-card {
  padding: 13px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 14px 4px #0000000a;
  margin: 20px 0;
}

.finance-main {
  padding: 13px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 14px 4px #0000002e;
  margin: 20px 0;
}

.misson-bar {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  width: fit-content;
}

.misson-bar span.red {
  margin: 0 10px 0 0px;
}

.misson-bar span.line {
  width: 100vw;
  position: absolute;
  left: 100%;
}


.stand-top-image {
  position: relative;
  z-index: 1;
}


.stand-top-text .misson-bar span.line {
  width: 50vw;
}

iframe {
  height: 100%;
  width: 100%;
}

.iframe-box i.fa-solid.fa-location-dot {
  position: absolute;
  top: 50%;
  left: 51%;
  z-index: 99;
  font-size: 45px;
  color: #ffff;
}

.finance-box1 .finance-btn {
  float: right;
  margin: 0 0 10px 20px;
}

/* InnerPage Aboutus end */

/* InnerPage Aboutus start */
/* InnerPage Aboutus end */