* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Poetson One", "Roboto", "Segoe UI", Tahoma, Verdana,
    sans-serif;
}

.mp-0 {
  margin: 0;
  padding: 0;
}

.dobtn a {
  width: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  font-style: italic;
  padding: 0.5rem 1rem;
  text-decoration: none;
  background-color: red;
  transform: translateX(0px);
  transition: all ease-in-out 0.5s;
}

.dobtn a:hover {
  color: #f8e266;
  transform: translateX(4px);
  background-color: rgb(249, 62, 62);
}

.shadow-l {
  box-shadow: -8px 8px 4px gray;
}

.shadow-b {
  box-shadow: 2px 4px 10px gray;
}

.shadow-r {
  box-shadow: 8px 8px 4px gray;
}

.br-f a {
  border-radius: 1rem;
}

/* Text-Hovering Start */
.marque-section {
  color: #fff;
  background-color: #2c2c2c;
}
/* Text-Hovering End */

/* Header Start */
.nav-logo img {
  width: 35%;
}

.image-links-container {
  display: flex;
  align-items: center;
}

.nav-brands {
  margin-right: auto;
}

.navbs {
  display: flex;
  align-items: center;
}

.fstyle {
  font-weight: 700;
  font-style:normal;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  font-size: 1.5rem;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: red;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.dropdown-menu li {
  position: relative;
  font-size: 1rem;
}

.dropdown a {
  font-size: 1rem;
}

.dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
  right: 100%;
  left: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
}

.dropdown-hover:hover > .dropdown-menu {
  display: inline-block;
}

.dropdown-hover > .dropdown-toggle:active {
  pointer-events: none;
}

.animation-D {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}

@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }

  40% {
    transform: scaleY(1.02);
  }

  60% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(1);
  }
}
/* Header End */

/* carausel Start */
.picon{
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: #2c2c2c;
}
/* carausel End */

/* Modal Start */
.mmain{
  color: #fff;
  font-weight: 600;
  background-color: #2c2c2c;
}

.mheader h1{
  color: red;
  padding: 1rem;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  text-shadow: 1px 1px 4px red;
}

.mclose{
  background-color: #fff;
}

.mleft img{
  width: 100%;
  height: 30vh;
  border-radius: 1rem;
}

.mright h4{
  text-align: center;
}
/* Modal End */

