footer {
    background-color: #0000009c;
    color: #fff;
    padding-top: 60px;
    font-family: 'Montserrat',sans-serif;
    font-weight: 700
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto
}

.footer-column {
    margin: 10px;
    min-width: 115px
}

.footer-column h4 {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700
}

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

.footer-column ul li {
    margin-bottom: 8px
}

.footer-column ul li a {
    color: #707070;
    text-decoration: none;
    font-size: 14px
}

.footer-column ul li a:hover {
    text-decoration: underline
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.footer-lang {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 40px;
    padding: 10px;
    font-size: 15px;
    font-weight: 700;
    background-color: #fff0;
    border: solid 1px #fff;
    border-radius: 25px;
    color: #fff;
    font-size: 13px;
    cursor: pointer
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6e6e6e
}

.footer-brand img {
    margin-top: 15px;
    width: 120px;
    margin-bottom: 30px
}

.footer-brand span {
    font-size: 12px;
    opacity: 1;
    text-align: center
}

.footer-disclaimer {
    margin-top: 20px;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    color: #fff;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px
}

@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
    }
}
