.footer
{
    position: relative;
    margin:auto;
}
.footer-data
{
    position: relative;
    margin:auto;
    display: flex;
    justify-content: space-between;
    color:gray;
}
.line{
    position: relative;
    display: none;
    margin:auto;
    width:100%;
    background-color: lightgray;
}
@media only screen and (min-width: 1200px)
{
    .footer{
        width:100vw;
    }
    .footer-data{
        width:1200px;
        flex-direction: row;
        font-size:14px;
        padding: 10px;
        
    }
    .line{
        height:2px;
    }
}

@media only screen and (max-width: 650px)
{
    .footer{
        width:100vw;
    }
    .footer-data{
        flex-direction: column;
        font-size:12px;
        
        .copyright, .policies{
            margin-left:auto;
            margin-right:auto;
            margin-bottom: 5px;
        }
        
    }
    .line{
        height:1px;
        margin-bottom:5px;
    }
}