/* Donate Section Start */
.medical-info{
  color: #fff;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #2c2c2c;
  box-shadow: 10px 10px 20px #000;
}
.medical-info h2{
  color: red;
  font-weight: bold;
}
.medical-info h5{
  color: gray;
}
.c-img img {
  /* max-height: 60vh;\/ */
  border-radius: 1rem;
}
.tabs ul {
  width: 100;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 1rem 0rem 0rem 0rem;
  background-color: #53635f;
  border-radius: 1rem 1rem 0rem 0rem;
}
/* #f8e266 rgb(249, 62, 62) */
.tabs ul li {
  margin: 0rem 1rem;
}
.tabs ul li button {
  border: none;
  font-size: 1.5rem;
  text-transform: uppercase;
  background: #fff;
  padding: 0rem 1rem;
  border-radius: 1rem 1rem 0rem 0rem;
  transition: all ease-in-out 0.5s;
}
.tabs ul li button:hover {
  background-color: #2c2c2c;
  color: #fff;
  text-decoration: underline;
}
.tabs ul li button.active {
  background-color: #2c2c2c;
  color: #fff;
  text-decoration: underline;
}
.cards {
  background-color: #2c2c2c;
  color: #fff;
  padding: 0.5rem;
}
.cards img {
  width: 100%;
  height: 25vh;
  border-radius: 0.5rem;
} 
.set{
  display: flex;
  justify-content:left;
}
.cards h1{
  font-style: italic;
  text-decoration: underline;
}
.cards a {
  border-radius: 1rem;
  padding: 0.5rem;
  background-color: red;
  color: #fff;
  font-weight: bold;
  font-size: large;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: 0.5s all ease-in-out;
}
.cards a:hover {
  background-color: rgb(249, 62, 62);
  color: #fff;
}
.updates-video{
  display: flex;
  justify-content: center;
}
.updates-video video,iframe {
  cursor: pointer;
  width: 50%;
  height: 50vh;
  border-radius: 2rem;
  margin: 2rem 0rem;
  padding: 1rem;
  box-shadow: 20px 20px 10px gray;
  /* background-color: #2c2c2c; */
}
.donate-section {
  /* border-left: 10px solid ; */
  /* box-shadow: 20px 20px 10px gray; */
  background-color: #53635f;
  border-radius: 1rem;
}
.donate-section h3 {
  padding: 1rem 1.2rem;
  color: #fff;
  position: relative;
  font-weight: bolder;
  font-style: italic;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 4px solid #fff;
  border-radius: 1rem 1rem 0rem 0rem;
  font-weight: 900;
  background-color: #dc2c1d;
}
.donate-section h3:after {
  width: 35%;
  content: "";
  margin-top: 6%;
  margin-left: -35%;
  position: absolute;
  transform: scaleX(0);
  border: 4px solid rgb(255, 255, 255);
  transform-origin: bottom right;
  transition: transform 0.5s ease-out;
}
.donate-section h3:hover::after {
  transform: scaleY(1);
  transform-origin: bottom left;
}
.donate-section p{
  color: #fff;
  font-style: italic;
  padding-left: 1rem;
}
.detailInputs label{
  color: #000;
}
.detailInputs input{
  box-shadow: 2px 2px 4px #000;
  background-color: #fff;
}
.detailInputs input:focus{
  outline: 0 none;
  box-shadow: none;
  border: 1px solid #000;
  color: #000;
  background-color: #fff;
}
.btnred{
  color: #fff;
  border: 2px solid yellow;
  transition: all ease-in-out 0.5s;
}
.btn-check:hover+ .btnred{
  color: #fff;
  border-color: #fff;
  background-color: rgb(249, 62, 62);
  box-shadow: 5px 5px 4px #000;
}
.btn-check:checked+ .btnred{
  background-color: red;
  border-color: #fff;
  color: #fff;
}
.set-bg{
  background-color: #53635f;
  color: white;
  padding: 90px 0px;
}
.set-bg h1{
  text-align: center;
  font-weight: bold;
  font-size: 47px;

}
.customAmountInput{
  width: 100%;
  margin: 1rem 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.customAmountInput input{
  width: 80%;
  color: #000;
  text-align: center;
  border: none;
  font-size: 1.2rem;
  border: 1px solid #fff;
  /* border-radius: 1rem; */
  box-shadow: 5px 5px 15px;
  background-color: #fff;
  outline: none;
  transform: translateY(0px);
  transition: all ease-in-out 0.5s;
}
.customAmountInput input:focus{
  outline: 0 none;
  box-shadow: none;
  border: 1px solid #fff;
  color: #000;
  background-color: #fff;
}
.customAmountInput input::placeholder{
  color: #000;
}
.subBtn input{
  color: #ffffff;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 800;
  border-radius: 0.8rem;
  padding: 0.5rem 1.5rem;
  background-color: #dc2c1d;
  transform: translateY(0px);
  box-shadow: 2px 2px 4px #000;
  transition: all ease-in-out 0.5s;
}
.subBtn input:hover{
  transform: translateY(-4px);
  box-shadow: 10px 10px 10px #000;
}
.orSection h2{
  color: #fff;
  font-weight: 800;
  font-style: italic;
}
.donateQr{
  width: 100%;
  display: flex;
  padding: 1rem;
  justify-content: center;
}
.donateQr img{
  width: 80%;
  border-radius: 1rem;
}
.open-document {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  /* background-color: red; */
  background-color: transparent;
}
.docu-img{
  width: 100%;
  height: 80vh;
  border-radius: 1rem;
}
.open-document button {
  border-radius: 1rem;
  border: none;
  outline: none;
  width: 96%;
  height: 100%;
  background-color: transparent;
}
.open-document button span {
  display: none;
  border: 1px solid black;
  padding: 10px 3rem;
  border-radius: 1.5rem;
  animation-name: openDocument;
  animation-duration: 0.8s;
  animation-delay: 0s;
  transition: transform 0.8s ease-in-out;
  background-color: rgba(128, 128, 128, 0.546);
}
@keyframes openDocument {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0px);
  }
}
.open-document button:hover {
  background-color: #2c2c2cb2;
  /* transform: translateY(0px); */
  /* rgba(128, 128, 128, 0.483) */
}

.open-document button:hover span {
  display: inline-block;
}
/* Donate Section End */

/* Footer Start */
footer a {
  color: #fff;
  text-decoration: none;
}

.f1 h5 {
  font-style: italic;
  font-size: 1.5rem;
}

.f1 li,a {
  transform: translateX(0px);
  font-size: 1.1rem;
  transition: transform linear 0.5s;
}

.f1 li:hover{
  transform: translateX(4px);
}

.f1 li:hover a{
  text-decoration: underline;
  font-weight: 600;
}

.f1 input{
  padding-left: 1rem;
}

