<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
body{
	min-height: 100vh;
	min-height: -webkit-fill-available;
	transition: background 2s;
	background: #c669b9;
}
html {
	height: -webkit-fill-available;
}
@media (max-width: 768px ){
	.s36 {
		font-size: 28px;
		line-height: 1.4;
	}
}
.main-container {
	position: relative;
	width: 100%;
	height: 300px;
	top: 0;
	left: 0;
	transition: .2s;
	/*overflow: hidden;*/
	max-width: 100%;
	min-height: 700px;
}
@media screen and (max-height: 650px){
	.main-container {
		min-height: 550px;
	}
}
.planet-container {
	position: absolute;
	width: 2000px;
	height: 2000px;
	top: 40%;
	left: 50%;
	transition: all 2s;
	transform: translate(-50%, -30%) rotate(0deg);
	background-image: url('../images/Planeta1.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 3;
	/* -webkit-animation: spin 120s infinite linear; */
}
.planet-container2 {
	position: absolute;
	width: 2000px;
	height: 2000px;
	top: 214%;
	/* top: 40%; */
	left: 50%;
	transition: all 2s;
	transform: translate(-50%, -30%) rotate(0deg);
	background-image: url('../images/planeta2/tiny-planet-2.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 3;
	display: none;
	/* -webkit-animation: spin 120s infinite linear; */
}
@media (max-width: 1280px){
	.planet-container {
		top: 40%;
	}
	.planet-container2 {
		top: 40%;
	}
}
@media (max-width: 1024px){
	.planet-container {
		top: 50%;
	}
	.planet-container2 {
		top: 50%;
	}
}
@media (max-width: 500px){
	.planet-container {
		top: 50%;
	}
	.planet-container2 {
		top: 50%;
	}
	.main-container {
		min-height: 500px;
	}
}
.headerPreguntas{
	background: #072146;
	color: #fff;
	margin: 0px;
	padding: 0px;
	width: 100%;
	/* position: relative; */
	position: fixed;
	z-index: 99999;
	height: 70px;
	display: flex;
	align-items: center;
	align-content: center;
}
.headerPreguntas .inner{
	position: relative;
	width: 90%;
	max-width: 1170px;
	margin: 0px auto;
	display: flex;
}
.headerPreguntas img{
	max-width: 100px;
	height: auto;
}
@media (max-width: 768px){
	.main-container {
		height: 130px;
	}
}
@media (max-width: 350px){
	.main-container {
		height: 130px;
		transform: scale(0.6);
	}
}
/******************************/
/** Navigation **/
/*****************************/
.nav-btn{
	width: 26px;
	height: 26px;
	background-image: url(../images/nav.svg);
	background-repeat: no-repeat;
	border: none;
	background-color: var(--navy-blue);
	color: #fff;
	outline: none;
	cursor: pointer;
}
.nav-btn:focus{
	outline: none;
}
.nav-close{
	background-image: url(../images/icn-close-white.svg);
	background-size: 18px;
}
/* .nav-open{
	background-image: url(../images);
} */
@-webkit-keyframes slideInLeft {
0% {
	transform: translate3d(-250px, 0, 0);
	visibility: visible;
}
100% {
	transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
0% {
	transform: translate3d(-250px, 0, 0);
	visibility: visible;
}
100% {
	transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes slideOutLeft {
0% {
	transform: translate3d(0, 0, 0);
}
100% {
	transform: translate3d(-250px, 0, 0);
	visibility: hidden;
}
}
@keyframes slideOutLeft {
0% {
	transform: translate3d(0, 0, 0);
}
100% {
	transform: translate3d(-250px, 0, 0);
	visibility: hidden;
}
}
.overlay{
position: fixed;
top: 0;
right: 0;
left: 0;
bottom: 0;
z-index: 3;
/* background: rgba(238,238,238,.0); */
pointer-events: none;

}
.menu-content {
background: var(--navy-blue);
content: "";
height: 100%;
right: -50%;
/* right: 0%; */
opacity: 0;
overflow: auto;
padding: 0;
position: fixed;
top: 0;
transition: all 0.4s ease;
width: 100%;
pointer-events: none;
}
.menu-content.open {
overflow: hidden;
top: 70px;
}
.menu-content.open {
opacity: 1;
visibility: visible;
right: 0;
z-index: 2;
pointer-events: all;
top: 70px;
}
.b-nav {
position: absolute;
z-index: 11;
}
.b-nav:not(.open) {
visibility: hidden;
}
.b-nav li {
color: #fff;
list-style-type: none;
padding: 10px;
text-align: left;
transform: translateX(250px);
text-align: center;
}
.b-nav li:first-child {
padding-top: 120px;
}
.b-nav.open {
visibility: visible;
width: 100%;
}
.b-nav.open ul {
	margin: 0;
	padding: 0;
}
.b-nav.open li {
-webkit-animation-duration: 0.2s;
		animation-duration: 0.2s;
-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
-webkit-animation-name: slideInLeft;
		animation-name: slideInLeft;
}
.b-link {
background: transparent;
color: #fff;
font-size: 20px;
font-weight: 300;
text-decoration: none;
transition: all 0.4s ease;
width: auto;
cursor: pointer;
}
.b-link:hover, .b-link--active {
	color: var(--sky-blue);
	text-decoration: none;
}
.b-menu {
background: var(--navy-blue);
border: var(--navy-blue) solid 2px;
border-radius: 50%;
cursor: pointer;
display: inline-block;
height: 50px;
padding-left: 13px;
padding-top: 14px;
position: relative;
transition: all 0.4s ease;
-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
		user-select: none;
width: 50px;
z-index: 12;
}
.b-menu:hover {
border: var(--navy-blue) solid 2px;
}
.b-container {
height: 70px;
right: 4px;
position: absolute;
top: -10px;
z-index: 3;
}
.b-container:hover:not(.open) .bun-top,
.b-container:hover:not(.open) .bun-mid,
.b-container:hover:not(.open) .bun-bottom {
background: white;
}
.b-container.open .b-main {
border: var(--navy-blue) solid 2px;
}
.b-container.open .b-brand {
color: #fff;
}
@media (max-width: 768px){
	.b-link {
		font-size: 18px;
	}
}
/******************************/
/** Bar regresa **/
/*****************************/
.regresar_container{
	width: 100%;
	padding: 10px;
	background: rgba(255, 255, 255, 0.8);
	position: fixed;
	top: 26px;
	z-index: 9999;
	transition: all 1s;
}
#regresar_btn{
	cursor: pointer;
	padding-left: 20px;
	color: var(--navy-blue);
}
#regresar_btn:hover {
	color: var(--core-blue-dark);
}
.back-icn{
	position: absolute;
    left: -6px;
	top: -1px;
}
/******************************/
/** Info Home Container **/
/*****************************/
#info_home{
	z-index: 4;
}
#info_home2{
	z-index: 4;
	display: none;
}
/******************************/
/** Botones Home **/
/*****************************/
#container_buttons_planetas{
	width: 284px;
	height: 54px;
	position: relative;
	margin: 20px auto 0;
	border-radius: 6px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	background: #1973b8;
	padding: 8px;
	box-sizing: border-box;
	z-index: 5;
}
#container_buttons_planetas #button_como {
	background-color: #072146;
	border-radius: 6px;
	padding: 8px 28px;
	cursor: pointer;
}
#container_buttons_planetas #button_donde {
	background-color: #072146;
	border-radius: 6px;
	padding: 8px 28px;
	margin-left: 10px;
	cursor: pointer;
}
#container_buttons_planetas .active{
	background-color: var(--darkish-blue) !important;
}

