@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Work Sans", sans-serif;
}


/* NAVIGATION---------------START-----------------HERE------------------ */

nav{
    transition: all 0.5s ease-in-out;
}

nav img{
    width: 200px;
}

nav .nav-bar{
    display: flex;
    align-items: center;
    justify-content: end;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 80%;
}

nav li.nav-active-item{
    margin: 0 20px;
    padding: 5px 0;
    position: relative;
}

nav li.nav-active-item::before{
    content: "";
    width: 100%;
    height: 2px;
    background: #F86F2D;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center;
    transition: all 0.3s ease-in-out;
}

nav li.nav-active-item.active::before{
    content: "";
    width: 100%;
    height: 2px;
    background: #F86F2D;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(1);
}

nav .nav-active-item.active .nav-active-link{
    color:#F86F2D;
}

nav .nav-active-item:hover .nav-active-link{
    color:#F86F2D;
}

li.nav-active-item:hover::before{
    transform: scale(1);
}

nav .nav-active-link{
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;   
}

nav .search-show{
    color: black;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

nav .search-show:hover{
    color: #F86F2D;
}

nav .nav-show-btn,.nav-hide-btn{
    display: none;
}

.button {
    width: 150px;
    height: 45px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F86F2D;
    overflow: hidden;
    border-radius: 30px;
    color: #FFF;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.btn-txt {
    z-index: 2;
    font-weight: 500;
}

.type1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    background: #FA8F3D;
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: 1;
}

.button:hover {
    color: #fff;
    border: none;
}

.type1:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
}

.search{
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background: #0000008c;
    backdrop-filter: blur(10px);
    z-index: 3;
    display: flex;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

.search form {
    width: 70%;
    border-bottom: 1px solid #FFF;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.search #search {
    width: 100%;
    background: transparent;
    border: none;
    padding: 10px 0;
    color: #FFF;
    font-size: 20px;
}

.search #search::placeholder{
    color: #FFF;
}

.search #search:focus{
    outline: none;
}

@media only screen and (max-width: 992px){
    nav .nav-bar {
        display: block;
        width: 300px;
        background: #FFF;
        box-shadow: 0 0 10px rgba(105, 105, 105, 0.801);
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        z-index: 2;
        transition: all 0.5s ease-in-out;
    }
    nav li.nav-active-item {
        margin: 25px;
    }
    nav li.nav-active-item::before{
        width: 80px;
    }
    nav li.nav-active-item.active::before{
        width: 80px;
    }
    nav a.nav-hide {
        width: 50px;
        aspect-ratio: 1/1;
        background: #F86F2D;
        color: #FFF;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        font-size: 20px;
        text-decoration: none;
        margin: 20px 20px 40px auto;
    }
    nav #n-bttn{
        display: none;
    }
    .search form{
        width: 80%;
    }
    nav .nav-show-btn,.nav-hide-btn{
        display: block;
    }
}
@media only screen and (max-width: 767px){
    .search form{
        width: 100%;
    }
}
  
/* NAVIGATION---------------ENDS-----------------HERE------------------ */

/* BANNER---------------START-----------------HERE------------------ */

