@font-face {
  font-family: 'Lato';
  /* Antes de descargar el archivo, le decimos al buscador
  que intente buscar en local la fuente con nombre
  Lato, Lato Regular o Lato-Regular */
  font-display: swap;
  src: local('Lato'),
       url(../fuentes/lato/lato.woff) format('woff'),
        url('../fuentes/lato/lato.ttf') format('truetype');
}
@font-face {
  font-family: 'fontawesome';
  /* Antes de descargar el archivo, le decimos al buscador
  que intente buscar en local la fuente con nombre
  Lato, Lato Regular o Lato-Regular */
  font-display: swap;
  src: local('fontawesome'),
       url(../fuentes/font-awesome/fa-regular-400.woff) format('woff'),
        url('../fuentes/font-awesome/fa-regular-400.ttf') format('truetype'),
        url(../fuentes/font-awesome/fa-solid-900.woff2) format('woff2');
}
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,700');
/* ==============================================================================
							R	E	S	E	T
============================================================================== */
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}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}
body {
	position: relative;
}
html, body {
  width: 100%;
  height: 100%;
}
body{
  position: relative;
	font-family: 'Lato', sans-serif;
}
.contiene-whats {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 60;
}
.contiene-whats img {
  width: 100px;
}
/* ============================= E s t i l o s   G l o b a l e s ============================= */
.degragado {
    margin: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(-45deg, #8e8e8e, #eeeeee, #ffffff, #a8a8a8);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
  }

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.imagen-escalable{
  width: 100%;
  height: auto;
}
.hamburgesa {
	width: 30px;
}
.grueso {
  font-weight: bolder;
}
.contiene-tercios {
	width: 100%;
	display: inline-flex;
}
.gris-claro {
  background: #fafafa;
}
.subtitulo {
  font-size: 1.5em;
  width: 70%;
  margin:auto;
  padding: 3% 0;
  letter-spacing: 1px;
  color: #4c4c4c;
}
.tercio-izquierda {
	float: left;
	width: 33.3%;
}
.tercio-centro {
	width: 33.3%;
}
.tercio-derecha {
	float: right;
	width: 33.3%;
}
.tercio h4 {
	font-size: 2.8em;
	font-weight: 300;
	padding-top:20px;
	padding-bottom: 10px;
}
.tercio h5 {
	margin:auto;
	width: 70%;
	font-size: 1.3em;
	padding-top:10px;
	padding-bottom: 20px;
}
.tercio {
	padding:20px 0px;
}
.zoom-ch img {
-webkit-transition:all .9s ease; /* Safari y Chrome */
-moz-transition:all .9s ease; /* Firefox */
-o-transition:all .9s ease; /* IE 9 */
-ms-transition:all .9s ease; /* Opera */
}
.zoom-ch:hover img {
-webkit-transform:scale(1.05);
-moz-transform:scale(1.05);
-ms-transform:scale(1.05);
-o-transform:scale(1.05);
transform:scale(1.05);
}
.zoom img {
-webkit-transition:all .9s ease; /* Safari y Chrome */
-moz-transition:all .9s ease; /* Firefox */
-o-transition:all .9s ease; /* IE 9 */
-ms-transition:all .9s ease; /* Opera */
}
.zoom:hover img {
-webkit-transform:scale(1.15);
-moz-transform:scale(1.15);
-ms-transform:scale(1.15);
-o-transform:scale(1.15);
transform:scale(1.15);
}
.rotacion{
  -webkit-animation: 490s rotate linear infinite;
  animation: 490s rotate linear infinite;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation-direction: reverse;
   animation-direction: reverse;
  }
.boton-contacto {
	width: 100%;
	margin:auto;
	padding: 3% 0%;
}
.boton-contacto a {
	text-decoration: none;
	color: white;
	font-size: 1.2em;
  letter-spacing: 1px;
	padding: 10px 40px;
	border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
	background: #0362c4;
}
.boton-contacto a:hover {
	background: #1c2939;
	color: white;
	border:0;
}
.derecha {
  text-align: right;
}
.padding-vertical-extra  {
  padding: 5% 0%;
}
.texto-suelto {
  width: 70%;
  margin:auto;
  font-size: 1.2em;
  text-align: justify;
  letter-spacing: 1px;
  line-height: 1.5em;
}
/** Centrar Verticalmente **/

.flex-parent{
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
}

.flex-child{
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
strong {
  font-weight: 400;
  color: #00469d;
}
.registrada {
  font-size: .6em;
}
.degradado {
  position: relative;
  width: 100%;
  color: #fff;
  background: linear-gradient(-30deg, #09f2bb, #23A6D5, #0d3394, #091536);
  background-size: 400% 400%;
  -webkit-animation: Gradient 15s ease infinite;
  -moz-animation: Gradient 15s ease infinite;
  animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
  0% {
    background-position: 0% 50%
  }
  50% {
    background-position: 100% 50%
  }
  100% {
    background-position: 0% 50%
  }
}

@-moz-keyframes Gradient {
  0% {
    background-position: 0% 50%
  }
  50% {
    background-position: 100% 50%
  }
  100% {
    background-position: 0% 50%
  }
}

@keyframes Gradient {
  0% {
    background-position: 0% 50%
  }
  50% {
    background-position: 100% 50%
  }
  100% {
    background-position: 0% 50%
  }
}

.degradado-blanco-mascara-arriba {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50px;
  background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.55) 45%, rgba(102,96,102,0) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(45%, rgba(255,255,255,0.55)), color-stop(100%, rgba(102,96,102,0)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.55) 45%, rgba(102,96,102,0) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.55) 45%, rgba(102,96,102,0) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.55) 45%, rgba(102,96,102,0) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.55) 45%, rgba(102,96,102,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#666066', GradientType=0 );
}