#container_buttons_planetas #button_como:hover {
	background-color: var(--darkish-blue);
}
#container_buttons_planetas #button_donde:hover {
	background-color: var(--darkish-blue);
}
@media (max-width: 380px){
	#container_buttons_planetas {
		padding: 8px;
	}
}
/******************************/
/** Texto home **/
/*****************************/
#txt_home{
	max-width: 676px;
	width: 90%;
	height: auto;
	margin: 100px auto 0;
	padding: 0;
	z-index: 9;
	text-align: center;
}
@media (max-width: 768px){
	#txt_home{
		margin: 100px auto 0;
	}
	#txt_home .s32{
		font-size: 22px;
	}
	#txt_home .s24{
		font-size: 18px;
	}
}
@media (max-width: 380px){
	#txt_home .s20 {
		font-size: 15px;
	}
}
/******************************/
/** Navegacion Planeta 1 **/
/*****************************/
#container_arrows2{
	display: none;
}
.container_arrows{
	width: 150px;
	height: 50px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 20px;
	z-index: 11;
	display: flex;
	flex-wrap: nowrap;
	text-align: center;
	align-items: center;
	z-index: 9;
}
.bullet_current_index{
	padding: 10px;
	border-radius: 8px;
	background: var(--navy-blue);
	width: 58px;
	text-align: center;
}
#planet1_nav_left {
	cursor: pointer;
}
#planet1_nav_right {
	cursor: pointer;
}
@media (max-width: 350px){
	.container_arrows {
		bottom: 20px;
	}
}

