/* Estilo Videomails */

/* RESET CSS ------------------------------------------------------------------------------------------ */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* RESET MODELO DE CAJA ------------------------------------------------------------------------------------------ */



*{
    box-sizing: border-box;
}



/* ESTILOS GENERALES  ------------------------------------------------------------------------------------------ */



body{
    background-image: url(img/degradado.png);
    background-repeat: repeat-x;
   
/* background: #70e1f5;  /* fallback for old browsers */
/* background: -webkit-linear-gradient(to top, #ffd194, #70e1f5);  /* Chrome 10-25, Safari 5.1-6 */
/* background: linear-gradient(to top, #ffd194, #70e1f5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

h1{
    font-size: 38px; 
    font-family: 'lato', serif;
    font-weight: 700;
    color: rgba(43, 50, 178, 1);
    letter-spacing: 1pt;
    line-height: 1.1em;
    margin: 30px 0px;
}

.h1-ligera{
    font-weight: 400;
    color: rgba(43, 50, 178, .9);
}

@media screen and (max-width: 750px){
h1{
    font-size: 27px; 
    letter-spacing: 1pt; 
    line-height: 1.1em;
    }
}

h2{
    font-size: 25px; 
    font-family: 'lato', serif;
    font-weight: 400;
    color: rgba(72, 72, 72, 1);
    line-height: 1.2em;
    margin: 10px 0px;
    text-align: center;
}

@media screen and (max-width: 750px){
h2{
    font-size: 23px; 
    line-height: 1em;
    }
}

h4{
    color: rgba(0, 0, 0, .8);
    font-size: 16px;
    font-family: 'lato', sans-serif;
    font-weight: 100;
    line-height: 1.3;
    margin: 10px 0px;
    padding-left: 20px;
}

ol{
    color: rgba(0, 0, 0, 1);
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.3;
    text-align: justify;
    margin: 10px 0px;
}

p{
    color: rgba(120, 120, 120, 1);
    font-size: 20px;
    font-family: 'lato', sans-serif;
    font-weight: 300;
    line-height: 1.3;
    margin: 10px 0px;
}

@media screen and (max-width: 750px){
p{
    font-size: 20px; 
    letter-spacing: 1pt; 
    line-height: 1em;
    }
}

footer{
    display: #999;
    background: #1488cc; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1488cc, #2b32b2); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1488cc, #2b32b2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
    width: 100%;
    padding: 10px;
    bottom: 0px;
    text-align: center;
    border-top: 4px solid rgb(180, 180, 180);
}

a{
    color: yellow;
    opacity:.50;
}

a:hover{
    opacity: .90;
}

.imagen:hover{ 
    -webkit-transform: scale(1.1);
    transform: scale(1.06);
}


/* ESTILOS CAJAS  ------------------------------------------------------------------------------------------ */



.contenedor-general{
    max-width: 1120px;
    background-color: rgba(255, 255, 255, 1);
    padding: 40px;
    border-radius: 5px;
    margin: 25px auto 10px auto;
}

.contenedor-elementos{
	max-width: 1105px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    
    align-items: flex-start;
}

.contenedor-izq-800px{
    max-width: 780px;
    margin: 20px;
}

@media screen and (max-width: 750px){
.contenedor-izq-800px{
    margin: 5px;
    }
}

.contenedor-der-300px{
    max-width: 320px;
    margin: 20px;
}

.contenedor-bullets{
    overflow: hidden; 
    display: inline;
    max-width: 640px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.bullet-izq{
    max-width: 40px;
}

.bullet-drch{
    max-width: 600px;
    padding-left: 20px;
}

@media screen and (max-width: 750px){
.bullet-drch{
    padding-left: 5px;
    }
}

.contenedor-base{
    max-width: 960px;
    margin: auto;
    align-content: center;
}

.contenedor-tres{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 5px;
    justify-content: space-around;
}

/* ESTILOS ESPECÃFICOS  ------------------------------------------------------------------------------------------ */



.red{
    color: red;
}

.white{
    color: white;
}

.btn{
    border-radius: 3px;
    display: inline-block;
    padding: 20px 15px;
    text-decoration: none;
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
    box-shadow: 0 1px 1px rgba(0,0,0,0.3); 
}

.btn-green{
    color: white;
    background-color: rgba(20, 136, 204, .85);
}

.btn-green:hover{
    background-color: rgba(20, 136, 204, 1);	
}
		
.btn-green:active{
    background-color: rgba(20, 136, 204, 1);
}

.imagen{
    padding: 0px 10px;
}

/*------------------------------------*\
    #FORMS
\*------------------------------------*/



form{
    background-color: rgba(120, 120, 120, .1);
    border-radius: 5px;
    color: #999;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    padding: 20px;
    margin: auto;
    width: 320px;
}

input, textarea{
    border: 0;
    outline: none;
    width: 280px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    margin: 10px 0px;
}

.field{
    border: solid 1px #ccc;
    padding: 10px;	
    height: 50px;
    background-color: rgba(255, 255,255, 1);
}

.field:focus{
    border-color: gray;
}

.center-content{
    text-align: center;
}

label{
    color: rgba(0, 0, 0, 1);
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.2;
    margin: 10px 0px;
}

/*------------------------------------*\
    #VIDEO
\*------------------------------------*/

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}