/**************************************
*************************************** 
CONTÁCTENOS
***************************************
**************************************/

article > .formulario-y-datos {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
    
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

article > .formulario-y-datos > .formulario > header {
    font-family: pt-sans-bold, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 1.37em;
    color: #0C3859;
    text-align: center;
	
	position: relative;
	bottom: -20px;
	opacity: 0;
	
	-webkit-animation-name: aparecer-desde-abajo;
	-moz-animation-name: aparecer-desde-abajo;
	-o-animation-name: aparecer-desde-abajo;
	animation-name: aparecer-desde-abajo;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

article > .formulario-y-datos > .formulario > .formulario {
    margin-top: 32px;
	
	position: relative;
	bottom: -20px;
	opacity: 0;
	
	-webkit-animation-name: aparecer-desde-abajo;
	-moz-animation-name: aparecer-desde-abajo;
	-o-animation-name: aparecer-desde-abajo;
	animation-name: aparecer-desde-abajo;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1.2s;
	-moz-animation-delay: 1.2s;
	-o-animation-delay: 1.2s;
	animation-delay: 1.2s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

article > .formulario-y-datos > .formulario > .formulario .control {
    margin-bottom: 27px;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

article > .formulario-y-datos > .formulario > .formulario .control > .error {
    margin-left: 5px;
    font-weight: bold;
}

article > .formulario-y-datos > .formulario > .formulario .control:last-child {
    margin-bottom: 0;
}

article > .formulario-y-datos > .formulario > .formulario label {
    display: table;
    width: 90px;
    font-size: 1.12em;
    text-transform: lowercase;
    margin: 8px 27px 0 0;
    color: #0C3859;
}

article > .formulario-y-datos > .formulario > .formulario input[type="text"], article > .formulario-y-datos > .formulario > .formulario input[type="email"] {
    width: 274px;
    background-color: white;
    padding: 8px 10px;
    border: none;
    color: #333;
    font-size: .88em;
    
    -webkit-box-shadow:inset 0 0 12px 2px rgba(153,153,153,.5);
    box-shadow:inset 0 0 12px 2px rgba(153,153,153,.5);
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

article > .formulario-y-datos > .formulario > .formulario input[type="text"]:focus, article > .formulario-y-datos > .formulario > .formulario input[type="email"]:focus {
    -webkit-box-shadow:inset 0 0 12px 2px rgba(255,255,255,.5), 0 0 5px 0 #1D94D3;
    box-shadow:inset 0 0 12px 2px rgba(255,255,255,.5), 0 0 5px 0 #1D94D3;
}

article > .formulario-y-datos > .formulario > .formulario select {
    background-color: white;
    padding: 5px 10px;
    border: none;
    color: #333;
    font-size: .88em;
    
    -webkit-box-shadow:inset 0 0 12px 2px rgba(153,153,153,.5);
    box-shadow:inset 0 0 12px 2px rgba(153,153,153,.5);
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

article > .formulario-y-datos > .formulario > .formulario select:focus {
    -webkit-box-shadow:inset 0 0 12px 2px rgba(255,255,255,.5), 0 0 5px 0 #1D94D3;
    box-shadow:inset 0 0 12px 2px rgba(255,255,255,.5), 0 0 5px 0 #1D94D3;
}

article > .formulario-y-datos > .formulario > .formulario textarea {
    width: 274px;
    height: 140px;
    background-color: white;
    padding: 5px 10px;
    border: none;
    color: #333;
    font-size: .88em;
    
    -webkit-box-shadow:inset 0 0 12px 2px rgba(153,153,153,.5);
    box-shadow:inset 0 0 12px 2px rgba(153,153,153,.5);
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

article > .formulario-y-datos > .formulario > .formulario textarea:focus {
    -webkit-box-shadow:inset 0 0 12px 2px rgba(255,255,255,.5), 0 0 5px 0 #1D94D3;
    box-shadow:inset 0 0 12px 2px rgba(255,255,255,.5), 0 0 5px 0 #1D94D3;
}

article > .formulario-y-datos > .formulario > .formulario .dato-requerido {
    margin-top: 18px;
    text-align: right;
    font-size: .75em;
}

article > .formulario-y-datos > .formulario > .formulario .boton {
    display: table;
    margin-left: 120px;
}

article > .formulario-y-datos > .formulario > .formulario .boton > input {
    font-family: pt-sans-bold, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    color: #0C3859;
    font-size: 1.12em;
    padding: 5px 20px;
    border: none;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    
    background: rgb(146,210,245); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(146,210,245,1) 33%, rgba(43,120,153,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(33%,rgba(146,210,245,1)), color-stop(100%,rgba(43,120,153,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(146,210,245,1) 33%,rgba(43,120,153,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(146,210,245,1) 33%,rgba(43,120,153,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(146,210,245,1) 33%,rgba(43,120,153,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(146,210,245,1) 33%,rgba(43,120,153,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#92d2f5', endColorstr='#2b7899',GradientType=0 ); /* IE6-9 */
    
    position: relative;
    top: 0;
    
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

article > .formulario-y-datos > .formulario > .formulario .boton:hover > input {
    top: -5px;
    color: white;
    text-shadow: 0 0 10px #0C3859;
}

article > .formulario-y-datos > .formulario > .formulario .boton > input:focus {
    top: -5px;
    color: white;
    text-shadow: 0 0 10px #0C3859;
}

article > .formulario-y-datos > .formulario > .formulario #nombre {
    background-image: url(../img/icono-nombre.png);
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 50px;
}

article > .formulario-y-datos > .formulario > .formulario #telefono {
    background-image: url(../img/icono-telefono.png);
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 50px;
}

article > .formulario-y-datos > .formulario > .formulario #email {
    background-image: url(../img/icono-email.png);
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 50px;
}

article > .formulario-y-datos > .formulario > .formulario #mensaje {
    background-image: url(../img/icono-mensaje.png);
    background-repeat: no-repeat;
    background-position: 10px 8px;
    padding-left: 50px;
}

article > .formulario-y-datos > .formulario > .formulario #privacidad-contenedor {
    margin-left: 120px;
}

article > .formulario-y-datos > .formulario > .formulario #privacidad-contenedor label {
    margin: 0  0 0 10px;
    width: auto;
}

article > .formulario-y-datos > .datos {
    width: 440px;
    background: url(../img/sombra-latera-pequena-izquierda.png), url(../img/sombra-latera-pequena-derecha.png);
    background-position: left center, right center;
    background-repeat: no-repeat;
	
	position: relative;
	bottom: -20px;
	opacity: 0;
	
	-webkit-animation-name: aparecer-desde-abajo;
	-moz-animation-name: aparecer-desde-abajo;
	-o-animation-name: aparecer-desde-abajo;
	animation-name: aparecer-desde-abajo;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1.4s;
	-moz-animation-delay: 1.4s;
	-o-animation-delay: 1.4s;
	animation-delay: 1.4s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

article > .formulario-y-datos > .datos > .fondo {
    width: 400px;
    min-height: 372px;
    margin: 0 auto;
    padding: 30px 20px 34px;
    background: -moz-linear-gradient(top,  rgba(226,245,254,0) 0%, rgba(226,245,254,0.7) 14%, rgba(226,245,254,1) 41%, rgba(226,245,254,0.7) 67%, rgba(226,245,254,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(226,245,254,0)), color-stop(14%,rgba(226,245,254,0.7)), color-stop(41%,rgba(226,245,254,1)), color-stop(67%,rgba(226,245,254,0.7)), color-stop(100%,rgba(226,245,254,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(226,245,254,0) 0%,rgba(226,245,254,0.7) 14%,rgba(226,245,254,1) 41%,rgba(226,245,254,0.7) 67%,rgba(226,245,254,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(226,245,254,0) 0%,rgba(226,245,254,0.7) 14%,rgba(226,245,254,1) 41%,rgba(226,245,254,0.7) 67%,rgba(226,245,254,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(226,245,254,0) 0%,rgba(226,245,254,0.7) 14%,rgba(226,245,254,1) 41%,rgba(226,245,254,0.7) 67%,rgba(226,245,254,0) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(226,245,254,0) 0%,rgba(226,245,254,0.7) 14%,rgba(226,245,254,1) 41%,rgba(226,245,254,0.7) 67%,rgba(226,245,254,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00e2f5fe', endColorstr='#00e2f5fe',GradientType=0 ); /* IE6-9 */
}

article > .formulario-y-datos > .datos > .fondo > section {
    text-align: center;
    margin-bottom: 38px;
    font-size: 1em;
    line-height: 150%;
}

article > .formulario-y-datos > .datos > .fondo > section:last-child {
    margin-bottom: 0;
}

article > .formulario-y-datos > .datos > .fondo > section > h1 {
    font-family: pt-sans-bold, Arial, Helvetica, sans-serif;
    font-size: 1.1em;
    color: #1D94D3;
    text-transform: uppercase;
    line-height: 100%;
    margin-bottom: 20px;
}

article > .formulario-y-datos > .datos > .fondo > section > b {
    font-family: pt-sans-bold, Arial, Helvetica, sans-serif;
}

article > .formulario-y-datos > .datos > .fondo > section > b.frase {
    display: block;
    margin-top: 40px;
    text-align: center;
}

article > .mapa {
    margin-top: 40px;
	
	position: relative;
	bottom: -20px;
	opacity: 0;
	
	-webkit-animation-name: aparecer-desde-abajo;
	-moz-animation-name: aparecer-desde-abajo;
	-o-animation-name: aparecer-desde-abajo;
	animation-name: aparecer-desde-abajo;
	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
	animation-timing-function: ease;
	
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	
	-webkit-animation-delay: 1.6s;
	-moz-animation-delay: 1.6s;
	-o-animation-delay: 1.6s;
	animation-delay: 1.6s;
	
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	-o-animation-direction: normal;
	animation-direction: normal;
	
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

article > .mapa > h1 {
    font-family: pt-sans-bold, Arial, Helvetica, sans-serif;
    font-size: 1.2em;
    color: #2E799A;
    text-transform: uppercase;
    margin: 0 0 12px 40px;
}

article > .mapa > iframe {
    border: solid 17px rgba(29,148,211,.47);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin: 0 auto;
    display: table;
}