*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:focus{
    outline: none;
}

body{
    background: #DBDBDB;
    font-family: 'Open sans';
}
/* FORMULARIO */

.form_warp{
    height: 530px;
    width: 1050px;
    margin: 50px auto;
    display: flex;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

/* INFORMACUIO NDE CONTACTO */
.contact_info::before{
    content: "";
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    background: #4091ec;   
    opacity: 0.9;
}


.contact_info{
    width: 38%;
    position: relative;
    /* background-image: url('../imagenes/logoCDA.jpg');
    background-size: cover; 
    background-position: center, center; */

    background-image: url('../imagenes/logoCDA.jpg');
    background-size: 95%;
    background-repeat: no-repeat;
    background-position: center, center;


    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


}

.info_title, .info_items{
    position: relative;
    z-index: 2;
    color: #ffffff;
}
.info_title{
    margin-bottom: 60px;
}

.info_title span{
    font-size: 100px;
    display: block;
    text-align: center;
    margin-bottom: 15px;
}
.info_title h2{
    font-size: 35px;
    text-align: center;
}

.info_items p{
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info_items p:nth-child(1) span{
    font-size: 30px;
    margin-right: 10px;
}

.info_items p:nth-child(2) span{
    font-size: 50px;
    margin-right: 15px;
    margin-left: 4px;
}

/* FORMULARIO DE CONTACTO */

form.form_contact{
    width: 62%;
    padding: 30px 40px;

}

form.form_contact h2{
    font-size: 25px;
    font-weight: 600;
    color: #303030;
    margin-bottom:  30px;
}

form.form_contact .user_info{
    display: flex;
    flex-direction: column;
}

form.form_contact label{
    font-weight: 600;
}

form.form_contact input,
form.form_contact textarea{
    width: 100%;
    padding:  8px 0px 5px;
    margin-bottom: 20px;

    border: none;
    border-bottom: 2px solid #d1d1d1;

    font-family: 'Open sans';
    color: #5a5a5a;
    font-size: 14px;
    font-weight: 400;

}

form.form_contact textarea{
    max-width: 100%;
    min-width: 100%;
    max-height: 90px;
}

 form.form_contact input[type="submit"]{
    width: 180px;
    background: #4091ec;
    padding: 10px;
    border: none;
    border-radius: 25px;

    align-self: flex-end;

    color: #ffffff;
    font-family: 'Open sans';
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

form.form_contact input[type="submit"]:hover{
    background: #337186;
} 

/* VENTANA VALIDACION*/

.modal-wrap{
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;

    display: flex;
    justify-content: center;
    align-items: center;
}

.mensaje_modal{
    background: #fff;
    box-shadow: 0px, 0px, 15px rgba(0,0,0,0.5);
    width: 400px;
    padding: 30px,20px,15px;

}

.mensaje_modal h3{
    text-align: center;
    font-family: 'Ubuntu';
    font-size: 20px;
    font-weight: 400;
}

.mensaje_modal h3:after{

    content: '';
    display: block;
    width: 100%;
    height:  1px;
    background: #c5c5c5;
    margin:  10px, 0px,15px  ;
}

.mensaje_modal p{
    font-size: 16px;
    color: #606060;
}

#btnClose{
    display: inline-block;
    padding: 3px, 10px;
    margin-top: 10px;

    background: #e25151;
    color: #fff;
    border: 2px solid #b14141;
    cursor: pointer;
    /* float: right; */
}

/* MENSAJE*/
.mensaje{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.mensaje h1{
    font-size:  35px;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.mensaje a{
    display: block;
    padding: 10px 30px;
    background: #4091ec;
    text-decoration: none;
    color: #ffffff;
}

.mensaje a:hover{
    background: #3371b6;
}

.buscarPor{
   
    /* position:absolute;
    bottom:50%; 
    right:40px; */
    padding:  10px 0px 5px;
       /* background: #337186; */
    margin-top: 40%;
    text-decoration: none;
    text-align: right;
    color: #337186;
    border-radius: 30px;
    
}
.buscarPor:hover{
    color: red;
}

.color{
    width: 200px;
    background: #4091ec;
    padding: 10px;
    border: none;
    border-radius: 25px;
    color: #ffffff;
    font-family: 'Open sans';
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
