@import url(variables.css);

.container-footer{
    max-width: 1200px;
    margin: 0 auto;
    text-transform: capitalize;
}

.footer{
    background: #FFF;
    padding: 80px 0;
}

.footer-row{
    display: flex;
    flex-wrap: wrap;
}

.footer-links{
    width: 33%;
    padding: 0 15px;
}

.footer-links h4{
    font-size: 20px;
    color: #24262B;
    margin-bottom: 25px;
    font-weight: 700;
    border-bottom: 2px solid var(--main-bg-color);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-links ul{
    padding: 0;
    list-style: none;
}

.footer-links ul li a{
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    text-transform: none;
    display: block;
    margin-bottom: 15px;
    transition: all .3s ease;
}

.footer-links ul li a:hover{
    color: var(--main-bg-color) !important;
    padding-left: 6px;
}

.footer-links .social-link a{
    display: inline-block;
    min-height: 40px;
    width: 40px;
    background: var(--main-color);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: white;
    transition: all .5s ease;
}

.footer-links .social-link a:hover{
    background: black;
}

.logo-footer{
    padding-top: 3px;
    /*filter: invert(100%);*/
    width: 200px;
}

.logo-div h4{
    border: none;
}

@media(max-width:991px){
    .footer-row{
        text-align: center;
    }

    .footer-links{
        width: 100%;
        margin-bottom: 30px;
    }

    .logo-footer{
        margin: auto;
    }
}