html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}


::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}


hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}


audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}



fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}


textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/RobotoCondensed-Regular.ttf');
}


* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*:before,
*:after {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    height: auto;
    background: #fff;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}
a:hover {
    text-decoration: none;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999999;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;
}
.loader.is-hidden {
    visibility: hidden;
    opacity: 0;
}
.loader .loader-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
}
.loader .loader-back .logo {
    position: absolute;
    width: 150px;
    color: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: loaderOpacity 1s infinite;
    animation: loaderOpacity 1s infinite;
}
.loader .loader-back .logo img {
    width: 100%;
    display: block;
}

@-webkit-keyframes loaderOpacity {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@keyframes loaderOpacity {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}



.wrapper{
	position: relative;
	display: none;
	width: 100%;
	height: 100%;	
	background: #fff;
	background-size: contain;
}
	.wrapper.show{
		display: block;
	}
	.wrapper .menu{
		width: 100%;
		height: 101px;
		position: fixed;
		z-index: 999;
		top:0;
		left: 0;
		background: #ff9000;
		/*#fdc82f;*/
		/*#978b7d;*/
	}		
		.wrapper .menu button{
			position: absolute;
			right: 40px;
		}
		
		.wrapper .logo-menu{
			width: 150px;
			height: 150px;
			position: fixed;
		    top: 25px;
		    left: 90px;
			background: transparent url(../img/logo-new.png) no-repeat center center;
			background-size: contain;
			z-index: 1000;
			-webkit-transition: all 300ms ease-in-out;
		    -moz-transition: all 300ms ease-in-out;
		    transition: all 300ms ease-in-out;
		}
		.wrapper .logo-menu.positionMenu{
			width: 80px!important;
			height: 80px!important;
			top: 10px!important;
			left: 90px!important;
		}
					




/* Icon 1 */

.animated-icon1, .animated-icon2, .animated-icon3 {
width: 30px;
height: 20px;
position: relative;
margin: 0px;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: all 100ms ease-in-out;
-moz-transition: all 100ms ease-in-out;
transition: all 100ms ease-in-out;
cursor: pointer;
}

.animated-icon1 span, .animated-icon2 span, .animated-icon3 span {
display: block;
position: absolute;
height: 3px;
width: 100%;
border-radius: 9px;
opacity: 1;
left: 0;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: all 100ms ease-in-out;
-moz-transition: all 100ms ease-in-out;
transition: all 100ms ease-in-out;
}

.animated-icon1 span {
background: #FFF;
}

.animated-icon2 span {
background: #FFF;
}

.animated-icon3 span {
background: #FFF;
}

.animated-icon1 span:nth-child(1) {
top: 0px;
}

.animated-icon1 span:nth-child(2) {
top: 10px;
}

.animated-icon1 span:nth-child(3) {
top: 20px;
}

.animated-icon1.open span:nth-child(1) {
top: 11px;
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-o-transform: rotate(135deg);
transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
opacity: 0;
left: -60px;
}

.animated-icon1.open span:nth-child(3) {
top: 11px;
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
transform: rotate(-135deg);
}

/* Icon 3*/

.animated-icon2 span:nth-child(1) {
top: 0px;
}

.animated-icon2 span:nth-child(2), .animated-icon2 span:nth-child(3) {
top: 10px;
}

.animated-icon2 span:nth-child(4) {
top: 20px;
}

.animated-icon2.open span:nth-child(1) {
top: 11px;
width: 0%;
left: 50%;
}

.animated-icon2.open span:nth-child(2) {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}

.animated-icon2.open span:nth-child(3) {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}

.animated-icon2.open span:nth-child(4) {
top: 11px;
width: 0%;
left: 50%;
}

/* Icon 4 */

.animated-icon3 span:nth-child(1) {
top: 0px;
-webkit-transform-origin: left center;
-moz-transform-origin: left center;
-o-transform-origin: left center;
transform-origin: left center;
}

.animated-icon3 span:nth-child(2) {
top: 10px;
-webkit-transform-origin: left center;
-moz-transform-origin: left center;
-o-transform-origin: left center;
transform-origin: left center;
}

.animated-icon3 span:nth-child(3) {
top: 20px;
-webkit-transform-origin: left center;
-moz-transform-origin: left center;
-o-transform-origin: left center;
transform-origin: left center;
}

.animated-icon3.open span:nth-child(1) {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
top: 0px;
left: 8px;
}

.animated-icon3.open span:nth-child(2) {
width: 0%;
opacity: 0;
}

.animated-icon3.open span:nth-child(3) {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
top: 21px;
left: 8px;
}



.wrapper .menu .navbar-light .navbar-toggler {
    color: transparent;
    border-color: transparent;
}


.wrapper .menu .navbar-collapse collapse show{
	position: absolute;
    top: 100px;
    background: rgb(255, 255, 255);
    width: 40%;
    padding: 0px;
    right: 0px;
}

.wrapper .menu .navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 0 solid transparent!important;
    border-radius: .25rem;
}
.wrapper .menu  button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}

