footer {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box;
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    & .row {
        display: flex;
        flex: 1;
        max-width: 1200px;
    }

    & .col {
        flex: 1;
    }

    & a {
        color: #fff !important;
        text-decoration: none;
    }

    & b{
        color:#fff;
        font-size:20px;
    }
    & .privacy{
        text-decoration: underline;
    }
}
@media screen and (max-width: 960px) {
    footer{
        & .row{
            flex-direction: column;
        }
        & .col{
            text-align: center;;
        }
    }
}