
footer {
    position: relative;
    z-index: 20;
    background-size: cover;
    background-position: center 0px;
}

.linea-roja {
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    z-index: 10;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 15px 0px 115px;
    padding-top: 80px;
}

.footer-center {
    text-align: center;
}

footer a {
    font-family: 'Helvetica';
    color: white;
    text-decoration: underline;
    text-transform: uppercase;
}

footer p {
    color: white;
    font-family: 'Helvetica';
    line-height: 21px;
    margin-bottom: 0;
    font-weight: 200;
    font-size: 15px;
}

.footer-left, .footer-right {
    display: flex;
    flex-direction: row;
}

    .footer-left a, .footer-right div {
        width: 100%;
        text-align: center;
    }

.mono {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -10px;
}

.lineasizq {
    position: absolute;
    top: 10px;
    left: 0;
    width: 50px;
}

.separador {
    position: absolute;
    bottom: 0;
    left: 40px;
}

.separador2 {
    position: absolute;
    bottom: 0;
    right: 115px;
}

footer i {
    color: white;
    font-size: 22px;
}

.social {
    display: grid;
    max-width: 140px;
    grid-template-columns: 1fr 1fr 1fr;
}

    .social a, .social-mobile a {
        text-decoration: none;
    }

.social-mobile {
    display: none;
}

.legales {
    max-width: 60rem;
}

.container-tycos {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 1rem;
    font-size: 15px;
}

@media (max-width:768px) {
    .container-tycos {
        flex-direction: column;
        gap: .5rem;
    }
}

@media only screen and (max-width: 1100px) {
    footer {
    }

    .separador, .separador2 {
        display: none;
    }

    .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        grid-column-gap: 0px;
        grid-row-gap: 25px;
    }

    .social {
        display: none;
    }

    .social-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        column-gap: 35px;
        padding-top: 30px;
    }

        .social-mobile i {
            font-size: 22px;
        }

    .footer-center {
        grid-area: 1 / 1 / 2 / 3;
    }

    .footer-right {
        grid-area: 2 / 1 / 3 / 2;
    }

    .footer-left {
        grid-area: 2 / 2 / 3 / 3;
    }
}


@media only screen and (max-width: 800px) {
    .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        grid-column-gap: 0px;
        grid-row-gap: 30px;
    }

    .footer-right a, .footer-left a {
        font-size: 14px;
    }


    .footer-center {
        grid-area: 1 / 1 / 2 / 3;
    }

    .footer-right {
        grid-area: 2 / 1 / 3 / 3;
    }

    .footer-left {
        grid-area: 3 / 1 / 4 / 3;
    }
}


@media only screen and (max-width: 580px) {
    .footer-right, .footer-left {
        display: flex;
        flex-direction: column;
        row-gap: 25px;
    }
}

.footer-teaser a {
    color: #B99427 !important;
}

    .footer-teaser a:visited {
        color: #B99427 !important;
    }
