

body, html {
	margin:0;
	padding:0;
	font-family:robotoregular;
	color:#ffffff;
	width:100%;
	height:100%;
	min-width:100%;
	overflow:hidden;
	background-repeat:no-repeat;
	background-color:white;
}

.contenedor{
	position:relative;
	width:100%;
	max-width:370px;
	margin:auto;
	box-sizing:border-box;
	padding-left:0px;
	padding-right:0px;	
	overflow:hidden;
}

.cabecera{
	position: fixed;
	top:0px;
	left:0px;
	right:0px;
	height:auto;
	background-color:#000000;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.15);
	-webkit-transition:  0.2s;
  	transition:  0.2s;
	z-index:5000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cabecera .contenedor{
	width: 100%;
	max-width: 80px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 12px;
	padding-bottom: 12px;
}

.logo{
	width: 100%;
	height: auto;
}


.menu_desktop_cont{
	float:right;
	margin-top:15px;
	-webkit-transition:  0.2s;
  	transition:  0.2s;
	
}
.menu_desktop_item{
	float:right;
	font-size:12px;
	border-right:1px solid #dbe1e2;
	margin-right:20px;
	padding-bottom:3px;
	-webkit-transition:  0.2s;
  	transition:  0.2s;
}
.menu_desktop_item .menu_desktop_item_titulo{
	font-size:12px;
	padding-top:6px;
	vertical-align:middle;
	color:#00a1b0;
	box-sizing:border-box;
	padding-bottom:8px;
	padding-left:30px;
	font-family:'robotobold';
	-webkit-transition:  0.2s;
  	transition:  0.2s;
}
.menu_desktop_item .menu_desktop_item_titulo[icono="1"]{
	background-image:url(../img/menu_ico_1.png);
	background-repeat:no-repeat;
	background-position:left  center;
}
.menu_desktop_item .menu_desktop_item_titulo[icono="2"]{
	background-image:url(../img/menu_ico_2.png);
	background-repeat:no-repeat;
	background-position:left  center;
}
.menu_desktop_item .menu_desktop_item_titulo[icono="3"]{
	background-image:url(../img/menu_ico_3.png);
	background-repeat:no-repeat;
	background-position:left  center;
}

.menu_desktop_item .menu_desktop_item_btn{
	display:inline-block;
	margin-right:15px;
	cursor:pointer;
	border-bottom: 1px dotted #f3f9fa;
	-webkit-transition:  0.2s;
  	transition:  0.2s;
}
.menu_desktop_item .menu_desktop_item_btn:hover, .menu_desktop_item .menu_desktop_item_btn:active{
	color:#00a1b0;
	border-bottom: 1px dotted #00a1b0;
}
.menu_desktop_item .menu_desktop_item_btn[estado="seleccionado"]{
	color:#00a1b0;
	border-bottom: 1px dotted #00a1b0;
}


.menu_mobile{
	position:fixed;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	background: #3797a8;
	background: -moz-linear-gradient(45deg, #3797a8 1%, #215f66 100%);
	background: -webkit-linear-gradient(45deg, #3797a8 1%,#215f66 100%);
	background: linear-gradient(45deg, #3797a8 1%,#215f66 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3797a8', endColorstr='#215f66',GradientType=1 );
	z-index:5000;
	color:#fff;
}
.menu_mobile_cont{
	position:fixed;
	top:50px;
	left:0px;
	bottom:0px;
	right:0px;
	background-color:rgba(0,0,0,0.2);
	overflow:auto;
	box-sizing:border-box;
	padding:20px;
	padding-top:0px;
	padding-bottom:40px;
	text-align:center;
}
.menu_mobile_btn_titulo{
	font-size:26px;
	padding-bottom:10px;
	max-width:500px; 
	margin:auto;
	padding-top:40px;
}

.menu_mobile_btn{
	width:30px;
	height:30px;
	box-sizing:border-box;
	border:1px solid #00a1b0;
	position:absolute;
	top:10px;
	right:10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: transparent;
	background-image:url(../img/menu_ico_4.png);
	background-repeat:no-repeat;
	background-position:center center;
	-webkit-transition:  0.2s;
  	transition:  0.2s;
	cursor:pointer;
	display:none;
	outline:none;
}
.menu_mobile_btn:hover, .menu_mobile_btn:active{
	background-color:#00a1b0;
	background-image:url(../img/menu_ico_4_b.png);
}

.menu_mobile_btn_b{
	width:30px;
	height:30px;
	box-sizing:border-box;
	border:1px solid #fff;
	position:absolute;
	top:10px;
	right:10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: transparent;
	background-image:url(../img/menu_ico_5_b.png);
	background-repeat:no-repeat;
	background-position:center center;
	-webkit-transition:  0.2s;
  	transition:  0.2s;
	cursor:pointer;
	outline:none;
}
.menu_mobile_btn_b:hover, .menu_mobile_btn_b:active{
	background-color:#fff;
	background-image:url(../img/menu_ico_5.png);
}

.menu_mobile_btn_item{
	width:100%;
	margin:auto;
	margin-top:12px;
	color:#fff;
	cursor:pointer;
	
	box-sizing:border-box;
	padding:5px;
	padding-left:20px;
	padding-right:20px;
	border:1px solid rgba(255,255,255,0.5);
	
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	
	
	-webkit-transition: 0.2s;
  	transition: 0.2s;
	
	text-transform:uppercase;
	max-width:500px; 

}
.menu_mobile_btn_item:hover, .menu_mobile_btn_item:active {
	background-color:rgba(255,255,255,0.1);
}

body{
	-webkit-transition:  0.2s;
  	transition:  0.2s;
}
@media (max-width: 1080px) {
	body{
		padding-top:50px;
	}
	.cabecera{
		height:50px;
	}
	.menu_desktop_cont{
		display:none;
	}

	.logo_b{
		top:11px;
	}
	.menu_mobile_btn{
		display:block;
	}
}



.index_cont{
	position:relative;
	width:100%;
	height:100%;
	min-height: -moz-calc(100% - 80px);
    min-height: -webkit-calc(100% - 80px);
    min-height: calc(100% - 80px);
	box-sizing:border-box;
	padding-top:150px;
	padding-bottom:150px;
	-webkit-transition:  0.2s;
  	transition:  0.2s;
	display:table;
}
@media (max-width: 1080px) {
	.index_cont{
		min-height: -moz-calc(100% - 50px);
		min-height: -webkit-calc(100% - 50px);
		min-height: calc(100% - 50px);
	}
}
@media (max-width: 400px) {
	.index_cont{
		height:700px !important;
		width:400px !important;
	}
	.logo_b{
		height:50px;
		left:0px;
	}
	.lightbox_cont{
		width: 100%;
		height:100%
	}
	body {
		width:100%;
	}	
}

.index_cont_izq{
	position:relative;
	width:50%;
	float:left;
}
.index_cont_der{
	width:50%;
	float:left;
}

@media (max-width: 1080px) {
	.index_cont_izq{
		width:100%;
		float:none;
		text-align:center;
	}
	.index_cont_der{
		box-sizing:border-box;
		padding-top:50px;
		padding-left:20px;
		padding-right:20px;
		width:100%;
		max-width:600px;
		margin:auto;
		float:none;
	}
}

.index_cont_titulo{
	color:#3c3950;
	font-size:35px;
	margin-bottom:5px;
}
.index_cont_titulo span{
	color:#a6a4b2;
}

.index_cont_subtitulo{
	color:#00a1b0;
	font-size:18px;
	margin-bottom:10px;
}
.index_cont_subtitulo[icono="1"]{
	background:url(../img/menu_ico_1.png);
	background-repeat:no-repeat;
	background-position:left top 3px;
	padding-left:30px;
}
.index_cont_subtitulo[icono="2"]{
	background:url(../img/menu_ico_2.png);
	background-repeat:no-repeat;
	background-position:left top 3px;
	padding-left:30px;
}
.index_cont_subtitulo[icono="3"]{
	background:url(../img/menu_ico_3.png);
	background-repeat:no-repeat;
	background-position:left top 3px;
	padding-left:30px;
}
.index_cont_desc{
	color:#a6a6a6;
	margin-top:20px;
}
.index_cont_btn{
	box-sizing:border-box;
	padding:10px;
	padding-left:15px;
	padding-right:15px;
	margin-top:30px;
	border:2px solid #3797a8;
	color:#3797a8;
	-webkit-border-radius: 55px;
	-moz-border-radius: 55px;
	border-radius: 55px;
	text-align:center;
	cursor: pointer;
	font-family: 'robotobold';
	-webkit-transition:  0.2s;
  	transition:  0.2s;
}
.index_cont_btn:hover, .index_cont_btn:active{
	background-color:#3797a8;
	color:#fff;

}
.background{
	position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #FFF;
    z-index: 500;
    overflow: auto;
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: hidden;
    background-image: url(../img/background.jpg);
}
.lightbox_cont{
	position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #FFF;
    z-index: 500;
    overflow: auto;
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: hidden;
}


.lightbox_cont .lightbox_cerrar{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background:url(../img/lightbox_cerrar.png);
	background-size:40px;
	cursor: pointer !important;
	overflow:hidden;
}
.lightbox_pantalla{
	position:relative;
	left: 0px;
	width:371px;
	height:751px;
	background:url(../img/movil.png);
	background-repeat:no-repeat;
	margin-top:20px;
	overflow:hidden;
}
.lightbox_pantalla_cont{
    width: 333px;
    height: 663px;
    position: absolute;
    top: 47px;
    left: 19px;
    background: #fbfaff;
	overflow:hidden;
}

@media (max-width: 1080px) {
		top:50px;
	}
}

@keyframes preroll_fx_1 {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-15px);
	}
	100% {
		transform: translatey(0px);
	}
}
@keyframes preroll_fx_2 {
	0% {
		width:0%;
	}
	100% {
		/*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
		width:100%;
	}
}
@keyframes preroll_fx_3 {
	0% {
		transform: translatex(0px);
	}
	50% {
		transform: translatex(+15px);
	}
	100% {
		transform: translatex(0px);
	}
}
@keyframes preroll_fx_3_invertido {
	0% {
		transform: translatex(0px);
	}
	}
	50% {
		transform: translatex(-15px);
	}
	100% {
		transform: translatex(0px);
	}
}

.centrado{
	position:absolute;
	top:150px;
	left:0px;
	bottom:150px;
	right:0px;
}
@media (max-width: 1080px) {
	.centrado{
		top:50px;
		left:0px;
		bottom:50px;
	}
}


.img_index_desktop{
	width:100%;
	max-width:600px;
	cursor:pointer;
}
.img_index_tablet{
	width:100%;
	max-width:472px;
	cursor:pointer;
}
.img_index_mobile{
	width:333px;
	max-width:333px;
	cursor:pointer;
}

.contenedor_movil{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.movil{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 402px;
    height: 778px;
    z-index: -1;
    transition: 0.5s;
    background: url(../img/movil.png);
    background-repeat: no-repeat;
}
.contenedor_video{
	position: relative;
    overflow: hidden;
    left: 50%;
    top: 50%;
    width: 402px;
    height: 778px;
    margin-left: -198px;
    margin-top: -366px;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
@media (max-height: 1080px) {
	.contenedor_video{
		transform: scale(1);
		top:49%;
	}
}
@media (max-height: 1050px) {
	.contenedor_video{
		transform: scale(1);
		top:50%;
	}
}
@media (max-height: 900px) {
	.contenedor_video{
		transform: scale(0.85);
	}
}
@media (max-height: 768px) {
	.contenedor_video{
		transform: scale(0.75);
	}
}
@media (max-height: 667px) {
	.contenedor_video{
		transform: scale(0.67);
	}
}
@media (max-height: 640px) {
	.contenedor_video{
		transform: scale(0.56);
}
	}
}
@media (max-height: 570px) {
	.contenedor_video{
		transform: scale(0.52);
	}
}

@media (max-height: 500px) {
	.contenedor_video{
		transform: scale(0.48);
	}
}

@media (max-height: 414px) {
	.contenedor_video{
		transform: scale(0.38);
	}
}
@media (max-height: 375px) {
	.contenedor_video{
		transform: scale(0.37);
	}
}
@media (max-height: 360px) {
	.contenedor_video{
		transform: scale(0.32);
	}
}
@media (max-height: 320px) {
	.contenedor_video{
		transform: scale(0.3);
	}
}


.banner{
    width: 370px;
    height: 748px;
    z-index: 1;
    background-color: transparent;
    border-radius: 28px;
    margin-top: 2px;
	
}
::-webkit-scrollbar {
    display: none;
}
.carcasa{
	position:absolute;
	top:0px;
	pointer-events: none;
}
.tapa{
	position:absolute;
	top:0px;
	pointer-events: none;
	z-index: -1;
}

.id_cont_mobile{
	display:none;
}

.ark_imagen_bg {
    background-image: url(../img/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
@media (max-width: 400px) {
	.ark_imagen_bg{
    top: 0%;
    left: 0%;		
	}
}
@media (max-width: 1080px) {
	.id_cont_desktop{
		display:none;
	}
	.id_cont_mobile{
		display:block;
	}
}
.ark_interact_video{
    position: absolute;
    left: 16px;
    top: 15px;
    width: 370px;
    height: 750px;
    overflow: hidden;
    z-index: 1;
    border-radius: 28px;

}