* {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;

  position: relative;
}


@media screen and (max-width:991px){
  main{
    top: 120px;
  }
}

.dropdown-menu{
  
  -webkit-transition: all 0s linear;
  -o-transition: all 0s linear;
  -moz-transition: all 0s linear;
  transition: all 0s linear;
}

.selected-dropdownimg img{
  width: 20px;
}

h2 {
  margin: 0px auto;
  font-size: 16px;
  color: #c81133;
  display: block;
  font-weight: bold;
}

h3 {
  margin: 0px auto;
  font-size: 18px;
  color: #c81133;
  display: block;
  font-weight: bold;
}

/*Text Colors */
a {
  color: #393636;
  white-space: nowrap;
}

a:hover {
  color: #c81133;
}

/* .hover-italic {
} */
.hover-italic:hover {
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

.hover-large:hover {
  scale: 1.1;
}

.cl-primary {
  color: #c81133 !important;
}

.cl-hover-primary:hover {
  color: #c81133 !important;
}

.cl-secondary {
  color: #68e5ae;
}

.cl-black-base {
  color: red;
}

.border-primary {
  border: solid 2px #c81133 !important;
}

.bg-primary {
  background-color: #c81133 !important;
}

.bg-secondary {
  background-color: #fff !important;
}

.coinouter {
  width: 30px;
  height: 30px;
  border: 2px solid #e5a930;
  border-radius: 50%;
  color: #e5a930;
  box-shadow: 0 0 0.625em #e5a930, 0 0 0.5em #e5a930, 0 0 0.75em #e5a930;
}

@keyframes flip {
  0% {
    transform: rotateY(0);
  }

  100% {
    transform: rotateY(-180deg);
  }
}

.f-jp {
  font-family: source-han-sans-japanese, sans-serif;
  word-break: break-word;
}
header{
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
  top: 0;
  z-index: 999;  
  transition: all .6s ease-in-out;
}

header .header-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  transition: height .4s ease-in-out;
}

header.active .header-row{
  height: 100vh;
  overflow: hidden;
}

header nav{
  display: flex;
  align-items: center;
  transition: all .4s ease-in-out;
}

header.active nav{
  display: block;
  position: absolute;
  width: calc(100% - 20px);
  top: 70px;
  left: 0;
}

header nav ul{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .4s ease-in-out;
}

header nav ul li{
  position: relative;
  padding: 8px 20px;
}

header.active nav ul{
  width: 100%;
  padding-left: 1rem;
}

header .menu-btn{  
  width: 35px;
  height: 30px;
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all .4s ease-in-out;
}

@media screen and (max-width:992px) {
  header{
    position: fixed;
    width: 100%;
  }
  header nav{
    display: none;
  }
  header .menu-btn{
    display: flex;
  }
  header nav ul{
    display: block;
  }
  header .header-row{
    align-items: flex-start;
  }
}

header .menu-btn .menu-icon{
  width: 35px;
  height: 3px;
  background: #2C676C;
  border-radius: 5px;
  transition: all .2s ease-in-out;
}

header .menu-btn .menu-icon::before,
header .menu-btn .menu-icon::after{
  content: '';
  position: absolute;
  width: 35px;
  height: 3px;
  border-radius: 5px;
  transition: all .2s ease-in-out;
}

header .menu-btn .menu-icon::before{
  transform: translateY(-10px);
  background: #c81133;
  box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.32);
}

header .menu-btn .menu-icon::after{
  transform: translateY(10px);
  background: #c81133;
  box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.32);
}

/* open */

header .menu-btn.open .menu-icon{
  background: transparent;
  transform: translateX(-50px);
}
header .menu-btn.open .menu-icon::before{
  transform: rotate(45deg) translate(35px, -35px);
}
header .menu-btn.open .menu-icon::after{
  transform: rotate(-45deg) translate(35px, 35px);
}

nav > ul > li > a::before {
  background: transparent none repeat scroll 0 0;
  background-color: #c81133;
  bottom: -5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: transform 0.1s ease 0s;
  transition: transform 0.1s ease 0s;
  width: 100%;
}

