*{
    margin: 0px;
    padding:0px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;  
}
ul{
    list-style: none;
    background: rgb(207, 196, 181);
    
}
ul li {
    display: inline-block;
    position: relative;
    
}
ul li a{
    display: block;
    padding: 20px 25px;
    color: #331e1e;    
    text-decoration: none;
    text-align: center;
    font-size: 15px;
}
ul li ul.dropdown li{
    display: block;
    font-size: 10px;
} 
ul li ul.dropdown{
    width: 100%;
    background: #97a5a1;
    position: absolute;
    z-index: 999;
    display: none;
}
ul li a:hover{
    background: #929895;
}
ul li:hover ul.dropdown{
    display: block;
    
}
body{
    background-color:   #f2f2f2 ;
}
.heading{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}
.heading h1{
    font-size: 50px;
    color: #473f3f;
    margin-top: 20px;
    margin-bottom: 25px;
    position: relative;
}
.heading h1::after{
   
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin:0 auto;
    background-color: #d6ddd6;
}
.heading p{
    font-size:18px;
    color: #3d3333;
    margin-top: 20px;
    margin-bottom: 35px;
}
/*.container{
    width: 90%;
    display: flex;
    margin:0px auto;
    padding: 10px 20px;
}*/
.about{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.about-image{
    flex:1;
    margin-right: 40px;
    margin-left: 40px;
    overflow: hidden;
}
.about-image img{ 
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.5s ease;
}
.about-image:hover img{
    transform: scale(1.2 );
}
.about-content{
     flex: 1;
}
.about-content h2{
    
    font-size: 23px;
    margin-bottom: 25px;
    color: #333;
}
.about-content p{
    font-size: 18px;
    line-height: 1.5;
    color: #3d3333;
}
.about-content .read-more{
    display: inline-block;
    background-color: #4caf50;
    padding: 10px 20px;
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    transition: 0.3s ease;
}
.about-content .read-more:hover{
    background-color: #3e8e41;
}
@media screen and (max-width:768px){
    .heading{
        padding:0px 20px;
    }
    .heading h1{
        font-size: 36px;
    }
    .heading p{
        font-size: 17px;
        margin-bottom: 0px;
    }
    .container{
        padding: 0px 20px;
    }
    .about{
        padding: 20px;
        flex-direction: column;
    }
    .about-image{
        margin-right: 0px;
        padding: 0%;
        margin-bottom: 20px;
    }
    .about-content p{
        padding: 0px;
        font-size: 16px;
    }
    .about-content .read-more{
        font-size: 16px;
    }
}
/*Columns*/
body {
        margin: 0;
        padding: 0; 
        background: #a99292;
        
    }
    .wrapper{
        padding: 15px;
        max-width: 2060px;
        width: 100%;
        margin-top: 20PX;
        margin: 20px auto;
        
    }
    .wrapper p{
        word-wrap: normal;
        word-spacing: normal;
    }
    .wrapper h2{
        margin: 10px;
        margin-bottom: 15px;
    }
    header{
        padding: 0 15px;
        text-align: center;
        font-size: 21px;
    }
    .columns{
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        margin: 25px 0;
    }

    .column{
        flex: 1;
        border: 1px solid #666666;
        margin: 8px;
        padding: 20px;
        background: #afafaf;
        transition: 0.3s;
    }
    @media screen and (max-width:980px){
        .columns .column{
            margin-bottom: 5px;
            flex-basis: 40% ;
        }
    }
    @media screen and (max-width: 680px) {
        .columns .column{
            flex-basis: 100%;
            margin: 0 0 5px 0;
        }
        
    }

/*Section 2*/
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;   
}
.hero{
    background-color: #b7c4ba;
    overflow: hidden;
}
.heading1 h1{
    color: #473f3f;
    font-size: 45px;
    text-align: center;
    margin: top 35px;
}
.container1{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 65px auto;
}
.hero-content{
    flex: 1;
    width: 600px;
    margin: 0px 25px;
    animation: fadeInUp 2s ease;
}
.hero-content h2{
    font-size: 33px;
    margin-bottom: 30px;
    color: #333;
}
.hero-content p{
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #666;
}
/*.hero-content button{
    display: inline-block;
    background-color: #ff6347;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}
.hero-content button:hover{
    background-color: #ff6347;
    transform: scale(1.1);
}*/
.hero-image{
    flex: 1;
    width: 600px;
    margin: auto;
    animation: fadeInRight 2s ease;
}
img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}
@media screen and (max-width: 1268px){
    .heading1 h1{
        font-size: 45px;
        margin-top: 30px;
    }
    .hero{
        margin:0px;
    }
    .container1{
        width: 100%;
        flex-direction: column;
        margin: 0px;
        padding: 0px 40px;
    }
    .hero-content{
        width: 100%;
        margin: 35px 0px;
    }
    .hero-content h2{
        font-size: 30px;
    }
    .hero-content p{
        font-size: 18px;
        margin-bottom: 20px;
    }
    .hero-content button{
        font-size: 16px;
        padding: 8px 16px;
    }
    .hero-image{
        width: 100%;
    }
}
@keyframes fadeInUp {
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
} 
@keyframes fadeInRight {
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}
/*Part 2 tree planting*/
.heading2{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 0px auto;
}
.heading2 h1{
    font-size: 40px;
    color: #473f3f;
    margin-top: 20px;
    margin-bottom: 25px;
    position: relative;
}

