/* Footer Desktop */

.footer {
    background-color: lightseagreen;
    width: 100%;
    height: 18vh;
    margin-top: 1rem;
}

.footer .content {
    display: flex;
    max-width: 1200px;
    margin: auto;
}

.footer .column1 {
    display: flex;
    flex: 0 0 35%;
    margin-top: 10px;
}

.footer .textpie {
    padding: 10px 10px 0 10px;
    color: lightgray
}

.footer .filemobile {
    display: none;
}

.footer .file1 {
    display: flex;
    flex: 0 0 30%;
    flex-direction: column;
    margin-top: 10px;
    border-right: 2px solid black;
    border-left: 2px solid black;
}

.footer .pielogo {
    background-image: url(../../images/logo.png);
    height: 75px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

.footer .copyright {
    text-align: center;
    color: lightgray;
}


.footer .file2 {
    display: flex;
    flex: 1;
}

.footer .nosotros {
    text-align: center;
    margin-top: 10px;
}

.footer .ubi {
    margin: 10px 20px;
    color: lightgray;
}

.footer i {
    align-items: center;
}

/* Footer Mobile */

@media (max-width: 768px) {
    .footer {
        background-color: lightseagreen;
        width: 100%;
        height: 18vh;

    }

    .footer .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .footer .column1 {
        display: none;
    }

    .footer .filemobile {
        display: flex;
        justify-content: center;
    }


    .footer .file1 {
        border: 0;
        margin: 0;
    }

    .footer .ubi {
        display: none;
    }

    .footer .file2 {
        display: none;
    }

    .footer .pielogo {
        height: 40px;
    }

    .footer .copyright {
        text-align: center;
    }
}