
.footer{
    width: 1366px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.footer-image{
    width: 351px;
    height: auto;
    min-width: 351px;
    display: flex;
}

.footer-image img{
    width: 100%;
}

.logo-icons{
    width: 790px;
    height: 239px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #0A6AAC;
}

.footer-menu{
    width: 300px;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.footer-menu ul li{
    list-style: none;
}

.footer-menu ul li a{
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-icons{
    width: 280px;
    height: 72px;
    display: flex;
    justify-content: space-around;
}

.footer-icons img{
    width: 71px;
    height: 71px;
    border-radius: 10px;
}

@media only screen and (max-width: 1366px){

    .footer{
        width: 100%;
        height: auto;
    }

}

@media only screen and (max-width: 1160px){

    .logo-icons{
        width: 100%;
    }

}

@media only screen and (max-width: 1080px){

    .logo-icons{
        width: 100%;
    }

    .logo-icons{
        width: 100%;
    }

    .footer{
        justify-content: center;
        flex-direction: column;
    }

}

@media only screen and (max-width: 680px){

    .footer-menu{
        width: 100%;
        flex-direction: row;
    }

    .footer-menu ul li{
        float:left; 
        text-align: center;
    }

    .footer-menu ul li a{
        font-size: 12px;
        margin-left: 10px;
    }

    .logo-icons{
        flex-direction: column;
        height: 150px;
    }

    .footer-icons img{
        width: 51px;
        height: 51px;
    }

}