@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;1,700&display=swap");
bodyz{
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}
*{
    margin: 0;
    padding: 0;
    /*box-sizing: border-box;*/
}
.footer-container
{
    *border: 1px solid yellow;
    /*max-width: 1170px;*/
    /*width: 100vw;*/
    /*background-color: red;*/
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    /*gap: 1.5em;*/
    padding-bottom: 50px;
}
.footer-container img
{
    width: 180px;
    height: 110px;
    margin-left: -40px;
    /*margin-top: -40px;*/
    padding-right: 20px;
    padding-bottom: 20px;
    float: left;
    position: relative;
}
.rows
{
    /*border: 3px solid cyan;*/
    display: flex;
    flex-wrap: wrap;
    /*gap: .5rem;*/
}
ul{
    list-style: none;
    /*color: #ffffff;*/
}
.footer
{
    /*border: 3px solid red;*/
    background-color: #24262b;
    padding: 70px 0 0 0;
}
.footer-col
{
    /*border: 1px solid blue;*/
    width: 15vw;
    /*padding: 0 10px;*/
}
.footer-col h4{
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}
.footer-col h4::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}
.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}
.footer-col ul li a
{
    /*border: 1px solid yellow;*/
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
}
.footer-col .social-links
{
    /*border: 3px solid yellow;*/
    display: inline-block;
    width: 20vw;
}
.footer-col .social-links a
{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin: 1 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 02s ease;
}
.footer-col .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;
}
.footer-col .social-links a:focus
{
    outline: none;
}
.footer-copyright
{
    background: #222222;
    color: #FFF;
    /*height: 60px;
    *text-align: center;*/
    display: table;
    width: 100%;
    padding: 20px 0 10px 0;
}
.footer-copyright dl
{
    text-align: center;
}
.footer-copyright p
{
    padding: 10px;
    text-align: right;
    font-size: 11px;
}
.footer-copyright span
{
    /*border: 1px solid #FFF;*/
    color: #CFCFCF;
    font-size: .7em;
    text-align: right;
    float: right;
    padding: 0 10px 10px 0;
}

/*responsividade*/
@media only screen and (max-width: 1194px) and (min-width: 720px)
{
    .footer
    {
        /*border: 4px solid red;*/
        /*width: 100vw;*/
        /*margin-bottom: 30px;*/
        display: flex;
        /* *************** EV inicio - 170523*/
        /*flex-direction: column;*/
        flex-wrap: wrap;
        
        /* *************** fim - 170523*/
    }
    .footer-container
    {
        /*width: 100vw;*/
        /*margin-bottom: 30px;*/
        display: flex;
        align-items: center;
        justify-content: space-between;
        
        /* *************** EV inicio - 170523*/
        
        /*flex-direction: column;*/
        /*flex-wrap: wrap;*/
        
        /* *************** fim - 170523*/
    }
}
/* *************** EV inicio - 170523*/
@media only screen and (max-width: 675px) and (min-width: 551px)
{
    .footer {
        /*width: 100vw;*/
        /*margin-bottom: 30px;*/
        display: flex;
        flex-direction: column;
    }
    .footer-container
    {
        /*width: 100vw;*/
        /*margin-bottom: 30px;*/
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .rows
    {
        /*border: 1px solid white;*/
        display: block;
        /*margin-left: -90px;*/
    }
    .footer-col
    {
        /*border: 2px solid green;*/
        width: 50vw;
        /*margin-bottom: 30px;*/
        padding-bottom: 15px;
    }
    .footer-container img {
            margin-left: 0;
    }
}
/* *************** EV inicio - 170523*/

@media(max-width: 550px)
{
    .footer {
        /*width: 100vw;*/
        /*margin-bottom: 30px;*/
        display: flex;
        flex-direction: column;
    }
    .footer-container
    {
        /*width: 100vw;*/
        /*margin-bottom: 30px;*/
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .rows
    {
        /*border: 1px solid white;*/
        display: block;
        /*margin-left: -90px;*/
    }
    .footer-col
    {
        /*border: 2px solid green;*/
        width: 50vw;
        /*margin-bottom: 30px;*/
        padding-bottom: 15px;
    }
    .footer-col ul li a
    {
        /*border: 1px solid cyan;*/
        width: 50vw;
    }
    .footer-col .social-links
    {
        /*border: 3px solid yellow;*/
        width: 50vw;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
}