/*    M a r c a d o r   A n i m a d o   */


.pin {
  width: 40px;
  height: 40px;
  border-radius: 50% 50% 50% 0;
  background: #d60000;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 50%;
  top: 35%;
  margin: -27px 0 0 -27px;
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  -ms-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  z-index: 2;
}
.pin:after {
  content: '';
  width: 18.5px;
  height: 18.5px;
  margin: 11px 0 0 11px;
  background: #2f2f2f;
  position: absolute;
  border-radius: 50%;
}
.pulse {
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  height: 18.5px;
  width: 18.5px;
  position: absolute;
  left: 50%;
  top: 35%;
  margin: 11px 0px 0px -16px;
  -webkit-transform: rotateX(55deg);
  -moz-transform: rotateX(55deg);
  -o-transform: rotateX(55deg);
  -ms-transform: rotateX(55deg);
  transform: rotateX(55deg);
  z-index: 1;
}
.pulse:after {
  content: "";
  border-radius: 50%;
  height: 40px;
  width: 40px;
  position: absolute;
  margin: -13px 0 0 -13px;
  -webkit-animation: pulsate 1s ease-out;
  -moz-animation: pulsate 1s ease-out;
  -o-animation: pulsate 1s ease-out;
  -ms-animation: pulsate 1s ease-out;
  animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-box-shadow: 0 0 1px 2px #89849b;
  box-shadow: 0 0 1px 2px #89849b;
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
  -o-animation-delay: 1.1s;
  -ms-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
@-moz-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-o-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-moz-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -o-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -o-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}
@-webkit-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -o-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -o-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}
@-o-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -o-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -o-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -o-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -o-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}


.orden {
  flex: 1;
}
.orden:first-child {
  order: 1;
}
.orden:nth-child(2) {
  order: 2;
}
.caracteristicas-plataforma {
  position: relative;
}
.caracteristicas-plataforma h2 {
  text-align: center;
  font-size: 3em;
  letter-spacing: 1px;
  padding: 2% 0;
}
.contiene-medios {
    min-width: 80%;
    margin:auto;
    display: inline-flex;
}
.medio {
    width: 50%;
    text-align: center;
}
.medio h4 {
  padding: 1% 0;
  font-size: 2em;
  letter-spacing: 1px;
}
.medio ul {
  padding: 2% 0;
}
.medio ul li {
  letter-spacing: 1px;
  width: 60%;
  margin-left: 20%;
  font-size: 1.2em;
  line-height: 1.2em;
  margin-bottom: 15px;
}
.borde-derecho {
  border-right: 1px solid gray;
}


/* ============================= M  e  n  ú ============================= */

header{
  width: 100%;
  background: #fff;
  position: fixed;
  z-index: 100;
  -webkit-box-shadow: 0px 1px 12px -1px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 1px 12px -1px rgba(0,0,0,0.75);
  box-shadow: 0px 1px 12px -1px rgba(0,0,0,0.75);
}
.remate {
width: 100%;
height: 3px;
background: rgba(32,124,229,1);
background: -moz-linear-gradient(left, rgba(32,124,229,1) 0%, rgba(101,168,230,1) 55%, rgba(32,124,229,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(32,124,229,1)), color-stop(55%, rgba(101,168,230,1)), color-stop(100%, rgba(32,124,229,1)));
background: -webkit-linear-gradient(left, rgba(32,124,229,1) 0%, rgba(101,168,230,1) 55%, rgba(32,124,229,1) 100%);
background: -o-linear-gradient(left, rgba(32,124,229,1) 0%, rgba(101,168,230,1) 55%, rgba(32,124,229,1) 100%);
background: -ms-linear-gradient(left, rgba(32,124,229,1) 0%, rgba(101,168,230,1) 55%, rgba(32,124,229,1) 100%);
background: linear-gradient(to right, rgba(32,124,229,1) 0%, rgba(101,168,230,1) 55%, rgba(32,124,229,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#207ce5', endColorstr='#207ce5', GradientType=1 );
}
#hamburger{
  width: 30px;
}
.menu{
  width: 95%;
  max-width: 1600px;
  margin: auto;
  padding: 0.5em 0;
  /* Acomoda proporcionalemnte los elementos*/
  display: flex;
  justify-content: space-between;
  /* centrar verticalmente */
  align-items: center;
}
#logo_menu{
  width: 200px;
}
.menu .container-menu .logo .btn-menu{
  color: gray;
  font-size: 30px;
  display: none;
}
.menu .menu-link ul li{
  display: inline-block;
}
.menu .menu-link ul li a{
  text-decoration: none;
  color: gray;
  margin-left: 15px;
  font-size: 1em;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  transition: 0.7s;
}
.menu .menu-link ul li a:hover{
  color: #00cfff;
}
.menu .menu-link ul li .activa{
	font-weight: 700;
	color: #008dae;
}

/* ============================= F o o t e r ============================= */
footer {
  padding: 4% 0;
  background: #283041;
}
footer img {
  width: 150px;
}
footer p span {
  color: white;
  font-size: .8em;
  font-weight: 300;
  letter-spacing: 1px;
}

/* ============================= C o m i e n z a   I n i c i o  ============================= */

