footer .first{
    padding: 40px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    margin-top: 5%;
}
footer .first h1{
    font-family: Balto-Light, sans-serif;
    font-size: 50px;
    font-weight: 1; 
    color: #007856;
}
footer .first p{
    font-size: 20px;
}
footer .first .contact, footer .first .about, footer .first .socials{
    width: 25%;
}
footer .first a{
    text-decoration: none;
    color: #007856;
    font-size: 18px;
    display: block;
}
footer .first a:hover{
    text-decoration: underline;
}
footer .first .socials a{
    font-size: 30px;
    transition: 0.2s;
}
footer .first .socials a:hover{
    font-size: 35px;
}
footer .first .socials img{
    width: 30px;
    background-color: #007856;
    padding: 2px;
    transition: 0.2s;
}
footer .first .socials img:hover{
    width: 35px;
}


footer .second{
    padding: 50px;
    font-size: 18px;
    line-height: 30px;
}
footer .second a{
    text-decoration: none;
    color: #007856;
}
footer .second a:hover{
    text-decoration: underline;
}





@media(max-width: 800px){
    .first{
        flex-direction: column;
    }

    footer .first .contact, footer .first .about, footer .first .socials{
        width: 100%;
    }
    footer .why h1{
        font-family: Balto-Light, sans-serif;
        font-size: 37px;
        line-height: 2.5rem;
    }
    footer .why p, footer .contact p{
        font-size: 17px;
    }
    footer .contact a{
        font-size: 17px;
    }
    footer .socials{
        display: flex;
        gap: 10px;
    }
    footer .first .socials a{
        font-size: 20px;
    }
    footer .first .socials img{
        width: 20px;
    }

    footer .second p{
        font-size: 17px;
        text-align: justify;
    }
    footer .second li{
        font-size: 17px;
        text-align: justify;
    }
}