/* Rotacion */
@-moz-keyframes spin {
    0% {
		transform: translate(-50%, -30%) rotateZ(0);
	}
	25% {
		transform: translate(-50%, -30%) rotateZ(90deg);
	}
	50% {
		transform: translate(-50%, -30%) rotateZ(180deg);
	}
	75% {
		transform: translate(-50%, -30%) rotateZ(270deg);
	}
	100% {
		transform: translate(-50%, -30%) rotateZ(360deg);
	}
}
@keyframes spin180 {
    0% {
		transform: translate(-50%, -30%) rotateZ(0);
	}
	50% {
		transform: translate(-50%, -30%) rotateZ(90deg);
	}
	100% {
		transform: translate(-50%, -30%) rotateZ(180deg);
	}
}
@-webkit-keyframes spin {
    0% {
		transform: translate(-50%, -30%) rotateZ(0);
	}
	25% {
		transform: translate(-50%, -30%) rotateZ(90deg);
	}
	50% {
		transform: translate(-50%, -30%) rotateZ(180deg);
	}
	75% {
		transform: translate(-50%, -30%) rotateZ(270deg);
	}
	100% {
		transform: translate(-50%, -30%) rotateZ(360deg);
	}
}
@keyframes spin {
	0% {
		transform: translate(-50%, -30%) rotateZ(0);
	}
	25% {
		transform: translate(-50%, -30%) rotateZ(90deg);
	}
	50% {
		transform: translate(-50%, -30%) rotateZ(180deg);
	}
	75% {
		transform: translate(-50%, -30%) rotateZ(270deg);
	}
	100% {
		transform: translate(-50%, -30%) rotateZ(360deg);
	}
}
#pregunta_1,#pregunta_2,#pregunta_3,#pregunta_4,#pregunta_5,#pregunta_6, #globo_7, #globo_8, #globo_9, #globo_10, #globo_11, #globo_12, #globo_13, #globo_14, #globo_15, #globo_16, #pregunta_17{
	animation: all 1s;
}
#pregunta_1:hover{
	transform: scale(1.1) rotate(134deg);
}
#pregunta_2:hover {
	transform: scale(1.1) rotate(0deg);
}
#pregunta_3:hover {
	transform: scale(1.1) rotate(83deg);
}
#pregunta_4:hover {
	transform: scale(1.1) rotate(45deg);
}
#pregunta_5:hover {
	transform: scale(1.1) rotate(-136deg);
}
#pregunta_6:hover {
	transform: scale(1.1) rotate(-170deg);
}
#pregunta_17:hover {
	transform: scale(1.1) rotate(270deg);
}

#globo_7:hover{
	transform: scale(1.1) rotate(-90deg);
}
#globo_8:hover {
	transform: scale(1.1) rotate(-45deg);
}
#globo_9:hover {
	transform: scale(1.1) rotate(-134deg);
}
#globo_10:hover {
	transform: scale(1.1) rotate(90deg);
}
#globo_11:hover {
	transform: scale(1.1) rotate(4deg);
}
#globo_12:hover {
	transform: scale(1.1) rotate(43deg);
}
#globo_13:hover {
	transform: scale(1.1) rotate(92deg);
}
#globo_14:hover {
	transform: scale(1.1) rotate(136deg);
}
#globo_15:hover {
	transform: scale(1.1) rotate(179deg);
}
#globo_16:hover {
	transform: scale(1.1) rotate(180deg);
}





.people-1{
	position: absolute;
    top: 61%;
    left: 55.5%;
    transform: rotate(133deg);
	background: url('../images/h-pregunta-1.png');
	background-position: center;
	background-repeat: no-repeat;
	width: 230px;
	height: 200px;
}
#pregunta_1{
	position: absolute;
    top: 66%;
    left: 61.5%;
    transform: rotate(134deg);
	width: 165px;
	height: 131px;
	background: url('../images/pregunta-1.png');
	background-repeat: no-repeat;
	cursor: pointer;
}
.people-2{
	position: absolute;
	top: 24%;
	left: 46.5%;
	transform: rotate(0deg);
	background: url('../images/h-pregunta-2.png');
	background-position: center;
	background-repeat: no-repeat;
	width: 70px;
	height: 208px;
}
#pregunta_2{
	position: absolute;
	top: 20%;
	left: 48%;
	transform: rotate(0deg);
	width: 169px;
	height: 103px;
	background: url('../images/pregunta-2.png');
	background-repeat: no-repeat;
	cursor: pointer;
}
.people-3{
	position: absolute;
    top: 57%;
    left: 30.5%;
    transform: rotate(-133deg);
	background: url('../images/humano-5.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 90%;
	width: 240px;
	height: 220px;
}
#pregunta_5{
	position: absolute;
	top: 62%;
    left: 27.5%;
    transform: rotate(-136deg);
	width: 169px;
	height: 143px;
	background: url('../images/pregunta5.png');
	background-repeat: no-repeat;
	cursor: pointer;
}
.people-4{
	position: absolute;
	top: 65%;
	left: 39.5%;
	transform: rotate(-165deg);
	background: url('../images/humano-4.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80%;
	width: 240px;
	height: 220px;
}
#pregunta_6{
	position: absolute;
	top: 73%;
	left: 45%;
	transform: rotate(-170deg);
	width: 169px;
	height: 143px;
	background: url('../images/pregunta6.png');
	background-repeat: no-repeat;
	cursor: pointer;
}
.torre-bbva{
	position: absolute;
    top: 30%;
    left: 58.5%;
    transform: rotate(45deg);
	background: url('../images/torre-bbva.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80%;
	width: 240px;
	height: 220px;
}
#pregunta_4 {
	position: absolute;
    top: 29%;
    left: 67.5%;
    transform: rotate(45deg);
	width: 199px;
	height: 125px;
	background: url('../images/pregunta-extra2b.png');
	background-repeat: no-repeat;
	cursor: pointer;
}
.people-5{
	position: absolute;
	top: 46.5%;
    left: 62%;
    transform: rotate(78deg);
	background: url('../images/h-pregunta-3.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80%;
	width: 240px;
	height: 220px;
}
#pregunta_3{
	position: absolute;
	top: 47%;
    left: 69.2%;
    transform: rotate(83deg);
	width: 198px;
	height: 129px;
	background: url('../images/pregunta-3.png');
	background-repeat: no-repeat;
	cursor: pointer;
}