.heading2 p{
    font-size:18px;
    color: #3d3333;
    margin-bottom: 35px;
}
.container2{
    width: 90%;
    margin:0 auto;
    padding: 10px 20px;
}
.about2{
    width: 100%;
    margin: 10px ;
}
.about-image{
    flex:1;
    margin-right: 50px;
    overflow: hidden;
}
.about-image2 img{ 
    margin-top: 20px;
    max-width: 100%;
    height:10%;
    display: block;
    transition: 0.5s ease;
    margin: 0px auto;
    
}
/*.about-image2:hover img{
    transform: scale(1.2 );
}*/
.about-content2{
     flex: 1;
     
}
.about-content2 h2{
    margin-top: 50px;
    font-size: 23px;
    margin-bottom: 15px;
    color: #333;
}
.about-content2 p{
    font-size: 18px;
    line-height: 1.5;
    color: #3d3333;
    align-content: center;
   
}

@media screen and (max-width:768px){
    .heading2{
        padding:0px 20px;
    }
    .heading2 h1{
        font-size: 36px;
    }
    .heading2 p{
        font-size: 17px;
        margin-bottom: 0px;
    }
    .container2{
        padding: 0px;
    }
    .about2{
        padding: 20px;
        flex-direction: column;
    }
    .about-image2{
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .about-content2 p{
        padding: 0px;
        font-size: 16px;
    }
    .about-content2 .read-more2{
        font-size: 16px;
    }
}
    



/*Team Section*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');
* .container-t{
    padding: 0;
    margin: 0;
}
body{
    background-color: rgb(182, 182, 165);
    font-family: 'Poppins', sans-serif; 
}
.container-t{
    margin: 20px 40px;
    color: white;
}
.heading{
    font-size: 60px;
    color: white;
}
.heading span{
    font-style: italic;
    font-size: 30px;
}
.profilez{
    display: flex;
    justify-content: space-around;
    margin: 20px 80px;
}
.profile{
    flex-basis: 260px;
}
.profile .profile-img{
    height: 260px;
    width: 260px;
    border-radius: 50%;
    filter: grayscale(100%);
    cursor: pointer;
    transition: 400ms;
}
.profile:hover .profile-img{
    filter: grayscale(0);
}
.user-name{
    margin-top: 30px;
    font-size: 35px;
}
.profile h5{
    font-size: 18px;
    font-weight: 100;
    letter-spacing: 3px;
    color: #121111;
}
.profile p{
    font-size: 16px;
    margin-top: 20px;
    text-align: justify;
    color: #3d3333;
}
@media only screen and (max-width: 1150px){
    .profilez{
        flex-direction: column;
    }
    .profile{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .profile p{
        text-align: center;
        margin: 20px 60px 80px 60px;
        font-size: 20px;
    }
}
@media only screen and (max-width :900px){
    .heading{
        font-size: 40px;
        color: white;
        text-align: center;
    }
    .heading span{
        font-size: 15px;
    }
    .profilez{
        margin: 20px;

    }
    .profile p{
        margin: 20px 10px 80px 10px;
    }
}