@media (min-width: 768px) {
    .fixed-footer-m {
        display:none
    }
}

@media (max-width: 768px) {
    .footer-container {
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .footer-column {
        font-weight: bolder
    }

    .footer-column:nth-child(1),.footer-column:nth-child(3) {
        order: 1
    }

    .footer-column:nth-child(2) {
        order: 2;
        margin-top: -95px
    }

    .footer-right {
        display: none
    }

    .footer-disclaimer {
        padding-bottom: 140px
    }

    .fixed-footer-m {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 66px;
        background-color: #000;
        z-index: 10;
        display: flex;
        align-items: center
    }

    .footer-content-m {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        padding: 0 20px
    }

    .footer-column-m {
        flex: 1;
        text-align: center;
        color: #fff;
        font-size: 14px
    }
}
