.button {
    display: block;
    position: absolute;
    z-index: 1;
    top: calc(50vh - 25px);
    left: calc(50% - 75px); 
    width: 150px;
    height: 50px;
    background-color: var(--negro);
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 1px;
}

button.boton_envio {
    min-width: 20%;
    background-color: var(--negro);
    font-weight: 700;
    color: white;
    padding: 7px 10px;
    margin: 8px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
button:hover{
    background: var(--grisOscuro);
}

input[type=text], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: block;
    border: 1px solid var(--grisOscuro);
    border-radius: 0;
    color: var(--negro);
    background-color: var(--blanco);
}

input[type=submit] {
    width: 20%;
    background-color: var(--rojo);
    font-weight: 700;
    color: white;
    padding: 7px 10px;
    margin: 8px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

textarea{
    width: 100%;
    height: 80px;
    padding: 12px 20px;
    margin: 8px 0;
    display: block;
    border: 1px solid var(--grisOscuro);
    border-radius: 0;
    color: var(--negro);
    background-color: var(--blanco);
}

#contacto{
    position: relative; 
    width: 100%; 
    padding-top: 30px; 
    padding-left: 5%; 
    padding-right: 5%; 
    clear: left; 
    height: 650px; 
    color: white;
}

.datos{
    margin: 0;
}

/*CELULARES*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
@media only screen and (max-width: 899px) {

    .mobile{
        display: block;
    }
    
    .desktop{
        display: none;
    }

    .contenedorColumnaContacto{
        height: auto; 
        width: 100%;  
        padding-top: 0; 
        padding-bottom: 0; 
        padding-left: 0; 
        padding-right: 0;
    }

    input[type=text], select {
        width: 100%;
    }

    textarea{
        width: 100%;
    }

    #contacto{
        position: relative; 
        width: 100%; 
        padding-top: 30px; 
        padding-left: 5%; 
        padding-right: 5%; 
        clear: left; 
        height: 650px; 
        color: white;
    }

    #map{
        height: 450px;
    }

    .datos{
        margin-bottom: 20px;
    }

}


/*DESKTOP*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
@media only screen and (min-width: 900px) {

    .mobile{
        display: none;
    }
    
    .desktop{
        display: block;
    }   

    .contenedorColumnaContacto{
        height: 100%;
        width: 50%;   
        padding-top: 2.5%; 
        padding-bottom: 2.5%; 
        padding-left: 0px; 
        padding-right: 0px;
        align-items: center;
    }

    #contacto{
        position: relative; 
        width: 50%; 
        padding-top: 30px; 
        padding-left: 10%; 
        padding-right: 5%; 
        float: left; 
        height: 100%; 
        color: white;
    }

    input[type=text], select {
        width: 65%;
    }

    textarea{
        width: 65%;
    }

}


/*DESKTOP EX*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
@media only screen and (min-width: 1600px) {


}