nav > ul > li:hover a::before {
  transform: scale3d(1, 1, 1);
  transition-duration: 0.3s;
}

nav > ul > .active {
  background-color: #c81133;
}

nav > ul > .active > a {
  color: white;
}

nav > ul > li > ul {
  background: rgb(255, 255, 255) none repeat scroll 0 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  padding: 0 20px;
  position: absolute;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s linear 0s;
  visibility: hidden;
  -webkit-transition: 0.3s linear 0s;
  transition-duration: 0.3s linear 0s;
}

nav > ul > li > ul > li {
  border-bottom: 1px solid rgba(131, 131, 131, 0.1);
}

nav > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: 0.3s linear 0s;
  transition: 0.3s linear 0s;
}

@media screen and (max-width:1200px){
  nav > ul > li{
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* dropdown-toggle */
@media screen and (max-width:992px){
  .dropdown-toggle{
    display: none !important;
  }
  .dropdown-menu{
    display: flex;
    background: transparent !important;
    border: 1px solid transparent !important;
  }
  .dropdown-menu .dropdown-item{
    padding: 10px;
  }
  .dropdown-menu .dropdown-item img{
    width: 30px;
    border-radius: 10px;
  }
}


.swiper {
  width: auto;
  height: auto;
}

.swiper-donor {
  height: 100%!important;
}

.donor.swiper-slide {
  height: 150px;
}

.donor.swiper-slide .row {
  height: 100% !important;
}

.home.swiper-slide {
  margin-top: auto;
  margin-bottom: auto;
}

.home.swiper-slide .col-7 {
  padding: 30px;
}

.home.swiper-slide img {
  padding: 5px;
  width: 100% !important;
  /* object-fit: cover; */
  object-fit: contain;
  max-height: 100%;
  /* height: 300px; */
}

@media screen and (max-width:768px){
  .home-slider-card{
    flex-direction: column-reverse;
  }
}


.donor.swiper-slide img {
  padding: 5px;
  width: 100% !important;
  object-fit: cover;
  max-height: 100%;
  /* height: 300px; */
}

.donor.swiper-slide .row .col-10.position-relative h2 {
  text-align: left;
}

.donor.swiper-slide .row .col-10.position-relative p {
  padding-top: 6px;
  text-align: left;
}

#footer {
  background: #f1eef0;
  padding: 0 0 30px;
  color: #000;
  font-size: 14px;
}

.footer-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

#footer .footer-top {
  background: #fff;
  /* border-top: 1px solid #474747; */
  /* border-bottom: 1px solid #474747; */
  padding: 60px 0 30px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 700;
  color: #c81133;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.social-links a {
}

.footer-links ul {
  padding: 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  padding-top: 10px;
  padding-top: 10px;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #c81133;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul a {
  color: #000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

/* activities */
.activity-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 940px;
  margin: auto;
}

@media (max-width: 940px) {
  .activity-container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
}
.card-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 20px;
  min-height: 250px;
}
.tag {
  background-color: #ccc;
  color: #fff;
  border-radius: 50px;
  font-size: 12px;
  margin: 0;
  padding: 2px 10px;
  text-transform: uppercase;
}

.activities-section{
  margin-bottom: 70px;
  margin-top: 50px;
}

.first{
  margin-top: 0;
}

@media (max-width:991px){
  .activities-section{
    margin-bottom: 40px;
    margin-top: 30px;
  }
  
}


.line{
  width: 100%;
  height: 0.5px;
  /* background: rgba(44,103,108,1); */
  background: #c81133;
}



.act-education-card{
  padding: 30px 20px;
  border-radius: 10px; 
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  /* background: rgba(44,103,108,0.1); */
  background: #fff;
  align-items: center;
}
.act-education-card img{
  width: 100%;
  height: auto;
}

.image-width{
  width: 100%;
  height: auto;
}