.wrapper .menu .navbar-collapse{
    position: absolute;
    top: 80px;
    width: 350px;
    right: 50px;
}
	.wrapper .menu .navbar-collapse .bg1{
		background: #FDC82F ;
	}
	.wrapper .menu .navbar-collapse .bg2{
		background: #6ec5b8;
	}
	.wrapper .menu .navbar-collapse .bg3{
		background: #ff9000;
	}
	.wrapper .menu .navbar-collapse .bg4{
		background: #978b7d;
	}
	.wrapper .menu .navbar-collapse .bg5{
		background: #ff9000 ;
	}
	.navbar-light .navbar-nav .nav-item {
		height: 40px;	
	}

	.navbar-light .navbar-nav .nav-link {
	    text-align: center;
	    font-size: 20px;
	    line-height: 45px;
	    height: 40px;
	    font-family: 'Roboto';
	    margin-top: 0;
	    margin-bottom: 0;
	    color: #fff!important;
	    text-align: left;
	    padding: 0px 25px;
	}


	.wrapper section{
		position: relative;
		display: block;
		width: 100%;
		height: auto;
	}
		
		.wrapper .home-intro{
			padding-top: 100px;
			z-index: 101;
		}
		
		.wrapper .home-intro .slider_home {
		    position: relative;
		    width: 100%;
		    height: auto;
		}
		
		
		.wrapper .home-intro .slider_home .link-google{
			position: absolute;
			width: 150px;
			height: 80px;
			z-index: 100000;
			bottom: 110px;
			left: 310px;
			cursor: pointer;
		}
		
		.wrapper .home-intro .slider_home .link-iphone{
			position: absolute;
			width: 150px;
			height: 80px;
			z-index: 100000;
			bottom: 110px;
			left: 470px;
			cursor: pointer;
		}
		
		
		
			@media only screen and (max-width: 1600px){
				
				.wrapper .home-intro .slider_home .link-google{
					width: 120px;
					height: 80px;
					bottom: 90px;
					left: 260px;
				}
				.wrapper .home-intro .slider_home .link-iphone{
					width: 120px;
					height: 80px;
					bottom: 90px;
					left: 390px;
				}
			    
			}
			
			@media only screen and (max-width: 1366px){
				
				.wrapper .home-intro .slider_home .link-google{
				    width: 110px;
				    height: 80px;
				    bottom: 70px;
				    left: 220px;
				}
				.wrapper .home-intro .slider_home .link-iphone{
					width: 90px;
					height: 80px;
					bottom: 70px;
					left: 335px;
				}
			    
			}
			
			@media only screen and (max-width: 1280px){
				
				.wrapper .home-intro .slider_home .link-google{
				    width: 100px;
				    height: 80px;
				    bottom: 70px;
				    left: 206px;
				}
				.wrapper .home-intro .slider_home .link-iphone{
					width: 90px;
					height: 80px;
					bottom: 60px;
					left: 310px;
				}
			    
			}
			
			@media only screen and (max-width: 1100px){
				
				.wrapper .home-intro .slider_home .link-google{
					width: 90px;
					height: 80px;
					bottom: 50px;
					left: 175px;
				}
				.wrapper .home-intro .slider_home .link-iphone{
					width: 80px;
					height: 60px;
					bottom: 60px;
					left: 270px;
				}
			    
			}
			
			@media only screen and (max-width: 1024px){
				
				.wrapper .home-intro .slider_home .link-google{
					width: 80px;
					height: 70px;
					bottom: 50px;
					left: 165px;
				}
				.wrapper .home-intro .slider_home .link-iphone{
					width: 70px;
					height: 60px;
					bottom: 50px;
					left: 250px;
				}
			    
			}
			
			@media only screen and (max-width: 768px){
				
				.wrapper .home-intro .slider_home .link-google{
					width: 70px;
					height: 70px;
					bottom: 110px;
					left: 140px;
				}
				.wrapper .home-intro .slider_home .link-iphone{
					width: 60px;
					height: 50px;
					bottom: 120px;
					left: 200px;
				}
			    
			}
			
			@media only screen and (max-width: 480px){
				
				.wrapper .home-intro .slider_home .link-google{
					width: 40px;
					height: 40px;
					bottom: 70px;
					left: 82px;
				}
				.wrapper .home-intro .slider_home .link-iphone{
					width: 40px;
				    height: 30px;
				    bottom: 75px;
				    left: 125px;
				}
			    
			    .swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
					content: 'prev';
					text-indent: -1000px!important;
				}
				.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
					content: 'next';
					text-indent: -1000px!important;
				}
			    
			}
			
			@media only screen and (max-width: 414px){
				
				.wrapper .home-intro .slider_home .link-google{
					width: 40px;
					height: 40px;
					bottom: 60px;
					left: 75px;
				}
				.wrapper .home-intro .slider_home .link-iphone{
					width: 40px;
					height: 40px;
					bottom: 60px;
					left: 106px;
				}
			    
			}
			
			@media only screen and (max-width: 375px){
				
				.wrapper .home-intro .slider_home .link-google{
					width: 35px;
					height: 30px;
					bottom: 60px;
					left: 70px;
				}
				.wrapper .home-intro .slider_home .link-iphone{
					width: 40px;
					height: 30px;
					bottom: 58px;
					left: 98px;
				}
			    
			}
			
			@media only screen and (max-width: 320px){
				
				.wrapper .home-intro .slider_home .link-google{
					width: 30px;
					height: 30px;
					bottom: 48px;
					left: 60px;
				}
				.wrapper .home-intro .slider_home .link-iphone{
					width: 30px;
				    height: 30px;
				    bottom: 48px;
				    left: 85px;
				}
			    
			}
			
		
		
		
		.swiper-pagination-white {
		    --swiper-pagination-color: #76c75a;
		}
		
		.swiper-pagination-bullet {
		    background: #76c75a;
		}
		.swiper-pagination-bullet {
			width: 15px;
			height: 15px;
		}
		.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
			opacity: 1;
		}
		
	
		.wrapper .home-productos{
			width: 100%;
			height: auto;
			position: relative;
			display: block;
			/*background: #6ec5b8;*/
			background:#FDC82F;
			z-index: 102;
		}
		
		.wrapper .home-productos .txt-intro{
			width: 70%;
			position: relative;
			display: block;
			margin: 0 auto;
			font-size: 90px;
			color: #fff;
			text-align: left;
			line-height: 100px;
			font-family: 'Roboto';
		}
			.wrapper .home-productos .txt-intro span{
				position: relative;
				display: block;
				margin-top: 20px;
				font-size: 22px;
				line-height: 25px;
				text-align: left;
				width: 53%;
				font-family: 'Roboto';
			}	
			
			.wrapper .home-productos .figura01{
			    position: absolute;
			    top: 270px;
			    right: 0;
			    width: 105px;
			    height: 980px;
				background: transparent url(../img/figura-011.png) no-repeat center center;
				background-size: contain;			
			}
		/*.wrapper .home-productos .image-productos{
			position: absolute;
			right: 0;
			top: -40px;
		}*/
		
			.wrapper .home-productos .productos{
				bottom: 0;
				right: 0;
				position: absolute;
				width: 1023px;
				padding-bottom: 61%;
				background: transparent url(../img/productos.png) no-repeat center center;
				background-size: contain;
				pointer-events: none;
			}
		
		
			
			.wrapper .ctx-productos{
				margin-bottom: 60px;
			}
			.wrapper .ctx-productos.bgBlanco{
				background: #fff;
			}
						
			.wrapper .ctx-productos .bloque-cards{
				padding-top: 60px;
				width: 80%;
			    position: relative;
			    margin: 0 auto!important;
			    margin-bottom: 50px!important;
			}
				.wrapper .ctx-productos .bloque-cards .card{
					border: 0;
					border-radius: 0;
					margin-bottom: 30px;
				}				
					.wrapper .ctx-productos .bloque-cards .card img{
						width: 120px;
						height: 120px;
						position: relative;
						display: block;
						margin: 0 auto;
					}
		
					.wrapper .ctx-productos .bloque-cards .card .card-title {
						font-size: 30px;
						line-height: 31px;
						width: 85%;
					    position: relative;
					    margin: 0 auto;
					    margin-bottom: 20px;
					    min-height: 100px;
					    font-family: 'Roboto';
					}
					.wrapper .ctx-productos .bloque-cards .card .card-title.color1{
						color: #dc0087;
					}
					.wrapper .ctx-productos .bloque-cards .card .card-title.color2{
						color: #52d18c;
					}
					.wrapper .ctx-productos .bloque-cards .card .card-title.color3{
						color: #f0b238;
					}
					
					.wrapper .ctx-productos .bloque-cards .card .card-text{
					    width: 74%;
					    position: relative;
					    display: block;
					    margin: 0 auto;
					    font-family: 'Roboto';
					    color: #3b3b3b;
					    font-size: 15px;
					    line-height: 18px;
					}
		
		
		
		
		/*COMO FUNCIONA*/
		.wrapper .ctx-comofunciona.bgAmarillo{
			background: #f6b836;
		}
		
			.wrapper .ctx-comofunciona .bloqueBlanco{
				position: absolute;
				top:0;
				width: 100%;
				left: 0;
				background: #fff;
				height: 40px;
			}
		
			.ctx-comofunciona .bloque-funciona{
				width: 80%;
				position: relative;
				display: block;
				margin: 0 auto;
			}
			
			.ctx-comofunciona .bloque-funciona .titulo{
				width: 100%;
				position: relative;
				display: block;
				margin: 0 auto;
				margin-bottom: 40px;
				font-size: 60px;
				line-height: 62px;
				color: #fff;
				text-align: left;
				font-family: 'Roboto';
			}
				.ctx-comofunciona .bloque-funciona .info{
					width: 50%;
					position: relative;
					display: block;
					margin: 0 auto;
					margin-bottom: 30px;
					font-size: 20px;
					line-height: 22px;
					min-height: 45px;
				    color: #fff;
				    text-align: left;
				    font-family: 'Roboto';
				}
				.ctx-comofunciona .bloque-funciona .info span{				
					font-size: 14px;
					line-height: 16px;
				}
				
					.ctx-comofunciona .bloque-funciona .info.uno:after{
						content: '';
						position: absolute;
						top: -7px;
						left: -55px;
						width: 60px;
						height: 60px;
						background: transparent url(../img/1.png) no-repeat center center;
						background-size: contain;
					}
					.ctx-comofunciona .bloque-funciona .info.dos:after{
						content: '';
						position: absolute;
						top: -7px;
						left: -55px;
						width: 60px;
						height: 60px;
						background: transparent url(../img/2.png) no-repeat center center;
						background-size: contain;
					}
					.ctx-comofunciona .bloque-funciona .info.tres:after{
						content: '';
						position: absolute;
						top: -7px;
						left: -55px;
						width: 60px;
						height: 60px;
						background: transparent url(../img/3.png) no-repeat center center;
						background-size: contain;
					}
					.ctx-comofunciona .bloque-funciona .info.cuatro:after{
						content: '';
						position: absolute;
						top: -7px;
						left: -55px;
						width: 60px;
						height: 60px;
						background: transparent url(../img/4.png) no-repeat center center;
						background-size: contain;
					}
				
				
				.ctx-comofunciona .bloque-funciona .tit-descarga{
				    width: 280px;
				    height: 50px;
				    position: relative;
				    display: block;
				    margin: 0 auto;
				    margin-top: 40px;
				    margin-bottom: 10px;
				    background: transparent;
				    color: #fff;
				    text-align: center;
				    font-size: 25px;
				    line-height: 55px;
				    border-radius: 30px;
				    font-weight: bold;
				    font-family: 'Roboto';
				}
				
					.ctx-comofunciona .bloque-funciona .tit-descarga:before{
					    content: '';
					    position: absolute;
					    left: -110px;
					    top: 0px;
					    width: 100px;
					    height: 100px;
						background: transparent url(../img/logo-new.png) no-repeat center center;
						background-size: contain;
						border-radius: 10px;
					}
				
				.ctx-comofunciona .bloque-funciona ul{
					position: relative;
					display: inline;
				}
				.ctx-comofunciona .bloque-funciona ul li{
					position: relative;
					display: inline-block;
					float: left;
					width: 50%;
				}
					.ctx-comofunciona .bloque-funciona ul li .img-gp{
						position: relative;
					    display: block;
					    margin: 0 auto;
						width: 120px;
					    float: right;
					    margin-right: 10px;
					}
						.ctx-comofunciona .bloque-funciona ul li .img-gp:hover{
							opacity: .8;
						}
					
					.ctx-comofunciona .bloque-funciona ul li .img-ip{
						position: relative;
					    display: block;
					    margin: 0 auto;
					    width: 120px;
					    float: left;
					    margin-left: 10px;
					}
						.ctx-comofunciona .bloque-funciona ul li .img-ip:hover{
							opacity: .8;
						}
		
				
		
		
		
		/*COMO MAPA*/
		.wrapper .ctx-mapa.bgCeleste{
			background: #8981ef;
		}	
		
			.wrapper .ctx-mapa .ctx-iframe-mapa{
			    position: relative;
			    display: block;
			    margin: 0 auto;
			    height: 80vh;
			    overflow: hidden;
			}
				.wrapper .ctx-mapa .ctx-iframe-mapa iframe{
					width: 150%;
					height: 120%;
					border: 0;
					position: relative;
					margin-left: -30%;
					margin-top: -10%;			
				}
		
		
			.ctx-mapa .bloque-mapa{
				width: 70%;
				position: relative;
				display: block;
				margin: 0 auto;
			}
		
			.ctx-mapa .bloque-mapa .titulo {
			    width: 100%;
			    position: relative;
			    display: block;
			    margin: 0 auto;
			    font-size: 50px;
			    line-height: 47px;
			    color: #fff;
			    text-align: left;
			    font-family: 'Roboto';
			}
			
			.ctx-mapa .bloque-mapa .regiones{
				width: 250px;
				height: 60px;
				position: relative;
				display: block;
				margin-top: 10px;
				margin-bottom: 10px;
				background: #f6b836;
				color: #fff;
				text-align: center;
				font-size: 30px;
				line-height: 65px;
				padding-left: 10px;
				border-radius: 30px;
				font-family: 'Roboto';
			}
				.ctx-mapa .bloque-mapa .regiones:before{
					content: '';
					position: absolute;
					height: 40px;
					width: 40px;
					top: 0px;
					left: 22px;
					bottom: 0;
					margin: auto;
					background: transparent url(../img/ico-pin.png) no-repeat center center;
					background-size: contain;
					
				}
			
			.ctx-mapa .bloque-mapa .ctx-comunas{
				width: 80%;
				height: auto;
				position: relative;
				display: block;
				margin: 0 auto;
				margin-top: 15px;
				color: #fff;
				font-size: 18px;
				text-align: center;
				line-height: 21px;
				border-radius: 20px;
				font-weight: bold;
			}
			
			.ctx-mapa .bloque-mapa .vina{
			    width: 200px;
			    height: 40px;
			    position: relative;
			    display: block;
			    margin-top: 15px;
			    background: #867ef2;
			    color: #fff;
			    text-align: center;
			    font-size: 18px;
			    line-height: 40px;
			    border-radius: 20px;
			    font-weight: bold;
			    margin-left: 25px;
			}
			
			.ctx-mapa .bloque-mapa .serena{
			    width: 200px;
			    height: 40px;
			    position: relative;
			    display: block;
			    margin-top: 15px;
			    background: #54d792;
			    color: #fff;
			    text-align: center;
			    font-size: 18px;
			    line-height: 40px;
			    border-radius: 20px;
			    font-weight: bold;
			    margin-left: 25px;
			}
		
			.ctx-mapa .figura02{
				width: 155px;
				height: 1482px;
				position: absolute;
				left: 0;
				bottom: -20px;
				background: transparent url(../img/figura-02.png) no-repeat center center;
				background-size: contain;
				z-index: 10;
			}
			
			.ctx-mapa .figura03{
				width: 146px;
				height: 1046px;
				position: absolute;
				right: 0;
				top: -370px;
				background: transparent url(../img/figura-03.png) no-repeat center center;
				background-size: contain;
				z-index: 10;
			}
		
		
		/*MANO*/
		.ctx-mano .bloque-alto .card{
			border: 0;
			width: 80%;
			position: relative;
			display: block;
			margin: 0 auto;
		}
			.ctx-mano .bloque-alto{
				width: 80%;
			}
			.ctx-mano .bloque-alto .card img{
				position: relative;
				display: block;
				margin: 0 auto;
				width: 75%;
				height: auto;
				margin-bottom: 20px;
			}
		
		
			.ctx-mano .bloque-mano .titulo {
			    width: 100%;
			    position: relative;
			    display: block;
			    margin: 0 auto;
			    margin-bottom: 20px;
			    font-size: 60px;
			    line-height: 65px;
			    color: #807fe4;
			    text-align: left;
			    font-family: 'Roboto';
			}
			
				.ctx-mano .bloque-alto .card .card-title {
				    width: 100%;
				    position: relative;
				    display: block;
				    margin: 0 auto;
				    margin-bottom: 10px;
				    font-size: 35px;
				    color: #00D78E;
				    font-family: 'Roboto';				    
				    
				}
					.ctx-mano .bloque-alto .card .card-title span{
					    font-family: 'Roboto';
					    font-size: 16px;
					    line-height: 18px;
					    position: relative;
					    display: block;
					    margin-top: 10px;
					    min-height: 40px;
					}
					
					.ctx-mano .bloque-alto .card .link-mapa{
						font-family: 'Roboto';
					    font-size: 14px;
					    text-align: center;
					    text-decoration: none;
					    color: #dd5f4f;
					    position: relative;
					    display: block;
					    margin-bottom: 20px;
					}
		
		/*COMO CONTACTO*/
		.wrapper .ctx-contacto.bgMorado{
			background: #ff9000 ;
		}		
		
		.ctx-contacto .bloque-contacto{
			width: 80%;
			position: relative;
			display: block;
			margin: 0 auto;
		}
		
		.ctx-contacto .bloque-contacto .titulo {
		    width: 100%;
		    position: relative;
		    display: block;
		    margin: 0 auto;
		    margin-bottom: 20px;
		    font-size: 60px;
		    line-height: 65px;
		    color: #fff;
		    text-align: left;
		    font-family: 'Roboto';
		}
		
		
		.ctx-contacto .bloque-contacto .info {
			width: 70%;
			position: relative;
			display: block;
			margin-bottom: 20px;
			font-size: 22px;
			line-height: 24px;
			color: #fff;
			text-align: left;
			font-family: 'Roboto';
		}
		
		.ctx-contacto .logo-alto{
			width: 100px;
			height: 100px;
			position: absolute;
			right: 20px;
			bottom: -50px;
			background: transparent url(../img/logo-new.png) no-repeat center center;
			background-size: contain;
			z-index: 10;
		}
		
		
		
		
		
		.ctx-contacto .bloque-contacto ul{
			padding: 0;
			margin: 0;
			width: 70%;
			position: relative;
			display: inline-block;
			list-style: none;	
		}
			.ctx-contacto .bloque-contacto ul li{
				position: relative;
				display: inline-block;
				width: 33.33%;
				height: auto;
				float: left;
			}
				.ctx-contacto .bloque-contacto ul li img{
					width: 75%;
					height: auto;
					position: relative;
					display: block;
				}
		
		.wrapper .footer{
			width: 100%;
			min-height: 60px;
			height: auto;
			position: relative;
			display: block;
			background:#978b7d; 
			/*#978b7d;*/
		}
		
			.wrapper .footer .txt-copy{
			    font-family: 'Roboto';
			    font-size: 11px;
			    text-align: center;
			    line-height: 60px;
			    color: #fff;
			}

			