.contenedor {
  position: relative;
	width: 100%;
	margin:auto;
	padding-top:65px;
	overflow: hidden;
}
.cabecera {
	padding-top: 2%;
	background-image: url(../img/fondo-header.jpg);
	background-size: cover;
  -webkit-box-shadow: 0px 1px 12px -1px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 1px 12px -1px rgba(0,0,0,0.75);
  box-shadow: 0px 1px 12px -1px rgba(0,0,0,0.75);
}
.cabecera, .contiene-ventajas, .contiene-confiabilidad, .contiene-capacidad, .contiene-leasing {
	width: 100%;
	text-align: center;
}
.cabecera {
}
.cabecera h1 {
	width: 75%;
	margin: auto;
	padding: 3% 0;
	font-size: 2.6em;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 1.5em;
}
#fadein, #titulo01, #titulo02, #titulo03 {
  opacity: 0;
}
.contiene-celular {
  position: relative;
	width: 100%;
}
.contiene-texto-celular {
	width: 60%;
}
.celular-home {
  margin-left: 10%;
  width: 30%;
}
.celular-home img {
  width: 100%!important;
  height: auto;
}
.notificacion {
  opacity: 0;
  width: 15%;
  position: absolute;
  top:40%;
  left:14.1%;
}
.notificacion02 {
  opacity: 0;
  width: 15%;
  position: absolute;
  top:40%;
  left:14.1%;
  z-index: 2;
}
.contiene-texto-celular h3 {
	margin-top: -20%;
	font-size: 2.5em;
	font-weight: 300;
	padding: 30px 0;
	letter-spacing: 1px;
}
.contiene-texto-celular h4 {
	font-size: 1.5em;
  line-height: 1.5em;
	font-weight: 300;
	padding: 0 10%;
	-webkit-box-sizing: padding-box;
	-moz-box-sizing: padding-box;
	box-sizing: padding-box;
}
.wrapper {
  position: relative;
  width: 2.5em;
  height: 2.5em;
  margin-right: 2.5em;
  overflow: hidden;
}
.circulo-interno {
  position: absolute;
  width: 2.5em;
  height: 2.5em;
  border-radius: 2.5em;
  border: 3px solid #333;
  -webkit-animation: size cubic-bezier(0.165, 0.84, 0.44, 1) 1.8s, opacity cubic-bezier(0.3, 0.61, 0.355, 1) 1.8s;
          animation: size cubic-bezier(0.165, 0.84, 0.44, 1) 1.8s, opacity cubic-bezier(0.3, 0.61, 0.355, 1) 1.8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  opacity: 1;
}

