footer
{
    background: transparent linear-gradient(79deg, #1A8E66 0%, #0AB47A 100%) 0% 0% no-repeat padding-box;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 600px;
    border-top: 1px solid rgba(150,255,150, 100%);

}

.footer-content
{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 1600px;
    height: 300px;
    margin: auto;
    margin-top:120px ;
    border-bottom: rgba(255,255,255, 80%) 1px solid;
}

.footer-content #footer_left
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 600px;
}

.footer-content #footer_left #logo_name
{
    display: flex;
    flex-direction: row;
}

.footer-content #footer_left #logo_name img
{
    width: 134px;
    height: 117px;
    margin-top: auto;
    margin-bottom: auto;
}

.footer-content #footer_left #logo_name h1
{
    text-align: left;
    font-family: MostraNuova, fallback, sans-serif;
    font-size: 50px;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 0.8;
    margin-left: 40px;
}

.footer-content #footer_right
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 600px;
}

.footer-content #footer_right ul
{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 300px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer-content #footer_right #footer_nav li
{
    max-width: max-content;
    font: normal normal 300 20px/46px Poppins;
    color: #FFFFFF;
    margin-bottom: 40px ;
    list-style-type: none;
    text-decoration: none;
    opacity: 0.8;
}

.footer-content #footer_right #footer_nav li a
{
    text-decoration: none;
    color: #FFFFFF;
    transition: ease-out 0.5s;
}


.footer-content #footer_right #footer_nav li a:hover
{
    color: lightgrey;
}

#footer_bottom
{
    margin-top: 60px;
    text-align: center;
    font: normal normal normal 16px/25px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 0.8;
}

#footer_bottom a
{
    color: #FFFFFF;
    transition: ease-out 0.5s;
}

#footer_bottom a:hover
{
    color: lightgrey;
}

/*responsive*/
@media (max-width: 1600px)
{
    .footer-content
    {
        width: 100%;
    }

    .footer-content #footer_left
    {
        width: 100%;
        margin-top: 20px;
    }

    .footer-content #footer_left #logo_name
    {
        flex-direction: column;
        align-items: center;
    }

    .footer-content #footer_left #logo_name img
    {
        margin: 0;
    }

    .footer-content #footer_left #logo_name h1
    {
        margin: 20px 0;
    }

    .footer-content #footer_right
    {
        display:none;
    }


    #footer_bottom
    {
        margin-top: 20px;
    }
}