.Desktop{
	display: block;
}		
.Mobile{
	display: none!important;
}

.footer .logo-footer{
	display: none;
}




	.wrapper .ctx-tiendaNew.bgRosado{
		background: #6ec5b8;
	}

	.wrapper .ctx-tiendaNew .bloque-tienda{
			width: 75%;
			position: relative;
			display: block;
			margin: 0 auto;
		}
	
		.wrapper .ctx-tiendaNew .bloque-tienda .titulo {
		    width: 100%;
		    position: relative;
		    display: block;
		    margin: 0 auto;
		    font-size: 50px;
		    line-height: 47px;
		    color: #fff;
		    text-align: left;		    
		    font-family: 'Roboto';
		    margin-top: 30px;
		}
		.wrapper .ctx-tiendaNew .bloque-tienda .bajada{
			width: 70%;
			position: relative;
			display: block;
			margin-bottom: 35px;
			font-size: 22px;
			line-height: 24px;
			color: #fff;
			text-align: left;
			margin-top: 20px;
			font-family: 'Roboto';
		}
	
	.wrapper .ctx-tiendaNew .bloque-tienda ul {
	    padding: 0;
	    margin: 0;
	    width: 80%;
	    position: relative;
	    display: inline-block;
	    list-style: none;
	}
	.wrapper .ctx-tiendaNew .bloque-tienda ul li {
	    position: relative;
	    display: inline-block;
	    width: 50%;
	    height: auto;
	    float: left;
	    margin-bottom: 80px;
	}
		.wrapper .ctx-tiendaNew .bloque-tienda ul li img {
		    width: 20%;
		    height: auto;
		    position: relative;
		    display: inline-block;
		}
		.wrapper .ctx-tiendaNew .bloque-tienda ul li .text{
			width: 70%;
			height: auto;
			position: absolute;
			right: 0;
			top: 5px;
			font-family: 'Roboto';
			color: #fff;
			font-size: 16px;
			line-height: 16px;
		}
		.wrapper .ctx-tiendaNew .bloque-tienda ul li .text span{
			font-family: 'Roboto';
			font-size: 14px;
		}
		
		
		.wrapper .ctx-tiendaNew .mano-pequena{
		width: 250px;
		height: 286px;
		position: absolute;
		bottom: -2px;
		right: -2px;
			z-index: 10;
			background: transparent url(../img/mano-pequena.png) no-repeat center center;
			background-size: contain;
		}
		
		
		.wrapper .ctx-tiendaNew .slider_tienda {
		    position: relative;
		    /*width: 85%;*/
		    height: auto;
		    margin: 0 auto;
		    margin-top: 50px;
		    margin-bottom: 80px;
		}
		
		
