@font-face {
  font-family: "BebasNeue_Regular";
  font-style: normal;
  font-weight: normal;
  src: url("../../fonts/Bebas_Neue/BebasNeue-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Inter_Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/Inter/Inter18pt-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Inter_Medium";
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/Inter/Inter18pt-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Inter_SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/Inter/Inter18pt-SemiBold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Inter_Bold";
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/Inter/Inter18pt-Bold.woff2") format("woff2");
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: clamp(9px, 1.5vw, 10px);
}

.common::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000000;
}

body {
  background-color: #ffffff;
  color: #000000;
  font-family: "Inter_Regular", sans-serif;
  overscroll-behavior: contain;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #1b1e1e;
  font-weight: normal;
}

h1 {
  font-size: 6rem;
  line-height: 1;
}
h1:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 9.6rem;
  }
}

h2 {
  font-size: 3.6rem;
}
h2:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  h2 {
    font-size: 4.4rem;
  }
}

h3 {
  font-size: 3.2rem;
}
h3:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  h3 {
    font-size: 3.6rem;
  }
}

h4 {
  font-size: 2.2rem;
}
@media screen and (min-width: 992px) {
  h4 {
    font-size: 2.8rem;
  }
}
h4:last-child {
  margin-bottom: 0;
}

h5 {
  font-size: 2.4rem;
}
h5:last-child {
  margin-bottom: 0;
}

h6 {
  font-size: 2rem;
}
h6:last-child {
  margin-bottom: 0;
}

p {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #484848;
  text-align: center;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 1.8rem;
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  p {
    font-size: 2rem;
  }
}
p:last-of-type {
  margin-bottom: 0;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
  font-size: 1.8rem;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  background: unset;
}

span {
  display: inline-block;
}

.lowercase {
  text-transform: lowercase;
}