.banner{
    background: #F86F2D;
    background-image: url(../images/banner-shape-5.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.banner h1{
    color: #FFF;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.1;
}

.banner a.donate{
    width: 130px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #FAAA3A;
    color: #FFF;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.banner a.donate:hover{
    color: #FAAA3A;
    background: #FFF;
}

.banner a.play{
    width: 55px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    background: #FFF;
    color: #FAAA3A;
    text-decoration: none;
    border-radius: 100px;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.banner a.play:hover{
    background: #FAAA3A;
    color: #FFF;
}

.banner img{
    border-radius: 20px;
}

.text-container {
    overflow: hidden;
    width: 220px; 
    height: auto;
    position: relative;
}

.text-slider div {
    position: absolute;
    width: 100%;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
}

.text-slider div.active {
    transform: translateY(0);
    opacity: 1;
}

.text-slider div.exit {
    transform: translateY(-100%);
    opacity: 0;
}

.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background: #0000008c;
    backdrop-filter: blur(10px);
    z-index: 3;
    transition: all 0.5s ease-in-out;
    display: none;
}

.overlay .over-hide{
    margin-top: 30px;
    display: block;
    text-align: end;
    cursor: pointer;
}

.overlay iframe{
    width:70%;
    height: 400px;
    display: block;
    margin: 80px auto 0;
}

@media only screen and (max-width: 1200px){
    .overlay iframe {
        margin-top: 30px !important;
    }
}
@media only screen and (max-width: 992px){
    .banner h1 {
        font-size: 35px;
    }
    .banner p{
        width: 100% !important;
    }
    .banner strong {
        font-size: 14px;
        margin-right: 10px !important;
    }
    .overlay iframe {
        width: 80%;
    }
}
@media only screen and (max-width: 767px){
    .banner .banner-content {
        text-align: center;
        margin: 50px 0 20px 0;
    }
    .banner h1 {
        font-size: 33px;
        justify-content: center;
    }
    .banner .d-flex.align-items-center {
        justify-content: center;
    }
    .banner strong i {
        display: block;
    }
    .banner img {
        height: 150px !important;
        position: static !important;
        margin: 10px 0 !important;
    }
    .text-container{
        width: 150px;
    }
    .overlay iframe {
        width: 100%;
        height: 300px;
        margin-top: 70px !important;
    }
}

/* BANNER---------------ENDS-----------------HERE------------------ */

/* ABOUT---------------START-----------------HERE------------------ */

.about h3{
    font-size: 23px;
    position: relative;
    line-height: 1.5;
    padding: 0 0 20px 0;
}

.about h3::before{
    content: "";
    width: 35%;
    height: 4px;
    background: #F86F2D;
    position: absolute;
    bottom: 0;
    left: 0;
}

.about p{
    color: #7a7a7a;
    font-size: 15px;
}

@media only screen and (max-width: 992px){
    .about h3 {
        font-size: 22px;
    }
    .about p {
        font-size: 14px;
    }   
    .about .about-content {
        margin: 0 !important;
    }
}
@media only screen and (max-width: 767px){
    .about h3{
        text-align: center;
    }
    .about h3::before{
        left: 50%;
        transform: translateX(-50%);
    }  
    .about p{
        text-align: center;
    }
    .about img{
        margin-bottom: 20px;
    }
}

/* ABOUT---------------ENDS-----------------HERE------------------ */

/* CHOOSE---------------START-----------------HERE------------------ */

.choose{
    background: #FDF7F4;
    background-image: url(../images/choose-shape-bg-3.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom ;
    width: 100%;
    padding: 100px 0;
}

.choose .choose-title{
    width: 65%;
    margin: 0 auto;
}

.choose h3{
    font-size: 18px;
    color: #F86F2D;
    font-weight: 500;
    text-transform: uppercase;
}

.choose .choose-content{
    background: #FFF;
    border: 1px solid #E6E8F0;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    margin: 20px 0;
}

.choose .choose-content:hover{
    box-shadow: 0 0 10px rgba(211, 211, 211, 0.719);
    transform: translateY(-10px);
    cursor: pointer;
}

.choose h1{
    color: #000;
    font-size: 45px;
    font-weight: 500;
}

.choose h4{
    color: #000;
    font-weight:  600;
    font-size: 22px;
}

.choose p{
    color: #7a7a7a;
}

@media only screen and (max-width: 1200px){
    .choose .choose-title {
        width: 80%;
    }
    .choose .choose-content {
        padding: 30px 20px;
    }
    .choose h4 {
        font-size: 20px;
    }
}
@media only screen and (max-width: 992px){
    .choose .choose-title {
        width: 100%;
    }
    .choose h1{
        font-size: 40px;
    }
}
@media only screen and (max-width: 767px){
    .choose h1 {
        font-size: 25px;
    }
    .choose .choose-content {
        text-align: center;
    }
    .choose i{
        font-size: 40px !important;
    }
    .choose p {
        font-size: 14px;
    }
}

/* CHOOSE---------------ENDS-----------------HERE------------------ */

/* COUNTER---------------START-----------------HERE------------------ */

.counter{
    background: #F86F2D;
    background-image: url(../images/banner-shape-5.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 60px 0;
}

.counter .counter-content{
    border-right: 1px solid #E0E2EB;
}

.counter h1{
    font-size: 60px;
    font-weight: 500;
    color: #FFF;
}

.counter strong{
    font-size: 55px;
    font-weight: 500;
    color: #FFF;
}

.counter p{
    font-size: 20px;
    font-weight: 500;
    color: #FFF;
}

@media only screen and (max-width: 992px){
    .counter h1 {
        font-size: 50px;
    }
    .counter strong {
        font-size: 45px;
    }
    .counter p {
        font-size: 15px;
    }
}
@media only screen and (max-width: 767px){
    .counter .counter-content{
        margin: 20px 0;
    }
}

/* COUNTER---------------ENDS-----------------HERE------------------ */

/* IMPACT---------------START-----------------HERE------------------ */

.impact .impact-title{
    width: 60%;
    margin: 0 auto;
}

.impact h3{
    font-size: 18px;
    color: #F86F2D;
    font-weight: 500;
    text-transform: uppercase;
}

.impact h1{
    color: #000;
    font-size: 45px;
    font-weight: 500;
}

.impact .overflow-hidden{
    border-radius: 20px;
}

.impact img{
    transition: all 0.3s ease-in-out;    
}

.impact img:hover{
    transform: scale(1.1);
}

.impact p{
    color: #7a7a7a;
    font-size: 17px;
}

.impact p span{
    color: #F86F2D;
    font-size: 20px;
    font-weight: 500;
}

.impact h2{
    color: #000;
    font-size: 25px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.impact h2:hover{
    color: #F86F2D;
    cursor: pointer;
}

span.swiper-pagination-bullet-active {
    width: 15px;
    height: 15px;
}

span.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: #F86F2D;
}

.swiper-pagination.swiper-pagination-clickable {
    position: relative;
    bottom: -50px;
    margin-bottom: 50px;
}

@media only screen and (max-width: 1200px){
    .impact .impact-title{
        width: 80%;
    }
}
@media only screen and (max-width: 992px){
    .impact .impact-title{
        width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .impact h1{
        font-size: 26px;
    }
}

/* IMPACT---------------ENDS-----------------HERE------------------ */

/* WHAT---------------START-----------------HERE------------------ */

.what h3{
    font-size: 18px;
    color: #F86F2D;
    font-weight: 500;
}

.what h1{
    color: #000;
    font-size: 45px;
    font-weight: 500;
}

.what .img{
    background-image: url(../images/what-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 700px;
    border-radius: 30px;
    position: relative;
}

.what img{
    position: absolute;
}

.what p{
    color: #000;
    font-size: 22px;
    font-weight: 500;
}

.what small{
    width: 80px;
    aspect-ratio: 1/1;
    background: #F86F2D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #FFF;
    font-size: 20px;
}

@media only screen and (max-width: 1200px){
    .what .img-5 {
        right: 0 !important;
    }
    .what .img-4 {
        right: 0 !important;
    }
    .what .img-1 {
        left: -80px !important;
    }
    .what p {
        font-size: 19px;
    }
}
@media only screen and (max-width: 992px){
    .what p {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .what p {
        font-size: 16px;
    }
    .what .what-content{
        margin: 15px 0;
    }
    .what h1{
        font-size: 33px;
    }
}

/* WHAT---------------ENDS-----------------HERE------------------ */

/* FAQ---------------START-----------------HERE------------------ */

.faq .faq-title{
    width: 65%;
    margin: 0 auto;
}

.faq h3{
    font-size: 18px;
    color: #F86F2D;
    font-weight: 500;
    text-transform: uppercase;
}

.faq h1{
    color: #000;
    font-size: 45px;
    font-weight: 500;
}

.faq img{
    width: 100%;
    border-radius: 20px;
}

.faq h4{
    font-size: 23px;
    font-weight: 600;
}

.faq p{
    color: #7a7a7a;
}

.faq .accordion-item .accordion-button {
    background: transparent;
    box-shadow: none;
    color: #000;
}

@media only screen and (max-width: 1200px){
    .faq .faq-title{
        width: 80%;
    }
}
@media only screen and (max-width: 992px){
    .faq .faq-content {
        padding: 0 !important;
    }
    .faq .faq-title{
        width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .faq .faq-content {
        text-align: center;
    }
    .faq h1{
        font-size: 28px;
    }
    .faq #accordionExample p{
        text-align: left;
    }
}

/* FAQ---------------ENDS-----------------HERE------------------ */

/* TEAM--------------START-----------------HERE------------------ */

.team h3{
    font-size: 18px;
    color: #F86F2D;
    font-weight: 500;
    text-transform: uppercase;
}

.team h1{
    color: #000;
    font-size: 45px;
    font-weight: 500;
}

.team p{
    color: #7a7a7a;
    width: 80%;
    font-size: 17px;
}

.team .img{
    background-image: url(../images/team.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 400px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .t-play{
    width: 80px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff75;
    color: #FFF;
    text-decoration: none;
    border-radius: 100px;
    font-size: 20px;
    border: 2px solid #FFF;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.team .t-play:hover{
    color: #F86F2D;
    background: #FFF;
}

@media only screen and (max-width: 992px){
    .team h1 {
        font-size: 30px;
    }
    .team p {
        width: 100%;
    }
    .team .team-content{
        margin: 0 !important;
    }
}
@media only screen and (max-width: 767px){
    .team h3{
        font-size: 16px;
    }
    .team .team-content{
        margin: 20px 0 !important;
        padding: 0 !important;
        text-align: center;
    }
    .team .button{
        margin: 0 auto;
    }
}

/* TEAM--------------ENDS-----------------HERE------------------ */

/* TESTIMONIAl--------------START-----------------HERE------------------ */

.testimonial h3{
    font-size: 18px;
    color: #F86F2D;
    font-weight: 500;
    text-transform: uppercase;
}

.testimonial h1{
    color: #000;
    font-size: 45px;
    font-weight: 500;
}

.testimonial i{
    color: #ff8f1f;
}

.testimonial h4{
    font-weight: 600;
}

.testimonial p{
    color: #7a7a7a;
    font-weight: 500;
}

@media only screen and (max-width: 767px){
    .testimonial h1{
        font-size: 40px;
    }
}

/* TESTIMONIAl--------------ENDS-----------------HERE------------------ */

/* FOOTER--------------START-----------------HERE------------------ */

.footer{
    background: #F86F2D;
    background-image: url(../images/banner-shape-5.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 100px 0;
}

.footer img{
    width: 200px;
}

.footer a.icn{
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    border-radius: 100px;
    color: #000;
    text-decoration: none;
    margin-right: 5px;
    transition: all 0.3s ease-in-out;
}

.footer a.icn:hover{
    background: #000;
    color: #F86F2D;
}

.footer h4{
    color: #000;
    font-size: 20px;
    letter-spacing: 2px;
}

.footer li a{
    color: #FFF;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer li:hover a{
    color: #000;
}

.footer li{
    transition: all 0.3s ease-in-out;
}

.footer li:hover{
    padding-left: 10px;
}

.footer form{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #FFF;
    border-radius: 5px;
}

.footer input{
    width: 70%;
    font-size: 14px;
    color: #000;
    background: transparent;
    border: none;
    height: 40px;
    padding: 0 10px;
}

.footer input::placeholder{
    color: #FFF;
}

.footer input:focus{
    outline: none;
}

.footer .ft-btn{
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #FFF;
    text-decoration: none;
    border-radius: 0 5px 5px 0;
    position: relative;
    left: 5px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.footer .ft-btn:hover{
    background: #FFF;
    color: #000;
}

.pre-footer{
    background: #F86F2D;
    border-top: 1px solid #FFF;
}

@media only screen and (max-width: 992px){
    .footer .footer-content{
        margin: 20px 0;
    }
}

/* FOOTER--------------ENDS-----------------HERE------------------ */

/* ABOUT--------------PAGE------------------START-----------------HERE------------------ */

/* BANNER_2--------------START-----------------HERE------------------ */

.banner-2{
    background: #F86F2D;
    background-image: url(../images/banner-shape-5.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
}

.banner-2 h1{
    font-size: 55px;
    font-weight: 600;
    letter-spacing: 2px;
}

@media only screen and (max-width: 767px){
    .banner-2 h1{
        font-size: 50px;
    }
}


/* BANNER_2--------------ENDS-----------------HERE------------------ */

/* MISSION--------------START-----------------HERE------------------ */

.mission h3{
    color: #F86F2D;
    font-size: 20px;
}

.mission h1{
    color: #000;
    font-weight: 600;
    letter-spacing: 2px;
}

.mission p{
    color: #7a7a7a;
}

@media only screen and (max-width: 992px){
    .mission .mission-content{
        margin: 0 !important;
        padding: 0 !important;
    }
    .mission li{
        font-size: 15px;
    }
}

@media only screen and (max-width: 767px){
    .mission .mission-content {
        text-align: center;
        margin: 20px 0 !important;
    }
    .mission p {
        font-size: 14px;
    }
    .mission img{
        height: 300px !important;
    }
    .mission a#n-bttn{
        margin: 0 auto;
    }
}

/* MISSION--------------ENDS-----------------HERE------------------ */

/* MAMBER--------------ENDS-----------------HERE------------------ */

.member .mem-title{
    width: 60%;
    margin: 0 auto;
}

.member h3{
    color: #F86F2D;
    font-size: 20px;
}

.member h1{
    color: #000;
    font-weight: 500;
}

.member .txt{
    border: 1px solid #dadada;
    padding: 30px 20px;
    text-align: center;
    background: #FDF7F4;
}

.member .mem-content{
    transition: all 0.3s ease-in-out;
}

.member .mem-content:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 10px rgb(206, 206, 206);
}

.member .icn{
    color: #000;
    margin: 0 10px;
    transition: all 0.3s ease-in-out;
}

.member .icn:hover{
    color: #F86F2D;
}

@media only screen and (max-width: 992px){
    .member .mem-title{
        width: 80%;
    }
}
@media only screen and (max-width: 767px){
    .member .mem-title{
        width: 100%;
    }
    .member h1 {
        font-size: 23px;
    }
}

/* MAMBER--------------ENDS-----------------HERE------------------ */

/* TIME--------------START-----------------HERE------------------ */

.time h3{
    color: #F86F2D;
    font-size: 20px;
}

.time h1{
    color: #000;
    font-weight: 500;
}

.time i{
    display: flex;
    width: 60px;
    aspect-ratio: 1/1;
    align-items: center;
    justify-content: center;
    background: #F86F2D;
    border-radius: 100px;
    color: #FFF;
    font-size: 20px;
}

.time h4{
    transition: all 0.3s ease-in-out;
}

.time .time-content{
    cursor: pointer;
}

.time .time-content:hover h4{
    color: #F86F2D !important;
}

.time p{
    color: #7a7a7a;
    font-size: 14px;
}

@media only screen and (max-width: 992px){
    .time .time-content{
        margin: 15px 0;
    }
}

/* TIME--------------ENDS-----------------HERE------------------ */

/* CONTACT--------------START-----------------HERE------------------ */

.contact h3{
    color: #F86F2D;
    font-size: 20px;
}

.contact #name{
    width: 100%;
    height: 45px;
    padding: 0 10px;
    border: 1px solid #E6E8F0;
    border-radius: 5px;
}

.contact #name:focus{
    outline: none;
}

@media only screen and (max-width: 992px){
    .contact p{
        width: 100% !important;
    }
}
@media only screen and (max-width: 767px){
    .contact .contact-content{  
        text-align: center;
        margin: 20px 0;
    }
    .contact a#n-bttn{
        margin: 0 auto;
    }
    .contact img{
        height: 300px;
    }
}

/* CONTACT--------------ENDS-----------------HERE------------------ */

/* ABOUT--------------PAGE------------------ENDS-----------------HERE------------------ */