/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

.sr-only.focusable:active,
.sr-only.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}

/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
    visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */


@media only screen and (max-width: 1366px){
	.ctx-mapa .figura02 {
	    width: 166px;
	    height: 1570px;
	    bottom: -120px;
	}
	.wrapper .ctx-productos .bloque-cards .card .card-title {
	    width: 70%;
    }
    .ctx-comofunciona .bloque-funciona .info {
    	 width: 70%;
    	margin-bottom: 20px;
    }
    .ctx-comofunciona .bloque-funciona .tit-descarga {
	    margin-top: 30px;
    }
    
}

@media only screen and (max-width: 1280px){
	.ctx-comofunciona .bloque-funciona .titulo {
	    margin-top: 20px;
	}
	.wrapper .home-productos .txt-intro span {
	    width: 80%;
    }
}

@media only screen and (max-width: 1100px){
	.logo-menu {
	    width: 120px;
	    height: 120px;
	    position: fixed;
	    top: 40px;
	    left: 60px;
	}
	
	.wrapper .home-productos .txt-intro {
    	width: 80%;
    }
    
    .wrapper .ctx-productos .bloque-cards .card .card-title {
	    width: 85%;
    }
    
    ctx-comofunciona .bloque-funciona .info {
	    width: 82%;
	    margin-bottom: 15px;
	}
    
    .ctx-comofunciona .bloque-funciona .titulo {
    	width: 100%;
    }
    
    .ctx-comofunciona .bloque-funciona .info.uno:after, .ctx-comofunciona .bloque-funciona .info.dos:after, .ctx-comofunciona .bloque-funciona .info.tres:after, .ctx-comofunciona .bloque-funciona .info.cuatro:after {
	    width: 50px;
	    height: 50px;
    }
    .ctx-comofunciona .bloque-funciona {
    	width: 90%;
		position: relative;
		display: block;
    }
    .ctx-comofunciona .bloque-funciona .titulo {
	    margin-bottom: 10px;
	    font-size: 50px;
	    line-height: 52px;
    }
    
    .ctx-comofunciona .bloque-funciona .tit-descarga {
	    width: 230px;
	    height: 40px;
	    margin-top: 40px;
	    margin-bottom: 10px;
	    font-size: 20px;
	    line-height: 45px;
	    border-radius: 20px;
	    font-weight: bold;
	    font-family: 'Roboto';
	}
	
	ctx-comofunciona .bloque-funciona .info {
	    font-size: 19px;
	    line-height: 18px;
	    min-height: 30px;
	}
	.ctx-comofunciona .bloque-funciona .tit-descarga {
	    margin-top: 10px;
	}
	
	.ctx-comofunciona .bloque-funciona ul li .img-gp {
	    width: 100px;
    }
    
    .ctx-comofunciona .bloque-funciona ul li .img-ip {
	    width: 100px;
    }
    .ctx-mapa .figura03 {
	    width: 96px;
	    height: 686px;
	    position: absolute;
	    right: 0;
	    top: -240px
    }
    .ctx-mapa .figura02 {
	    width: 106px;
	    height: 1020px;
	    bottom: 10px;
	}
	
	.ctx-mano .bloque-mano .titulo {
	    font-size: 45px;
	    line-height: 45px;
	    margin-top: 50px;
    }
	
	.ctx-mano .bloque-alto {
	    width: 95%;
	}
	.ctx-mapa .bloque-mapa {
    	width: 80%;
    }
    .ctx-mapa .bloque-mapa .titulo {
    	width: 85%;
    }
    
    .ctx-mapa .bloque-mapa .ctx-comunas {
	    width: 90%;
	    font-size: 16px;
	    line-height: 22px;
	    border-radius: 20px;
	}
    
}


