*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

::-webkit-scrollbar{
    width: 0px;
}

:root{
    --text-color:#000000;
    --main-color:#83b735;
}

#menu-icon{
    font-size: 2rem;
    cursor: pointer;
    display: none;
}



.drop-down{
    display: none;
}

.pdng{
    background: #83b735;
    padding: 5em 3em 3em 3em;
    text-align: center;
    color: white;
    font-size: 1.3rem;
}

.pdng h1:hover{

    cursor: pointer;
}

.sec{
    /* border: 2px solid red; */
    display: flex;
    color: #395213;
}
.sec h2{
    color: #000000;
}
.sec div{
    /* border: 2px solid black; */
    width: 50%;
    /* text-align: center; */
    font-size: 16px;
    font-weight: 500;
    padding: 3em;
}

.sec:nth-child(odd){
    background: rgb(243, 243, 243);
}

.sec img{
    height: 15rem;
}

.sec h2{
    padding-bottom: 1.5em;
    font-size: 1.5rem;
}

footer{
    width: 100%;
    height: 40%;
    background-color: #7B4929;
    text-align: center;
    padding: 20px;
    color: white;

}
.media .material-icons.md-18{
    padding-top: 1rem;
    color: white;
    font-size: 2rem;
    margin: 0 .5em;
}

@media screen and (max-width: 1011px){
    html{
        font-size: 95.5%;
    }
}


@media (max-width:768px){
    header{
        padding: 11px 4%;
    }
    #menu-icon{
        display: initial;
    }

    .about{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-img{
        padding-top: 1rem;
        order: 2;
    }

}

@media screen and (max-width: 578px){
    html{
        font-size: 75%;
    }
}