﻿.section-footer {
    --text-font-size: 20px;
    font-family: Montserrat-Light;
    font-size: var(--text-font-size);
    color: #999899;
}

    .section-footer .links {
        display: grid;
        grid-template-columns: 1fr 2fr 3fr;
        grid-template-rows: 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        align-items: center;
        width: 100%;
        padding: calc(var(--text-font-size) * 1.2) calc(var(--text-font-size) * 4);
    }

        .section-footer .links .cell-1 {
            grid-area: 1 / 1 / 2 / 2;
            height: calc(var(--text-font-size) * 2.5);
        }
        .section-footer .links .cell-2 {
            grid-area: 1 / 2 / 2 / 3;
        }
            .section-footer .links .cell-2 a {
                color: #999899 !important;
                cursor: pointer;
                text-decoration: none !important;
            }

.section-footer .links .cell-3 {
    text-align: end;
    grid-area: 1 / 3 / 2 / 4;
}


/* modo mobile 360px */
@media (min-width: 0px) and (max-width: 480px) {
    .section-footer {
        --text-font-size: 5px;
    }
}

/* modo tablet 800px */
@media (min-width: 481px) and (max-width: 1000px) {
    .section-footer {
        --text-font-size: 11px;
    }
}

/* modo laptop 1280px */
@media (min-width: 1001px) and (max-width: 1500px) {
    .section-footer {
        --text-font-size: 20px;
    }
}

/* modo pc 1920px */
@media (min-width: 1501px) and (max-width: 2100px) {
    .section-footer {
        --text-font-size: 20px;
    }
}

/* modo 4k */
@media (min-width: 2101px) {
    .section-footer {
        --text-font-size: 20px;
    }
}