@media only screen and (max-width: 1024px){
	.wrapper .ctx-productos .bloque-cards .card .card-text {
	    margin-top: 20px;
	}
	

	
	.wrapper .home-productos .txt-intro {
	    font-size: 70px;
	    line-height: 75px;
    }
    .card-title {
	    font-size: 28px;
	    line-height: 28px;
    }
    .wrapper .ctx-productos .bloque-cards .card .card-text {
    	width: 85%;
    }
    .ctx-mapa .figura02 {
	    width: 96px;
	    height: 910px;
	    bottom: 40px;
	}
	.ctx-comofunciona .bloque-funciona .titulo {
	    margin-bottom: 20px;
	    font-size: 45px;
	    line-height: 47px;
	}
	
	.wrapper .ctx-productos .bloque-cards .card .card-title {
	    font-size: 28px;
	    line-height: 28px;
	    width: 80%;
	    position: relative;
	    margin: 0 auto;
	    margin-bottom: 10px;
	    min-height: 70px;
	    font-family: 'Roboto';
	}
	
	ctx-comofunciona .bloque-funciona .info {
	    min-height: 25px;
	    font-size: 17px;
	    line-height: 16px;
    }
    .ctx-comofunciona .bloque-funciona .tit-descarga {
	    width: 220px;
	    font-size: 18px;
    }
    .ctx-mapa .bloque-mapa .titulo {
	    font-size: 45px;
	    line-height: 47px;
	    margin-bottom: 0;
    }
    .ctx-mapa .bloque-mapa .regiones {
	    width: 250px;
	    height: 45px;
	    margin-top: 10px;
	    margin-bottom: 10px;
	    font-size: 25px;
	    line-height: 50px;
	    padding-left: 0;
	    border-radius: 22px;
	}
	
	.ctx-mapa .bloque-mapa .vina {
	    height: 30px;
	    margin-top: 15px;
	    font-size: 16px;
	    line-height: 30px;
	    border-radius: 15px;
	}
    .ctx-mapa .bloque-mapa .serena {
	    width: 200px;
	    height: 30px;
	    margin-top: 15px;
	    font-size: 16px;
	    line-height: 30px;
	    border-radius: 15px;
	}
	.ctx-contacto .bloque-contacto .titulo {
	    margin-bottom: 10px;
	    font-size: 45px;
	    line-height: 45px;
    }
	.ctx-contacto .bloque-contacto .info {
	    width: 80%;
	    font-size: 18px;
	    line-height: 21px;
    }
    .ctx-contacto .bloque-contacto ul {
	    width: 60%;
    }
    
    .ctx-mapa .figura03 {
	    width: 76px;
	    height: 546px;
	    top: -260px;
    }
    .wrapper .home-productos .figura01 {
	    width: 57px;
	    height: 255px;
	    display: none;
    }
    
    .ctx-contacto .logo-alto {
	    width: 50px;
	    height: 50px;
	    bottom: -55px;
    }
    
    .wrapper .ctx-tiendaNew .mano-pequena {
    	width: 180px;
		height: 206px;
    }
    .wrapper .ctx-tiendaNew .bloque-tienda .titulo br{
		display: none;	
	}
	
	.wrapper .ctx-tiendaNew .bloque-tienda .titulo {
	    font-size: 45px;
	    line-height: 47px;
	}
	
	.wrapper .ctx-tiendaNew .bloque-tienda .bajada {
    	width: 80%;
    }
    
    .wrapper .ctx-tiendaNew .bloque-tienda ul {
	    width: 100%;
    }
    
    .wrapper .ctx-tiendaNew .bloque-tienda ul li .text span {
	    font-size: 12px;
	}
    
}

