* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}
.btn-primary{
  padding: 0;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
}
.btn-primary:hover{
  background-color: transparent;
  border: transparent;
}
.btn-primary:focus , .btn-primary:active {
  background-color: transparent !important;
  border: transparent;
  box-shadow: none;
  outline: none;
}
.btn-primary span{
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 5px 12px;
  background-color: #dc6601;
  border: 1px solid #dc6601;
  border-radius: 50px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  min-width: 169px;
}
.btn-primary:hover span {
  background-color: #fff;
  color: #dc6601;
}
.btn-primary figure{
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  margin-left: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dc6601;
  transition: all 0.3s ease-in-out;
  border: 1px solid #dc6601;
}
.btn-primary:hover figure {
  background-color: #fff;
  color: #dc6601;
}
.btn-primary figure img{
  width: 15px;
  filter: invert(1) brightness(5) grayscale(1);
}
.btn-primary:hover figure img{
  filter: none;
}


header{
  background-color: #e6d9b6;
  padding: 10px 0 43px;
}
.header-top p{
  font-size: 14px;
  font-weight: 500;
  color: #000;
}


.header-top .enquiry-header li{
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 18px;
}
.header-top .enquiry-header li:not(:last-child){
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid #000;
}
.header-top .enquiry-header li a{
  color: #000;
  padding-left: 5px;
  transition: all 0.2s ease-in-out;
}
.header-top .enquiry-header li a:hover{
  color: #dc6601;
}