.people-17{
	position: absolute;
	top: 46%;
    left: 25.5%;
    transform: rotate(250deg);
	background: url('../images/h-pregunta-17.png');
	background-position: center;
	background-repeat: no-repeat;
	width: 230px;
	height: 200px;
	background-size: 84%;
}
#pregunta_17{
	position: absolute;
    top: 46.5%;
    left: 20.4%;
    transform: rotate(270deg);
	width: 185px;
	height: 131px;
	background: url('../images/pregunta-17.png');
	background-repeat: no-repeat;
	cursor: pointer;
}

.btn-1 {
	position: absolute;
	top: 25%;
	left: 50%;
	transform: rotate(0deg);
}

.btn-2 {
	position: absolute;
	bottom: 25%;
	left: 50%;
	transform: rotate(180deg);
}

.btn-3 {
	position: absolute;
	left: 25%;
	top: 50%;
	transform: rotate(-90deg);
}

.btn-4 {
	position: absolute;
	right: 20%;
	top: 50%;
	transform: rotate(90deg);
}

.section-nav {
	position: relative;
	z-index: 1002;
}
.section-swiper {
	position: relative;
	height: 0;
	transition: .8s;
	max-width: 100%;
	z-index: 1001;
}

#swiper-planetas .swiper-container {
	width: 100%;
	height: 100%;
}

#swiper-planetas .swiper-slide {
	text-align: center;
	font-size: 18px;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}


/******************************/
/** People and Categories Mundo 2 **/
/*****************************/
.people-7{
	position: absolute;
	top: 45%;
    left: 25%;
    transform: rotate(-73deg);
	background: url('../images/planeta2/01_Departamentales_Elemento.png');
	background-position: center;
	background-repeat: no-repeat;
	width: 230px;
	height: 200px;
}
#globo_7{
	position: absolute;
	top: 47%;
    left: 21.5%;
    transform: rotate(-90deg);
	width: 195px;
	height: 131px;
	background: url('../images/planeta2/01_Departamentales_GloboTexto.png');
	background-repeat: no-repeat;
	cursor: pointer;
}
.people-8{
	position: absolute;
    top: 30%;
    left: 32.5%;
    transform: rotate(-42deg);
	background: url('../images/planeta2/02_Autoservicios_Elemento.png');
	background-position: center;
	background-repeat: no-repeat;
	width: 70px;
	height: 208px;
}
#globo_8{
	position: absolute;
	top: 28%;
    left: 28%;
    transform: rotate(-45deg);
	width: 169px;
	height: 103px;
	background: url('../images/planeta2/02_Autoservicios_GloboTexto.png');
	background-repeat: no-repeat;
	cursor: pointer;
}

.people-9{
	position: absolute;
	top: 60%;
    left: 29.9%;
    transform: rotate(-138deg);
	background: url('../images/planeta2/10_BBVA_Elemento.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 60%;
	width: 240px;
	height: 220px;
}
#globo_9{
	position: absolute;
	top: 58%;
    left: 26.1%;
    transform: rotate(-134deg);
	width: 169px;
	height: 143px;
	background: url('../images/planeta2/10_BBVA_GloboTexto.png');
	background-repeat: no-repeat;
	cursor: pointer;
}
.people-10{
	position: absolute;
    top: 38%;
    left: 64.5%;
    transform: rotate(85deg);
	background: url('../images/planeta2/05_Farmacias_Elemento.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 15%;
	width: 240px;
	height: 220px;
}
#globo_10{
	position: absolute;
	top: 45%;
    left: 68.5%;
    transform: rotate(90deg);
	width: 169px;
	height: 143px;
	background: url('../images/planeta2/05_Salud_GloboTexto.png');
	background-repeat: no-repeat;
	cursor: pointer;
}
.people-11{
	position: absolute;
    position: absolute;
    top: 18%;
    left: 40.5%;
    transform: rotate(-15deg);
	background: url('../images/planeta2/03_Viajes_Elemento.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 60%;
	width: 240px;
	height: 220px;
}
#globo_11 {
	position: absolute;
	top: 20.3%;
    left: 50%;
    transform: rotate(4deg);
	width: 169px;
	height: 103px;
	background: url('../images/planeta2/03_Viajes_GloboTexto.png');
	background-repeat: no-repeat;
	cursor: pointer;
}
.people-12{
	position: absolute;
	top: 28%;
    left: 57%;
    transform: rotate(42deg);
	background: url('../images/planeta2/04_Tecnologia_Elemento.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80%;
	width: 240px;
	height: 220px;
}
#globo_12{
	position: absolute;
    top: 33%;
    left: 62.1%;
    transform: rotate(43deg);
	width: 198px;
	height: 129px;
	background: url('../images/planeta2/04_Tecnologia_GloboTexto.png');
	background-repeat: no-repeat;
	cursor: pointer;
}