@media only screen and (max-width: 768px){
	.Desktop{
		display: none!important;
	}		
	.Mobile{
		display: block!important;
	}
	
	.ctx-comofunciona .bloque-funciona .tit-descarga {
	    width: 356px;
	}
	
	.ctx-mapa .bloque-mapa .ctx-comunas {
	    margin-bottom: 50px;
	}
	
	.ctx-mano .bloque-alto {
	    width: 100%;
	}
	
	.ctx-mano .dedos{
		width: 70%!important;
		position: relative;
		display: block;
		margin: 0 auto;
	}
	
	.ctx-mano .bloque-mano .titulo {
	    width: 80%;
	    margin-bottom: 50px;
    }
	
	.logo-menu {
	    width: 86px;
	    height: 86px;
	    top: 7px;
	    left: 40px;
	}
	.wrapper .home-productos .txt-intro {
	    font-size: 60px;
	    line-height: 65px;
	    text-align: center;
	    margin-top: 40px;
	}
	.wrapper .home-productos .txt-intro span {
	    width: 80%;
	    text-align: center;
	    position: relative;
	    display: block;
	    margin: 0 auto;
	    margin-top: 20px;
	    margin-bottom: 50px;
	}
	
	.wrapper .ctx-productos .bloque-cards .card .card-title {
    	width: 85%;
    }
	
	.wrapper .ctx-productos .bloque-cards {
	    width: 100%;
    }
    .card-title {
	    width: 90%;
	}
	.wrapper .ctx-productos .bloque-cards .card .card-title {
	    font-size: 28px;
	    line-height: 28px;
	}
	
	.ctx-comofunciona .celumobile{
		width: 75%!important;
		position: relative;
		display: block;
		margin: 0 auto;
		margin-top: 70px;
	}
	.ctx-comofunciona .bloque-funciona .titulo {
	    margin-top: 60px;
	    text-align: center;
	    margin-bottom: 40px;
	}
	.ctx-comofunciona .bloque-funciona ul li .img-gp {
	    width: 160px;
	}
	.ctx-comofunciona .bloque-funciona ul li .img-ip {
	    width: 160px;
	}
	
	
	.ctx-mapa .bloque-mapa .titulo {
	    text-align: center;
	    margin-top: 60px;
	    margin-bottom: 30px;
	}
	.ctx-mapa .bloque-mapa .regiones {
	    margin: 0 auto;
	        margin-bottom: 15px;
	}
	.ctx-mapa .bloque-mapa .vina {
    	margin: 0 auto;
    	    margin-bottom: 15px;
    }
    .ctx-mapa .bloque-mapa .serena {
	    margin: 0 auto;
	    margin-bottom: 50px;
    }
    .ctx-mapa .figura02 {
	    width: 96px;
	    height: 910px;
	    bottom: 740px;
	}
	.ctx-comofunciona .bloque-funciona .tit-descarga {
	    margin-bottom: 20px;
	}
	
	.ctx-contacto .bloque-contacto .titulo {
	    margin-top: 60px;
	    text-align: center;
	    margin-bottom: 30px;
	}
	
	.ctx-contacto .bloque-contacto .info {
	    margin: 0 auto;
	    margin-bottom: 30px;
	}
	.ctx-contacto .bloque-contacto ul {
	    margin: 0 auto;
	    position: relative;
	    display: flex;
	}
	.ctx-contacto .bloque-contacto ul li img {
	    margin: 0 auto;
	    margin-bottom: 50px;
	}
	.ctx-contacto .logo-alto {
		display: none;
	}
	
	.footer .rrss{
	    position: relative;
	    width: 100px;
	    display: block;
	    margin: 0 auto;
	    margin-top: 20px;
	}
	.footer .logo-footer{
		width: 75px;
		height: 75px;
		position: relative;
		display: block;
		margin: 0 auto;
		margin-bottom: 30px;
	}
	
	.wrapper .logo-menu {
	    width: 80px;
	    height: 80px;
	    position: fixed;
	    top: 10px;
	    left: 40px!important;
    }
    
    .wrapper .logo-menu.positionMenu {
	    width: 80px!important;
	    height: 80px!important;
	    top: 10px!important;
	    left: 40px!important;
	}
	
	
	.wrapper .ctx-tiendaNew .bloque-tienda .titulo {
	    margin-top: 100px;
	}
	
	
}