@-webkit-keyframes size {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes size {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.circulo-externo {
  -webkit-animation-delay: -.9s;
          animation-delay: -.9s;
}

.wrapper-blanco {
  position: relative;
  width: 4em;
  height: 4em;
  margin-right: 3.5em;
  overflow: hidden;
}
.circulo-interno-blanco {
  position: absolute;
  width: 3.5em;
  height: 3.5em;
  border-radius: 3.5em;
  border: 3px solid #fff;
  -webkit-animation: size cubic-bezier(0.165, 0.84, 0.44, 1) 1.8s, opacity cubic-bezier(0.3, 0.61, 0.355, 1) 1.8s;
          animation: size cubic-bezier(0.165, 0.84, 0.44, 1) 1.8s, opacity cubic-bezier(0.3, 0.61, 0.355, 1) 1.8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  opacity: 1;
}

@-webkit-keyframes size {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes size {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.circulo-externo-blanco {
  -webkit-animation-delay: -.9s;
          animation-delay: -.9s;
}
.contiene-texto-celular .contiene-boton {
  width: 100%;
  padding: 30px 0;
}
.contiene-texto-celular a {
  text-decoration: none;
  background: #00abd0;
  letter-spacing: 1px;
  padding: 8px 50px;
  color: white;
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
}
.contiene-ventajas h5, .contiene-confiabilidad h3 {
	font-size: 1.3em;
	padding: 3% 0;
	letter-spacing: 1px;
}
.parallax-home {
  background-image: url("../img/banner-parallax-home.jpg");
  /* Set a specific height */
  height: 500px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contiene-confiabilidad {
  width: 100%;
  text-align: left;
}
.contiene-confiabilidad h3 {
  width: 50%;
  margin-left: 5%;
  padding-top:10%;
  font-size: 2.5em;
  color:#00abd0;
}
.contiene-capacidad h3 {
  font-size: 2.5em;
  font-weight: 300;
  padding: 3% 0;
  letter-spacing: 1px;
}
.tercio-server {
  background: #00cfff;
  color: white;
}
.contiene-leasing {
  padding:5% 0;
  background: url("../img/banner-home-abajo.jpg");
  overflow: hidden;
}
.contiene-leasing h3, .contiene-leasing h5 {
  width: 50%;
  text-align: left;
  margin-left: 10%;
  letter-spacing: 1px;
}
.contiene-leasing h3 {
  font-size: 2.5em;
  font-weight: 300;
  line-height: 2em;
}
.contiene-leasing h5 {
  line-height: 1.5em;
}
.boton-contacto-home {
  float: left;
  width: 50%;
  margin-left: 10%;
  padding-top: 3%;
}
.boton-contacto-home a {
  text-decoration: none;
  color: black;
  font-size: 1.2em;
  padding: 8px 16px;
  padding: 0 10%;
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  border: 1px solid black; 
}
.boton-contacto-home a:hover {
  background: #0362c4;
  color: white;
  border:0;
}
.contacto-mapa, .rrss-footer, .contiene-datos-footer {
  width: 33.3%;
}
.contacto-footer ul {
  letter-spacing: 1px;
}
.contacto-footer ul li a {
  color: white;
  line-height: 1.5em;
  text-decoration: none;
  margin-left: 20%;
}
.contacto-footer ul li span {
  margin-left: 20%;
  color: white;
  font-weight: 300;
  font-size: 1.5em;
  line-height: 1.5em;
}
.rrss-footer ul {
  display: inline-flex;
  margin:auto;
}
.rrss-footer ul li a img {
  width: 40px;
  margin-right: 30px;
}
.datos-footer {
  margin-bottom: 20px;
}
.datos-footer img {
  width: 50px;
}
.contiene-icono-footer {
  width: 30%;
  text-align: right;
}
.contiene-icono-footer img {
  margin-left: 60%;
}
.datos-footer p {
  letter-spacing: 1px;
  line-height: 1.5em;
  width: 70%;
  color: white;
  padding-right: 10%;
  -webkit-box-sizing: padding-box;
  -moz-box-sizing: padding-box;
  box-sizing: padding-box;
}

/* ============================= C o m i e n z a   S o l u c i o n e s  ============================= */

.contiene-logo-treker {
  width: 100%;
  text-align: center;
  background: #e9e7e7;
  padding-top: 50px;
}
.contiene-logo-treker img {
  width: 300px;
}
.contiene-disponible {
  text-align: center;
}
.contiene-disponible img {
  width: 300px;
}
.parallax-soluciones-app img {
  width: 300px;
}
.parallax-soluciones {
  width: 100%;
  position: relative;
  margin-top: 20px;
  background: url(../img/fondo-parallax-soluciones.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.contiene-telefono-soluciones {
  min-width: 40%;
}
.contiene-texto-soluciones {
  min-width: 60%;
}
.contiene-telefono-soluciones img {
  width: 100%;
  padding-bottom: 30%;
}
.contiene-texto-soluciones h1 {
  text-align: center;
  color: white;
  font-size: 5em;
  font-weight: 600;
  margin-bottom: 20px;
  padding-top: 20%;
  -webkit-box-sizing: padding-box;
  -moz-box-sizing: padding-box;
  box-sizing: padding-box;
  text-shadow: 5px 5px 5px rgba(0,0,0,0.90);
}
.contiene-texto-soluciones h2 {
  width: 80%;
  font-size: 1.4em;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.2em;
  margin:auto;
  color: white;
  padding: 10px;
  -webkit-box-sizing: padding-box;
  -moz-box-sizing: padding-box;
  box-sizing: padding-box;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.69);
  background: rgba(28,41,57,0.4);
}
#remate-triangular-abajo {
  width: 100%;
  position: absolute;
  bottom: -2px;
}
.senal-soluciones {
  position: absolute;
  top:33%;
  left: 25%;
}
.contiene-ventajas h2 {
  padding: 2em 0;
  font-size: 4em;
  font-weight: 300;
  color: #1c2939;
}
.contiene-tercio-soluciones {
  padding: 50px;
  background: #277ea4;
}
.tercio-soluciones {
  width: 33%;
  text-align: center;
  display: inline-block;
}
.tercio-soluciones p {
  color: white;
  font-size: 1.3em;
  letter-spacing: 1px;
  line-height: 1.5em;
}
.tercio-soluciones img {
  width: 90px;
  margin-bottom: 10px;
}
.boton-soluciones {
  text-align: center;
  margin-top: 50px;
}
.boton-soluciones a {
  color: white;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 10px 30px;
  background: #238C00;
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  border: 1px solid #ffffff;
}
.boton-soluciones a:hover{
  background: #1A6600;
}
.contiene-items-ventajas {
  width: 75%;
  margin:auto;
  padding: 20px 0;
}
.tercio-items {
  color: #535458;
  width: 33%;
  text-align: center;
  display: inline-block;
}
.tercio-items h4 {
  font-size: 0.9em;
}
.tercio-items img {
  width: 40%;
  margin:auto;
  margin-bottom: 20px;
}
.tercio-items h4 {
  font-size: 1.6em;
}
.tercio-items p strong {
  color: #535458;
}
.tercio-items p {
  border-top: 2px solid #00afff;
  font-size: 1.1em;
  text-align: justify;
  line-height: 1.5em;
  width: 80%;
  margin:auto;
  padding-top: 1em;
}
.contiene-apps-soluciones {
  padding: 40px 0;
  background: #e9e7e7;
}
.contiene-imagen-apps {
  width: 35%;
}
.contiene-imagen-apps img {
  width: 90%;
  margin-left: 10%;
}
.contiene-texto-apps {
  width: 65%;
  padding: 5% 0;
}
.contiene-texto-apps ul {
  width: 70%;
  margin:auto;
  margin-bottom: 40px;
  color: #535458;
}
.contiene-texto-apps ul li h2 img {
}
.contiene-texto-apps ul li h2 {
  font-size: 2em;
  margin-bottom: 10px;
}
.contiene-texto-apps ul li h5 {
  border-top: 2px solid #00afff;
  font-size: 1.2em;
  line-height: 1.4em;
  padding-top: 20px;
}
.otras-funciones {
  width: 100%;
  padding:40px 0;
  position: relative;
  background: url(../img/fondo-paralla-soluciones.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.otras-funciones-texto {
  width: 50%;
  color: white;
   padding-left: 100px;
  -webkit-box-sizing: padding-box;
  -moz-box-sizing: padding-box;
  box-sizing: padding-box;
}
.otras-funciones-texto h3 {
  width: 50%;
  border-bottom: 2px solid #00afff;
  font-size: 2em;
  line-height: 1.5em;
}
.otras-funciones-imagen {
  width: 50%;
}
.otras-funciones-imagen img{
  width: 80%;
  height: auto;
  margin:auto;
}
.otras-funciones-texto p {
  font-size: 1.1em;
  letter-spacing: 1px;
  padding: 15px 0;
  line-height: 1.4em;
}
.otras-funciones-texto ul {
  padding: 30px 0;
}
.otras-funciones-texto ul li p {
  border: 0;
  padding: 0;
  line-height: 2em;
}
.contiene-contacto-soluciones {
  padding:5% 0%;
  width: 100%;
  background: #E2EAEB;
}
.contiene-presentacion-soluciones {
  padding: 60px 0px;
  text-align: center;
}
.contiene-presentacion-soluciones p {
  width: 70%;
  margin:auto;
  font-size: 1.5em;
  letter-spacing: 1px;
  line-height: 1.5em;
}
  

/* ============================= C o m i e n z a   V e n t a j a s  ============================= */

  .cabecera-ventajas {
    position: relative;
    width: 80%;
    margin:auto;
    margin-top: 40px;
    padding: 6% 0%;
  }
  .cabecera-ventajas h2 {
    font-size: 6em;
    font-weight: 100;
    text-align: center;
  }
  .cabecera-ventajas h3 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 300;

  }
  .cabecera-ventajas img {
    width: 100%;
    max-width: 1200px;
  }
  .fondo-gris-suave {
  background: #fafafa;
  -webkit-box-shadow: 0px -17px 41px 16px rgba(250,250,250,1);
  -moz-box-shadow: 0px -17px 41px 16px rgba(250,250,250,1);
  box-shadow: 0px -17px 41px 16px rgba(250,250,250,1);
}
.texto-fondo-gris-suave {
  color:white;
  text-align: center;
  font-size: 10em;
  font-weight: bolder;
  text-shadow: 2px 2px 2px #e2e2e2;
}
.contiene-cuartos-ventajas {
  width: 60%;
  margin:auto;
  padding: 2.5% 0;
}
.cuarto-ventajas {
  width: 40%;
  background: white;
  border-radius: 20px 20px 20px 20px;
  -moz-border-radius: 20px 20px 20px 20px;
  -webkit-border-radius: 20px 20px 20px 20px;
  padding: 5%;
   -webkit-box-sizing: padding-box;
  -moz-box-sizing: padding-box;
  box-sizing: padding-box;
  margin:2.5%;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.30);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.30);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.30);
}
.cuarto-ventajas:hover {
  -webkit-box-shadow: 0px 0px 14px 7px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 0px 14px 7px rgba(0,0,0,0.3);
  box-shadow: 0px 0px 14px 7px rgba(0,0,0,0.3);
}
.cuarto-ventajas h3 {
  font-size: 2.5em;
  font-weight: 300;
  margin-bottom: 1em;
}
.separador {
  height: 1px;
  border: 0;
  background: gray;
  margin-bottom: 1em;
}
.cuarto-ventajas p {
  text-align: justify;
  letter-spacing: 1px;
  line-height: 1.3em;
  font-size:1.2em;
}
.cuarto-ventajas img {
  width: 50%;
  max-width: 400px;
  min-width: 200px;
}
.contiene-mapa-ventajas {
  background: url(../img/mapa.jpg);
  background-attachment: fixed;
}
.contiene-mapa-ventajas h3 {
  padding: 10% 0;
  color: #283041;
  text-align: center;
  font-size: 2em;
  width: 90%;
  margin:auto;
}
.contiene-mapa-ventajas h3 span {
  font-size: 1.2em;
  font-weight: 700;
}
.servidores-ventajas {
  padding: 3%;
}
.servidores-ventajas-imagen {
   padding: 5%;
   -webkit-box-sizing: padding-box;
  -moz-box-sizing: padding-box;
  box-sizing: padding-box;
}
.servidores-ventajas-imagen img {
  width: 100%;
}
.servidores-ventajas-texto {
  font-size: 3em;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.2em;
  color: #404040;
}
.servidores-ventajas-texto h3 {
  font-weight: 400;
  font-size: 1.4em;
}

/* ============================= C o m i e n z a   A p p  ============================= */

.app {
  width: 45%;
  position: absolute;
  top:14%;
  left: 0;
  right: 0;
  margin:auto;
}
.app img {
  width: 50%;
  max-width: 200px;
  margin-top: 15%;
}
.app h3 {
  font-size: 2.5em;
}
.app h4 {
  text-align: justify;
  font-size: 1.1em;
  line-height: 1.3em;
}
.titulo-cabecera-apps{
  font-weight: 700;
  color: transparent;
  font-size:120px;
  background: url("../img/fondo-apps.jpg") repeat;
  background-position: 40% 50%;
  -webkit-background-clip: text;
  position:relative;
  text-align:center;
  line-height:90px;
  letter-spacing: -8px;
}
.subtitulo-cabecera-apps{
  display: block;
  text-align: center;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom:10px 0;
  letter-spacing: 4px;
}
.degragado-app {
    position: relative;
    margin: 0;
    background: linear-gradient(-45deg, #8e8e8e, #ffffff, #edf9ff, #ffffff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
  }

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.fondo-app {
  width: 100%;
  height: 100%;
  background: url("../img/fondo-app.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contiene-cabecera{
  width: 100%;
  margin: 0;
  width: 100%;
  height: 150px;
  font-family: 'Lato', sans-serif;
  padding-top: 10%;
}
.contiene-phone-01, .contiene-phone-02, .contiene-phone-03, .contiene-phone-04, .contiene-phone-05, .contiene-phone-06, .contiene-phone-07 {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
}
.phone {
  position: relative;
  text-align: center;
  width: 60%;
  padding-bottom: 5%;
}
.next {
   padding-right: 30%;
   padding-top: 20%;
  -webkit-box-sizing: padding-box;
  -moz-box-sizing: padding-box;
  box-sizing: padding-box;
  cursor: pointer;
}
.prev {
  padding-left: 30%;
  padding-top: 20%;
  -webkit-box-sizing: padding-box;
  -moz-box-sizing: padding-box;
  box-sizing: padding-box;
  cursor: pointer;
}
.phone img {
  margin:auto;
  width: 70%;
  max-width: 400px;
}
.pie-apps {
  letter-spacing: 1px;
  width: 50%;
  margin: auto;
  font-size: 1.2em;
  margin-bottom: 4%;
}

/* ============================= C o m i e n z a   P l a t a f o r m a  ============================= */
.contiene-header {
  position: relative;
}
.contiene-texto-header-plataforma {
  position: absolute;
  top:30%;
  left:5%;
  color:white;
}
.contiene-texto-header-plataforma h1 {
  font-size: 4em;
}
.contiene-texto-header-plataforma h2 {
  font-size: 1.2em;
  letter-spacing: 1px;
  line-height: 1.5em;
}
.caracteristicas-plataforma h5 {
  width: 80%;
  margin:auto;
  font-size: 1.2em;
  line-height: 1.5em;
  letter-spacing: 1px;
  padding-bottom: 50px;
  text-align: justify;
}
.contiene-banner-abajo-app {
  position: relative;
  background: url(../img/banner-abajo-app.jpg);
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.contiene-imagen-banner-abajo-app {
  margin-left: 15%;
  padding-top: 10%;
  display: inline-flex;
}
.contiene-imagen-banner-abajo-app img {
  width: 300px;
  height: auto;
}
.texto-app-abajo {
  width: 50%;
  padding-left: 5%;
  padding-top:7%;
  -webkit-box-sizing: padding-box;
  -moz-box-sizing: padding-box;
  box-sizing: padding-box;
}
.texto-app-abajo h5 {
  color: #009a92;
  margin-bottom: 10px;
}
.texto-app-abajo h2 {
  color: white;
  font-size: 4em;
  font-weight: 300;
  margin-bottom: 10px;
}
.texto-app-abajo h4 {
  color: white;
  font-size: 1.2em;
  line-height: 1.4em;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: justify;
  margin-bottom: 20px;
}
.texto-app-abajo img {
  margin-bottom: 15px;
}
.texto-app-abajo a {
  text-decoration: none;
  color: #009a92;
  letter-spacing: 1px;
}

/* ============================= C o m i e n z a   C o n t a c t o  ============================= */

.contiene-contacto {
  padding:5% 0%;
  width: 100%;
  background: url(../img/fondo-contacto.jpg);
  background-position: center;
  background-size: cover;
}
.contacto {
  text-align: center;
  letter-spacing: 1px;
  width: 50%;
  margin:auto;
  background: white;
  border-radius: 20px 20px 20px 20px;
  -moz-border-radius: 20px 20px 20px 20px;
  -webkit-border-radius: 20px 20px 20px 20px;
  padding: 5%;
   -webkit-box-sizing: padding-box;
  -moz-box-sizing: padding-box;
  box-sizing: padding-box;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.30);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.30);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.30);
}
.contacto h2 {
  font-size: 3em;
  font-weight: 300;
  padding: 20px 0;
}
.contacto h4 {
  width: 80%;
  margin:auto;
  font-size: 1.2em;
  line-height: 1.4em;
}
.contacto form {
  padding: 3% 0;
}
.contacto form input {
  letter-spacing: 1px;
  width: 80%;
  font-size: 1.3em;
  font-weight: 300;
  border: 0;
  border-bottom: 1px solid gray;
  padding: 10px 0;
  margin-bottom: 20px;
}
.contacto form select {
  width: 80%;
   font-size: 1.3em;
  font-weight: 300;
  letter-spacing: 1px;
  padding:10px 0px 10px 15px;
}
.contacto form button {
  text-decoration: none;
  color: white;
  font-size: 1.2em;
  letter-spacing: 1px;
  padding: 10px 40px;
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  background: #0362c4;
   
}

 /* Media Queries */

/* Dispositivos muy pequeños (teléfonos de hasta 768px de anchura) */
/* No se define ninguna media query porque este es el estilo por
   defecto utilizado por Bootstrap 3 */
 
/* Dispositivos pequeños (tablets, anchura mayor o igual a 768px) */
@media (max-width: 768px) { 
  .flex-parent, .flex-child {
    display: block;
  }
  .contiene-orden {
    display: flex;
    flex-direction: column;
  }
  .orden:first-child {
    order: 2;
  }
  .orden:nth-child(2) {
    order: 1;
  }
  .mitad{
    width: 90%;
  }
  #logo_menu{
    width: 150px;
  }
  .logo_portada{
    width: 200px;
    margin-top: 60%;
   }
   #flecha_top{
    position: fixed;
    bottom: 80px;
    right: 30px;
  }
   .menu .container-menu .logo .btn-menu {
    display: block;
   }
   .menu .container-menu{
    width: 100%;
   }
   .menu .container-menu .logo {
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
    }
  .menu .menu-link{
    position: absolute;
    background: rgba(0,118,238,.95);
    height: 100vh;
    width: 100%;
    top: 52px;
    left: -100%; /* Para ocultar el menu */
    z-index: 1000;
    transition: 0.8s ease;
   }
   .menu .menu-link ul li{
      display: block;
    }
  .menu .menu-link ul li a{
		color: white;
    display: block;
    height: 50px;
    border-bottom: 1px solid #000;
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.4em;
    letter-spacing: 1px;
    margin: 0;
  }
	.menu .menu-link ul li .activa{
	 color: #000;
	}
	.tercio h4 {
	 font-size: 1.2em;
	}
	.tercio h5 {
		font-size: .9em;
	}
  .cabecera h1 {
    padding-top: 10%;
    font-size: 1.6em;
    line-height: 1.2em;
  }
  .cabecera .celular-home {
    width: 100%;
  }
  .contiene-celular {
    width: 100%;
    display: block;
  }
  .contiene-texto-celular {
    width: 100%;
  }
  .contiene-texto-celular h3 {
    font-size: 2em;
  }
  .notificacion {
  width: 50%;
  position: absolute;
  top:20%;
  left:23%;
  }
  .notificacion02 {
    width: 50%;
    position: absolute;
    top:20%;
    left:23%;
    z-index: 2;
  }
  .parallax-home {
    background-image: url("../img/banner-parallax-home-moviles.jpg");
    background-attachment: scroll;
  }
  .contiene-capacidad h3 {
    padding: 10% 0;
  }
  .contiene-confiabilidad h3 {
    width: 80%;
    margin:auto;
    padding-top:50%;
    font-size: 1.5em;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    color:#fff;
  }
  .contiene-leasing {
    background: url("../img/banner-home-abajo.jpg");
  }
  .contiene-leasing h3, .contiene-leasing h5 {
    width: 80%;
    text-align: center;
    margin:auto;
  }
  .contiene-leasing h3 {
    font-size: 2.5em;
    font-weight: 300;
    line-height: 2em;
  }
  .contiene-leasing h5 {
    line-height: 1.5em;
    margin-bottom: 40px;
  }
  .boton-contacto {
    margin-bottom: 40px;
  }
  .boton-contacto-home {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-bottom: 5%;
    padding-top: 3%;
  }

/* ============================= C o m i e n z a   S o l u c i o n e s   M o v i l  ============================= */
  .contiene-presentacion-soluciones p {
    font-size: 1.2em;
    line-height: 1.2em;
    text-align: justify;
  }
  .contiene-tercio-soluciones {
    padding: 50px;
    background: #277ea4;
  }
  .tercio-soluciones {
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-bottom: 30px;
  }
  .contiene-items-ventajas {
    width: 85%;
    padding:0;
  }
  .tercio-items {
    width: 100%;
    text-align: center;
    display: inline-block;
    margin:25px 0;
  }
  .contiene-imagen-apps {
    width: 100%;
  }
  .contiene-imagen-apps img {
    width: 100%;
    margin-left: 0%;
  }
  .contiene-texto-apps {
    width: 100%;
    padding: 5% 0;
  }
  .otras-funciones {
    width: 100%;
    background: url(../img/fondo-paralla-soluciones-moviles.jpg);
    background-position: center;
    background-size: cover;
    background-color: #004374;
  }
  .otras-funciones-texto {
    width: 80%;
    margin:auto;
    padding-left: 0px;
  }
  .otras-funciones-texto h3 {
    width: 100%;
  }
  .otras-funciones-imagen {
    width: 100%;
  }
  .otras-funciones-imagen img{
    width: 100%;
  }
  .otras-funciones-texto p {
    font-size: 1.1em;
    letter-spacing: 1px;
    padding: 15px 0;
    line-height: 1.4em;
  }
  .otras-funciones-texto ul {
    padding: 0;
  }
  .otras-funciones-texto ul li {
    margin-bottom: 20px;
  }
  .otras-funciones-texto ul li p {
    line-height: 1em;
  }
  .contiene-texto-soluciones {
    margin-bottom: 10%;
  }
  .contiene-texto-soluciones h1{
    font-size: 3.5em;
    margin-bottom: 5%;
    font-weight: 400;
    padding-top: 10%;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.70);
  }
  .contiene-texto-soluciones h2 {
    font-size: 1.5em;
    text-align: center;
  }
  .contiene-ventajas h2 {
    font-size: 2.5em;
    padding: 15% 0%;
  }
  .contiene-elemento-flotante h2 {
    font-size:2em!important;
    text-align: center;
  }
  .contiene-elemento-flotante h3 {
    font-size: 1.2em;
    color: black;
  }
  .parallax-soluciones {
    margin-top: 0px;
  }
  .contiene-telefono-soluciones {
    margin-bottom: -22%;
  }
  .padding-vertical-extra {
    padding:5% 0%;
  }
  .parallax-soluciones {
    background: url(../img/fondo-parallax-soluciones-moviles.jpg);
    background-attachment: scroll;
  }
  
/* ============================= C o m i e n z a   V e n t a j a s   M o v i l  ============================= */

  .contiene-elemento-flotante h2 {
    width: 80%;
    margin: auto;
    font-size: 3em;
    padding-top: 10%;
    padding-bottom: 5%; 
  }
  .contiene-elemento-flotante h3 {
    line-height: 1.2em;
  }
  .boton-contacto {
    margin-top: 10%;
  }
  .cabecera-ventajas h2 {
    font-size: 3em;
    font-weight: 100;
    text-align: center;
  }
  .cabecera-ventajas h3 {
    font-size: 1.5em;
    padding-top: 20px;
  }
  .pin {
    width: 30px;
    height: 30px;
    top: 20%;
    margin: -20px 0 0 -20px;

  }
  .pin:after {
    content: '';
    width: 9px;
    height: 9px;
    margin: 11px 0 0 11px;
  }
  .pulse {
    height: 18.5px;
    width: 18.5px;
    left: 50%;
    top: 19%;
    margin: 11px 0px 0px -15px;
  }
  .contiene-cuartos-ventajas {
    width: 90%;
    padding: 2.5% 0;
  }
  .cuarto-ventajas {
    width: 70%;
    margin:auto;
    padding: 10%;
    -webkit-box-sizing: padding-box;
    -moz-box-sizing: padding-box;
    box-sizing: padding-box;
    margin-bottom: 15%;
  }
  .cuarto-ventajas h3 {
    font-size: 1.5em;
    margin-bottom: 1em;
    text-align: center;
  }
  .cuarto-ventajas img {
    width: 50%;
    margin:auto;
  }
  .separador {
    margin-bottom: 1em;
  }
  .cuarto-ventajas p {
    text-align: justify;
    letter-spacing: 1px;
    line-height: 1.3em;
    font-size:1.2em;
  }
  .cuarto-ventajas img {
    width: 50%;
    max-width: 400px;
    min-width: 200px;
  }
  .subtitulo {
    padding-bottom: 10%;
  }
  .contiene-mapa-ventajas {
    background-attachment: scroll;
  }
  .servidores-ventajas-texto {
    text-align: center;
    font-size: 1.5em;
    line-height: 1.5em;
    padding: 8% 0;
  }
  .servidores-ventajas-texto h3 {
    font-size: 1.5em;
  }

/* ============================= C o m i e n z a   A p p   M o v i l============================= */

.degragado-app {
    margin: 0;
    background: linear-gradient(-45deg, #8e8e8e, #ffffff, #edf9ff, #ffffff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
  }

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.contiene-cabecera{
  height: 100px;
  padding-top: 25%;
}
.titulo-cabecera-apps{
  font-size:2em;
  line-height:1em;
  letter-spacing: 1px;
}
.subtitulo-cabecera-apps{
  font-size: 0.8em;
  padding-top: 10px;
  padding-bottom:0;
  letter-spacing: 2px;
}
.app h4 {
  text-align: justify;
  font-size: 1.1em;
  line-height: 1.3em;
}
.phone {
  position: relative;
  text-align: center;
  width: 90%;
  padding-bottom: 5%;
}
.phone img {
  min-width: 100%;
}
.next {
   width: 10%;
   padding-right: 0%;
}
.prev {
   width: 10%;
  padding-left: 0%;
}
.app {
  width: 80%;
  position: absolute;
  top:10%;
  left: 0;
  right: 0;
  margin:auto;
}
.app img {
  min-width: 20%;
  max-width: 90px;
  margin-top: 10%;
}
.app h3 {
  width: 100%;
  font-size: 1.5em;
  line-height: 1em;
}
.app h4 {
  max-height: 300px;
  overflow: scroll;
  font-size: 1em;
  line-height: 1.2em;
}

/* ============================= C o m i e n z a   P l a t a f o r m a   M o v i l  ============================= */
.contiene-header {
  position: relative;
}
.contiene-texto-header-plataforma {
  position: absolute;
  top:30%;
  left:5%;
  color:white;
}
.contiene-texto-header-plataforma h1 {
  font-size: 1.6em;
}
.contiene-texto-header-plataforma h2 {
  font-size: .8em;
  letter-spacing: 1px;
  line-height: 1.5em;
}
.contiene-banner-abajo-app {
  position: relative;
  background: url(../img/banner-abajo-app.jpg);
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.desaparece-movil {
  display: none;
}
.caracteristicas-plataforma h2 {
  font-size: 2em;
  padding: 15% 0;
}
.contiene-medios {
  display: block;
}
.medio {
  width: 100%;
}
.medio img {
  width: 90px;
}
.medio h4 {
  font-size: 1.8em;
  padding: 5% 0;
}
.medio ul li {
  letter-spacing: 1px;
  width: 80%;
  margin-left: 10%;
  font-size: 1.2em;
  line-height: 1.2em;
  margin-bottom: 25px;
}
.contiene-imagen-banner-abajo-app {
  margin-left: 0%;
  padding-top: 10%;
  display: block;
}
.contiene-imagen-banner-abajo-app img {
  width: 150px;
  height: 247px;
}
.texto-app-abajo {
  width: 100%;
  padding: 5%;
  -webkit-box-sizing: padding-box;
  -moz-box-sizing: padding-box;
  box-sizing: padding-box;
  cursor: pointer;
}
.texto-app-abajo h2 {
  font-size: 2.8em;
}
.texto-app-abajo h4 {
  width: 90%;
  font-size: 1.1em;
  margin-bottom: 20px;
}
.texto-app-abajo img {
  width: 150px;
  height: 26px;
  margin-bottom: 15px;
}
.texto-app-abajo a {
  font-size: .8em;
  margin-bottom: 30px;
}
.borde-derecho {
  border: 0;
  border-bottom: 1px solid #cacaca;
  margin-bottom: 5%;
}

/* ============================= C o m i e n z a   C o n t a c t o   M o v i l  ============================= */

.contiene-contacto {
  padding:10% 0%;
}
.contacto {
  width: 80%;
}
.contacto h2 {
  font-size: 2em;
}
.contacto h4 {
  width: 80%;
  font-size: 1.2em;
  text-align: justify;
}
.contacto form {
  padding: 3% 0;
}
.contacto form input {
  font-size: 1em;
}
.contacto form button {
  text-decoration: none;
  color: white;
  font-size: 1.2em;
  letter-spacing: 1px;
  padding: 10px 40px;
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  background: #0362c4;
}

/* ============================= C o m i e n z a   F o o t e r   M o v i l  ============================= */

  .contacto-mapa, .rrss-footer, .contiene-datos-footer {
    width: 100%;
  }
  .contacto-footer ul li {
    text-align: center;
  }
  .contacto-footer ul li a {
    width: 100%;
    margin-left: 0%;
  }
  .contacto-footer ul li span {
  margin-left: 0%;
  }
  .rrss-footer {
    width: 80%;
    margin:auto;
    padding: 50px 0px;
  }
  .rrss-footer ul {
    width: 100%;
    margin:auto;
  }
  .rrss-footer ul li {
    width: 25%;
    margin:auto;
    overflow: hidden;
  }
  .rrss-footer ul li a img {
    margin-left: 20%;
    width: 40px;
  }
  .contiene-icono-footer {
    width: 100%;
    text-align: center;
  }
  .contiene-icono-footer img {
    margin-left: 0%;
  }
  .datos-footer img {
    width: 50px;
    margin-left: 0%;
    margin:auto;
  }
  .datos-footer p {
    width: 100%;
    text-align: center;
    padding: 0%;
  }
  .contacto form select {
    font-size: 1em;
    letter-spacing: 0px;
    padding:0;
  }



}