* {
    box-sizing: border-box;
    margin: auto;
    padding: 1px;
    font-family: 'Montserrat', sans-serif;
}

:focus {
    outline: none;
}

body {
    background: white;
    font-family: 'Montserrat', sans-serif;
}


/* FORMULARIO ===============================*/

.form_wrap {
    width: 1000px;
    height: 530px;
    margin: 30px auto;
    display: flex;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}


/* Informacion de Contacto*/

.contact_info:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #FF9C5935;
    opacity: 0.92;
}

.contact_info {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('../img/documental2.png');
    background-size: cover;
    background-position: center center;
}

.info_title,
.info_items {
    position: relative;
    color: #fff;
}

.info_title {
    margin-bottom: 60px;
}

.info_title span {
    font-size: 100px;
    display: flex;
    text-align: center;
    margin-bottom: 15px;
}

.info_title h2 {
    font-size: 3vw;
    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: 2vw;
    margin-right: 15px;
    margin-left: 4px;
}

form.form_contact {
    width: 62%;
    padding: 30px 40px;
}

.form_contact {
    background-color: white;
    margin: 10px auto;
    padding: 10px;
    border-radius: 15px;
}

.color {
    background-color: #FF9C5970;
}

form.form_contact h2 {
    font-size: 2vw;
    font-weight: 600;
    color: #d66234;
    margin-bottom: 30px;
}

form.form_contact .user_info {
    display: block;
    flex-direction: column;
    font-size: 2.9vh;
    padding: 2vh;
}

form.form_contact label {
    font-weight: 600;
}

form.form_contact label,
form.form_contact input,
form.form_contact textarea {
    display: block;
}

form.form_contact input,
form.form_contact textarea {
    width: 100%;
    padding: 8px 0px 5px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 2px solid #D1D1D1;
    color: #5A5A5A;
    font-size: 2vh;
    font-weight: 400;
}

form.form_contact textarea {
    max-width: 100%;
    max-height: 90px;
}

form.form_contact input[type="button"] {
    width: 20vw;
    background-color: #FF6700;
    padding: 10px;
    border: none;
    border-radius: 25px;
    align-self: flex-end;
    color: #fff;
    font-size: 1.5vw;
    font-weight: 600;
    cursor: pointer;
}

form.form_contact input[type="button"]:hover {
    background: #8b919991;
}

form.form_contact input[type="button"]:hover {
    background-color: rgb(167, 167, 167);
    color: black;
    transition: all 0.5s ease;
}


/* MENSAJE MODAL*/

.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;
}

.mensaje_modal p:before {
    content: "\f00d";
    font-family: FontAwesome;
    display: inline-block;
    color: #FF9C59;
    margin-right: 8px;
}

.mensaje_modal .btn_close {
    display: inline-block;
    padding: 3px 10px;
    margin-top: 10px;
    background: #FF9C59;
    color: #fff;
    border: 2px solid#FF9C59;
    cursor: pointer;
}