@media only screen and (max-width: 480px){
	/*.wrapper .menu .navbar-collapse {
	    position: absolute;
	    top: 75px;
	    background: #fff;
	    width: 70%;
	    right: 0;
	    padding: 30px;
	}*/
	
	.ctx-mapa .bloque-mapa .serena {
	    margin-bottom: 20px;
	}
	
	.wrapper .ctx-mapa .ctx-iframe-mapa {	    
	    height: 50vh;
    }
    
    .wrapper .ctx-mapa .ctx-iframe-mapa iframe {
    width: 100%;
    height: 130%;
    border: 0;
    position: relative;
    margin-left: 0%;
    margin-top: -20%;
}
	
	
	.ctx-mapa .figura02 {
	    display: none;
	}
	.ctx-comofunciona .bloque-funciona .info {
    	width: 80%;
		margin-left: 15%;
		margin-bottom: 30px;
    }
    .ctx-comofunciona .bloque-funciona .titulo {
	    margin-bottom: 20px;
	    font-size: 55px;
	    line-height: 52px;
	}
	.ctx-contacto .bloque-contacto ul {
	    width: 80%;
	}
	.wrapper .menu {
    	height: 75px;
    }
    .wrapper .home-intro {
    	padding-top: 75px;
    }
	
	.wrapper .logo-menu {
	    width: 61px;
	    height: 61px;
	    position: fixed;
	    top: 7px;
	    left: 30px!important;
	}
	.wrapper .logo-menu.positionMenu {
	    width: 61px!important;
	    height: 61px!important;
	    top: 7px!important;
	    left: 30px!important;
	}
	
	.wrapper .footer .txt-copy {
	    font-family: 'Roboto';
	    font-size: 11px;
	    text-align: center;
	    line-height: 14px;
	    color: #fff;
	    margin: 0 auto;
	    margin-top: 15px;
	    margin-bottom: 15px;
	    width: 80%;
	}
	.wrapper .menu button {
	    position: absolute;
	    right: 20px;
	}
	.navbar-light .navbar-nav .nav-item {
	    height: 30px;
	}
	.wrapper .menu .navbar-collapse {
	    position: absolute;
	    top: 63px;
	    width: 250px;
	    right: 30px;
	}
	.navbar-light .navbar-nav .nav-link {
	    text-align: center;
	    font-size: 15px;
	    line-height: 35px;
	    height: 30px;
	    padding: 0px 20px;
    }
    .ctx-mano .bloque-mano .titulo {
	    font-size: 38px;
	    line-height: 40px;
	    margin-top: 50px;
	}
	.ctx-mano .bloque-alto .card img {
	    width: 60%;
	    margin-bottom: 10px;
	}
	.ctx-contacto .bloque-contacto .titulo {
	    font-size: 40px;
	    line-height: 43px;
	}
	.ctx-mapa .bloque-mapa .ctx-comunas {
	    width: 100%;
	    font-size: 15px;
	    line-height: 20px;
	}
	.ctx-mapa .figura03 {
	    width: 50px;
	    height: 376px;
	    top: -120px;
	}
	.ctx-comofunciona .bloque-funciona .tit-descarga {
	    width: 220px;
	    margin-bottom: 10px;
	}
	
	.ctx-comofunciona .bloque-funciona ul li .img-gp {
	    width: 130px;
	}
	.ctx-comofunciona .bloque-funciona ul li .img-ip {
	    width: 130px;
	}
	.ctx-comofunciona .bloque-funciona .tit-descarga:before {
		display: none;
	}


.wrapper .ctx-tiendaNew .bloque-tienda {
    width: 80%;

}

	.wrapper .ctx-tiendaNew .slider_tienda {
		    margin: 0 auto;
		    margin-bottom: 150px;
		}
		
		.wrapper .ctx-tiendaNew .bloque-tienda ul li {
		    width: 100%;
		}
		
		.wrapper .ctx-tiendaNew .mano-pequena {
		    width: 100px;
		    height: 120px;
	    }		
	
	
	
	
}
.wrapper .ctx-tiendaNew .bloque-tienda {
    margin-bottom: 100px;

}

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
    (-webkit-min-device-pixel-ratio: 1.25),
    (min-resolution: 1.25dppx),
    (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}