@font-face {
    font-family: poppins;
    src: url(../font/Poppins-Regular.ttf);
}
@font-face {
    font-family: poppins-semibold;
    src: url(../font/Poppins-SemiBold.ttf);
}
@font-face {
    font-family: poppins-bold;
    src: url(../font/Poppins-Bold.ttf);
}
@font-face {
    font-family: poppins-medium;
    src: url(../font/Poppins-Medium.ttf);
}
@font-face {
    font-family: poppins-black;
    src: url(../font/Poppins-Black.ttf);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  font-family: "poppins", sans-serif;
  font-size: 16px;
  color: #1d1c1c;
  font-weight: 400;
  line-height: 30px;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* header css  */
.navbar {
    padding-right: 4%;
    padding-left: 4%;
}
.navbar-custom {
    transition: all 0.3s ease;
    background-color: transparent;
  }

  .navbar-hidden {
    transform: translateY(-100%);
  }

  .navbar-scrolled {
    background-color: #F8F9F3 !important;
  }

  .navbar-brand,
  .nav-link {
    font-size: 16px;
    font-family: 'poppins-semibold', sans-serif;
    line-height: 20px;
    font-weight: 600;
    color: white !important;
    padding-right: 50px !important;
  }
  .navbar-brand,
  .dropdown-item {
    font-size: 16px;
    font-family: 'poppins-semibold', sans-serif;
    line-height: 20px;
    font-weight: 600;
    color: #1d1d1d !important;
  }
  .navbar-brand,
  .nav-link:hover {
    color: #fec415 !important;
  }

  .active {
    color: #fec415 !important;
  }

.navbar-toggler-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-brand img {
    width: 120px;
}

.header-btn {
    background-color: #fec415;
    border-radius: 50px;
    font-size: 16px;
    font-family: 'poppins-bold';
    padding: 16px 40px;
    color: #1d1c1c;
;
}
.header-btn:hover {
    background-color: #1d1c1c;
    color: #fff;
}

.dropdown-item.active, .dropdown-item:active {
    text-decoration: none;
    background-color: #ffffff;
}
/* header css end */

/* global css start */

.btn-global {
  display: inline-block;
  position: relative;
  font-family: "poppins-bold",sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  padding-top: 20px;
  color: #1d1c1c;
}
.btn-global::after {
    content: "";
    z-index: 1;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    bottom: -2px;
    background-size: 200% 100%;
    background-position: right center;
    transition: all 1s ease;
    background-image: linear-gradient(to right,#FEC415 50%,#FEE8B5 50%);
}
.btn-global:hover::after {
  background-position: left center;
}


.section-title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "poppins-medium", sans-serif;
  margin-bottom: 20px;
}

.global-h2 {
  font-size: 50px;
  font-weight: 700;
  font-family: "poppins-bold", sans-serif;
  line-height: 60px;
}
/* global css start */

/* home css start */


/* home hero css  */
.home-hero-section {
    background-image: url('../img/unsplash-image-0ZkAINlmtOs.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 900px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    padding-left: 30px;
    padding-right: 30px;
}

.home-hero-content {
    width: 667px;
}
.home-hero-content h1 {
    font-family: "poppins-bold", sans-serif;
    font-size: 72px;
    line-height: 90px;
    font-weight: 700;
    color: white;

}
.home-hero-content a {
    font-family: "poppins-bold", sans-serif;
    font-size: 16px;
    line-height: 25px;
    font-weight: 700;
    color: white;
    display: inline-block;
    padding-top: 40px;
}

/* home hero css end */

/* shared-experience start */

.shared-experience {
    padding: 100px 0px 0px 0px;
}

.shared-experience .first-img {
    margin-top: 130px;
}
.shared-content {
    width: 350px;
    padding-left: 30px;
}
.shared-content h2{
  margin-top: 70px;
}
.shared-content p{
  font-size: 16px;
  line-height: 30px;
  font-family: "poppins", sans-serif;
  margin-top: 40px;
  
}

.scroll-animate {
    transition: transform 0.2s ease-out;
    will-change: transform;
  }
  
.shared-shape {
  padding-top: 60px;
  text-align: right;
}
/* shared-experience end */

/* facts start */

.facts {
  background-color: #F8F9F3;
  padding-top: 160px;
  padding-bottom: 90px;
  text-align: center;
  margin-top: -590px;
}

.facts h2{
  padding-bottom: 15px;
}
.facts-bottom {
  width: 860px;
  margin: auto;
}
.facts-bottom-left h2 {
  font-size: 154px;
  font-weight: 600;
  font-family: "poppins-semibold", sans-serif;
  line-height: 130px;
  
}

.facts-bottom-right h2 {
  margin-top: 11px;
}

/* facts end */

/* testimonial css  */
.home-testimonial {
    background-color: #fff;
    padding-top: 40px;
    margin-bottom: -91px;
}
.testi-col {
  width: 282px;
}
.testi-col h2 , .event-col h2, .single-testimonial h2, .explore-top-title h2, .explore-single-box h4, .single-event h4, .flip-box-front h2, .flip-box-back h2, .ter-content h3{
  font-family: "poppins-bold",sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  padding-top: 20px;
}
.testi-col p {
  font-family: "poppins",sans-serif;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
}

.second-testi {
  margin-top: 140px;
}

.third-testi {
  margin-top: 120px;
}
.third-testi h2{
  margin-bottom: 40px;
}
.home-testimonial img {
  transition: .3s;
}
.home-testimonial img:hover {
    filter: saturate(40%);
}
/* testimonial css end */

/* events css start */
.events {
    margin-top: -285px;
}
.first-event {
  margin-top: 65px;
}
.first-event a {
  margin-top: 30px;
}
.second-event {
  margin-top: 80px;
}
.event-col {
  padding-inline-start: 33%;
  padding-inline-end: 0%;
} 

/* home-cta start */

.home-cta {
  padding-top: 80px;
  padding-bottom: 180px;
  text-align: center;
}
.home-cta h2{
  padding-bottom: 50px;
}
.home-cta p{
  padding-bottom: 45px;
}
.home-cta .header-btn {
    padding: 18px 55px 18px 55px;
    line-height: 1.56em;
    border-radius: 30px;
    background-color: #fec415;
    color: #1d1c1c;
}

.home-cta .header-btn:hover {
    padding: 18px 55px 18px 55px;
    line-height: 1.56em;
    border-radius: 30px;
    background-color: #1d1c1c;
    color: #fff;
}
/* home-cta end */

/* footer  */
footer {
  background-color: #F8F9F3;
  padding-top: 80px;
}

.footer-top-left-part img {
  width: 150px;
}
.footer-nav {
  padding-top: 40px;
}
.footer-nav a{
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: #1d1c1c;
  padding-bottom: 10px;
  font-family: "poppins-medium", sans-serif;
  transition: .5s;
}

.footer-nav a:hover{
  color: #FEC415;
}

.footer-top-right-part {
  padding-top: 140px;
}
.footer-top-right-part p{
  font-size: 12px;
  line-height: 30px;
}

.footer-bottom-part {
    border-top: 2px solid #00000014;
    padding-top: 70px;
    padding-bottom: 50px;
}

.footer-bottom-right {
    text-align: right;
}

.footer-bottom-middle {
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  height: 100%;
  align-items: center;
}
.footer-bottom-middle svg {
  font-size: 36px;
}
/* footer end */

/* mission css start */

.mission-hero-section {
    background-image: url('../img/IMG_8991.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 430px;
    position: relative;
}

.background-overlay {
    position: absolute;
    inset: 0;
    background-color: transparent;
    background-image: linear-gradient(180deg, #031E3D 29%, #052F5C00 74%);
    opacity: 0.46;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

/* mission about us  */
.mission-about-us {
  margin-top: -190px;
  position: relative;
  z-index: 2;
}
.vamtam-heading-wrapper>* {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 20px;
    background-color: #F8F9F3;
    margin-bottom: 10px;
    z-index: 10;
}
.vamtam-heading-wrapper .global-h2{
  line-height: 1.29em;
}
.mission-about-us .section-title{
  color: #fff;
  padding-bottom: 15px;
}
/* mission about us  end*/

/* our mission start */

.our-mission {
  padding-top: 180px;
  padding-bottom: 50px;
}

/* our mission  end */

/* mission css end */

/* founder css  */

.founder-about-us {
    margin-top: 200px;
}

.our-founder {
  padding: 80px 0px;
}

.our-founder-left {
  padding-top: 70px;
  padding-right: 20px;
}
.our-founder-content {
  padding-right: 40px;
}

.our-founder-right img {
  display: inline-block;
  padding-bottom: 40px;
}

.founder-award {
  padding: 200px 0px 150px 0px;
  background-color: #F8F9F3;
}
.award-top-content {
  text-align: center;
}
.award-top-content h2 {
  padding-bottom: 20px;
}

.all-award-list {
  padding-top: 80px;
}
.award-list {
  text-align: center;
  width: 162px;
}

.award-list h4{
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  font-family: "poppins-bold",sans-serif;
}

.feature-podcast {
  padding: 80px 0px;
  text-align: center;
}
/* founder css end */

/* testimonial css */
.testimonial {
  padding: 100px 45px;
}
.testimonial-about-us {
  padding-top: 250px;
  padding-bottom: 100px;
}
.testimonial-about-us h4{
  font-size: 43px;
  line-height: 65px;
  font-weight: 500;
  font-family: "poppins-medium", sans-serif;
  text-transform: uppercase;
}

.single-testimonial img {
  width: 100%;
  height: 395px;
  object-fit: cover;
  position: relative;
  transition: ease .5s;
}
.single-testimonial img:hover {
  filter: saturate(40%);
}

/* testimonial single page  */

.testimonial-details {
  padding-top: 200px;
}

.testimonial-details .social-icon svg {
  font-size: 31px;
  padding: 10px;
  transition: .4s;
}
.testimonial-details .social-icon .fa-facebook {
  color: #3b5998;
}
.testimonial-details .social-icon .fa-twitter {
  color: #1da1f2;
}
.testimonial-details .social-icon .fa-linkedin {
  color: #0077b5;
}
.testimonial-details .social-icon svg:hover {
  opacity: .7;
}

.testimonial-details h1 {
  font-size: 70px;
  line-height: 90px;
  font-weight: 700;
  font-family: "poppins-bold",sans-serif;
  padding-top: 20px;
  padding-bottom: 40px;
}
.testimonial-details .profile-img img {
  width: 305px;
  height: 305px;
  object-fit: cover;
}
.testimonial-details p {
  padding-top: 50px;
  padding-bottom: 70px;
}

.prev-next-link .prev-next{
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  font-family: "poppins-bold",sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testi-page-link {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  font-family: "poppins-bold",sans-serif;
  transition: .2s;
}
.testi-page-link:hover {
  color: #fec415;
}

.prev-middle-border {
  background-color: #d5d8dc;
  width: 1px;
  height: 100%;
}
/* testimonial single page end */
/* testimonial end */

/* what we do css */


.what-we-do-hero  {
    background-image: url('../img/remi-walle-UOwvwZ9Dy6w-unsplash-1-1.jpg');
}

.what-we-do-hero .background-overlay {
    background-color: transparent;
    background-image: linear-gradient(180deg, #031E3D 29%, #052F5C00 74%);
    opacity: 0.46;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.what-we-do {
    padding-top: 200px;
    padding-bottom: 40px;
}

.what-we-do-content h4 {
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  font-family: "poppins-bold",sans-serif;
  padding: 20px 0px 10px 0px;
}

.what-we-do-content .global-h2 {
  padding-bottom: 20px;
}

.what-we-do-content .social {
  padding: 20px;
  padding-right: 50px;
}
/* what we do css end */
.what-we-do-content .social svg{
  padding: 20px;
}

.what-we-do .founder-message {
  padding-top: 200px;
}

.what-we-do .founder-message h2 {
  padding-bottom: 20px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  display: block;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  pointer-events: none; /* allows click to pass through */
}
.video-player {
  width: 100%;
  height: 100%;
  display: none;
}

.what-we-explore {
  background-color: #F8F9F3;
  padding-top: 150px;
  padding-bottom: 100px;
}

.explore-top-title {
text-align: center;
}

.explore-box {
  padding-top: 100px;
}
.explore-single-box p {
  padding-top: 20px;
}
/* what we do css end */

/* event css  */

.event-hero-section {
  background-image: url('../img/iStock-1199706305.jpg');
}

.events-list {
  padding-top: 190px;
  padding-bottom: 80px;
}

.all-event {
  transition: .2s;
}

.single-event {
  padding: 40px 0px;
}

.all-event:hover {
  background-color: #F8F5EF;
}


/* event css end */

/* gallery */

.gallery {
  padding-top: 200px;
  padding-bottom: 40px;
}

.gallery .gallery-top {
  padding-bottom: 30px;
}

.masonry-gallery {
  column-count: 4;
  column-gap: 1rem;
  padding: 1rem;
}
.masonry-gallery img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  display: block;
  break-inside: avoid;
}

/* gallery end */

/* resources page  */

    .flip-box {
    width: 100%;
    max-width: 100%;
    height: 280px;
    perspective: 1000px;
    margin: 1rem;
  }

  .flip-box-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease-in-out;
  }

  .flip-box:hover .flip-box-inner {
    transform: rotateX(180deg);
  }

  .flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 60px 30px;
    box-sizing: border-box;
  }

  .flip-box-front {
    background: #1ABC9C;
    color: #333;
    z-index: 2;
  }

  .flip-box-back {
    background: #4054b2;
    color: #fff;
    transform: rotateX(180deg);
    z-index: 1;
  }
  .flip-icon {
    text-align: center;
  }
.flip-icon svg{
  font-size: 50px;
  color: #fff;
}
.flip-top h2 {
  padding-top: 30px;
  padding-bottom: 40px;
}
.flip-box-content {
    width: 100%;
    text-align: center;
}
.flip-box-content h2 {
  color: #fff;
}
.flip-box-content p {
  font-family: "poppins",sans-serif;
  color: #fff;
  font-size: 14px;
  padding-top: 10px;
  font-weight: 400;
}

/* faq */

    .accordion-button {
      font-weight: 600;
      background-color: #fff;
    }

    .accordion-button::after {
      content: '';
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
      transform: rotate(0deg);
    }

    .accordion-button:not(.collapsed)::after {
      transform: rotate(180deg);
    }

    .accordion-body a {
      color: #000;
      text-decoration: underline;
    }

    .accordion-body ul {
      padding-left: 1.2rem;
    }
    .accordion-body ul li a{
     word-break: break-all;
    }

/* resources end */

/* contact */
.contact-top h2 {
  padding-bottom: 20px;
} 
.contact-details {
  padding-top: 50px;
}

.contact-details h4 {
  font-size: 16px;
  font-weight: 600;
  font-family: "poppins-semibold", sans-serif;
  padding-bottom: 20px;
}

.contact-details .social a {
    padding: 20px;
}
/* contact end */

/* donate now css */

.donate-hero-section {
  background-image: url('../img/melissa-askew-tSlvoSZK77c-unsplash.jpg');
}

/* donate now css end */

/* get-involved */

.get-involved p {
  padding-top: 20px;
}

/* get-involved end */

/* volunteer */

.volunteer-hero {
  background-image: url('../img/marita-kavelashvili-ugnrXk1129g-unsplash.jpg');
  display: flex;
  text-align: center;
  align-items: center;
}
.volunteer-hero .background-overlay {
    background-color: transparent;
    background-image: linear-gradient(180deg, #031E3D 29%, #052F5C00 74%);
    opacity: 0.46;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.volunteer-hero h2 {
  color: #fff;
  position: relative;
  z-index: 10;
}
/* volunteer end */

/* terms of site */

.terms-site {
    padding-top: 250px;
    padding-bottom: 100px;
} 

.term-top h4 {
  font-size: 20px;
  font-weight: 500;
  font-family: "poppins-medium", sans-serif;
  line-height: 30px;
  text-transform: uppercase;

}

.ter-content {
  padding-top: 40px;
}
.ter-content h3{
  padding-bottom: 10px;
}

/* terms of site */