.act-img-con{
  position: relative;
  overflow: hidden;
  /* width: 100%; */
}
.square-1{
  content: '';
  width: 180px;
  height: 180px;
  background: #c81133;
  border-radius: 50%;
  position: absolute;
  top: -46px;
  left: -46px;
  z-index: 0;
  transition: all .6s ease-in-out;
  border-bottom-right-radius: 100%;
}

.act-img-con img{
  margin-top: 10px;
  margin-left: -2px;
}
.act-education-card:hover{
  transform: translate(0,-10px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: all .6s ease-in-out;
}
.act-education-card:hover .act-img-con .square-1{
  width: 220px;
  height: 220px;
}

@media (max-width:767px){
  .act-education-card:nth-child(odd){
    flex-direction: column-reverse !important;
  }
  .act-education-card .act-description{
    margin-top: 20px;
  }
}

.act-title {
  font-size: 24px;
}

.act-description{
  font-size: 16px;
  margin-bottom: 10px;
}

.summary-container{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 17, 51, 1);
  padding: 30px 0;
  margin-top: 30px;
}

.summary-container .summary-description,
.medicat-p-con{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  
}

.summary-container .summary-description p{
  font-size: 16px;
  color: #fff;
}

.medicat-p-con p{
  font-size: 16px;
}

.medical-row{
  align-items: center;
  row-gap: 30px;
}
.medical-row p{
  font-size: 16px;
  margin-top: 16px;
}
.medical-row ol li{
  list-style-type: decimal;
}
.medical-row ul{
  padding-left: 0;
}
.medical-row ul li,
.medical-row :only-of-type li{
  font-size: 16px;
  margin-bottom: 5px;
}

.social-container ul li,.social-container p{
  font-size: 16px;
  margin-bottom: 15px;
  padding: 10px;
}
.donation-description ul li,
.fund-list ul li{
  font-size: 16px;
  margin-bottom: 15px;
}

.fund-list ul li{
  font-size: 16px;
  margin-bottom: 5px;
}
.medical-row ul li ul,.social-container p{
  padding-left: 2rem;
}

/* .social-container ul li:nth-child(odd){
  background: #fff;
}
.social-container ul li:nth-child(even){
  background: rgba(200, 17, 51, 0.2);
} */

.medical-row ul li::before,
.social-container ul li:before,
.donation-description ul li:before,
.fund-list ul li:before {
  content: '✔';
  font-size: 15px;
  color: #c81133;
  line-height: 1.7;
  padding-right: 10px;
}

.medical-row ul li ul li::before{
  content: '🔹';
  font-size: 15px;
  color: #2C676C;
  line-height: 1.7;
  padding-right: 10px;
}

.new-hospital-con{
  width: 100%;
  background: #fff;
  padding: 30px;
}

.title-line{
  margin-top: 5px;
  width: 10%;
  height: 3px;
  background: #c81133;
}

.new-hospital-con:hover{
  border-radius: 10px;
box-shadow: 0px 5px 10px 0px rgba(62, 62, 62, 0.5);
}

.new-hospital-con:hover .title-line{
  width: 100%;
}

.social-detail-con{
  margin-bottom: 150px;
}



/* social slider card */
.social{
  /* position: relative;   */
  /* overflow: hidden; */
}

.social-card{
  overflow: hidden;
}

.social-card img{
  width: 100%;
  max-height: 300px;
  transform: translate(10px,10px);
}
.social-card:hover {
  transform: translate(0,-10px);
  box-shadow: 0px 5px 10px 0px rgba(62, 62, 62, 0.5);
  transition: all .4s ease-in-out;
}

.social-card:hover .square-1{
  width: 220px;
  height: 220px;
}

.social .swiper-pagination-bullet{
  background: #c81133;
}

.social .swiper-button-next::after
,.social .swiper-button-prev::after{
  font-size: 20px !important;
  color: #c81133 !important;
}