.people-13{
	position: absolute;
	top: 50%;
    left: 64%;
    transform: rotate(97deg);
	background: url('../images/planeta2/06_Servicios_Elemento.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80%;
	width: 240px;
	height: 220px;
}
#globo_13{
	position: absolute;
	top: 53.5%;
    left: 69.0%;
    transform: rotate(92deg);
	width: 198px;
	height: 129px;
	background: url('../images/planeta2/06_Servicios_GloboTexto.png');
	background-repeat: no-repeat;
	cursor: pointer;
}

.people-14{
	position: absolute;
    top: 59.5%;
    left: 58%;
    transform: rotate(137deg);
	background: url('../images/planeta2/07_Ecommerce_Elemento.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 43%;
	width: 240px;
	height: 220px;
}
#globo_14{
	position: absolute;
	top: 65%;
    left: 62.0%;
    transform: rotate(136deg);
	width: 198px;
	height: 129px;
	background: url('../images/planeta2/07_Ecommerce_GloboTexto.png');
	background-repeat: no-repeat;
	cursor: pointer;
}

.people-15{
	position: absolute;
	top: 64%;
    left: 49%;
    transform: rotate(194deg);
	background: url('../images/planeta2/08_Deportes_Elemento.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 55%;
	width: 240px;
	height: 220px;
}
#globo_15{
	position: absolute;
	top: 70%;
    left: 46.5%;
    transform: rotate(179deg);
	width: 198px;
	height: 129px;
	background: url('../images/planeta2/08_Deportes_GloboTexto.png');
	background-repeat: no-repeat;
	cursor: pointer;
}

.people-16{
	position: absolute;
	top: 64%;
    left: 38.5%;
    transform: rotate(195deg);
	background: url('../images/planeta2/09_Seguros_Elemento.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 63%;
	width: 240px;
	height: 220px;
}
#globo_16{
	position: absolute;
	top: 68%;
    left: 38.5%;
    transform: rotate(180deg);
	width: 198px;
	height: 129px;
	background: url('../images/planeta2/09_Seguros_GloboTexto.png');
	background-repeat: no-repeat;
	cursor: pointer;
}

/******************************/
/** Respuestas planeta 1 **/
/*****************************/
#respuesta1_p1{
	background: #f17c29;
	background-image: url('../images/nubes.png');
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	height: 100vh;
	z-index: 1;
	overflow-y: scroll;
	transition: opacity .15s;
	opacity: 0;
	pointer-events: none;
}
.fondo1_p1{
	height: 300px;
	margin: 0px auto;
	left: 0;
	right: 0;
	padding: 0px;
	background: url('../images/respuesta-1.png');
	background-repeat: no-repeat;
	background-size: 800px;
	position: relative;
	bottom: -20px;
	background-position: center top;
}
.arrow-back{
	width: 79px;
	height: 50px;
	position: absolute;
	z-index: 70;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	background: url('../images/btn-regresar.png') no-repeat;
	bottom: 0px;
	transition: all 1s;
	cursor: pointer;
	opacity: 0;
}
#respuesta1_p1 .text-container{
	width: 90%;
	max-width: 440px;
	position: relative;
	margin-top: 140px;
	left: 50%;
	color: #fff;
	margin-bottom: 50px;
}
#respuesta1_p1 .text-container h2{
	font-size: 36px;
	font-family: 'BentonSansBBVA-Bold';
}
#respuesta1_p1 .text-container .separator{
	width: 100%;
	height: 5px;
	background: #fff;
	margin: 20px 0;
}
#respuesta1_p1 .text-container p{
	font-size: 20px;
	font-family: 'BentonSansBBVA-Book';
}
@media (max-width: 1024px){
	#respuesta1_p1 .text-container{
		width: 90%;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
		left: 0;
	}
}
@media (min-height: 789px ){
	#respuesta1_p1 .text-container{
		margin-bottom: 50px;
	}
	.fondo1_p1{
		position: absolute;
	}
}
/******************************/
/** Respuesta 2 **/
/*****************************/
#respuesta2_p1{
	background: #e77d8e;
	background-image: url('../images/nubes.png');
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	height: 100vh;
	z-index: 1;
	overflow-y: scroll;
	transition: opacity .15s;
	opacity: 0;
	pointer-events: none;
	/* padding-bottom: 300px; */
}
.fondo1_p2{
	height: 300px;
	margin: 0px auto;
	left: 0;
	right: 0;
	padding: 0px;
	background: url('../images/respuesta-2.png');
	background-repeat: no-repeat;
	background-size: 800px;
	position: relative;
	bottom: -20px;
	background-position: center top;
}
#respuesta2_p1 .text-container{
	width: 90%;
	max-width: 440px;
	position: relative;
	margin-top: 140px;
	left: 50%;
	color: #fff;
	margin-bottom: 50px;
}
#respuesta2_p1 .text-container h2{
	font-size: 36px;
	font-family: 'BentonSansBBVA-Bold';
}
#respuesta2_p1 .text-container .separator{
	width: 100%;
	height: 5px;
	background: #fff;
	margin: 20px 0;
}
#respuesta2_p1 .text-container p{
	font-size: 20px;
	font-family: 'BentonSansBBVA-Book';
}
@media (max-width: 1024px){
	#respuesta2_p1 .text-container{
		width: 90%;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
		left: 0;
	}
}
@media (min-height: 789px ){
	#respuesta2_p1 .text-container{
		margin-bottom: 200px;
	}
	.fondo1_p2{
		position: absolute;
	}
}
/******************************/
/** Respuesta Torre **/
/*****************************/
#respuesta4_p1{
	background: #02a5a5;
	background-image: url('../images/nubes.png');
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	height: 100vh;
	z-index: 1;
	overflow-y: scroll;
	transition: opacity .15s;
	opacity: 0;
	pointer-events: none;
	/* padding-bottom: 300px; */
}
.fondo1_ptorre{
	height: 300px;
	margin: 0px auto;
	left: 0;
	right: 0;
	padding: 0px;
	background: url('../images/respuesta-torre.png');
	background-repeat: no-repeat;
	background-size: 800px;
	position: relative;
	bottom: -20px;
	background-position: center top;
}
#respuesta4_p1 .text-container{
	width: 90%;
	max-width: 550px;
	position: relative;
	margin-top: 140px;
	left: 45%;
	color: #fff;
}
#respuesta4_p1 .text-container .separator{
	width: 100%;
	height: 5px;
	background: #fff;
	margin: 20px 0;
}
@media (max-width: 1024px){
	#respuesta4_p1 .text-container{
		width: 70%;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
		left: 0;
	}
}
@media (min-height: 789px ){
	#respuesta4_p1 .text-container{
		margin-bottom: 100px;
	}
	.fondo1_ptorre {
		position: absolute;
	}
}

