*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:focus{
    outline: none;
}

body{
    background: #dbdbdb;
    font-family: "Calibri";
}

/* Header......*/

.titcontactanos, .titcuadros{
    text-align: right;
    font-weight: 600;
}

/*  FORMULARIO....*/

.formulario{
    max-width: 100%;
    width: 100%;
    height: 670px;
    position: relative;
    background: #fff;
    border-radius: 20px;
    
}


/* Eliminacion de scroll en numero telefonico de formulario.....*/
#phone[type=number]::-webkit-inner-spin-button, 
    [type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
}

/* Informacion de contacto....*/


/* Formulario de contacto....*/
form.form_contact{
    max-width: 100%;
    width: 100%;
    height: min-content;
    top: 0;
    padding: 40px 40px;
    background: #fff;
    box-shadow: 1px 1px 10px 5px rgba(0,0,0,0.5);
    z-index: 2;
    
}

form.form_contact h2{
    font-size: 25px;
    font-weight: 600;
    color: #303030;
    margin-bottom: 30px;
}

.user_info{
    display: flex;
    flex-direction: column;
}

form.form_contact label{
    font-weight: 600;
    /*font-size: 25px;
    color: #303030;
    margin-bottom: 30px;*/    
}

form.form_contact input,
form.form_contact textarea{ /* Cuadros de texto/ etiquetas formulario */
    width: 100%;
    padding: 1px 0px 1px;
    margin-bottom: 10px;
    border:none;
    border-bottom: 2px solid #2268FF; 
    /*font-family: "Calibri";*/
    color:#f60;
    font-size: 20px;
    font-weight: 400;
}
form.form_contact input:focus{
    box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.3);
    border-radius: 3px;
    border-bottom: 2px solid #2268FF;
}
form.form_contact textarea:focus{
    box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.3);
    border-radius: 3px;
    border-bottom: 2px solid #2268FF;
}

form.form_contact textarea{
    max-width: 100%;
    min-width: 100%;
    min-height: 100px;
    line-height: 1.3;
    resize: none;
    padding: 2px 3px 0px 2px;
    text-align: justify;
}

input:focus::-webkit-input-placeholder { /* Eliminar placeholder email*/
    color: transparent;
}

form.form_contact input[type="submit"]{
    padding-top: 2px;
    position: relative;
    display: block;
    width: 150px;
    height: 35px;
    border-radius: 4px;
    text-transform: uppercase;
    background-color: transparent;
    color: #f60;
    font-size: 18px;
    letter-spacing: 4px;
    overflow: hidden;
    transition: all 500ms ease;
    border: 2px solid #20e2d7;
    margin-top: 20px;
    z-index: 0;
    font-weight: 700;
    cursor: pointer;
    align-self: flex-end;
}

/*form.form_contact input[type="button"]:hover{
    background: gray;
    opacity: 0.9;
}*/

form.form_contact input[type="submit"]:active{
  animation: shadow-pulse 1000ms 1;
  background-color: #20e2d7;
  color: #434343;
}

form.form_contact input[type="submit"]:hover{
  background-color: #20e2d7;
  box-shadow: 0 0 10px #20e2d7, 0 0 20px #20e2d7, 0 0 20px #20e2d7;
  color: #434343;
}

#btn_send{
    margin-top: 15px;
}

@keyframes shadow-pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(32, 226, 215, 0.6);
    }
    100% {
      box-shadow: 0 0 8px 16px rgba(32, 226, 215, 0);
    }
  }


/*BOTON NEON AZUL

.btn {
    position: relative;
    display: block;
    height: 40px;
    width: 150px;
    border-radius: 4px;
    text-transform: uppercase;
    background-color: transparent;
    color: #f60;
    font-size: 18px;
    overflow: hidden;
    transition: all 500ms ease;
    border: 2px solid #20e2d7;
    margin-top: 20px;
    z-index: 0;
    font-weight: 700;
    cursor: pointer;
  float: right;
  
}
.btn::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  background-color: #20e2d7;
  transition: all 500ms ease;
  z-index: -1;
}
.btn--1::before {
  width: 0;
  height: 100%;
}
.btn--1:hover {
  color: #434343;
}
.btn--1:hover::before {
  width: 100%;
}
.btn--2:hover {
  background-color: #20e2d7;
  box-shadow: 0 0 10px #20e2d7, 0 0 20px #20e2d7, 0 0 20px #20e2d7;
  color: #434343;
}
.btn--3:hover {
  animation: shadow-pulse 1000ms 1;
  background-color: #20e2d7;
  color: #434343;
}
.btn--4::before {
  left: -520px;
  right: 0;
  width: 100%;
  height: 150%;
  transition: all 750ms ease;
  transform: rotate(45deg);
  box-shadow: 0 0 10px #20e2d7, 0 0 20px #20e2d7, 0 0 20px #20e2d7;
}
.btn--4:hover::before {
  left: 520px;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 226, 215, 0.6);
  }
  100% {
    box-shadow: 0 0 8px 16px rgba(32, 226, 215, 0);
  }
}

*/

/*
/*  Ventana de errores..... *
.modal_wrap{ 
    width: 100%;
    height: 100%;
    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{ /* Cuadro de errores formulario*
    background:#fff;
    box-shadow: 1px 1px 10px 5px rgba( 221, 3, 3, 0.9 );
    width: 300px;
    padding: 30px 20px 15px;
}

.mensaje_modal h3{ /* Texto errores encontrados*
    text-align: center;
    font-family: 'Yanone Kaffeesatz';
    font-size: 20px;
    font-weight: 400;
}

.mensaje_modal h3:after{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #FF2222; /*red*
    margin: 10px 0px 15px;
}

.mensaje_modal p{
    font-size: 16px;
    color: #606060;
    margin: 5px;
}

.mensaje_modal p:before{
    content: 'X';
    display: inline-block;
    color:red;
    font-weight: 600;
    margin-right: 8px;
}

.mensaje_modal #btnClose{
    padding: 3px 10px;
    margin-top: 10px;
    
    background: #f60;
    color: #fff;
    border: 2px solid rgba( 3, 50, 221, 0.728 );
    cursor: pointer;
    
    float: right;
    border-radius: 5px;
    
}

.mensaje_modal #btnClose:active{
    background:rgba( 3, 50, 221, 0.728 );
    text-align: center;
    box-shadow: 1px 1px 5px 3px rgba(0,0,0,0.9);

}

.mensaje_modal #btnClose:hover{
    box-shadow: 1px 1px 5px 3px rgba(0,0,0,0.9);
}
*/