.social-title-img-con{
  position: relative;
}
.social-title-img-con .first-img,
.social-title-img-con .second-img{
  box-shadow: 0px 5px 10px 0px rgba(62, 62, 62, 0.5); 
  border-radius: 10px;
  border: 2px solid transparent;
}
.social-title-img-con .first-img:hover,
.social-title-img-con .second-img:hover{
 z-index: 1;
 border: 2px solid #c81133;
 transition: all .6s ease-in;
}
.social-title-img-con .second-img{
  /* position: absolute; */
  transform: translate(30%,-30%);
}
.social-title-img-con .second-img:hover{
  transform: translate(30%,-35%);
  transition: all .6s ease-in;
}

.text-area{
  width: 100%;
}
.text-area .vertical-left{
  width: 2px;
  height: 100%;
  background: #c81133;
  position: absolute;
  left: 1rem;
  top: 20px;
}
.text-area p{
  margin-bottom: 0;
}

ul li .title{
  font-size: 20px;
  color: #c81133;
}

.social-p{
  border: 2px solid #c81133;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 5px 10px 0px rgba(62, 62, 62, 0.5);
}

.social-p p{
  font-size: 16px;
}

.social-p:hover{
  transform: translate(0, -10px);
  transition: all .6s ease-in;
}

.thank{
  color: #c81133;
}

/* Social Table */
.social-table-container table{
  background: #c81133;
  border-radius: 7px;
}
.social-table-container table tbody tr,
.social-table-container table tbody tr td{
  border: 1px solid #fff;
  color: #fff;
  vertical-align: text-top;
}
.social-table-container table tbody tr td{
  padding: 15px 15px;
}
.social-table-container table tbody tr td ol{
  padding-left: 1rem;
}
.social-table-container table tbody tr td ol li{
  list-style-type: unset;
}
.social-table-container table tbody tr td:nth-child(1){
  width: 5%;
  text-align: center;
}
.social-table-container table tbody tr td:nth-child(2){
  width: 20%;
}
.social-table-container table tbody tr td:nth-child(3){
  width: 75%;
}

/* Message from the Founder */
.msgcard-body {
  background-color: #c81133;
}
.msgcard-body p {
  line-height: 2.5rem;
  color: #fff;
}
.founder-img {
  width: 300px;
}
.msg-footer-name {
  text-align: right;
}
.msgcard-img {
  width: 400px;
  margin: 0 20px;
  float: right;
}
.founder-info {
  padding-top: 60px;
}
.founder-bio {
  padding: 30px 0;
}
.founder-bio ul li {
  line-height: 2.5rem;
  font-size: 0.95rem;
  letter-spacing: -0.5px;
}
.founder-img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
  object-fit: contain;
}
/* History */
.history-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.donation-card * {
  text-align: left;
}
.donationcard-img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: cover;
  object-position: center;
  transform: scale(0.7);
  border-radius: 10px;
}
.donation-textbox {
  line-height: 2rem;
}
.monthly-donation-card .donation-textbox {
  padding-left: 3rem;
}
.donation-title,
.donation-subtitle {
  font-weight: bold;
  color: #c81133;
}
.donation-title {
  font-size: 20px;
}
.donation-subtitle {
  font-size: 14px;
}
.donation-subtitle::after {
  content: "";
  position: absolute;
  width: 95%;
  transform: scaleX(0);
  height: 4px;
  bottom: 10px;
  left: 0;
  background-color: #c81133;
  transform-origin: bottom right;
  transition: transform 0.5s ease-in;
}

.onetime-donation-card,
.monthly-donation-card{
  margin-top: 100px;
}
.onetime-donation-card:hover .donation-subtitle::after,
.monthly-donation-card:hover .donation-subtitle::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.onetime-donation-card:hover .donationcard-img,
.monthly-donation-card:hover .donationcard-img {
  transform: scale(1);
  transition: 0.5s ease-out;
  border-radius: unset;
}
.donate-now-btn {
  border-radius: 5px;
  background-color: #c81133;
  padding: 5px 20px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}
.donate-now-btn:active {
  transform: scale(0.9);
}
.donate-now-btn:hover {
  background-color: #e2405f;
}