/* PEOPLE 5 RESPUESTA 3 */
/******************************/
/** Respuesta 3 **/
/*****************************/
#respuesta3_p1{
	background: #48ae64;
	background-image: url('../images/nubes.png');
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	height: 100vh;
	z-index: 1;
	overflow-y: scroll;
	transition: opacity .15s;
	opacity: 0;
	pointer-events: none;
	/* padding-bottom: 300px; */
}
#respuesta3_p1 .w-100-custom{
	width: 75%;
}
.fondo1_p3{
	position: relative;
	height: 300px;
	margin: 0px auto;
	left: 0;
	right: 0;
	padding: 0px;
	background: url('../images/respuesta-3.png');
	background-repeat: no-repeat;
	background-size: 800px;
	bottom: -20px;
	background-position: center top;
}
#respuesta3_p1 .text-container{
	width: 90%;
	max-width: 780px;
	position: relative;
	margin: 140px auto 0;
	color: #fff;
	padding-bottom: 10px;
}
#respuesta3_p1 .text-container .separator{
	width: 75%;
	height: 5px;
	background: #fff;
	margin: 20px auto;
}
.img-bbva-app{
	max-width: 200px;
	width: 100%;
}
.img-bbva-mx{
	max-width: 300px;
	width: 100%;
}
@media (max-width: 1024px){
	#respuesta3_p1 .text-container{
		width: 94%;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
		left: 0;
	}
	#respuesta3_p1 .w-100-custom{
		width: 100%;
	}
}
@media (min-height: 789px ){
	#respuesta3_p1 .text-container{
		margin-bottom: 10px;
	}
	.fondo1_p3{
		position: absolute;
	}
}
/* PEOPLE 3 RESPUESTA 5 */
/******************************/
/** Respuesta 5 **/
/*****************************/
#respuesta5_p1{
	background: #8f7ae5;
	background-image: url('../images/estrellas.png');
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	height: 100vh;
	z-index: 1;
	overflow-y: scroll;
	transition: opacity .15s;
	opacity: 0;
	pointer-events: none;
	/* padding-bottom: 300px; */
}
.fondo1_p5{
	position: relative;
	height: 300px;
	margin: 0px auto;
	left: 0;
	right: 0;
	padding: 0px;
	background: url('../images/respuesta-5.png');
	background-repeat: no-repeat;
	background-size: 800px;
	bottom: -20px;
	background-position: center top;
}
#respuesta5_p1 .text-container{
	width: 90%;
	max-width: 580px;
	position: relative;
	margin-top: 140px;
	left: 40%;
	color: #fff;
	/* padding-bottom: 250px; */
}
#respuesta5_p1 .text-container .separator{
	width: 100%;
	height: 5px;
	background: #fff;
	margin: 20px 0;
}
@media (max-width: 1024px){
	#respuesta5_p1 .text-container{
		width: 70%;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
		left: 0;
	}
}
@media (min-height: 789px ){
	#respuesta5_p1 .text-container{
		margin-bottom: 10px;
	}
	.fondo1_p5{
		position: absolute;
	}
}
/* accordeon */

