/*-----section-1----*/
.section-1{
    display: flex;
    align-items: center;
    width: 85%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
   
}
.section-1 img{
    flex: 0 50%;
    max-width: 50%;
    height: auto;
    
}


.sec-1-content{
    padding: 35px;
}
.sec-1-content h1{
    color:#19732d;
    font-size: 40px;
    margin: 15px 0px;
}
.sec-1-content p{
    color: #000;
    margin: 15px 0px;
    line-height: 1.5;
    font-size: 15px;
}

@media(max-width: 769px){
    .section-1{
        display: block;
    }
    .section-1 img{
        max-width: 100%;
    }
}