/*==================================
Formulario==========================
==================================*/
.caja-contacto{
    width: 50%;
    
    display: flex;
    justify-content: center;
    background: #00A39E;
}

.caja-formulario{
    width: 90%;
}

.form-contacto{
    background: #333333;
    color: white;
    width: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenido-contacto{
    width: 90%;
}

.contacto-texto{
    display: flex;
    align-items: center;
    font-size: 20pt;
    font-weight: bolder;  
    margin-top: 30px;
    width: 100%;
}

.form-gral{
    width: 99.2%;
    height: 42px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.formulario-nombre{
    margin-top: 30px;
}

.formulario-celular{
    margin-top: 24px;
}

.formulario-correo{
    margin-top: 24px;
}

.formulario-mensaje{
    width: 99.2%;
    height: 196px;
    
    margin-top: 24px;
    font-size: 16px;
}

.formulario-boton-susc{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
    margin-bottom: 20px;
}

.boton-formulario{
    background: #B7B7B7;
    color: #333333;
    font-size: 20pt;
    font-weight:600;
    letter-spacing: 5px;
    cursor: pointer;
    padding: 10px 30px;
}

@media all and (max-width:1250px){
    .caja-contacto{
        width: 70%;
    }
}

@media all and (max-width:1000px){
    .caja-contacto{
        width: 90%;
    }
}

@media all and (max-width:900px){
    .caja-contacto{
        width: 100%;
    }
    
    .caja-formulario{
        margin-bottom: 60px;
    }
    
    footer{
        margin-top:0px;
    }
}

@media all and (max-width:400px){
    .caja-formulario{
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}