#accordion .card{
	background-color: transparent;
	border: 0;
}
#accordion .card-header {
    padding: 0.75rem 0;
    margin-bottom: 0;
    color: inherit;
    background-color: transparent;
    border-bottom: 0px;
}
#accordion button {
	border: none;
	width: 100%;
	text-align: left;
}
#accordion button:hover, #accordion button:active {
	color: unset;
	text-decoration: none;
}
.color1{
	color: #fff;
}
.color2{
	color: #fade8e;
}
.color3{
	color: #072146;
}
#accordion .btn[aria-expanded="true"] {
	/* color: #fade8e; */
	font-family: 'BentonSansBBVA-Medium';
	position: relative;
	/* padding: 0px; */
}
#accordion .btn::after {
	content: "-";
	/* color: #fff; */
	top: 0px;
	right: 0px;
	position: absolute;
	font-family: 'BentonSansBBVA-Medium';
	font-size: 32px;
  }
#accordion .btn[aria-expanded="true"]::after {
	content: "+";
	/* color: #fade8e; */
	font-size: 22px;
}
@media (min-width: 1280px ){
	#respuesta5_p1 .text-container {
		min-height: 400px;
	}
}



/* PEOPLE 3 RESPUESTA 6 */
/******************************/
/** Respuesta 6 **/
/*****************************/
#respuesta6_p1{
	background: #004481;
	background-image: url('../images/firmamento.png');
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	height: 100vh;
	overflow-y: scroll;
	transition: opacity .15s;
	opacity: 0;
	pointer-events: none;
	/* padding-bottom: 300px; */
}
.fondo1_p6{
	position: relative;
	height: 300px;
	margin: 0px auto;
	left: 0;
	right: 0;
	padding: 0px;
	background: url('../images/group_2.png');
	background-repeat: no-repeat;
	background-size: 800px;
	position: relative;
	bottom: -20px;
	background-position: center top;
}
#respuesta6_p1 .text-container{
	width: 90%;
	max-width: 580px;
	position: relative;
	margin-top: 140px;
	left: 40%;
	color: #fff;
	/* padding-bottom: 250px; */
}
#respuesta6_p1 .text-container .separator{
	width: 100%;
	height: 5px;
	background: #fff;
	margin: 20px 0;
}
@media (max-width: 1024px){
	#respuesta6_p1 .text-container{
		width: 70%;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
		left: 0;
	}
}
@media (min-height: 789px ){
	#respuesta6_p1 .text-container{
		margin-bottom: 200px;
	}
}

