footer{
    position: relative;
    width: 100%;
    background: var(--blue);
    /* height: 600px; */
    display: flex;
    justify-content: center;
    align-items: center;
}
footer p {
    color: white;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.3rem;
}
footer .content h3{
    font-size: 5rem;
    text-transform: uppercase;
    color: var(--black);
}
footer .wave{
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('../img/home/background_wave.png');
    background-size: 2000px 100px;
}
footer .wave#wave1{
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}
footer .wave#wave2{
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
}
footer .wave#wave3{
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave 3s linear infinite;
}
footer .wave#wave4{
    z-index: 999;
    opacity: 0.7;
    bottom: 20PX;
    animation: animateWave_02 3s linear infinite;
}
.mapa_footer{
    width: 560px;
    height: 360px;
}
.content_footer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contenedor_formulario{
    border: var(--border);
    box-shadow: var(--box-shadow);
    border-radius: 6px;
    padding: 4rem;
}
.formulario_footer label, button{
    font-size: 1.5rem !important;
}
.formulario_footer button{
    background: var(--light-bg);
    color: var(--blue);
}
.formulario_footer button:hover{
    background: var(--light-color);
    color: white;
}
@keyframes animateWave {
    0%{
        background-position-x: 2000px;
    }
    100%{
        background-position-x: 0px;
    }
}
@keyframes animateWave_02 {
    0%{
        background-position-x: 0px;
    }
    100%{
        background-position-x: 2000px;
    }
}
@media (max-width: 1200px) {
    .content_footer{
        display: flex;
    }
}
@media (max-width: 995px) {
    .content_footer{
        display: grid;
        grid-template-columns: 1fr;
    }
}
@media (max-width:580px) {
    .mapa_footer{
        width: 100%;
        height: 260px;
    }
    .content_footer{
        padding: 15px;
    }
}