.header-main{
  position: fixed;
  left: 0;
  top: 48px;
  width: 100%;
  z-index: 99;
  transition: all 0.2s ease-in-out;
}
header.fixed .header-main{
    top: 0;
    padding: 10px 0;
    background: #e6d9b6;
}
.header-inner{
  max-width: 845px;
  margin: 0 auto;
}
.header-inner ul{
  background-color: #d75b04;
  border-radius: 50px;
  padding: 13px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 6px;
}
.header-inner ul li a{
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #fff;
  display: block;
}
.header-inner ul li a:hover{
  text-decoration: underline;
}
.header-inner .donate-btn{
  width: 215px;
}
.section-bg{
  position: relative;
  z-index: 1;
  padding: 80px 0 0;
  background-color: #000;
}
.section-bg::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
    background-image: url(../images/section-bg.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  height: 1220px;
  z-index: -1;
}
.banner-content{
  max-width: 745px;
  margin: 0 auto 125px;
}
.banner-content .donate-btn{
  width: fit-content;
  margin: 0 auto;
}
.banner-content h1{
    font-size: 45px;
  line-height: 50px;
  font-weight: 800;
  color: #fff;
}
.banner-content P{
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 25px;
}
.heading{
  position: relative;
  z-index: 0;
  margin-bottom: 16px;
}
.heading::before{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  content: "";
  opacity: 0.3;
  z-index: -1;
}
.heading h2{
  font-size: 21px;
  line-height: 31px;
  font-weight: 400;
  color: #fff;
  padding: 14px 30px;
  background-color: #dc6601;
  border-radius: 50px;
  width: fit-content;
  position: relative;
  z-index: 1;
  margin-bottom: 0;

}
.heading.d-flex{
  margin-bottom: 79px;
}
.heading.d-flex h2 {
    padding: 7px 30px;
}
.foundation-section{
  margin-bottom: 40px;
}
.foundation-section .heading h2{
  padding: 14px 50px; 
}
.foundation-section .section-content{
  text-align: center;
}
.foundation-section .section-content p{
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
  margin-top: 15px;
}
.foundation-section .section-content figure{
  border-radius: 20px;
  overflow: hidden;
}
.foundation-section .section-content figure img{
  width: 100%;
}
.cause-listing{
  display: grid;
  grid-template-columns: repeat(3 , 1fr);
  gap: 10px;
  margin-top: 20px;
}
.cause-listing li{
  background-color: #fff;
  padding: 30px 22px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.cause-listing li .bottom-section{
  margin-top: auto;
}
.cause-listing li figure{
    width: calc(100% + 30px);
    margin-left: -15px;
    border-radius: 10px;
    overflow: hidden;
    height: 371px;
}
.cause-listing li figure img{
  width: 100%;
}
.cause-listing li h3{
    font-size: 21px;
  line-height: 28px;
  font-weight: 500;
  color: #d75b04;
  margin: 30px 0 20px;
  /* min-height: 85px; */
}
.cause-listing li p{
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  color: #000;
  margin-bottom:25px;
}
.cause-listing li .collected-amount{
  margin-bottom: 10px;
}
.cause-listing li .collected-amount p strong{
  font-size: 18px;
  line-height: 27px;
  font-weight: 800;
  padding-right: 5px;
  color: #000;
}
.cause-listing li .collected-amount p{
  font-size: 12px;
  line-height: 25px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 0;
}
.cause-listing1{
  gap: 10px;
  margin-top: 250px;
}
.cause-listing1 li{
  background-color: #fff;
  padding: 30px 22px;
  border-radius: 20px;
  text-align: center;
  display: flex !important;
  flex-direction: column;
  min-height: 725px;
  justify-content: space-between;
}
.cause-listing1 li .bottom-section{
  margin-top: auto;
}
.cause-listing1 li figure{
    margin-top: -210px;
    width: calc(100% + 30px);
    margin-left: -15px;
    border-radius: 10px;
    overflow: hidden;
}
.cause-listing1 li figure img{
  width: 100%;
}
.cause-listing1 li h3{
    font-size: 21px;
  line-height: 28px;
  font-weight: 500;
  color: #d75b04;
  margin: 30px 0 20px;
  /* min-height: 85px; */
}
.cause-listing1 li p{
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  color: #000;
  margin-bottom:25px;
}
.cause-listing1 li .collected-amount{
  margin-bottom: 10px;
}
.cause-listing1 li .collected-amount p strong{
  font-size: 18px;
  line-height: 27px;
  font-weight: 800;
  padding-right: 5px;
  color: #000;
}
.cause-listing1 li .collected-amount p{
  font-size: 12px;
  line-height: 25px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 0;
}
.price-bar{
  margin-bottom: 25px;
}
.price-bar .progress{
  width: 100%;
  height: 8px;
}
.price-bar .progress .progress-bar{
  background-color: #007032;
}
.price-bar span{
  padding-left: 10px;
  display: block;
}
.curve-bg{
  margin: 60px 0 0;
  padding-bottom: 60px;
  border-radius: 30px;
  background-color: #fff;

}
.about-section{
  padding: 30px 0 60px;
}
.curve-bg .heading::before{
  background-color: #000;
  opacity: 0.7;
}
.about-section-start{
  margin-top: 50px;
}
.about-section-start .inner-listing{
  display: flex;
  flex-wrap: wrap;
}
.about-section-start .inner-listing:nth-child(even){
  flex-direction: row-reverse;
}
.about-section-start .inner-listing:not(:last-child){
  margin-bottom: 45px;
}
.about-section-start .inner-listing .left-box{
  width: 542px;
}
.about-section-start .inner-listing .left-box figure{
  border-radius: 10px;
  overflow: hidden;
}
.about-section-start .inner-listing .left-box figure img{
  width: 100%;
}

.about-section-start .inner-listing .right-box{
  width: calc(100% - 542px);
  padding-left: 30px;
  padding-top: 20px;
}
.about-section-start .inner-listing:nth-child(even) .right-box{
    padding-left: 0;
    padding-right: 30px;
    text-align: end;
}
.about-section-start .inner-listing .right-box h3{
    font-size: 21px;
  line-height: 32px;
  font-weight: 500;
  color: #dc6601;
}
.about-section-start .inner-listing .right-box P{
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  color: #000;
}

.successful-cause-section .cause-listing li{
  background-color: rgb(210, 210, 210,0.23);
  padding: 0 22px 25px;

}
.successful-cause-section .cause-listing li figure{
    width: calc(100% + 30px);
    margin-left: -15px;
}
.successful-cause-section .cause-listing li p{
  margin-bottom: 0;
}
.feature-section{
  padding: 40px 0;
}
.feature-section .section-head{
  text-align: center;
  font-size: 37px;
  line-height: 45px;
  font-weight: 600;
  color: #fff;
  margin: 36px 0 34px;
}
.feature-section ul{
  display: grid;
  grid-template-columns: repeat(4 , 1fr);
  gap: 40px;
}
.feature-section ul li{
  text-align: center;
  background-color: #dc6601;
  border-radius: 30px;
  padding: 30px 26px;
}
.feature-section ul li figure{
    width: 76px;
    height: 72px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-section ul li h3{
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.feature-section ul li p{
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
  color: #fff;
}
.gallary-slider figure img{
  width: 100%;
  transform: scale(1.05);
}
.gallary-section{
  padding: 10px 0 16px;
}
.gallary-section .heading h2{
  min-width: 219px;
}
.gallary-slider{
  margin-top: 20px;
}
footer{
  background-color: #262626;
  padding: 60px 0 20px;
}
footer .footer-inner{
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 60px;
  margin-bottom: 20px;
  border-bottom: 1px solid #4c4c4c;
}
footer .box-inner{
  width: 33.33%;
}
footer .box-inner:not(:last-child){
  padding-right: 20px;
}
footer .footer-inner h2{
  font-size: 21px;
  line-height: 32px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 30px;
}
footer .footer-inner p{
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  color: #c7c7c7;
  margin-bottom: 20px;
}
footer .footer-inner ul li:not(:last-child){
  margin-bottom: 15px;
}
footer .footer-inner a.read-more{
  font-size: 15px;
  font-weight: 400;
  color: #dc6601;
  margin-bottom: 10px;
  display: block;
}
footer .footer-inner span{
  font-size: 14px;
  font-weight: 400;
  color: #c7c7c7;
  display: block;
  margin-bottom: 5px;
}
footer .footer-inner ul li a{
  font-size: 15px;
  font-weight: 400;
  color: #c7c7c7;
  display: block;
  line-height: 25px;
  padding-left: 20px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
footer .footer-inner ul li a:hover{
  color: #dc6601;
}
footer .footer-inner ul li a::before{
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  width: 0; 
  height: 0; 
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #fff;
  transform: rotate(180deg);
  transition: all 0.2s ease-in-out;
}
footer .footer-inner ul li a:hover::before{
    border-right-color:#dc6601;
}


footer .footer-inner ul li{
  position: relative;
    font-size: 15px;
  font-weight: 400;
  color: #c7c7c7;
  display: block;
  line-height: 25px;

}
footer .footer-inner .box-inner:last-child ul li a::before{
  display: none;
}
footer .footer-inner ul li p{
  padding-left: 20px;
}
footer .footer-inner ul li figure{
  flex: 0 0 auto;
  max-width: 20px;
}
footer .copyright{
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: #c7c7c7;
  display: block;
}
footer .copyright a{
  color: #dc6601;
}

@media(min-width:1200px){
  .container{
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media(max-width:991px){
  .heading.d-flex {
    margin-bottom: 50px;
  }
  .cause-listing{
    grid-template-columns: repeat(2 , 1fr);
    margin-top: 0;
    gap: 15px;
  }
  .cause-listing li figure {
    margin-top: 0;
    width: calc(100% + 30px);
    margin-left: -15px;
    border-radius: 10px;
    overflow: hidden;
  }
  .about-section-start .inner-listing .left-box {
    width: 100%;
  }
  .about-section-start .inner-listing .right-box {
    width: 100%;
    padding-left: 0;
  }
  .about-section-start .inner-listing:nth-child(even) .right-box{
    padding-right: 0;
    text-align: left;
  }
  .feature-section ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  footer .box-inner:first-child {
    width: 100%;
    padding-bottom: 30px;
  }
  footer .box-inner:not(:first-child){
    width: 50%;
  } 
  .btn-primary span{
      min-width: 150px;
      font-size: 15px;
  }
  .header-top .enquiry-header li{
    font-size: 12px;
  }
  .header-top .enquiry-header li:not(:last-child) {
    padding-right: 15px;
    margin-right: 15px;
  }
  .header-top p{
    font-size: 12px;
  }
  .banner-content{
    margin: 0 auto 75px;
  }
  .heading h2{
    font-size: 18px;
  }
  .banner-content h1{
    font-size: 40px;
  }
}

@media(max-width:767px){
  .header-top{
    display: none !important;
  }
  .cause-listing {
    grid-template-columns: repeat(1, 1fr);
  }
  .feature-section ul {
    grid-template-columns: repeat(1, 1fr);
  }
  footer .box-inner{
    width: 100% !important;
    padding-bottom: 25px !important;
  }
  footer .footer-inner h2{
    font-size: 19px;
    margin-bottom: 15px;
  }
  footer{
    padding: 40px 0 20px;
  }
  footer .footer-inner{
    padding-bottom: 10px;
  }
  .feature-section .section-head{
    font-size: 24px;
    line-height: 34px;
  }
  .heading h2 {
      font-size: 16px;
  }
  .heading.d-flex h2 {
    padding: 7px 15px;
  }
  .btn-primary span {
      min-width: 110px;
        font-size: 13px;
  }
  .curve-bg{
    padding-bottom: 40px;
  }
  .foundation-section .heading h2 {
    padding: 10px 20px;
  }
  .banner-content h1 {
      font-size: 28px;
      line-height: 37px;
  }
  .banner-content P{
      font-size: 16px;
      line-height: 26px;
  }
  .header-main{
    top: 12px;
  }
  .foundation-section .section-content p{
      font-size: 16px;
      line-height: 26px;
  }
  .cause-listing li h3{
    margin: 20px 0 10px;
    font-size: 18px;
    line-height: 28px;
  }
  .section-bg{
    padding: 50px 0 0;
  } 
  .header-inner ul.navbar{
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: block;
    z-index: 999;
    transition: all 0.3s ease-in-out;
  } 
  .header-inner ul.navbar.show{
    left: 0;
  }
  header {
    padding: 10px 0 60px;
  }
  .header-inner .donate-btn {
    justify-content: end;
  }
  .menubar {
    position: relative;
    width: 1em;
    height: 1em;
    font-size: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.5rem;
    background-color: transparent;
  }
  .menubar .hamburger-line {
    position: absolute;
    right: 0;
    width: 100%;
    height: 0.125em;
    border-radius: 0.125em;
    background: #1c1c1c;
    transition: inherit;
  }

  .menubar .hamburger-line:nth-child(1) {
    top: 0.125em;
  }

  .menubar.is-active .hamburger-line:nth-child(1),
  .w-nav-button.w--open .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotateZ(-135deg);
  }

  .hamburger-line:nth-child(2) {
    top: 0.438em;
  }

  .menubar.is-active .hamburger-line:nth-child(2),
  .w-nav-button.w--open .hamburger-line:nth-child(2) {
    right: 50%;
    width: 0;
  }

  .hamburger-line:nth-child(3) {
    top: 0.75em;
    width: 0.625em;
  }

  .menubar.is-active .hamburger-line:nth-child(3),
  .w-nav-button.w--open .hamburger-line:nth-child(3) {
    top: 50%;
    width: 100%;
    transform: translateY(-50%) rotateZ(135deg);
  }
  .header-inner ul{
    padding: 20px 12px;
  }
  .header-inner ul li{
    margin-bottom: 15px;

  }
}

label.error {
    color: red;
    font-size: 12px;
    padding: unset;
    text-align: left;
    border: unset;
}

label#other-amount-error {
    padding: 0;
    border: 0;
    color: red;
}

footer .social-icon{
  display: flex;
}