
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

.container{
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.ECC{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ERC{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ERT{
    display: flex;
    justify-content: center;
    position: relative;
}

/* ============HEADER================ */

.header{
    position: relative;
    z-index: 99;
    height: 115px;
    background-color: #ffffff;
    border-bottom: 1px solid black;
    padding: 10px;
}

.header_container{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 1250px;
    width: 100%;
    height: 100%;
}

.header_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.logo img{
    width: 150px;
    height: auto;
}

.navbar > ul{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.navbar ul>li>a{
    padding: 15px 18px;
    color: #218E57;
    font-family: "Alata", Sans-serif;
    font-weight: 500;
}

.navbar ul>li>a:hover{
    color: blue;
}

.header_btn>a{
    background-color: #13561C;
    font-size: 15px;
    color: #ffffff;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    padding: 12px 24px;
}

.hamburg{
    display: none;
}



/* WRAP MENU BAR */

.menu_back_filter{
    background-color: #776e6ebd;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 8;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition:all 0.7s ease;
}

.menu_wrap_container{
    background-color: white;
    top: 0;
    right: -100%;
    position: fixed;
    z-index: 999;
    width: 300px;
    max-width: 100%;
    height: 100%;
    /* visibility: hidden; */
    transition:all 0.4s ease-out;
    cursor: pointer;
}

.menu_wrap{
    display: flex;
    flex-direction: column;
    position: absolute;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    max-height: 100%;
    top: 0;
    left: 0;
}
/* .wrap_logo_btn{
    position: relative;
} */

.wrap__close_btn{
    position: absolute;
    font-size: 22px;
    top: 20px;
    right: 30px;
    text-align: center;
    display: flex;
    color: red;
    z-index: 40;
}

.nav_wrap_logo{
    padding: 20px 25px;
    position: relative;
}
.nav_wrap_logo a img{
    height: 80px;
    object-fit: contain;
}

.menu_container{
    margin-top: 80px;
}

.menu_list{
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.192);
    width: 100%;
}

.menu_list li{
    border-top: 1px solid rgba(0, 0, 0, 0.192);
    display: block;
    position: relative;
}

.menu_list li a{
    text-decoration: none !important;
}

.menu_list li>a{
    display: block;
    padding: 10px 20px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #000000;
}

.menu_list li>a:hover{
    color: #22aa11;
}





/* ===========SERVICES=============== */

.services{
    position: relative;
    padding: 0 80px 80px;
}

.services_head>h2{
    font-family: "Roboto", Sans-serif;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1666em;
    color: rgba(0, 0, 0, 0.8);
    position: relative;
}

.services_head>h2::before{
    content: " ";
    background-color: #218E57;
    height: 4px;
    width: 100%;
    position: absolute;
    bottom: -10px;
}

.services_head p{
    font-family: "Roboto", Sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0.15px;
    color: rgba(0, 0, 0, 0.54);
    margin-top: 30px;
}

.services_content{
  /* display: flex;
  flex-wrap: wrap; */
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 50px;
}

.services_item {
    /* flex: 0 0 calc(33.333% - 13.33px); */
    background-image: linear-gradient(180deg, #218E57 0%, #FFFFFF 100%);
    border: 1px solid #ddd;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    min-height: 300px; /* Fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services_item>img{
  height: 100px;              /* fixed height */
  width: auto;                /* maintain aspect ratio */
  display: block;
  margin: 0 auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.services_item>h2{
    font-size: 28px;
    font-weight: 600;
    font-family: "Roboto",sans-serif;
    margin-bottom: 10px;


}

.services_item>p{
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins",sans-serif;
}



/* =========ABOUT================= */

.Cause{
    padding: 50px 0 80px 0 !important;
}

.about{
    position: relative;
    padding: 0 0 80px 0;
}

.about_left{
    flex: 0 0 50%;
    position: relative;
}

.left_wrapper{
    padding: 20px;
    position: relative;
}

.left_wrapper>h2{
    font-family: "Roboto", Sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 60px;
    color: #331c16;
    margin-bottom: 30px;
}

.left_wrapper>p{
    color: #4e504e;
    font-family: "Cutive", Sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5em;
}

.left_wrapper > .abt_txt{
    font-size: 18px;
    margin-bottom: 8px;
}

.about_btn{
    position: relative;
    margin-top: 60px;
}

.about_btn>a{
    background-color: rgba(255, 171, 0, 0);
    font-family: "Nunito", Sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    color: #000000;
    border-style: solid;
    border-width: 5px 5px 5px 5px;
    border-color: #0000007A;
    border-radius: 11px 11px 11px 11px;
    box-shadow: 10px 0px 20px 0px rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    display: inline-block;
}

.about_right{
    flex: 0 0 50%;
    position: relative;
}

.about_img{
    position: relative;
    width: 100%;
    padding: 20px;
}

.about_img>img{
    height: 600px;
    width: 100%;
    position: relative;
    object-fit: cover;
}

.about_img>h2{
    font-size: 24px;
    color: #ffffff;
    font-family: "Roboto",sans-serif;
    position: absolute;
    bottom: 50px;
    text-align: center;
}

/* ======DONATION======= */

.donation{
    position: relative;
    padding: 0 20px 80px;

}

.donation_wrapper{
  display: grid;
  /* flex-wrap: wrap; */
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  justify-content: space-between;
  margin-top: 50px;
}

.donation_item{
    flex: 0 0 calc(33.333% - 13.33px);
    border: 2px solid #218E57;
    /* border: 2px solid #2596BE; */
    text-align: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.donation_item_content{
    padding: 20px;
    margin: 20px;
}

.icon{
    margin-right: 15px;
    background-color: #218E57;
    color: #FFFFFF;
    height: 90px;
    width: 90px;
    font-size: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -85px;
}

.icon>i{
    display: block;
    padding: 30px;
}

.donation_item_content>h2{
    font-family: "Nunito", Sans-serif;
    font-size: 1.5em;
    color: #218E57;
    padding-bottom: 12px;
    padding-top: 10px;
    position: relative;
}

.donation_item_content>h2::after{
  content: " ";
  height: 3px;
  width: 70px;
  text-align: center;
  background-color: #218E57;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.donation_item_content>p{
    text-align: center;
    color: #757575;
    font-family: "Nunito", Sans-serif;
    font-size: 1rem;
    line-height: 1.7em;
    margin-top: 20px;
}



/* =========GALLERY======== */

.gallery {
    padding: 40px 20px;
    background-color: #2EAF6D; /* Match your green background */
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-auto-rows: 180px;
    gap: 15px;
  }

  .grid-item {
    position: relative;
    overflow: hidden;
  }

  .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  /* Custom sizes to match your layout */
  .grid-item.tall {
    grid-row: span 2;
  }

  .grid-item.wide {
    grid-column: span 2;
  }

  /* Responsive tweak for small screens */
  @media (max-width: 768px) {
    .gallery-grid {
      grid-template-columns: 1fr;
      grid-auto-rows: auto;
    }
    .grid-item.tall,
    .grid-item.wide {
      grid-column: span 1;
      grid-row: span 1;
    }

  }






  /* ==============initiatives=============== */

.initiatives{
  position: relative;
  padding: 80px;
}

.initiatives_head h2{
    font-family: "Roboto", Sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 60px;
    color: #331c16;
}

.initiatives_items_wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(3,1fr);
    justify-content: center;
    /* align-items: center; */
    margin-top: 40px;
}

.initiatives_item{
    padding: 20px;
    display: flex;
    position: relative;
}

.initiatives_icon{
    margin-right: 15px;
    background-color: #218E57;
    color: #FFFFFF;
    height: 80px;
    width: 80px;
    font-size: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.initiatives_icon>i{
    display: block;
    padding: 30px;
}

.initiatives_txt{
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    position: relative;
}

.initiatives_txt>h2{
    font-size: 24px;
    font-family: "Roboto",sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #333;
    margin-bottom: 15px;
}

.initiatives_txt>p{
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins",sans-serif;
    color: rgb(51, 51, 51);
    text-align: left;
}



/* =========DONATE BANNER ======*/

.donate_banner{
    background: url(../img/donate.webp) center /cover no-repeat;
    padding: 130px 0;
    position: relative;
    margin-bottom: 80px;
}

.approach_donate_banner{
    background: url(../img/approach.jpeg) center /cover no-repeat;
    padding: 130px 0;
    position: relative;
    margin-bottom: 80px;
}

.breadcrumb{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 0;
    position: relative;
}

.donate-banner-overlay{
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.donate_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 0 30px;
}

.donate_content>h1{
    font-size: 70px;
    font-weight: 900;
    line-height: 70px;
    stroke: #000;
    text-shadow: 0px 19px 6px rgba(0, 0, 0, 0.3);
    color: #CCF4F1;
    font-family: "Nuinto",sans-serif;
    margin-bottom: 50px;
    text-align: center;
}

.donate_content>p{
    font-size: 20px;
    font-weight: 400;
    line-height: 70px;
    stroke: #000;
    text-shadow: 0px 19px 6px rgba(0, 0, 0, 0.3);
    color: #CCF4F1;
    font-family: "Nuinto",sans-serif;
    text-align: center;
}

.donate_content.approach_donate_content>h1,.approach_donate_content>p{
    color: #ffffff;
}

.btn_donate{
    margin-top: 50px;
}

.btn_donate>a{
    /* background-color: #91C1BF; */
    background-color: #218E57;
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    border-radius: 8px 8px 8px 8px;
    padding: 20px 40px;
    transition: all 0.3s linear;
    text-align: center;
    display: inline-block;
}

.btn_donate>a:hover{
    background-color: #ffffff;
    color: #218E57;
    border: 1px solid black;
}

.btn_donate>a>i{
    margin-right: 5px;
}


/* ============TEAM MEMBER============== */

.team{
    position: relative;
    background-color: #f3f3f3;
    padding: 50px 0 70px 0;
}

.team .container>h2{
    font-size: 56px;
    font-family: "Roboto",sans-serif;
    font-weight: 800;
    color: #333;
    text-transform: capitalize;
    margin-bottom: 50px;
    text-align: center;
}

.team_wrapper{
    /* display: flex; */
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    padding: 20px;

    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.team_member{
    background-color: white;
    position: relative;
    height: 300px;
    width: 250px;
    border: 1px solid rgba(0, 0, 0, 0.486);
    border-radius: 5px;
}

.team_img{
    width: 100%;
    height: 100%;
}

.team_img img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.overlay-team_member{
    content: " ";
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.team_member>h2{
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    color: #333;
}



/* ============TEAM JOIN =================== */

.team_join{
    position: relative;
    padding: 80px 50px 60px;
}

.join_content{
    padding-right: 30px;
    align-items: flex-start !important;
}

.join_content>h2{
    font-family: "Roboto", Sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1em;
    color: #331c16;
    flex: 0 0 50%;
    margin-bottom: 25px;
}

.join_content>p{
    color: #4e504e;
    font-family: "Cutive", Sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8em;
    margin-bottom: 25px;
}

.join_btn{
    margin-top: 50px;
    position: relative;
}

.join_btn>a{
    background-color: #218E57;
    font-family: "Roboto", Sans-serif;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    border-radius: 8px;
    padding: 20px 40px;
    display: inline-block;
    transition: all 0.3s linear;
}

.join_btn>a:hover{
    border: 1px solid black;
    color: #218E57;
    background-color: #ffffff;
}

.image_join{
    flex: 0 0 50%;
}



/* ===========JOURNEY=============== */

.journey{
    position: relative;
    background: url(../img/journey-bg.webp) center / cover no-repeat;
    padding: 50px;
}

.journey_wrapper>h2{
    font-family: "Roboto", Sans-serif;
    font-size: 3rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.2;
    color: #000000D1;
    position: relative;
    padding: 10px;
    margin-bottom: 50px;
}

.journey_wrapper h2::after{
   content: " ";
   height: 3px;
   width: 70%;
   text-align: center;
   background-color: #218E57;
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translate(-50%);
}

.journey_txt>p{
    text-align: justify;
    font-size: 16px;
    color: #000000C9;
    font-family: "Poppins",sans-serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.journey_img{
    position: relative;
    margin-top: 50px;
}

.journey-img_wrapper{
    flex-wrap: wrap;
    gap: 30px;
}

.img_box{
    display: flex;
    flex: 0 0 calc(50% - 15px);
    position: relative;
}

.img_box img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}


/* =============NEWS==================== */

.news{
    position: relative;
    padding: 50px 0;
}

.news_wrapper>h2{
    margin-bottom: 50px;
    font-family: "Roboto", Sans-serif;
    font-size: 3rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
    color: #000000D1;
    position: relative;
    padding: 10px;
}

.news_wrapper>h2::after{
    content: " ";
    height: 3px;
    width: 70%;
    text-align: center;
    background-color: #218E57;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
 }


.news_img_wrapper{
    gap: 20px;
}

.news_img{
    width: calc(50% - 10px);
}

.new_right_img{
    width: calc(50% - 10px);
    gap: 30px;
}

.new_right_img img{
    height: 250px;
    width: 100%;
    object-fit: contain;
}






.slider_container{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
   margin-left: auto;
   margin-right: auto;
   max-width: 1200px;
   overflow: hidden;
   background-color: #fff;
}

.slider_wrapper{
    display: flex;
    align-items: center;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide_item{
    padding: 10px;
    position: relative;
    display: flex;
    flex: 0 0 100%;
    height: 430px;
    justify-content: center;
}

.slide_item img{
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.nav{
background: transparent;
border: none;
font-size: 28px;
color: #DDDDDD;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
padding: 10px;
}

.prev{
    left: 0;
}

.next{
    right: 0;
}


/* ===============APPROACH INFO========== */

.approach_info{
    position: relative;
    padding: 50px 30px 80px 30px;
    background: url(../img/journey-bg.webp) center / cover no-repeat;
}

.approach_info_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
  align-items: center;
}



/* ===============GIFT====================== */

.gift{
    padding: 60px 0;
    position: relative;
    background-color: #f3f3f3;
}

.gift_wrapper{
    background-color: #ffffff;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}

.gift_wrapper>p{
    font-size: 32px;
    font-family: "Poppins",sans-serif;
    font-weight: 400;
    color: #333;
    width: 60%;
}


.btn_gift{
    margin: 0 !important;
}



/* ===============THINK================== */

.think{
    position: relative;
    padding: 100px 50px;
    background: url(../img/school-children-dressed-uniform-have-fun-play-schoolyard_8353-6640.webp) center / cover no-repeat;
    margin-bottom: 50px;
}

.think >.container>h2{
    font-size: 56px;
    font-family: "Roboto",sans-serif;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

.think-overlay{
    content: " ";
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.think_wrapper{
    gap: 50px;
    flex-wrap: wrap;
}

.think_item{
    flex: 0 0 calc(50% - 25px);
    background-color: #ffffff;
    padding: 50px;
    min-height: 300px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.think_content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.think_content>p{
    color: #4e504e;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.think_txt{
    margin-top: 50px;
    position: relative;
}

.think_txt>h2{
    font-size: 24px;
    color: #333;
    font-family: "Roboto",sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.think_txt>a{
    color: #218E57;
    font-size: 16px;
    font-family: "Roboto",sans-serif;
    font-weight: 500;
    text-transform: capitalize;
}


/* ==============TESTIMONIAL====== */



.testimonial{
    position: relative;
    padding: 70px 50px;
    margin-bottom: 50px;
}

.testimonial>.container>h2{
    font-size: 56px;
    font-family: "Roboto",sans-serif;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.testimonial>.container>.think_wrapper>.think_item{
    box-shadow: 1px 1px 8px #333;
}


/* ==============PEOPLE================= */

.people{
    padding: 90px 0 120px 0;
    position: relative;
}

.over_bottom{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    fill: #218E57;
}

.people_wrapper{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 0 70px;
}

.people_content{
    flex: 0 0 calc(50% - 15px);
}

.people_content>h2{
    font-size: 36px;
    font-family: "Roboto",sans-serif;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

.people_content>p{
    font-size: 16px;
    font-family: "Poppins",sans-serif;
    color: #333;
    font-weight: 400;
}

.people_btn{
    flex: 0 0 calc(50% - 15px);
    padding: 50px;
    justify-content: space-between !important;
}

.people_btn>a{
    background-color: #218E57;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 18px;
    font-family: "Roboto",sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}


/* =============HERo================== */

.hero_slider {
    margin-bottom: 70px;
    position: relative;
    width: 100%;
    height: 100vh !important;
    overflow: hidden;
  }

  .slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .slide.active {
    opacity: 1;
    z-index: 1;
  }

  .slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* background-color: rgba(0,0,0,0.5); */
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 2;
    border-radius: 5px;
    background: transparent;
  }

  .slider-btn.prev {
    left: 20px;
  }

  .slider-btn.next {
    right: 20px;
  }

  .slider-btn:hover {
    background-color: rgba(0,0,0,0.5);
  }




/* ========== CONTACT =========== */

.contact{
    position: relative;
}

/* .contact-overlay{
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */

.contact_container{
    padding: 100px 0 50px 0;
    position: relative;
}

.wrapper_contact_full{
    display: flex;
    justify-content: center;
    padding: 20px;
}


.contact_details{
    position: relative;
}

.contact_details h2{
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 39px;
    font-family: "League Spartan",sans-serif;
}

.contact_info{
    display: flex;
    margin-bottom: 30px;
}

.social_contact{
    display: flex;
    align-items: center;
    gap: 50px;
}

.contact_info .icon_contact i{
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #ebf3fa;
    font-size: 25px;
    text-align: center;
    border-radius: 50%;
    color: #218E57;
}

.contact_txt{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
}

.contact_txt h2{
    position: relative;
    display: block;
    font-size: clamp(20px,24px,26px);
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 1px;
    font-family: "League Spartan",sans-serif;
}

.contact_txt p{
    font-size: 18px;
    line-height: 26px;
    color: #888888;
    font-family: 400;
}

.contact_form{
    padding-left: 50px;
}
.contact_form_wrapper{
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 39px;
    font-family: "League Spartan";
}


.form-50{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
}

form input,textarea{
    position: relative;
    display: block;
    width: 100%;
    height: 54px;
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
    font-size: 15px;
    color: #8a8d91;
}

form input:focus{
    outline: none;
}

.form-50 textarea{
    width: 100%;
    height: 150px;
}

.form-50  button{
    border: none;
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 17px;
    line-height: 25px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-align: center;
    padding: 15px 34px;
    border-radius: 30px;
    z-index: 1;
    color: #ffffff;
    background: #218E57;
    margin-top: 30px;
}

.map_container{
    width: 100%;
    height: 400px;
}

.map_container iframe{
    width: 100%;
    height: 100%;
}




  /* ===================FOOTER================== */

  .footer{
    position: relative;
    padding: 30px 0;
    border-top: 1px solid #888888;
  }

  .footer_wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    justify-content: center;
    padding: 0 20px;
  }

  .footer_section{
    padding: 20px;
    position: relative;
  }

  .footer_link{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer_link>h2{
    margin-bottom: 35px;
    font-family: "Roboto", Sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888888;
  }

  .footer_link ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer_link>ul>li{
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
  }

.footer_link>ul>li>a:hover{
    color: #13561C;
  }

  .footer_link>ul>li>a{
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #888888;
    transition: all 0.2s linear;
  }

  .footer_link>ul>li>a>i{
    color: #218E57;
    margin-right: 10px;
  }

  .footer_section:nth-of-type(2) .footer_link>ul>li::before,
  .footer_section:nth-of-type(3) .footer_link>ul>li::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-45deg);
    width: 6px;
    height: 6px;
    border-right: 2px solid #218E57;
    border-bottom: 2px solid #218E57;
  }

  .footer_section:nth-of-type(4) ul .media_icons{
    display: flex;
    flex-direction: row !important;
    gap: 30px;
    align-items: center;
  }

  .footer_section:nth-of-type(4) ul .policy{
    display: flex;
    flex-direction: column !important;
    margin-top: 30px;
  }

  .footer_section:nth-of-type(4) ul .policy >li>a{
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #888888;
    transition: all 0.2s linear;
  }

  .footer_section:nth-of-type(4) ul >.media_icons li>a>i{
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #ebf3fa;
    font-size: 25px;
    text-align: center;
    border-radius: 50%;
    color: #218E57;
  }

  .policy{
    display: flex;
    flex-direction: column;
  }

  /* ============RESPONSIVE================ */

  @media (max-width:1168px){
    .header_btn{
        display: none;
    }
  }

  @media (max-width:968px){
    .navbar{
        display: none;
    }
    .hamburg{
        display: block;
        margin-right: 20px;
        font-size: 24px;
        z-index: 899;
    }

    .services_item{
        flex: 0 0 calc(50% - 13.33px);
    }

    .about_wrapper{
        flex-direction: column;
    }

    .about_left {
        flex: 0 0 100%;
    }

    .about_right {
        flex: 0 0 100%;
    }

    .approach_info_wrapper{
        grid-template-columns: repeat(2, 1fr);
    }

    .initiatives{
        padding: 80px 0;
    }

    .news_img_wrapper{
        flex-direction: column;
    }

    .news_img {
        width: calc(100% - 10px);
    }

    .new_right_img {
        width: calc(100% - 10px);
        gap: 30px;
        padding: 10px;
    }

    .wrapper_contact_full{
        flex-direction: column;
        gap: 50px;
    }

    .contact_form{
        padding-left: 20px;
    }

    .donate_content>h1{
        font-size: 48px;
    }

    .donation_wrapper{
        grid-template-columns: repeat(2,1fr) !important;
    }

    .donation_item:nth-of-type(2), .donation_item:nth-of-type(3){
        margin-top: 50px;
    }

    .team_wrapper{
        grid-template-columns: repeat(3,1fr);
    }

    .team_member{
        margin-top: 25px !important;
    }

    .team_join{
        padding: 50px 30px 30px;
    }

    .team_join_wrapper{
        flex-direction: column !important;
    }

    .join_btn{
        margin-top: 10px !important;
    }

    .image_join{
        padding: 0 0 30px 0;
    }
}

  @media (max-width:768px){

    .people_wrapper{
        flex-direction: column;
    }

    .people_btn{
        gap: 20px;
    }

    .think_wrapper{
        flex-direction: column;
    }

    .think_item{
        flex: 0 0 calc(100% - 25px);
    }

    .services{
        padding: 0 20px 0 !important;
    }

    .approach_info_wrapper{
        grid-template-columns: repeat(1, 1fr);
        gap: 1px;
    }

    .initiatives_item{
        padding: 15px;
    }

    .gift_wrapper {
        flex-direction: column;
    }

    .gift_wrapper>p{
        width: 100%;
    }

    .btn_gift{
        margin-top: 20px !important;
    }

    .initiatives_items_wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .donation_wrapper{
        grid-template-columns: repeat(1,1fr) !important;
    }

    .people{
        padding: 70px 0 90px 0 !important;
    }

    .people_btn{
        flex-direction: column;
        padding: 0 10px 10px 10px !important;
    }

    .breadcrumb{
        padding: 90px 0 !important;
    }

    .donate_content>p{
        line-height: 1.2 !important;
    }

    .approach_info{
        padding: 30px 20px 50px 20px;

    }

    .initiatives{
        padding: 40px 0 80px;
    }

    .about_img img{
        height: auto;
    }

    .hero_slider{
        height: 80vh !important;
        margin-bottom: 10px !important;
    }

    .team_wrapper{
        grid-template-columns: repeat(1,1fr);
    }

    .team_member{
        margin-top: 25px !important;
        width: 100%;
    }

    .services_content{
        grid-template-columns: repeat(2,1fr);
    }
  }

  @media (max-width:450px){

    .services_item{
        flex: 0 0 calc(100% - 13.33px);
    }

    .donation_item{
        flex: 0 0 calc(100% - 13.33px);
        margin-top: 50px;
    }

    .think >.container>h2{
        font-size: 36px;
    }

    .journey{
        padding: 40px 10px;
    }

    .hero_slider{
        height: 50vh !important;
    }

    .services_content{
        grid-template-columns: repeat(1,1fr);
    }

  }