.individual-heart-card{
  width: 100%;
  height: 100%;
  text-align: center;
  /* border: 1.5px solid #c81133; */
  border-radius: 10px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.individual-heart-card img{
  max-width: 60px;
}

.individual-heart-card .desc{
  font-size: 16px;
  padding-top: 10px;
  /* text-overflow: ellipsis;
  line-height: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; */
}


.history-chart {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

/* Partnerships */
.partner-container{
  margin-top: 50px;
}

.partner-card{
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 30px 20px;
}

.partner-card img{
  max-width: 100px;
  max-height: 100px;
}


/* Mission */
.jpheart-title {
  padding-bottom: 10px;
}
.jpheart-description .title-bar,
.jpheart-credo .title-bar {
  width: 6%;
  min-width: 80px;
  border-bottom: 5px solid #c81133;
}
.jpheart-description:hover,
.jpheart-credo:hover {
  box-shadow: 0px 5px 10px 0px rgba(62, 62, 62, 0.5);
  transition: 0.3s ease-in-out;
}
.jpheart-description:hover .title-bar,
.jpheart-mission:hover .title-bar,
.jpheart-credo:hover .title-bar {
  width: 100%;
  transition: width linear 0.3s;
}
.jpheart-textbox p {
  line-height: 2.5rem;
}
.jpheart-mission * {
  color: #fff;
  line-height: 2rem;
}
.mission-text {
  float: right;
}
.jpheart-mission .title-bar {
  width: 6%;
  min-width: 80px;
  border-bottom: 5px solid #fff;
}
.jpheart-mission:hover {
  box-shadow: 0px 5px 10px 0px rgba(62, 62, 62, 0.5);
  transition: 0.3s ease-in-out;
}
.jpheart-credo ul.list-mark li {
  list-style-type: disc;
  line-height: 2rem;
}
.jpheart-img img,
.jpheart-mission img {
  width: 100%;
  max-width: 400px;
  object-fit: contain;
}
/* Current Projects */
.projcard-container,
.projcard-container * {
  box-sizing: border-box;
}
.projcard-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
.projcard {
  position: relative;
  width: 100%;
  height: 300px;
  margin-bottom: 40px;
  border-radius: 10px;
  background-color: #fff;
  border: 2px solid #ddd;
  font-size: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.projcard::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(-70deg, #424242, transparent 50%);
  opacity: 0.07;
}

.projcard:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #424242, transparent 50%);
}
.projcard-innerbox {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.projcard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  border-radius: 4px;
}
.projcard:nth-child(2n) .projcard-img {
  left: initial;
  right: 0;
}
.projcard-textbox {
  position: absolute;
  top: 7%;
  bottom: 7%;
  left: 430px;
  width: calc(100% - 470px);
  font-size: 17px;
}
@media screen and (max-width:992px){
  .projcard-textbox {
    position: relative;
    left: auto;
    width: 55%;
  }
}
@media screen and (max-width:768px){
  .projcard{
    height: auto;
  }
  .projcard-innerbox {
    position: relative;
  }
  .projcard-textbox {
    width: 100%;
    padding: 20px 40px;
  }
  .projcard-textbox::before {
    background: transparent !important;
  }
}
.projcard:nth-child(2n) .projcard-textbox {
  left: initial;
  right: 430px;
}
.projcard-textbox::before,
.projcard-textbox::after {
  content: "";
  position: absolute;
  display: block;
  background: #ff0000bb;
  background: #fff;
  top: -20%;
  left: -55px;
  height: 140%;
  width: 60px;
  transform: rotate(8deg);
}
.projcard:nth-child(2n) .projcard-textbox::before {
  display: none;
}
.projcard-textbox::after {
  display: none;
  left: initial;
  right: -55px;
}
.projcard:nth-child(2n) .projcard-textbox::after {
  display: block;
}
.projcard-textbox * {
  position: relative;
}
.projcard-title {
  font-family: "Voces", "Open Sans", arial, sans-serif;
  font-size: 24px;
}
.projcard-subtitle {
  font-family: "Voces", "Open Sans", arial, sans-serif;
  color: #888;
}
.projcard-bar {
  left: -2px;
  width: 100%;
  height: 5px;
  margin: 10px 0;
  border-radius: 5px;
  background-color: #424242;
  transition: width 0.2s ease;
}
.projcard-blue .projcard-bar {
  background-color: #0088ff;
}
.projcard-blue::before {
  background-image: linear-gradient(-70deg, #0088ff, transparent 50%);
}
.projcard-blue:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #0088ff, transparent 50%);
}
.projcard-red .projcard-bar {
  background-color: #d62f1f;
}
.projcard-red::before {
  background-image: linear-gradient(-70deg, #d62f1f, transparent 50%);
}
.projcard-red:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #d62f1f, transparent 50%);
}
.projcard-green .projcard-bar {
  background-color: #40bd00;
}
.projcard-green::before {
  background-image: linear-gradient(-70deg, #40bd00, transparent 50%);
}
.projcard-green:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #40bd00, transparent 50%);
}
.projcard-yellow .projcard-bar {
  background-color: #f5af41;
}
.projcard-yellow::before {
  background-image: linear-gradient(-70deg, #f5af41, transparent 50%);
}
.projcard-yellow:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #f5af41, transparent 50%);
}
.projcard-orange .projcard-bar {
  background-color: #ff5722;
}
.projcard-orange::before {
  background-image: linear-gradient(-70deg, #ff5722, transparent 50%);
}
.projcard-orange:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #ff5722, transparent 50%);
}
.projcard-brown .projcard-bar {
  background-color: #c49863;
}
.projcard-brown::before {
  background-image: linear-gradient(-70deg, #c49863, transparent 50%);
}
.projcard-brown:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #c49863, transparent 50%);
}
.projcard-grey .projcard-bar {
  background-color: #424242;
}
.projcard-grey::before {
  background-image: linear-gradient(-70deg, #424242, transparent 50%);
}
.projcard-grey:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #424242, transparent 50%);
}
.projcard-customcolor .projcard-bar {
  background-color: var(--projcard-color);
}
.projcard-customcolor::before {
  background-image: linear-gradient(
    -70deg,
    var(--projcard-color),
    transparent 50%
  );
}
.projcard-customcolor:nth-child(2n)::before {
  background-image: linear-gradient(
    -250deg,
    var(--projcard-color),
    transparent 50%
  );
}
.projcard-description {
  z-index: 10;
  font-size: 15px;
  color: #424242;
  height: 125px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.projcard-tagbox {
  position: absolute;
  bottom: 3%;
  font-size: 14px;
  cursor: default;
  user-select: none;
  pointer-events: none;
}
.projcard-tag {
  display: inline-block;
  background: #e0e0e0;
  color: #777;
  border-radius: 3px 0 0 3px;
  line-height: 26px;
  padding: 0 10px 0 23px;
  position: relative;
  margin-right: 20px;
  cursor: default;
  user-select: none;
  transition: color 0.2s;
}
.projcard-tag::before {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
  height: 6px;
  left: 10px;
  width: 6px;
  top: 10px;
}
.projcard-tag::after {
  content: "";
  position: absolute;
  border-bottom: 13px solid transparent;
  border-left: 10px solid #e0e0e0;
  border-top: 13px solid transparent;
  right: -10px;
  top: 0;
}

.masonary-grid img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.masonary-grid {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 10rem);
  gap: var(--marge);
  padding: var(--marge);
}
.masonary-grid .box1,
.masonary-grid .box3 {
  grid-row: 1/2;
}
.masonary-grid .box2,
.masonary-grid .box4 {
  grid-row: 1/3;
}
.masonary-grid .box5,
.masonary-grid .box7 {
  grid-row: 2/4;
}
.masonary-grid .box {
  counter-increment: step;
  position: relative;
}
.masonary-grid .box::after {
  /* display: grid;
  justify-content: center;
  align-content: center;
  background: var(--color-first);
  width: var(--bullet-size);
  height: var(--bullet-size);
  border-radius: 2rem;
  content: counter(step) "";
  position: absolute;
  inset-inline-start: 1rem;
  inset-block-start: 1rem; */
  /* background: yellow;
  border-radius: 50%;
  width: 20px;
  height: 20px; */
}

.donation-modal-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 450px;
  width: 100%;
  padding: 30px 20px;
  border-radius: 24px;
  background-color: #fff;
  opacity: 1;
  transition: all 0.3s ease;
}

.donation-modal-box i {
  font-size: 70px;
  color: #c81133;
}
.donation-modal-box h2 {
  /* margin-top: 20px; */
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.donation-modal-box h3 {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  text-align: center;
}
.donation-modal-box .buttons {
  margin-top: 25px;
}
.donation-modal-box button {
  font-size: 14px;
  padding: 6px 12px;
  margin: 0 10px;

  font-weight: 400;
  color: #fff;
  border: none;
  background: #c81133;
  border-radius: 6px;
  cursor: pointer;
}

.donation-modal-box button:hover {
  background-color: #a80c29;
}

.select-menu {
  width: 380px;
  /* margin: 140px auto; */
}
.select-menu .select-btn {
  display: flex;
  height: 55px;
  background: #fff;
  padding: 20px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.select-btn i {
  font-size: 25px;
  transition: 0.3s;
}
.select-menu.active .select-btn i {
  transform: rotate(-180deg);
}
.select-menu .options {
  position: relative;
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  display: none;
}
.select-menu.active .options {
  display: block;
}
.options .option {
  display: flex;
  height: 55px;
  cursor: pointer;
  padding: 0 16px;
  border-radius: 8px;
  align-items: center;
  background: #fff;
  position: relative;
}
.options .option:hover {
  background: #f2f2f2;
}
.option i {
  font-size: 25px;
  margin-right: 12px;
}
.option .option-text {
  font-size: 18px;
  color: #333;
}

.payment-method-selection {
  cursor: pointer;
}

.payment-method-selection:hover {
  background-color: #e2405f;
}

.payment-method-selection:hover h3 {
  color: #fff;
}

.payment-input {
  margin-top: 5px;
  margin-bottom: 5px;
  height: 40px;
  padding: 0px 15px;
  width: 100%;
  position: relative;
  display: block;
  background-color: #f4f7fb;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  border: none;
  box-shadow: none;
  border-radius: 25px;
  outline-color: #9e9e9e;
}

.payment-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.flagIcon {
  width: 20px;
}

.min-w-65{
  min-width: 65px;
}

/* pricing card */
.donor-oversea{
  margin-bottom: 100px;
}
@media screen and (max-width:992px) {
  .donor-oversea{
    margin-bottom: 200px;
  }
}

.pricing {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.pricing-item {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: stretch;
  align-items: stretch;
  text-align: center;
  -webkit-flex: 0 1 330px;
  flex: 0 1 200px;
}

.pricing-action {
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.pricing-action:focus {
  outline: none;
}

.pricing-feature-list {
  text-align: left;
}

.pricing-palden .pricing-item {
  font-family: 'Open Sans', sans-serif;
  cursor: default;
  color: #84697c;
  background: #fff;
  box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
  border-radius: 20px 20px 10px 10px;
  margin: 1em;
}

.pricing-palden img{
  max-width: 80px;
}

@media screen and (min-width: 66.25em) {
  .pricing-palden .pricing-item {
      /* margin: 1em -0.5em; */
      margin: 1em 0em;
  }
  .pricing-palden .pricing__item--featured {
      margin: 0;
      z-index: 10;
      box-shadow: 0 0 20px rgba(46, 59, 125, 0.23);
  }
}

.pricing-palden .pricing-deco {
  /* border-radius: 10px 10px 0 0; */
  background: linear-gradient(135deg,#c81133, #e2405f);
  padding: 50px 0 100px;
  position: relative;
}

.pricing-palden .pricing-deco-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* height: 160px; */
}

.pricing-palden .pricing-title {
  font-size: 0.75em;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #fff;
}

.pricing-palden .deco-layer {
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}

.pricing-palden .pricing-item:hover .deco-layer--1 {
  -webkit-transform: translate3d(15px, 0, 0);
  transform: translate3d(15px, 0, 0);
}

.pricing-palden .pricing-item:hover .deco-layer--2 {
  -webkit-transform: translate3d(-15px, 0, 0);
  transform: translate3d(-15px, 0, 0);
}

.pricing-palden .icon {
  font-size: 2.5em;
}

.pricing-palden .pricing-price {
  font-size: 2em;
  font-weight: bold;
  padding: 0;
  color: #fff;
  margin: 0 0 0.25em 0;
  line-height: 0.75;
}

.pricing-palden .pricing-currency {
  font-size: 0.15em;
  vertical-align: top;
}

.pricing-palden .pricing-period {
  font-size: 0.15em;
  padding: 0 0 0 0.5em;
  font-style: italic;
}

.pricing-palden .pricing__sentence {
  font-weight: bold;
  margin: 0 0 1em 0;
  padding: 0 0 0.5em;
}

.pricing-palden .pricing-feature-list {
  margin: 0;
  padding: 0.25em 0 0.5em;
  list-style: none;
  text-align: center;
}

.pricing-palden .pricing-feature {
  padding-top: 0px;
  padding-bottom: 1em;
  padding-left: 10px;
  padding-right: 10px;
}

.pricing-palden .pricing-action {
  font-size: 12px;
  font-weight: bold;
  margin: auto 3em 2em 3em;
  padding: 5px 20px;
  color: #fff;
  /* border-radius: 30px; */
  background: linear-gradient(135deg,#c81133, #c81133);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.pricing-palden .pricing-action:hover,
.pricing-palden .pricing-action:focus {
  background: linear-gradient(135deg,#e2405f,#e2405f);
}

.pricing-palden .pricing-item--featured .pricing-deco {
  padding: 5em 0 8.885em 0;
}

@import url(//fonts.googleapis.com/css?family=Lato:300:400);

.header {
position:relative;
text-align:center;
background-image: radial-gradient(circle at 39% 47%, rgba(107, 107, 107,0.08) 0%, rgba(107, 107, 107,0.08) 33.333%,rgba(72, 72, 72,0.08) 33.333%, rgba(72, 72, 72,0.08) 66.666%,rgba(36, 36, 36,0.08) 66.666%, rgba(36, 36, 36,0.08) 99.999%),radial-gradient(circle at 53% 74%, rgba(182, 182, 182,0.08) 0%, rgba(182, 182, 182,0.08) 33.333%,rgba(202, 202, 202,0.08) 33.333%, rgba(202, 202, 202,0.08) 66.666%,rgba(221, 221, 221,0.08) 66.666%, rgba(221, 221, 221,0.08) 99.999%),radial-gradient(circle at 14% 98%, rgba(184, 184, 184,0.08) 0%, rgba(184, 184, 184,0.08) 33.333%,rgba(96, 96, 96,0.08) 33.333%, rgba(96, 96, 96,0.08) 66.666%,rgba(7, 7, 7,0.08) 66.666%, rgba(7, 7, 7,0.08) 99.999%),linear-gradient(45deg, rgb(97, 14, 117),rgb(20, 32, 127));
color:white;
}

.inner-header {
height:100%;
width:100%;
margin: 0;
padding: 0;
}

.flex { /*Flexbox for containers*/
justify-content: center;
align-items: center;
text-align: center;
}

.waves {
position:relative;
width: 100%;
height:150vh;
margin-bottom:-7px; /*Fix for safari gap*/
min-height:100px;
max-height:250px;
}

/* Animation */

.parallax > use {
animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
animation-delay: -2s;
animation-duration: 7s;
}
.parallax > use:nth-child(2) {
animation-delay: -3s;
animation-duration: 10s;
}
.parallax > use:nth-child(3) {
animation-delay: -4s;
animation-duration: 13s;
}
.parallax > use:nth-child(4) {
animation-delay: -5s;
animation-duration: 20s;
}
@keyframes move-forever {
0% {
transform: translate3d(-90px,0,0);
}
100% { 
transform: translate3d(85px,0,0);
}
}