.container {
  max-width: 95%;
  padding: 0 1.2rem;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1150px;
  }
}
@media screen and (min-width: 1300px) {
  .container {
    max-width: 1250px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1350px;
  }
}
@media screen and (min-width: 1500px) {
  .container {
    max-width: 1450px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 992px) {
  .section-heading {
    margin-bottom: 5rem;
  }
}
.section-heading p {
  color: #228d88;
  text-align: center;
  margin-bottom: 1rem;
}
.section-heading h2 {
  text-align: center;
  line-height: 0.9;
  font-size: 3.8rem;
  font-family: "BebasNeue_Regular", sans-serif;
}
@media screen and (min-width: 768px) {
  .section-heading h2 {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .section-heading h2 {
    font-size: 7rem;
  }
}
@media screen and (min-width: 1500px) {
  .section-heading h2 {
    font-size: 8rem;
  }
}

.btn-default {
  position: relative;
  overflow: hidden;
  font-size: 1.6rem;
  padding: 1.4rem 3.2rem;
  border-radius: 50px;
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.23);
  text-transform: uppercase;
  cursor: pointer;
  background-color: #000000;
  font-family: "Inter_Bold", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-default:hover {
  color: #1b1e1e;
}
.btn-default span {
  position: relative;
  z-index: 1;
}
.btn-default .hover-bg {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-default img {
  max-width: 30px;
  margin-right: 1rem;
}

.cmn-btn {
  color: #1b1e1e;
  font-size: 1.6rem;
  text-transform: capitalize;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cmn-btn {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .cmn-btn {
    font-size: 2.2rem;
  }
}
.cmn-btn::after {
  width: 0;
  height: 2px;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  background-color: #1b1e1e;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  content: "";
  position: absolute;
}
.cmn-btn:hover::after {
  width: 100%;
}

section {
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  section {
    padding: 60px 0;
  }
}
@media screen and (min-width: 1200px) {
  section {
    padding: 80px 0;
  }
}

.mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .mobile {
    display: none;
  }
}

.desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .desktop {
    display: block;
  }
}

img,
video {
  max-width: 100%;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper .swiper-wrapper {
  align-items: stretch;
}
.swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper .swiper-button {
  background-color: #000000;
  border-radius: 5rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper .swiper-button::after {
  display: none;
}
.swiper .swiper-button i {
  font-size: 3rem;
  color: #000000;
}
.swiper .swiper-pagination-bullet-active {
  background-color: #000000;
}

.hamburger {
  cursor: pointer;
  background-color: transparent;
  padding: 0.7rem;
  position: absolute;
  right: 1.6rem;
}
.hamburger .line {
  width: 2rem;
  height: 3px;
  border-radius: 1rem;
  background-color: #1b1e1e;
  display: block;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger .line:nth-child(2) {
  width: 3.5rem;
}
.hamburger.is-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
  z-index: 9999;
  background-color: transparent;
}
.hamburger.is-active .line {
  background-color: #ffffff;
}
.hamburger.is-active .line:nth-child(2) {
  width: 0;
}
.hamburger.is-active .line:nth-child(1), .hamburger.is-active .line:nth-child(3) {
  transition-delay: 0.3s;
}
.hamburger.is-active .line:nth-child(1) {
  transform: translateY(9px);
}
.hamburger.is-active .line:nth-child(3) {
  transform: translateY(-9px) rotate(90deg);
}
@media screen and (min-width: 992px) {
  .hamburger {
    display: none;
  }
}

.popup-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999;
  background-color: rgba(0, 0, 0, 0.5019607843);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.popup-modal .popup-box {
  position: relative;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  width: 90%;
}
@media screen and (min-width: 576px) {
  .popup-modal .popup-box {
    width: auto;
  }
}
.popup-modal .popup-box .popup-close button {
  position: absolute;
  right: 10px;
  top: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.popup-modal .popup-box .popup-close button:hover {
  transform: scale(0.8);
}
.popup-modal .popup-box .popup-close button i {
  font-size: 2.6rem;
  cursor: pointer;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
}
.tab-buttons button {
  width: 50%;
  padding: 1.2rem 0 1.5rem;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  transition: 0.3s;
  color: #484848;
  letter-spacing: 2px;
  text-transform: capitalize;
  position: relative;
}
.tab-buttons button::after {
  width: 0;
  height: 4px;
  background-color: #000000;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  content: "";
  position: absolute;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.tab-buttons button:hover {
  transform: scale(0.9);
}
.tab-buttons button.active {
  color: #ffffff;
}
.tab-buttons button.active:hover {
  transform: none;
}
.tab-buttons button.active::after {
  width: 60px;
}
@media screen and (min-width: 768px) {
  .tab-buttons button {
    width: auto;
    flex: 1;
    font-size: 2.3rem;
  }
}

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

.inner-banner {
  background-image: url("../../images/inner-banner-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5rem 0;
}
.inner-banner h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 1;
  font-family: "BebasNeue_Regular", sans-serif;
}

.services {
  background-image: url("../../images/services-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1200px) {
  .services {
    background-size: 100% 100%;
  }
}
.services .services-box {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 376px) {
  .services .services-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .services .services-box {
    grid-template-columns: repeat(4, 1fr);
  }
}
.services .services-box .box {
  gap: 1.8rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
}
@media screen and (min-width: 1400px) {
  .services .services-box .box {
    flex-direction: row;
  }
}
.services .services-box .box .icon-box {
  width: 7rem;
  height: 7rem;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services .services-box .box .text-box h2 {
  color: #ffffff;
  margin-bottom: 0rem;
  line-height: 1;
  text-align: center;
  font-family: "BebasNeue_Regular", sans-serif;
}
@media screen and (min-width: 1400px) {
  .services .services-box .box .text-box h2 {
    text-align: left;
  }
}
.services .services-box .box .text-box h2 span {
  font-family: "BebasNeue_Regular", sans-serif;
  vertical-align: baseline;
}
.services .services-box .box .text-box p {
  color: #ffffff;
  text-align: left;
  line-height: 1;
  font-family: "Inter_SemiBold", sans-serif;
}

.logo-box-slider {
  position: relative;
  background-color: #f9fefe;
}
@media screen and (min-width: 576px) {
  .logo-box-slider::before {
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    height: 100%;
    width: 150px;
    z-index: 9;
    content: "";
    position: absolute;
  }
  .logo-box-slider::after {
    top: 0;
    right: 0;
    background: linear-gradient(260deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    height: 100%;
    width: 150px;
    z-index: 9;
    content: "";
    position: absolute;
  }
}
.logo-box-slider .swiper-slide img {
  max-width: 20rem;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: auto;
  margin: 0 auto;
  display: flex;
}

.info-cmn.changing {
  background-color: #f9fefe;
  padding-top: 0;
}
.info-cmn .info-cmn-box {
  flex-direction: column;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  display: flex;
}
@media screen and (min-width: 992px) {
  .info-cmn .info-cmn-box {
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .info-cmn .info-cmn-box .section-heading h2 {
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .info-cmn .info-cmn-box .box {
    width: 50%;
  }
}
.info-cmn .info-cmn-box .box p {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .info-cmn .info-cmn-box .box p {
    text-align: left;
  }
}
.info-cmn .info-cmn-box .box p:not(:last-of-type) {
  margin-bottom: 3rem;
}

.faq {
  width: 95%;
  background: #e9fbfa;
  margin: 1.5rem auto;
  border-radius: 2.4rem;
  position: relative;
  overflow: visible;
}
.faq .question-image img {
  max-width: 5rem;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 0;
}
.faq .faq-title {
  text-align: center;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .faq .faq-wrapper {
    padding: 0 5rem;
  }
}
.faq .faq-wrapper .faq-item {
  border-radius: 8px;
  border: 2px solid #badad8;
  background: transparent;
  margin-bottom: 15px;
  padding: 1.5rem 3.5rem 1.5rem 1.5rem;
  box-shadow: 0px 0px 0px 3px rgba(255, 255, 255, 0);
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media screen and (min-width: 768px) {
  .faq .faq-wrapper .faq-item {
    padding: 2rem 3.5rem 2rem 2.5rem;
  }
}
.faq .faq-wrapper .faq-item.active {
  border-color: #8eb7b5;
  box-shadow: 0px 0px 0px 3px #badad8;
}
.faq .faq-wrapper .faq-item.active .faq-question::after {
  content: "\f1ae";
  font-size: 2.5rem;
}
.faq .faq-wrapper .faq-item.active .faq-answer {
  height: auto;
  opacity: 1;
  padding: 10px 0 0;
}
.faq .faq-wrapper .faq-item .faq-question {
  position: relative;
  width: 100%;
  border: 0;
  background: none;
  font-size: 1.8rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-family: "Inter_SemiBold", sans-serif;
}
@media screen and (min-width: 992px) {
  .faq .faq-wrapper .faq-item .faq-question {
    font-size: 2.2rem;
  }
}
.faq .faq-wrapper .faq-item .faq-question::after {
  content: "\f4b2";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "remixicon";
  font-size: 2rem;
}
.faq .faq-wrapper .faq-item .faq-question .icon {
  transition: 0.3s ease;
}
.faq .faq-wrapper .faq-item .faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.3s ease;
}
.faq .faq-wrapper .faq-item .faq-answer P {
  text-align: left;
}
@media screen and (min-width: 992px) {
  .faq .faq-wrapper .faq-item .faq-answer P {
    font-size: 1.8rem;
  }
}

.join-cmn {
  background-color: #f9fefe;
}
@media screen and (min-width: 992px) {
  .join-cmn.difference .card-box {
    grid-template-columns: repeat(3, 1fr);
  }
}
.join-cmn .card-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media screen and (min-width: 576px) {
  .join-cmn .card-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .join-cmn .card-box {
    grid-template-columns: repeat(4, 1fr);
  }
}
.join-cmn .card-box .card {
  border-radius: 1.6rem;
  padding: 2.5rem 2.5rem;
  position: relative;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media screen and (min-width: 1300px) {
  .join-cmn .card-box .card {
    padding: 3rem 3rem;
  }
}
.join-cmn .card-box .card.card-1 {
  background-color: #f5f4a9;
}
.join-cmn .card-box .card.card-2 {
  background-color: #fee1fd;
}
.join-cmn .card-box .card.card-3 {
  background-color: #d2e1f8;
}
.join-cmn .card-box .card.card-4 {
  background-color: #d8f6b8;
}
.join-cmn .card-box .card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.23);
}
.join-cmn .card-box .card:hover .img-box img {
  transform: scale(1.1);
}
.join-cmn .card-box .card:hover .link-box p span {
  transform: translateX(5px);
}
.join-cmn .card-box .card .img-box {
  background-color: #ffffff;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.23);
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .join-cmn .card-box .card .img-box {
    margin: 0 0 4rem;
  }
}
.join-cmn .card-box .card .img-box img {
  max-width: 2.5rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.join-cmn .card-box .card .text-box h5 {
  line-height: 1;
  font-size: 2.8rem;
  text-align: center;
  font-family: "BebasNeue_Regular", sans-serif;
}
@media screen and (min-width: 992px) {
  .join-cmn .card-box .card .text-box h5 {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .join-cmn .card-box .card .text-box h5 {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .join-cmn .card-box .card .text-box h5 {
    font-size: 3.4rem;
  }
}
.join-cmn .card-box .card .text-box p {
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .join-cmn .card-box .card .text-box p {
    text-align: left;
  }
}
.join-cmn .card-box .card .link-box {
  padding-top: 2rem;
}
.join-cmn .card-box .card .link-box p {
  gap: 0.8rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  font-family: "Inter_SemiBold", sans-serif;
}
.join-cmn .card-box .card .link-box p span {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.join-cmn .card-box .card a {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.hope-cmn {
  background-color: #f9fefe;
}
@media screen and (min-width: 1200px) {
  .hope-cmn.programs .boxes, .hope-cmn.upcoming .boxes {
    grid-template-columns: repeat(4, 1fr);
  }
}
.hope-cmn.upcoming .img-box {
  max-height: 200px !important;
}
.hope-cmn.upcoming p {
  font-size: 1.5rem;
}
.hope-cmn .boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media screen and (min-width: 576px) {
  .hope-cmn .boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .hope-cmn .boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hope-cmn .boxes .box {
  border-radius: 1rem;
  overflow: hidden;
}
.hope-cmn .boxes .box.box-1 {
  background-color: #d2e1f8;
}
.hope-cmn .boxes .box.box-2 {
  background-color: #d8f6b8;
}
.hope-cmn .boxes .box.box-3 {
  background-color: #fee1fd;
}
.hope-cmn .boxes .box.box-4 {
  background-color: #f5f4a9;
}
.hope-cmn .boxes .box .img-box {
  max-height: 300px;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.hope-cmn .boxes .box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hope-cmn .boxes .box .text-box {
  padding: 3.5rem 2rem 2rem 2rem;
  position: relative;
}
@media screen and (min-width: 1300px) {
  .hope-cmn .boxes .box .text-box {
    padding: 3.5rem 2.4rem 2.4rem 2.4rem;
  }
}
.hope-cmn .boxes .box .text-box .icon-box {
  background-color: #0079ff;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hope-cmn .boxes .box .text-box .icon-box img {
  max-width: 2.5rem;
}
.hope-cmn .boxes .box .text-box h4 {
  margin-bottom: 1rem;
  font-family: "BebasNeue_Regular", sans-serif;
}
@media screen and (min-width: 1200px) {
  .hope-cmn .boxes .box .text-box h4 {
    font-size: 3.4rem;
  }
}
.hope-cmn .boxes .box .text-box h5 {
  margin-bottom: 1rem;
  font-family: "BebasNeue_Regular", sans-serif;
}
.hope-cmn .boxes .box .text-box p {
  text-align: left;
}

@media screen and (min-width: 1200px) {
  .cmn-form.touch .container {
    max-width: 1200px;
  }
}
.cmn-form.touch .form-box {
  gap: 3rem !important;
}
@media screen and (min-width: 992px) {
  .cmn-form.touch .form-box .box {
    width: 60% !important;
  }
}
.cmn-form.volunteer {
  background-color: #f9fefe;
}
.cmn-form .form-box {
  flex-direction: column;
  gap: 5rem;
  align-items: center;
  display: flex;
}
@media screen and (min-width: 992px) {
  .cmn-form .form-box {
    flex-direction: row;
  }
}
.cmn-form .form-box .box {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .cmn-form .form-box .box {
    width: 50%;
  }
}
.cmn-form .form-box .box.img-box img {
  width: 100%;
  height: 100%;
}
.cmn-form .form-box .box.form-contact .col-6 {
  width: 100%;
}
.cmn-form .form-box .box.form-contact .col-12 {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .cmn-form .form-box .box.form-contact .col-12 {
    width: 100%;
  }
}
.cmn-form .form-box .box.form-contact form {
  border-radius: 1rem;
  background-color: #e9fbfa;
  padding: 1.8rem 1.8rem 4rem;
  flex-wrap: wrap;
  box-shadow: 0px 0px 3px gray;
  gap: 1.4rem;
  display: flex;
}
.cmn-form .form-box .box.form-contact form .form-group {
  margin-bottom: 1.5rem;
}
.cmn-form .form-box .box.form-contact form .form-group label {
  font-size: 1.8rem;
  color: #484848;
  text-transform: capitalize;
  display: block;
}
.cmn-form .form-box .box.form-contact form .form-group input,
.cmn-form .form-box .box.form-contact form .form-group textarea,
.cmn-form .form-box .box.form-contact form .form-group select {
  width: 100%;
  padding: 1.2rem;
  margin-top: 5px;
  border: 2px solid rgba(194, 194, 194, 0.3411764706);
  border-radius: 5px;
  font-size: 1.6rem;
  background-color: #ffffff;
}
.cmn-form .form-box .box.form-contact form .form-group textarea {
  height: 100px;
  resize: none;
}
.cmn-form .form-box .box.form-contact form .button-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .cmn-form .form-box .box.form-contact form .button-box {
    justify-content: left;
  }
}
.cmn-form .form-box .box.form-contact form .button-box .btn-default {
  background-color: #00a296;
}
@media screen and (min-width: 992px) {
  .cmn-form .form-box .box.info-box {
    width: 40% !important;
  }
}
.cmn-form .form-box .box.info-box .title {
  margin-bottom: 1.8rem;
}
.cmn-form .form-box .box.info-box .title p {
  color: #0079ff;
  text-align: center;
  font-family: "Inter_SemiBold", sans-serif;
}
@media screen and (min-width: 992px) {
  .cmn-form .form-box .box.info-box .title p {
    text-align: left;
  }
}
.cmn-form .form-box .box.info-box .title h3 {
  text-align: center;
  font-family: "BebasNeue_Regular", sans-serif;
}
@media screen and (min-width: 992px) {
  .cmn-form .form-box .box.info-box .title h3 {
    text-align: left;
  }
}
.cmn-form .form-box .box.info-box .detail-box {
  gap: 1.4rem;
  padding: 1.8rem 3rem 1.8rem 1.8rem;
  border-radius: 1rem;
  border: 2px solid #f5f5f5;
  margin-bottom: 1.8rem;
  display: flex;
}
.cmn-form .form-box .box.info-box .detail-box .icon-box {
  min-width: 45px;
  height: 45px;
}
.cmn-form .form-box .box.info-box .detail-box .icon-box img {
  width: 100%;
  height: 100%;
}
.cmn-form .form-box .box.info-box .detail-box .text h5 {
  font-family: "BebasNeue_Regular", sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.cmn-form .form-box .box.info-box .detail-box .text p,
.cmn-form .form-box .box.info-box .detail-box .text a {
  text-align: left;
  color: #484848;
  font-size: 14px;
}
@media screen and (min-width: 576px) {
  .cmn-form .form-box .box.info-box .detail-box .text p,
  .cmn-form .form-box .box.info-box .detail-box .text a {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .cmn-form .form-box .box.info-box .detail-box .text p,
  .cmn-form .form-box .box.info-box .detail-box .text a {
    font-size: 1.8rem;
  }
}
.cmn-form .form-box .box.info-box .detail-box .text a {
  text-transform: lowercase;
}

.payment-popup {
  text-align: center;
}
.payment-popup p {
  text-align: center;
}

footer {
  padding: 2rem 0 5rem;
}
footer .top-part {
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  display: flex;
}
@media screen and (min-width: 992px) {
  footer .top-part {
    flex-direction: row;
  }
}
footer .top-part .logo-box img {
  max-width: 12rem;
}
footer .top-part .link-box ul {
  gap: 2rem 4rem;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}
footer .top-part .link-box ul li a {
  color: #1b1e1e;
  position: relative;
  font-size: 1.6rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: "Inter_Medium", sans-serif;
}
footer .top-part .link-box ul li.current-menu-item a, footer .top-part .link-box ul li:hover a {
  color: #ff009e;
}
@media screen and (min-width: 992px) {
  footer .top-part .link-box ul li.current-menu-item a, footer .top-part .link-box ul li:hover a {
    color: #ff009e;
  }
}
footer .top-part .link-box ul li.current-menu-item a {
  color: #ff009e;
  font-family: "Inter_SemiBold", sans-serif;
}
footer .top-part .social-box ul {
  gap: 1rem;
  display: flex;
}
footer .top-part .social-box ul a {
  font-size: 2.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
footer .top-part .social-box ul a:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.23);
  transform: translateY(-5px);
}
footer .bottom-part {
  padding-top: 4rem;
  margin-top: 3rem;
  border-top: 1px solid #dfdfdf;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  display: flex;
}
@media screen and (min-width: 992px) {
  footer .bottom-part {
    padding-top: 5rem;
    flex-direction: row;
  }
}
footer .bottom-part p {
  font-size: 1.6rem;
  font-family: "Inter_Medium", sans-serif;
  color: #1b1e1e;
}
footer .bottom-part ul {
  gap: 2.4rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
@media screen and (min-width: 992px) {
  footer .bottom-part ul {
    flex-direction: row;
  }
}
footer .bottom-part ul a {
  font-size: 1.6rem;
  color: #1b1e1e;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: "Inter_Medium", sans-serif;
}
footer .bottom-part ul a:hover {
  transform: translateY(-3px);
  color: #ff009e;
}

.header {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.header .header-box {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  display: flex;
}
.header .header-box .logo-box a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-box .logo-box a img {
  max-width: 10rem;
}
@media screen and (min-width: 376px) {
  .header .header-box .logo-box a img {
    max-width: 12rem;
  }
}
.header .header-box .main-nav {
  display: none;
  position: relative;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav {
    display: block;
  }
}
.header .header-box .main-nav.show {
  display: block;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 999;
  left: 0;
  top: 0;
  overflow: hidden;
}
.header .header-box .main-nav .animated-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 300vw;
  height: 200vh;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background: transparent;
}
.header .header-box .main-nav .animated-box .box {
  width: 33.33%;
  height: 100%;
  opacity: 0;
  background-color: #1b1e1e;
}
.header .header-box .main-nav .animated-box .first-box {
  transform: translateX(-100%);
}
.header .header-box .main-nav .animated-box .second-box {
  transform-origin: center;
  transform: scaleX(0);
}
.header .header-box .main-nav .animated-box .third-box {
  transform: translateX(100%);
}
.header .header-box .main-nav .animated-box.open .first-box {
  animation: slideLeft 0.8s ease forwards;
}
.header .header-box .main-nav .animated-box.open .second-box {
  animation: slideMid 0.8s ease forwards;
}
.header .header-box .main-nav .animated-box.open .third-box {
  animation: slideRight 0.8s ease forwards;
}
.header .header-box .main-nav .animated-box.close .first-box {
  animation: slideLeftReverse 0.6s ease forwards;
}
.header .header-box .main-nav .animated-box.close .second-box {
  animation: slideMidReverse 0.6s ease forwards;
}
.header .header-box .main-nav .animated-box.close .third-box {
  animation: slideRightReverse 0.6s ease forwards;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .animated-box {
    display: none;
  }
}
.header .header-box .main-nav .nav-wrap {
  position: relative;
  top: 50%;
  z-index: 999;
  transform: translate(0px, -50%);
  padding-left: 7rem;
  flex-direction: column-reverse;
  justify-content: center;
  gap: 3rem;
  display: flex;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap {
    position: static;
    transform: none;
    padding-left: 0;
    gap: 2rem;
    align-items: flex-end;
    flex-direction: column;
  }
}
.header .header-box .main-nav .nav-wrap.show-items li {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
.header .header-box .main-nav .nav-wrap nav ul {
  gap: 2.4rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  display: flex;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap nav ul {
    align-items: center;
    flex-direction: row;
  }
}
.header .header-box .main-nav .nav-wrap nav ul li {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(1) {
  transition-delay: 0.1s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(4) {
  transition-delay: 0.4s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(5) {
  transition-delay: 0.5s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(6) {
  transition-delay: 0.6s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(7) {
  transition-delay: 0.7s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(8) {
  transition-delay: 0.8s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(9) {
  transition-delay: 0.9s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(10) {
  transition-delay: 1s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(11) {
  transition-delay: 1.1s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(12) {
  transition-delay: 1.2s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(13) {
  transition-delay: 1.3s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(14) {
  transition-delay: 1.4s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(15) {
  transition-delay: 1.5s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(16) {
  transition-delay: 1.6s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(17) {
  transition-delay: 1.7s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(18) {
  transition-delay: 1.8s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(19) {
  transition-delay: 1.9s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(20) {
  transition-delay: 2s;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap nav ul li {
    opacity: 1;
    transform: none;
  }
}
.header .header-box .main-nav .nav-wrap nav ul li a {
  position: relative;
  font-size: 1.8rem;
  color: #ffffff;
  text-transform: capitalize;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: "Inter_Medium", sans-serif;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap nav ul li a {
    color: #1b1e1e;
  }
}
.header .header-box .main-nav .nav-wrap nav ul li.current-menu-item a, .header .header-box .main-nav .nav-wrap nav ul li:hover a {
  color: #ff009e;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap nav ul li.current-menu-item a, .header .header-box .main-nav .nav-wrap nav ul li:hover a {
    color: #ff009e;
  }
}
.header .header-box .main-nav .nav-wrap nav ul li.current-menu-item a {
  color: #ff009e;
  font-family: "Inter_SemiBold", sans-serif;
}
.header .header-box .main-nav .nav-wrap nav ul li.upcoming-events a {
  padding: 1rem 1.8rem;
  border-radius: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap nav ul li.upcoming-events a {
    border-color: rgba(255, 0, 158, 0.32);
    background-color: #fee1fd;
    color: #ff009e;
  }
}
.header .header-box .main-nav .nav-wrap nav ul li.upcoming-events:hover a, .header .header-box .main-nav .nav-wrap nav ul li.upcoming-events.current-menu-item a {
  color: #ffffff;
  background-color: #ff009e;
  border-color: #ff009e;
  box-shadow: 0 1.2rem 2.4rem rgba(255, 0, 158, 0.22);
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap nav ul {
    flex-direction: row;
  }
}
.header .header-box .button-box {
  padding-right: 5rem;
}
@media screen and (min-width: 992px) {
  .header .header-box .button-box {
    padding-right: 0;
  }
}
.header .header-box .button-box .btn-default {
  font-size: 1.4rem;
  padding: 1rem 2rem;
  box-shadow: none;
  font-family: "Inter_SemiBold", sans-serif;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideMid {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideLeftReverse {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
@keyframes slideMidReverse {
  0% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}
@keyframes slideRightReverse {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.fundraiser .fundraiser-box {
  gap: 4rem;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .fundraiser .fundraiser-box {
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .fundraiser .fundraiser-box .box {
    width: 50%;
  }
}
.fundraiser .fundraiser-box .box.img-box {
  border-radius: 1.6rem;
  max-height: 580px;
  overflow: hidden;
}
.fundraiser .fundraiser-box .box.img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fundraiser .fundraiser-box .box.text-box h2 {
  text-transform: uppercase;
  text-align: center;
  font-family: "BebasNeue_Regular", sans-serif;
}
@media screen and (min-width: 992px) {
  .fundraiser .fundraiser-box .box.text-box h2 {
    text-align: left;
  }
}

.supporter {
  background: url("../../images/supporter-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .supporter {
    padding: 60px 0;
  }
}
@media screen and (min-width: 1200px) {
  .supporter {
    padding: 80px 0;
  }
}
.supporter .supporter-box {
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  display: flex;
}
@media screen and (min-width: 768px) {
  .supporter .supporter-box {
    flex-direction: row;
    align-items: end;
  }
}
@media screen and (min-width: 768px) {
  .supporter .supporter-box .box {
    width: 50%;
  }
}
.supporter .supporter-box .box.img-box {
  justify-content: center;
  display: flex;
}
@media screen and (min-width: 768px) {
  .supporter .supporter-box .box.img-box {
    justify-content: end;
  }
}
.supporter .supporter-box .box.img-box img {
  max-width: 240px;
}
@media screen and (min-width: 768px) {
  .supporter .supporter-box .box.img-box img {
    position: absolute;
    bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .supporter .supporter-box .box.img-box img {
    max-width: 280px;
  }
}
.supporter .supporter-box .box h3 {
  color: #ffffff;
  text-align: center;
  font-family: "BebasNeue_Regular", sans-serif;
}
@media screen and (min-width: 768px) {
  .supporter .supporter-box .box h3 {
    text-align: left;
  }
}
.supporter .supporter-box .box p {
  color: #ffffff;
  line-height: 1.3;
  max-width: 500px;
}
.supporter .supporter-box .box .button-box {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .supporter .supporter-box .box .button-box {
    padding-top: 4rem;
    justify-content: left;
  }
}
.supporter .supporter-box .box .button-box a {
  color: #1b1e1e;
  background-color: #ffffff;
}
.supporter .supporter-box .box .button-box a:hover {
  color: #ffffff;
}
.supporter .supporter-box .box .button-box a .hover-bg {
  background-color: #ff009e;
}

@media screen and (min-width: 1200px) {
  .programs .hope-box .boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1400px) {
  .programs .hope-box .boxes {
    grid-template-columns: repeat(4, 1fr);
  }
}/*# sourceMappingURL=involve.css.map */