.container{
    max-width: 80%;
    margin: 0px auto;
}

#footer{
    padding: 30px 0 0 0;
    background-color: #f5f5f5;
}

#logo-footer img{
    width: 30%;
}

.footer-row{
    display: flex;
    padding: 10px 0;
    flex-wrap: wrap;
}

ul{
    padding: 0;
    list-style: none;
}

.footer-col{
    padding: 0 15px;
    list-style: none;
}

.footer-col li a{
    color: #333;
    line-height: 1.4;
    text-decoration: none;
    text-transform: capitalize;
    display: block;
    transition: all 0.3s ease;
}

.footer-col li a:hover{
    color: #1483BE;
    padding: 0 0 0 5px;
}

.footer-col h4{
    text-transform: capitalize;
    margin-bottom: 30px;
    position: relative;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #1483BE;
    height: 3px;
    box-sizing: border-box;
    width: 30px;
}

.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}


/* Mobile: width < 700px */
@media (max-width: 700px) {
    .footer-col{
        padding: 0;
        margin: 0;
    }

    
    #logo-footer img{
        width: 100%;
    }
}