body{
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", serif;
    font-style: normal;
    
}

/* Contact Us Languages Navigation Bar */
.maincontactnav{
    display: flex;
    background-color: #eeeeee;
    color: #666666;
    align-items: center;
    justify-content: space-between;
    font-size: small;
    font-weight: 600;
    padding: 0px 50px;

}

#contactlst{
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
ul>li{
    margin-right: 30px;
}

/* Flags */
.flags>img{
    height: 20px;
    margin-right: 10px;
}


/* Main Navigation Bar */
.main-navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    border-bottom:3px solid #eeeeee;
    position:sticky;
    top: 0px;

}

.logo-left>img{
    height: 60px;
}

.menu-right{
    display: flex;
    align-items:center ;
}

.menu-right>a{
    text-decoration: none;
    margin-right: 30px;
    color: #666666;
    font-size: .85rem;
}

#donate-btn>button{
    background-color: #0d6db7;
    color: white;
    height: 45px;
    width: 170px;
    border-radius: 5px;
    border: 1px solid #0d6db7;
    margin-right: 5px;
    font-size: .9rem;
}

#sponsor-btn>button{
    background-color: #8dc63f;
    color: white;
    height: 45px;
    width: 170px;
    border-radius: 5px;
    border: 1px solid #0d6db7;
    font-size: .9rem;
}


.hamburger-icon{
    display: none;
}

/* Main Website Container */
.container{
    margin: 20px 15px;
    display: block;
}

/* Hero Section */
.herosection{
    display: flex;
    justify-content: space-between;
    align-items: center;
   
    
}

.hero-text-left{
    width: 50vw;
    height: 250px;
}

.hero-text-left>h1{
    font-weight: 500;
    font-size: 2.6rem;
    line-height: 7vh;
    
}

.hero-text-left>h2{
    font-weight: 500;

    
}



.hero-bannerright>img{
    height: 500px;
}

.explore-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 250px;
    border: 1px solid black;
    gap: 30px;

}

.explore-btn>img{
    height: 10px;
    
}

/* Donation Box */
.donation-box{
    background-color: #F0FCDB;
    display: grid;
    padding: 50px 25px;
    justify-content: space-between;
    margin-top:100px;  
}

.amount{
    display:flex ;
    
    align-items: center;
    background-color: rgb(42, 42, 42);
    color: white;
    height: 40px;
    padding:5px 20px ;
    gap: 10px;
    border: 1px solid rgb(42, 42, 42) ;
    border-radius: 5px;
   

}

.amount>input{
    height: 47px;
}

.amount>p{
    font-size: .8rem;
}


.btn-donations>button{
    height: ;
    padding: 15px 30px ;
    border: 0px solid white;
    color: black;
    background-color: white;
    border-radius: 10px;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 1px 2px 5px rgba(128, 128, 128, 0.195);
    margin-left: 50px;
    font-size: small;

   
}

#quick-btn{
background-color: #8DC63F;
color: white;
}



/* Media Query for Desktop Screens */
@media (max-width:2560px){

    .scroll{
       display: none;
    }

}


/* Media Query for Laptop Screens */
@media (max-width:1050px){

    .menu-right{
        display: none;
    }

    .hamburger-icon{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 60px;
        border: 2px solid #666666;
        border-radius: 5px;
    }

    .hero-text-left>h1{
        
        font-size: 1.8rem;
        line-height: 5vh;
        
        
    }


    


    .hero-bannerright>img{
        height: 350px;
    }



    .donation-box{
        background-color: #F0FCDB;
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding: 50px 25px;
        height: 5px;
      
    }

}

/* Media Query for Tablet Screens */
@media (max-width:770px){

    #contactlst{
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .hero-bannerright{
        display: none;
    }

    .hero-text-left{
        width: 100%;
        height: 250px;
    }

}

#englishbtn{
    background-color: white;
    color: black;
    border: 0px solid white;
    padding: 8px 15px;
    font-weight: 500;
}


/* Media Query for Mobile */

@media (max-width:430px){

    #contactlst{
       display: none;
    }

.leftcontactnav{
 display: none;
}

.scroll{
    display:block ;
 }

 .maincontactnav{
    display: flex;
    background-color: #eeeeee;
    color: #666666;
    align-items: center;
    justify-content: center;
  

}

}