/* PEOPLE 3 RESPUESTA 6 */
/******************************/
/** Respuesta 7 del MUNDO 1 **/
/*****************************/
#respuesta7_p1{
	background: #c3542f;
	background-image: url('../images/nubes.png');
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	height: 100vh;
	overflow-y: scroll;
	transition: opacity .15s;
	opacity: 0;
	pointer-events: none;
	/* padding-bottom: 300px; */
}
.fondo1_p7{
	position: relative;
	height: 300px;
	margin: 0px auto;
	left: 0;
	right: 0;
	padding: 0px;
	background: url('../images/respuesta-7.png');
	background-repeat: no-repeat;
	background-size: 800px;
	position: relative;
	bottom: -20px;
	background-position: center top;
}
#respuesta7_p1 .text-container{
	width: 90%;
	max-width: 880px;
	position: relative;
	margin: 140px auto 0;
	color: #fff;
	/* padding-bottom: 250px; */
}
#respuesta7_p1 .text-container .separator{
	width: 100%;
	height: 5px;
	background: #fff;
	margin: 20px 0;
}
.tabla-puntos{
	width: 100%;
	text-align: center;
	margin: 0px auto;
}
.tabla-puntos img{
	width: 100%;
	max-width: 727px;
	height: auto;
}
.tabla-de-puntos-mobile{
	display: none;
	margin: 0px auto;
}
.tabla-de-puntos{
	display: block;
	margin: 0px auto;
}
@media (max-width: 1024px){
	#respuesta7_p1 .text-container{
		width: 70%;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
		left: 0;
	}
}
@media (max-width: 768px){
	.tabla-de-puntos-mobile{
		display: block;
	}
	.tabla-de-puntos{
		display: none;
	}
}
@media (min-height: 1150px ){
	.fondo1_p7{
		position: absolute;
	}
}
@media (min-height: 789px ){
	#respuesta7_p1 .text-container{
		margin-bottom: 10px;
	}
}
/******************************/
/** Calculadora **/
/*****************************/
/******************* Simulador section *******************/
#simulador {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 190px 0 72px;
  }
  #puntosField {
    background-color: #f4f4f4;
    height: 49px;
    color: #02a5a5;
    font-family: 'BentonSansBBVA-Bold';
    vertical-align: middle;
    padding: 10px;
    line-height: 30px;
    border: none;
    display: none;
}
#montoAcumulacion{
	display: none;
}
  #textoCantidadMinima {
	margin-top: 10px;
	color: #fd6250;
	text-align: center;
  }
  .selectOne {
	width: 100%;
	font-size: 18px;
	height: 30px;
	max-width: 290px;
	background: #f4f4f4;
	border: none;
	height: 49px;
	font-family: 'BentonSansBBVA-Medium';
	padding: 0 10px !important;
  }
  #divMeses {
	background-color: #f4f4f4;
	height: 49px;
	color: #1973b8;
	font-family: 'BentonSansBBVA-Bold';
	vertical-align: middle;
	padding: 10px;
	line-height: 30px;
	font-size: 20px;
  }
  #ptsF {
	background-color: #f4f4f4;
	height: 49px;
	color: #02a5a5;
	font-family: 'BentonSansBBVA-Bold';
	vertical-align: middle;
	padding: 10px;
	line-height: 30px;
	text-align: left;
	font-size: 20px;
  }
  #ptsN {
	background-color: #f4f4f4;
	height: 49px;
	color: #02a5a5;
	font-family: 'BentonSansBBVA-Bold';
	vertical-align: middle;
	padding: 10px;
	line-height: 30px;
	text-align: left;
	font-size: 20px;
  }
  #ptsD {
	background-color: #f4f4f4;
	height: 49px;
	color: #02a5a5;
	font-family: 'BentonSansBBVA-Bold';
	vertical-align: middle;
	padding: 10px;
	line-height: 30px;
	text-align: left;
	font-size: 20px;
  }
  .textOne {
	width: 100%;
	font-size: 18px;
	height: 30px;
	max-width: 290px;
	background: #f4f4f4;
	border: none;
	height: 49px;
	font-family: 'BentonSansBBVA-Medium';
	padding: 0 10px !important;
  }
  .flexSimulador {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
  }
  .flexTarjeta {
	width: 50%;
	max-width: 176px;
	border-radius: 10px;
	height: 110px;
	background: url('../images/TDC_generica.png');
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0px auto;
  }
  .flexCopyTarjeta {
	width: 50%;
	height: auto;
  }
  .flexCopyTarjeta h3 {
	padding: 0px 20px;
  }
  .flexCopyTarjeta p {
	padding: 0px 20px;
  }
  @media screen and (max-width: 890px) {
	.marginLabel {
	  margin-top: 21px;
	}
  }
  @media screen and (max-width: 1024px) {
	.selectOne {
	  max-width: 100%;
	}
	.textOne {
	  max-width: 100%;
	}
	.row label {
	  width: 100%;
	  text-align: left;
	}
	#simulador {
	  padding: 72px 16px;
	  box-sizing: border-box;
	}
  }


  @media screen and (max-width: 890px) {
	.marginLabel {
	  margin-top: 21px;
	}
  }
  @media screen and (max-width: 1024px) {
	.selectOne {
	  max-width: 100%;
	}
	.textOne {
	  max-width: 100%;
	}
	.row label {
	  width: 100%;
	  text-align: left;
	}
  }
  @media screen and (max-width: 350px) {
	.flexCopyTarjeta h3 {
	  font-size: 24px;
	  padding: 0 0;
	}
	.flexCopyTarjeta p {
	  padding: 0px 0px;
	}
	.flexCopyTarjeta br {
	  display: none;
	}
  }
  /******************* / Simulador section *******************/


  /***********************Brands Block***********************/
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
	background-image: url(../images/icons/icn_forward.svg) !important;
	right: 0px;
	left: auto;
	outline: none;
  }
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
	background-image: url(../images/icons/icn_back.svg) !important;
	left: 0px;
	right: auto;
	outline: none;
  }
  .promociones .swiper-button-next {
	color: transparent;
	right: -13px;
  }
  .promociones .swiper-button-prev {
	color: transparent;
	left: -13px;
  }

  /******************************/
  /** Tooltip Bootstrap element**/
  /*****************************/
  .tooltip{
	  z-index: 5 !important;
  }

.legales{
	width: 90%;
	position: absolute;
	bottom: 100px;
	left: 0; 
	padding-top: 10px;
	right: 0; 
	margin-left: auto; 
	margin-right: auto; 
	border-top: 1px solid rgba(255, 255, 255, 0.3)
}
.legales .s12{
	font-size: 12px;
}
.legales p{
	max-width: 700px;
	width: 100%;
	margin: 0px auto;
	position: relative;
	text-align: center;
}
@media (max-width: 768px ){
	.legales p br{
		display: none;
	}
	.b-nav li:first-child {
		padding-top: 60px;
	}
}
@media screen and (max-height: 600px ) and (min-width: 700px){
	.b-nav {
		position: relative;
	}
	.b-nav li:first-child {
		padding-top: 60px;
	}
	.legales{
		width: 90%;
		position: relative;
		margin-top: 30px;
		bottom: inherit;
		left: 0; 
		padding-top: 10px;
		right: 0; 
		margin-left: auto; 
		margin-right: auto; 
		border-top: 1px solid rgba(255, 255, 255, 0.3)
	}
}

@media (max-width: 330px ){
	.b-link {
		font-size: 15px;
	}
	.b-nav li:first-child {
		padding-top: 20px;
	}
}</pre></body></html>