* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

button,
input,
textarea,
select {
  outline: none;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

.container {
  margin: 0 auto;
  width: 85%;
  max-width: 1235px;
}
@media only screen and (max-width: 768px) {
  .container {
    width: 90%;
  }
}

.title-wrapper {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
@media only screen and (max-width: 768px) {
  .title-wrapper {
    gap: 5px;
  }
}
.title-wrapper h2 {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .title-wrapper h2 {
    font-size: 20px;
  }
}
.title-wrapper span {
  height: 3px;
  background: #4cb31f;
  border-radius: 100px;
}
@media only screen and (max-width: 768px) {
  .title-wrapper span {
    height: 2px;
  }
}

.navigation-bar {
  background: linear-gradient(90deg, #161615 0%, #2e342c 101.76%);
}
.navigation-bar .container {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar .container {
    height: 55px;
  }
}
.navigation-bar .container .logo-img-wrapper img {
  width: 264px;
  height: 32px;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar .container .logo-img-wrapper img {
    width: 190px;
    height: auto;
  }
}
.navigation-bar .container .hamburger-menu-open-btn {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar .container .hamburger-menu-open-btn {
    display: flex;
  }
}
@media only screen and (max-width: 1024px) {
  .navigation-bar .container .nav-items {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #161615 0%, #2e342c 101.76%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }
  .navigation-bar .container .nav-items.active {
    transform: translateX(0);
  }
}
.navigation-bar .container .nav-items .hamburger-menu-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar .container .nav-items .hamburger-menu-close-btn {
    display: flex;
  }
}
.navigation-bar .container .nav-items ul {
  display: flex;
  gap: 15px;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar .container .nav-items ul {
    flex-direction: column;
    align-items: center;
  }
}
.navigation-bar .container .nav-items ul li a {
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease;
}
.navigation-bar .container .nav-items ul li a:hover {
  color: #4cb31f;
}
.navigation-bar .container .nav-items ul li a.highlight {
  color: #4cb31f;
}
.navigation-bar .container .nav-items ul>li{
  flex-shrink: 0;
}

.footer {
  padding: 50px 0 35px 0;
  background: #3e423c;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 25px 0;
  }
}
.footer .container .top-part {
  padding-bottom: 35px;
  border-bottom: 1px solid #4a4a4a;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .footer .container .top-part {
    padding-bottom: 25px;
    flex-direction: column;
    align-items: center;
  }
}
.footer .container .top-part .logo-img-wrapper img {
  width: 300px;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .footer .container .top-part .logo-img-wrapper img {
    width: 224px;
  }
}
.footer .container .top-part form {
  display: flex;
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  .footer .container .top-part form {
    gap: 5px;
    display: none;
  }
}
.footer .container .top-part form .input-wrapper {
  width: 275px;
  height: 58px;
  padding: 2px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .footer .container .top-part form .input-wrapper {
    width: 150px;
    height: 30px;
    border-radius: 10px;
  }
}
.footer .container .top-part form .input-wrapper input {
  width: 100%;
  height: 100%;
  padding: 0 18px;
  background: #e8f1f1;
  border-radius: 18px;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .footer .container .top-part form .input-wrapper input {
    padding: 0 10px;
    border-radius: 8px;
    font-size: 10px;
  }
}
.footer .container .top-part form .input-wrapper input::-moz-placeholder {
  color: #4e4e4e;
}
.footer .container .top-part form .input-wrapper input::placeholder {
  color: #4e4e4e;
}
.footer .container .top-part form button {
  width: 160px;
  height: 58px;
  background: linear-gradient(275deg, #4cb31f 0.5%, #97db79 96.92%);
  border-radius: 14px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .footer .container .top-part form button {
    width: 70px;
    height: 30px;
    font-size: 10px;
    border-radius: 10px;
  }
}
.footer .container .top-part form button:hover {
  opacity: 0.75;
}
.footer .container .center-part {
  position: relative;
  padding: 13px 0 50px 0;
  border-bottom: 1px solid #4a4a4a;
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  grid-gap: 50px;
}
@media only screen and (max-width: 1024px) {
  .footer .container .center-part {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part {
    padding: 20px 0;
    gap: 25px;
  }
}
.footer .container .center-part::after {
  content: "";
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #4a4a4a;
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part::after {
    display: none;
  }
}
.footer .container .center-part .part {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media only screen and (max-width: 1024px) {
  .footer .container .center-part .part:last-child {
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part .part {
    gap: 20px;
  }
}
.footer .container .center-part .part h3 {
  display: flex;
  align-items: center;
  height: 42px;
  font-size: 23px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part .part h3 {
    height: -moz-fit-content;
    height: fit-content;
    font-size: 14px;
  }
}
.footer .container .center-part .part .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part .part .title {
    width: 100%;
    height: 50px;
    border-top: 1px solid #4a4a4a;
    border-bottom: 1px solid #4a4a4a;
  }
}
.footer .container .center-part .part .title h3 {
  margin-bottom: 0;
  border: none;
}
.footer .container .center-part .part .title button {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part .part .title button svg {
    width: 25px;
    height: auto;
  }
}
.footer .container .center-part .part .links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part .part .links-wrapper {
    gap: 15px;
  }
}
.footer .container .center-part .part .links-wrapper a {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part .part .links-wrapper a {
    font-size: 11px;
  }
}
.footer .container .center-part .part .links-wrapper a:hover {
  color: #4cb31f;
}
.footer .container .center-part .part .infos-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part .part .infos-wrapper {
    gap: 10px;
  }
}
.footer .container .center-part .part .infos-wrapper .info {
  width: 270px;
  padding: 1px 1px 1px 0;
  background: linear-gradient(282deg, #6c6c6c 7.11%, #3e423c 70.26%);
  border-radius: 21px;
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part .part .infos-wrapper .info {
    width: 100%;
    border-radius: 16px;
  }
}
.footer .container .center-part .part .infos-wrapper .info .info-inner {
  padding: 20px 15px 20px 0;
  background: #3e423c;
  border-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part .part .infos-wrapper .info .info-inner {
    padding: 15px 10px 15px 0;
    border-radius: 15px;
  }
}
.footer .container .center-part .part .infos-wrapper .info .info-inner p {
  font-size: 18px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part .part .infos-wrapper .info .info-inner p {
    font-size: 10px;
  }
}
.footer .container .center-part .part .footer-video-wrapper {
  position: relative;
  width: 100%;
}
.footer .container .center-part .part .footer-video-wrapper video {
  width: 100%;
  aspect-ratio: 16/7;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 25px;
}
.footer .container .center-part .part .footer-video-wrapper button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 172px;
  height: 54px;
  background: rgba(76, 179, 31, 0.8);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part .part .footer-video-wrapper button {
    width: 140px;
    height: 44px;
    font-size: 13px;
  }
}
.footer .container .center-part .part .footer-video-wrapper.playing button {
  opacity: 0;
}
.footer .container .center-part .part .footer-video-wrapper.playing:hover button {
  opacity: 1;
}
.footer .container .center-part .part form {
  display: none;
  margin: 0 auto;
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part .part form {
    display: flex;
    gap: 5px;
  }
}
.footer .container .center-part .part form .input-wrapper {
  width: 275px;
  height: 58px;
  padding: 2px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part .part form .input-wrapper {
    width: 180px;
    height: 30px;
    border-radius: 10px;
  }
}
.footer .container .center-part .part form .input-wrapper input {
  width: 100%;
  height: 100%;
  padding: 0 18px;
  background: #e8f1f1;
  border-radius: 18px;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part .part form .input-wrapper input {
    padding: 0 10px;
    border-radius: 8px;
    font-size: 10px;
  }
}
.footer .container .center-part .part form .input-wrapper input::-moz-placeholder {
  color: #4e4e4e;
}
.footer .container .center-part .part form .input-wrapper input::placeholder {
  color: #4e4e4e;
}
.footer .container .center-part .part form button {
  width: 160px;
  height: 58px;
  background: linear-gradient(275deg, #4cb31f 0.5%, #97db79 96.92%);
  border-radius: 14px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .footer .container .center-part .part form button {
    width: 80px;
    height: 30px;
    font-size: 10px;
    border-radius: 10px;
  }
}
.footer .container .center-part .part form button:hover {
  opacity: 0.75;
}
.footer .container .bottom-part {
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}
@media only screen and (max-width: 768px) {
  .footer .container .bottom-part {
    padding-top: 25px;
    gap: 0;
  }
}
.footer .container .bottom-part .social-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .footer .container .bottom-part .social-links {
    gap: 15px;
  }
}
.footer .container .bottom-part .social-links a {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .footer .container .bottom-part .social-links a svg {
    width: 16px;
    height: auto;
  }
}
.footer .container .bottom-part .social-links a svg path {
  transition: all 0.3s ease;
}
.footer .container .bottom-part .social-links a:hover svg path {
  fill: #4cb31f;
}
.footer .container .bottom-part p {
  font-size: 18px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .footer .container .bottom-part p {
    font-size: 11px;
  }
}

.landing-page {
  overflow-x: hidden;
}
.landing-page .hero-section {
  background: url("../images/hero-section-bg-1.webp");
  background-size: cover;
  overflow: hidden;
}
.landing-page .hero-section .container {
  position: relative;
  padding: 65px 0;
}
@media only screen and (max-width: 768px) {
  .landing-page .hero-section .container {
    padding: 25px 0 45px 0;
  }
}
.landing-page .hero-section .container h1 {
  margin-bottom: 30px;
  font-size: 70px;
  line-height: 100%;
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero-section .container h1 {
    margin-bottom: 2.5vw;
    max-width: 50vw;
    font-size: 52px;
    line-height: 120%;
  }
  .landing-page .hero-section .container h1 br {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
   .landing-page .hero-section .container h1 {
  
    font-size: 5vw;
  }
     
}
@media only screen and (max-width: 768px) {
  .landing-page .hero-section .container h1 {
    margin-bottom: 3vw;
    max-width: 70vw;
    font-size: 6vw;
  }
}
.landing-page .hero-section .container h1 span {
  color: #4cb31f;
}
.landing-page .hero-section .container p {
  margin-bottom: 40px;
  font-size: 22px;
  line-height: 150%;
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero-section .container p {
    margin-bottom: 3vw;
    max-width: 25vw;
    font-size: 2vw;
  }
  .landing-page .hero-section .container p br {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .landing-page .hero-section .container p {
    margin-bottom: 4.5vw;
    font-size: 12px;
  }
}
.landing-page .hero-section .container button {
  width: 200px;
  height: 58px;
  border: 1px solid #4cb31f;
  background: #4cb31f;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero-section .container button {
    width: auto;
    height: auto;
    padding: 15px 35px;
    font-size: 1.75vw;
  }
}
@media only screen and (max-width: 768px) {
  .landing-page .hero-section .container button {
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 2.5vw;
  }
}
.landing-page .hero-section .container button:hover {
  background: transparent;
  color: #4cb31f;
}
.landing-page .hero-section .container img {
  position: absolute;
  bottom: 0;
  right: -64px;
  width: 750px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero-section .container img {
    width: 52vw;
  }
}
@media only screen and (max-width: 768px) {
  .landing-page .hero-section .container img {
    right: -7vw;
    width: 74vw;
  }
}
.landing-page .about-section {
  padding-top: 100px;
}
@media only screen and (max-width: 768px) {
  .landing-page .about-section {
    padding-top: 35px;
  }
}
.landing-page .about-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
@media only screen and (max-width: 768px) {
  .landing-page .about-section .container {
    gap: 10px;
  }
}
.landing-page .about-section .container .title-wrapper span {
  width: 144px;
}
@media only screen and (max-width: 768px) {
  .landing-page .about-section .container .title-wrapper span {
    width: 50px;
  }
}
.landing-page .about-section .container p {
  max-width: 880px;
  font-size: 22px;
  line-height: 150%;
  color: #3e423c;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .about-section .container p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .landing-page .about-section .container p {
    font-size: 14px;
  }
}
.landing-page .donations-section {
  padding: 100px 0;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .landing-page .donations-section {
    padding: 35px 0;
  }
}
.landing-page .donations-section .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .landing-page .donations-section .container {
    gap: 8px;
  }
}
@media only screen and (max-width: 768px) {
  .landing-page .donations-section .container .title-wrapper {
    margin-bottom: 12px;
  }
}
.landing-page .donations-section .container p {
  max-width: 880px;
  font-size: 22px;
  line-height: 150%;
  color: #3e423c;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .donations-section .container p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .landing-page .donations-section .container p {
    font-size: 14px;
  }
}
.landing-page .donations-section .container .title-wrapper span {
  width: 84px;
}
@media only screen and (max-width: 768px) {
  .landing-page .donations-section .container .title-wrapper span {
    width: 32px;
  }
}
.landing-page .donations-section .container a {
  position: absolute;
  right: 0;
  top: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #4cb31f;
}
@media only screen and (max-width: 768px) {
  .landing-page .donations-section .container a {
    font-size: 12px;
  }
}
.landing-page .donations-section .container a:hover {
  text-decoration: underline;
}
.landing-page .donations-section .container .top-row {
  display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media only screen and (max-width: 768px) {
  .landing-page .donations-section .container .top-row {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.landing-page .donations-section .container .bottom-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .landing-page .donations-section .container .bottom-row {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.landing-page .donations-section .container img {
  width: 340px;
  /* min-width: 340px; */
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .landing-page .donations-section .container img {
    width: 95px;
    min-width: 95px;
    height: 63px;
    border-radius: 8px;
  }
}
.landing-page .videos-section {
  padding: 65px 0;
  background: linear-gradient(90deg, #161615 0%, #2e342c 101.76%);
}
@media only screen and (max-width: 768px) {
  .landing-page .videos-section {
    padding: 25px 0;
  }
}
.landing-page .videos-section .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 768px) {
  .landing-page .videos-section .container {
    gap: 20px;
  }
}
.landing-page .videos-section .container .title-wrapper h2 {
  color: #fff;
}
.landing-page .videos-section .container .title-wrapper span {
  width: 84px;
}
@media only screen and (max-width: 768px) {
  .landing-page .videos-section .container .title-wrapper span {
    width: 35px;
  }
}
.landing-page .videos-section .container a {
  position: absolute;
  right: 0;
  top: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #4cb31f;
}
@media only screen and (max-width: 768px) {
  .landing-page .videos-section .container a {
    font-size: 12px;
  }
}
.landing-page .videos-section .container a:hover {
  text-decoration: underline;
}
.landing-page .videos-section .container .videos-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 35px;
    padding-bottom: 10px; /* Add some padding to ensure buttons are not cut off */
    scroll-snap-type: x mandatory; /* Optional: for smooth snapping */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
.landing-page .videos-section .container .videos-wrapper::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
  }

/* Existing styles */

/* Enable horizontal scrolling and hide scrollbar */
.landing-page .videos-section .container .videos-wrapper {
    display: flex; /* Use flexbox for horizontal layout */
    overflow-x: auto; /* Enable horizontal scrolling */
    gap: 35px;
    -ms-overflow-style: none; /* Hide scrollbar in Internet Explorer and Edge */
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  .landing-page .videos-section .container .videos-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome, Safari, and Opera */
  }

  /* Ensure each video wrapper takes up its own space */
  .landing-page .videos-section .container .videos-wrapper .video-wrapper {
    flex: 0 0 auto; /* Prevent flex items from shrinking */
    position: relative;
  }

  /* Existing video styling */
  .landing-page .videos-section .container .videos-wrapper .video-wrapper video {
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
    object-position: center;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
  }

  /* Existing media queries and other styles */
  @media only screen and (max-width: 768px) {
    .landing-page .videos-section .container .videos-wrapper {
      gap: 10px;
    }
    .landing-page .videos-section .container .videos-wrapper .video-wrapper video {
      border-width: 3px;
      border-radius: 8px;
    }
  }

  .ways-to-support {
    margin: 50px 0;
  }

  .ways-to-support-child {
    background: #e9f2f2;
    padding: 20px 60px;
    display: flex;
    border-radius: 35px;
    gap: 75px;
  }

  .ways-to-support-child h1 {
    color: #4cb31f;
    margin-bottom: 20px;
  }

  .ways-to-support-child .text-section {
    margin-top: 28px;
  }

  .slanted-div {
    background: url('../images/Rectangle\ 67.png');
    background-repeat: no-repeat;
    padding: 15px;
  }

  .slanted-div img {
    min-width: 392px;
    max-width: 392px;
  }

  .call-to-action {
    margin: 50px 0;
  }

  .call-to-action-child {
    background: #e9f2f2;
    padding: 35px 60px;
    display: flex;
    border-radius: 35px;
    gap: 75px;
  }

  .call-to-action-child h1 {
    color: #4cb31f;
    margin-bottom: 20px;
  }

  .image-div {
    padding: 15px;
  }

  .image-div img {
    min-width: 392px;
    max-width: 392px;
  }

  @media only screen and (max-width: 768px) {
    .ways-to-support-child {
      gap: 40px;
    }
    .call-to-action-child {
      gap: 40px;
    }
    .image-div img {
      min-width: auto;
    }
    .slanted-div img {
      min-width: auto;
    }
  }

  .landing-page .videos-section .container .videos-wrapper .video-wrapper button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 54px;
    background: rgba(76, 179, 31, 0.8);
    backdrop-filter: blur(2px);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }
/* Define scrollbar styles for desktop mode */
@media only screen and (min-width: 769px) {
    /* Width of the scrollbar */
    .landing-page .videos-section .container .videos-wrapper {
      scrollbar-width: thin;
      scrollbar-color: #888 transparent; /* Grey handle with transparent background */
    }

    /* Handle on hover */
    .landing-page .videos-section .container .videos-wrapper::-webkit-scrollbar-thumb:hover {
      background-color: #555; /* Dark grey */
    }
  }

  @media only screen and (max-width: 768px) {
    .landing-page .videos-section .container .videos-wrapper .video-wrapper button {
      width: 35px;
      height: 14px;
      border-radius: 5px;
    }
    .landing-page .videos-section .container .videos-wrapper .video-wrapper button svg {
      width: 5px;
    }
  }

  .landing-page .videos-section .container .videos-wrapper .video-wrapper.playing button {
    opacity: 0;
  }

  .landing-page .videos-section .container .videos-wrapper .video-wrapper.playing:hover button {
    opacity: 1;
  }

  /* End of CSS */

.landing-page .how-it-works-section {
  /*padding-top: 0px;*/
}
@media only screen and (max-width: 768px) {
  .landing-page .how-it-works-section {
    /*padding-top: 35px;*/
  }
}
.landing-page .how-it-works-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 768px) {
  .landing-page .how-it-works-section .container {
    gap: 20px;
  }
}
.landing-page .how-it-works-section .container .title-wrapper span {
  width: 124px;
}
@media only screen and (max-width: 768px) {
  .landing-page .how-it-works-section .container .title-wrapper span {
    width: 35px;
  }
}
.landing-page .how-it-works-section .container .cards-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .how-it-works-section .container .cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .ways-to-support-child {
    flex-direction: column;
    padding: 60px 60px;
  }
  .slanted-div {
    background-position: center;
    background-size: contain;
    text-align: center;
  }
  .call-to-action-child {
    flex-direction: column;
    padding: 60px 60px;
  }
  .image-div {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .landing-page .how-it-works-section .container .cards-wrapper {
    grid-gap: 20px;
  }
}
.landing-page .how-it-works-section .container .cards-wrapper .card {
  padding: 20px;
  background: #fff;
  border-top: 2px solid #4cb31f;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .landing-page .how-it-works-section .container .cards-wrapper .card {
    padding: 15px 10px;
    border-width: 1px;
    border-radius: 12px;
  }
}
.landing-page .how-it-works-section .container .cards-wrapper .card img {
  margin-bottom: 20px;
  width: 100%;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .landing-page .how-it-works-section .container .cards-wrapper .card img {
    margin-bottom: 12px;
    width: 100%;
    height: 88px;
  }
}
.landing-page .how-it-works-section .container .cards-wrapper .card h3 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .how-it-works-section .container .cards-wrapper .card h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .landing-page .how-it-works-section .container .cards-wrapper .card h3 {
    margin-bottom: 10px;
    font-size: 15px;
  }
}
.landing-page .how-it-works-section .container .cards-wrapper .card p {
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #3e423c;
}
@media only screen and (max-width: 768px) {
  .landing-page .how-it-works-section .container .cards-wrapper .card p {
    font-size: 11px;
  }
}
.landing-page .collab-section {
  /*padding-top: 0px;*/
}
@media only screen and (max-width: 768px) {
  .landing-page .collab-section {
    /*padding-top: 0px;*/
  }
}
.landing-page .collab-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.landing-page .collab-section .container .title-wrapper span {
  width: 153px;
}
@media only screen and (max-width: 768px) {
  .landing-page .collab-section .container .title-wrapper span {
    width: 55px;
  }
}
.landing-page .collab-section .container .collabs-wrapper {
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .landing-page .collab-section .container .collabs-wrapper {
    padding-top: 20px;
    gap: 16px;
  }
}
.landing-page .collab-section .container .collabs-wrapper .collab {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .landing-page .collab-section .container .collabs-wrapper .collab {
    gap: 10px;
  }
}
.landing-page .collab-section .container .collabs-wrapper .collab img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media only screen and (max-width: 1024px) {
  .landing-page .collab-section .container .collabs-wrapper .collab img {
    width: 50px;
    height: 50px;
  }
}
.landing-page .collab-section .container .collabs-wrapper .collab p {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .collab-section .container .collabs-wrapper .collab p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .landing-page .collab-section .container .collabs-wrapper .collab p {
    font-size: 11px;
  }
}
.landing-page .collab-section .marquee {
  margin-top: 50px;
  padding: 25px 0;
  background: #fcfcfc;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .landing-page .collab-section .marquee {
    margin-top: 20px;
    padding: 10px 0;
  }
}
.landing-page .collab-section .marquee .marquee-content {
  display: flex;
  animation: scrolling 20s linear infinite;
}
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translatex(-144vw);
  }
}
.landing-page .collab-section .marquee .marquee-content .marquee-item {
  flex: 0 0 150px;
  margin: 0 35px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .collab-section .marquee .marquee-content .marquee-item {
    flex: 0 0 100px;
  }
}
@media only screen and (max-width: 768px) {
  .landing-page .collab-section .marquee .marquee-content .marquee-item {
    flex: 0 0 50px;
    margin: 0 15px;
  }
}
.landing-page .collab-section .marquee .marquee-content .marquee-item img {
  display: block;
  width: 100%;
}
.landing-page .featured-section {
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  .landing-page .featured-section {
    padding: 35px 0;
  }
}
.landing-page .featured-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.landing-page .featured-section .container .title-wrapper span {
  width: 153px;
}
@media only screen and (max-width: 768px) {
  .landing-page .featured-section .container .title-wrapper span {
    width: 40px;
  }
}
.landing-page .featured-section .marquee {
  margin-top: 50px;
  padding: 25px 0;
  background: #fcfcfc;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .landing-page .featured-section .marquee {
    margin-top: 20px;
    padding: 10px 0;
  }
}
.landing-page .featured-section .marquee .marquee-content {
  display: flex;
  animation: scrolling 20s linear infinite;
}
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translatex(-144vw);
  }
}
.landing-page .featured-section .marquee .marquee-content .marquee-item {
  flex: 0 0 150px;
  margin: 0 35px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .featured-section .marquee .marquee-content .marquee-item {
    flex: 0 0 100px;
  }
}
@media only screen and (max-width: 768px) {
  .landing-page .featured-section .marquee .marquee-content .marquee-item {
    flex: 0 0 60px;
    margin: 0 15px;
  }
}
.landing-page .featured-section .marquee .marquee-content .marquee-item img {
  display: block;
  width: 100%;
}

.donations-page {
  overflow-x: hidden;
}
.donations-page .donations-section {
  padding: 100px 0;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .donations-page .donations-section {
    padding: 35px 0;
  }
}
.donations-page .donations-section .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .donations-page .donations-section .container {
    gap: 8px;
  }
}
@media only screen and (max-width: 768px) {
  .donations-page .donations-section .container .title-wrapper {
    margin-bottom: 12px;
  }
}
.donations-page .donations-section .container .title-wrapper span {
  width: 84px;
}
@media only screen and (max-width: 768px) {
  .donations-page .donations-section .container .title-wrapper span {
    width: 32px;
  }
}
.donations-page .donations-section .container .imgs-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media only screen and (max-width: 768px) {
  .donations-page .donations-section .container .imgs-wrapper {
    gap: 10px;
  }
}
.donations-page .donations-section .container .imgs-wrapper img {
  width: 100%;
  aspect-ratio: 16/11;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 15px;
}
@media only screen and (max-width: 768px) {
  .donations-page .donations-section .container .imgs-wrapper img {
    border-width: 3px;
    border-radius: 8px;
  }
}/*# sourceMappingURL=index.css.map */