.f1 button{
  color: #fff;
  font-weight: 700;
  background-color: #2c2c2c;
  transform: translateX(0px);
  box-shadow: 2px 4px 5px #000;
  transition: all ease-in-out 0.5s;
}

.f1 button:hover{
  transform: translateX(4px);
  box-shadow: -3px 4px 5px #000;
  background-color: #3a3939d5;
}
/* Footer End */
.bg-color {
  background-color: #fff4ee;
}
.pos-absolute {
  background-color: green;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 10px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2rem;
  height: auto;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tax-i {
  /* height: 25px; */
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pos-absolute-ur {
  background-color: red;
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 14px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2rem;
  height: auto;
  width: fit-content;
  display: flex;
}

.name-p {
  font-size: 1.4rem;
  font-family: "poppins", sans-serif;
  font-weight: 700;
}

.age-sex {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "poppins", sans-serif;
  line-height: 2rem;
}

/* bank Details start */

.main-container {
  border-bottom: 2px solid gray;
  width: 100%;
  height: auto;
  /* padding:  10px 0px 10px 0px; */
  position: sticky;
}

.share-w {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  font-family: "poppins", sans-serif;
}

.share-w-button {
  background-color: rgb(84, 174, 84);
  padding: 5px 10px;
  border: none;
}

.share-w-button:hover {
  color: white;
}

.w-logo1 {
  color: white;
}

.link1 {
  text-decoration: none;
  color: white;
}

.link1:hover {
  color: white;
}

.share-f-button {
  background-color: rgb(95, 100, 241);
  padding: 5px 10px;
  border: none;
}

.f-logo1 {
  color: white;
}

.share-btn {
  border-radius: 50%;
  border: none;
  color: white;
  background-color: darkblue;
  padding: 5px 10px;
}

.bank-detail {
  border-radius: 3%;
}

.bank-detail-head {
  border-bottom: 1px solid rgba(128, 128, 128, 0.627);
}

.fixed-section-donate-button {
  color: white;
  background-color: rgb(255, 128, 0);
  border: none;
  padding: 1px 15px;
}

.fixed-section {
  position: fixed;
  bottom: 0;
  left: 35%;
}

.fixed-section-para {
  align-items: center;
  border-bottom: 1px solid gray;
}

.fixed-section-para .fixed-section-para-btn {
  background-color: red;
  border: none;
  color: white;
  font-size: 15px;
  padding: 2px 20px;
}

.fixed-section-donate-button-span {
  font-style: italic;
  font-size: small;
}

.pos-fixed {
  position: fixed;
  bottom: 0;
  background-color: white;
  box-shadow: 0px -2px 10px 1px gray;
  height: auto;
  width: 100%;
}

.open-document {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  /* background-color: red; */
  background-color: transparent;
}

.open-document button {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.open-document button span {
  display: none;
  border: 1px solid black;
  padding: 10px 3rem;
  border-radius: 1.5rem;
  animation-name: openDocument;
  animation-duration: 0.8s;
  animation-delay: 0s;
  transition: transform 0.8s ease-in-out;
  background-color: rgba(128, 128, 128, 0.546);
}
@keyframes openDocument {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0px);
  }
}
.open-document button:hover {
  background-color: rgba(128, 128, 128, 0.483);
  /* transform: translateY(0px); */
}

.open-document button:hover span {
  display: inline-block;
}

/* bank Details end */

.donate-btn{
    display: flex;
    justify-content: center;
    
}

.donate-btn a{
    padding: 0.4rem 1rem;
    width: fit-content;
    border-radius: 8px;
    background-color: red;
    color: white;
    font-size: 1rem;
    border: none;
    transform: translateY(0);
    transition: transform .4s linear,background-color .4s ease-in-out;
    text-decoration: none;
}

.donate-btn a:hover{
    background-color: #db0000;
    transform: translateY(-4px);
    color: white;
}
body {
  text-align: justify;
  font-family: Georgia, "Times New Roman", Times, serif !important;
  /* font-family: cursive;

} */
}

.middle {
  text-align: center;
}
.size {
  font-size: 70px;
}
.main {
  display: flex;
}
.color {
  color: red;
}
.mai {
  font-weight: 500;
  opacity: 0.7;
}
.mar {
  padding-top: 40px;
}

/* pageOme end */

.font {
  font-size: 54px;
  font-weight: 600;
  text-align: center;
}
.design {
  /* text-align: justify; */
  /* padding: 0px 20px; */
  font-size: "17px";
  font-weight: 600;
  opacity: 0.6;
}
.pad {
  padding: 6px 6px;
  /* padding-left: 10px; */
  font-size: 20px;
  font-weight: 600;
  color: white;
}
.uper {
  position: relative;
  top: -76px;
  z-index: 1041;
}
@media (max-width: 767px) {
  .uper {
    margin-top: 30px;
    position: relative;
    top: 0px;
    z-index: 0;
  }
  .give {
    margin: 20px 0px;
  }
  .padd {
    margin-top: 20px !important;
  }
}

.botta {
  display: flex;
  align-items: center;
  padding: 1px 25px;
  border-radius: 22px;
  background-color: red;
  border: none;
}
.botta:hover {
  background-color: rgb(94, 5, 5);
  transition: 0.3s linear;
}
.but {
  display: flex;
  justify-content: center;
  /* padding-top: 30px; */
}

/* page2 end */
.color-1 {
  background-color: black;
}
.cls {
  color: white;
  font-size: 45px;
}
.set {
  display: flex;
  justify-content: center;
}
.bottan {
  display: flex;
  align-items: center;
  padding: 1px 25px;
  border-radius: 22px;
  background-color: yellow;
  border: none;
}
.bottan:hover {
  background-color: rgb(201, 181, 0);
  transition: 0.3s linear;
  color: white;
}
.pada {
  padding-left: 10px;
  font-size: 20px;
  font-weight: 600;
  color: red;
}
.colu {
  color: red;
}
/* third page end */
.fos {
  font-size: 50px;
  font-weight: 600;
}
.white {
  color: white;
}
.rad {
  border-radius: 0px 0px 10px 0px;
}

/* Card start */
.but1 {
  display: flex;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 10px;
}
.but2 {
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.but2 a {
  text-decoration: none;
}
a {
  text-decoration: none;
}
.non a {
  text-decoration: none;
}
.non li {
  padding-top: 8px;
}
/* Contact Page */
.backgroung-contact {
  margin: 0 0 60px;
  padding: 0px 0 155px;
  /* height: 210vh;
    width: 100%; */
  background: url(./svg/1.svg);
  background-position: left bottom;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}

.inner-background-contact {
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  height: inherit;
  width: inherit;
  background: url(./svg/2.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}

.contact-text strong {
  font-size: 52px;
}

.border-5px {
  height: 3px;
  width: 52px;
  border: none;
  border-radius: 3px;
  background-color: #f1b806;
}

.bg-light1 {
  color: black;
  background-color: rgba(255, 255, 255, 0.963);
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 12px 4px #061c55;
}

.contact-btn {
  padding: 8px 28px;
  border: none;
  outline: none;
  border-radius: 15px;
  font-size: 30px;
  font-weight: 700;
  background-color: red;
  color: black;
  transition: all 1s;
}

.contact-btn:hover {
  background-color: yellow;
  color: black;
}

.opacity-70 {
  opacity: 0.7;
}
.chain {
  font-weight: 600;
}
.chain:hover {
  color: red;
  transition: 0.3s linear;
}
.mar {
  margin-top: 10px;
}

/* ****** Donation ******** */

.bg-style {
  background-image: url("./image/bgimage.jpg");
  background-position: center;
  background-size: cover;
}

.inner-bg {
  background-color: rgba(209, 206, 206, 0.659);
}

.bg-colorC {
  background-color: #fff4ee;
}

.online-donation {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 3rem;
  color: #ff0000;
  /* font-family: "Poppins", sans-serif; */
}

.contribute-btn {
  border: none;
  border-radius: 9px;
  font-family: "poppins", sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 2.2rem;
  padding: 0.4rem 1rem 0.4rem 1rem;
  transform: translateY(0px);
  background-color: #ff0000;
  transition: transform 0.4s linear, background-color 0.4s ease-in-out;
  margin-top: 0.8rem;
}
.contribute-btn:hover {
  background-color: #db0000;
  transform: translateY(-4px);
}

.privacy {
  color: #ff0000;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "poppins", serif;
}

.inn-privacy {
  font-size: 1rem;
  font-family: "poppins", sans-serif;
  font-weight: 400;
  line-height: 1.8rem;
}

.ques-sug {
  color: #ff0000;
  font-size: 1.2rem;
}
.ques-sug:hover {
  color: #db0000;
}

.coming-soon {
  color: #ff0000;
  text-align: center;
  margin: 1rem 0rem 1rem 0rem;
  font-size: 3rem;
  line-height: 4rem;
  font-weight: 600;
  font-family: "Bricolage Grotesque", sans-serif;
}

.qrcode{
  height: auto;
  width: 50%;
}

.donate-qrcode{
  font-size: 1.3rem;
  font-family: 'poppins', sans-serif;
  font-weight: 500;
  text-align: center;
}