@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue LT Std 45 Light'), local('HelveticaNeueLTStd-Lt'),
        url('HelveticaNeueLTStd-Lt.woff') format('woff'),
        url('HelveticaNeueLTStd-Lt.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue LT Std 95 Black'), local('HelveticaNeueLTStd-Blk'),
        url('HelveticaNeueLTStd-Blk.woff') format('woff'),
        url('HelveticaNeueLTStd-Blk.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue LT Std 75 Bold'), local('HelveticaNeueLTStd-Bd'),
        url('HelveticaNeueLTStd-Bd.woff') format('woff'),
        url('HelveticaNeueLTStd-Bd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue LT Std 55 Roman'), local('HelveticaNeueLTStd-Roman'),
        url('HelveticaNeueLTStd-Roman.woff') format('woff'),
        url('HelveticaNeueLTStd-Roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

img[src$=".gif"], img[src$=".png"] {
 image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges; 
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;
}

body {
	background: #fff;
	background-size: cover;
	background-attachment: fixed;
	width: 100%;
	height: 100vh;
	height: -webkit-fill-available;
	overflow: hidden;
}
.top-frame{
	width:100%;
	height: 3vh;
	position:fixed;
	top: 0;
	left:0;
	z-index: 99999999;
	background: #fff;
}
.bottom-frame{
	    width: 100%;
    height: 3vh;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99999999;
    background: #fff;
}
.left-frame{
	width:3vh;
	height: 100%;
	position:fixed;
	top: 0;
	left:0;
	z-index: 99999999;
	background: #fff;
}
.right-frame{
	width:3vh;
	height: 100%;
	position:fixed;
	top: 0;
	right:0;
	z-index: 99999999;
	background: #fff;
}
.ticketsb, .ticketsb:hover, .ticketsb:focus{
	width: auto;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -o-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
    font-size: 18px;
    background: #232525;
    text-transform: uppercase;
    font-weight: 900;
    padding: 10px 20px;
    display: block;
    position: relative;
    margin-top: 5px;
    text-align: center;
}
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #000;
  position: fixed;
      z-index: 200000000;
  top: 0;
  width: 100%;
  height: 5px;
}

.pace:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background:#fff url(../img/pace.jpg) no-repeat center;
	background-size: cover;
	z-index: 100;
}

.no-touch .cd-btn:hover {}

.pace-done .ticketsb{
	opacity:1;
	visibility: visible;
}

.seccion {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	height: 100vh;
	height: -webkit-fill-available;
	width: 100%;
	overflow-y: auto;
    overflow-x: hidden;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
	-o-transition: opacity 0.3s 0s, visibility 0s 0.3s;
	transition: opacity 0.3s 0s, visibility 0s 0.3s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	
	
}

.seccion.visible {
	opacity: 1;
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
	visibility: visible;
	-webkit-transition: all 1.2s cubic-bezier(0.91, 0.01, 0.6, 0.99);
	-o-transition: all 1.2s cubic-bezier(0.91, 0.01, 0.6, 0.99);
	transition: all 1.2s cubic-bezier(0.91, 0.01, 0.6, 0.99);

}
.menu-abierto .seccion.visible{
	-webkit-animation: abrir 1.2s cubic-bezier(0.91, 0.01, 0.6, 0.99);
	        animation: abrir 1.2s cubic-bezier(0.91, 0.01, 0.6, 0.99);
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	
}
@-webkit-keyframes abrir{
	0%{
		-webkit-transform: translateX(0);
		        transform: translateX(0);
		opacity: 1;
	}
	100%{
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
		opacity:0;
	}
}
@keyframes abrir{
	0%{
		-webkit-transform: translateX(0);
		        transform: translateX(0);
		opacity: 1;
	}
	100%{
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
		opacity:0;
	}
}

.cd-transition-layer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	height: 100%;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
}

.cd-transition-layer .bg-layer {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateY(-50%) translateX(-2%);
	-ms-transform: translateY(-50%) translateX(-2%);
	transform: translateY(-50%) translateX(-2%);
	height: 100%;
	width: 3800%;
	background: url(../img/scribble.png) no-repeat 0 0;
	background-size: 100% 100%;
}

.pace-done .cd-transition-layer.visible {
	opacity: 1;
	visibility: visible;
}

.cd-transition-layer.opening .bg-layer {
	-webkit-animation: cd-sequence-reverse 1.5s steps(37);
	animation: cd-sequence-reverse 1.5s steps(37);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.cd-transition-layer.closing .bg-layer {
	-webkit-animation: cd-sequence 1.5s steps(37);
	animation: cd-sequence 1.5s steps(37);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.no-cssanimations .cd-transition-layer {
	display: none;
}

.layer {
	position: relative;
	width: 100%;
	height: 100vh;
	height: -webkit-fill-available;
}
.menu-toggler,.menu-toggler:hover,.menu-toggler:focus{
	position: fixed;
    z-index: 2000;
    background: transparent;
    border: none;
    top: 5vh;
    right: 5vh;
    outline: none;
	cursor: pointer;
}
.menu-wrapper{
	position: fixed;
    z-index: 99999999999999;
    background: #fff;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-transform: translateX(100%);
	    -ms-transform: translateX(100%);
	        transform: translateX(100%);
	-webkit-transition: all 1s cubic-bezier(0.91, 0.01, 0.6, 0.99);
-o-transition: all 1s cubic-bezier(0.91, 0.01, 0.6, 0.99);
transition: all 1s cubic-bezier(0.91, 0.01, 0.6, 0.99);
}
.menu-abierto .menu-wrapper{
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}
body:not(.menu-abierto) .menu-wrapper{
	-webkit-transform: translateX(100%);
	    -ms-transform: translateX(100%);
	        transform: translateX(100%);
}
.boletos{
    position: fixed;
    z-index: 1000000000;
    background: #fff;
    background: rgba(255,255,255,.9);
    padding: 5vw;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	opacity: 0;
	visibility:hidden;
		-webkit-transition: all 1s cubic-bezier(0.91, 0.01, 0.6, 0.99);
-o-transition: all 1s cubic-bezier(0.91, 0.01, 0.6, 0.99);
transition: all 1s cubic-bezier(0.91, 0.01, 0.6, 0.99);
}
.boletos a{
	display:block;
	width:50%;
	text-align: center;
}
.boletos a img{
	width:68%;
	height: auto;
	max-width: 280px;
}
.tickets-abierto .boletos{
	opacity: 1;
	visibility:visible;
}
.menu-col{
	width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.menu-col ul{
    list-style: none;
    margin: 0;
}
.menu-col a{
	color: #000;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 48px;
    letter-spacing: -.05em;
	line-height: 1.1;
	-webkit-animation-duration: 1200ms;
	        animation-duration: 1200ms;
	text-decoration: none;
	position: relative;
	opacity:0;
	-webkit-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}

.menu-col a:after{
	content:'';
	display:block;
	position: absolute;
	bottom:.1em;
	background: #000;
	height:.12em;
	width:0;
	-webkit-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.menu-col a:hover:after{
	width:100%;
}
.menu-abierto .menu-col a, .menu-abierto .menu-col img{
	-webkit-animation: fadeIn 1s ease-in-out;
	        animation: fadeIn 1s ease-in-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
body:not(.menu-abierto) .menu-col a, body:not(.menu-abierto) .menu-col img{
	-webkit-animation: fadeOut 1s ease-in-out;
	        animation: fadeOut 1s ease-in-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-delay: 0!important;
	        animation-delay: 0!important;
}
.menu-col img{
	width: 300px;
	height: auto;
	opacity: 0;
}
.cerrar, .cerrar:hover, .cerrar:focus, .cerrar-b, .cerrar-b:hover, .cerrar-b:focus{
	padding: 0;
	display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 5vh;
    right: 5vh;
    z-index: 1000;
    border: none;
	background: transparent;
	cursor:pointer;
	outline: none!important;
	
}
.cerrar img, .cerrar-b img{
    width: 30px;
    height: 30px;
}
#home{
	background: url(../img/home_0005_BG.jpg) no-repeat center bottom;
	background-size: cover;
}
#trailer{
	background: #000;
}
#sinopsis, #personajes, #ficha, #extras{
	background: url(../img/bg-lake.jpg )no-repeat center bottom;
	background-size: cover;
	background-attachment: fixed;
}
#trailer video{
	    height: calc(100% - 3vh - 40px);
    width: calc(100% - 6vh);
}
#home .logo {
height: 150px;
    width: auto;
    position: absolute;
    left: 6vh;
    bottom: 6vh;
    opacity: 0;
}
#home .logo img {
height: calc(100% - 55px);
    width: auto;
}
#home .jp{
	position: absolute;
	bottom:3vh;
	right:3vh;
	left:auto;
	height: 100vh;
	width: auto;
	opacity:0;
}
.pace-done #home .jp, .pace-done #home .logo{
	-webkit-animation:fadeIn 1.2s cubic-bezier(0.91, 0.01, 0.6, 0.99);
	        animation:fadeIn 1.2s cubic-bezier(0.91, 0.01, 0.6, 0.99);
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	-webkit-animation-delay: 1800ms;
	        animation-delay: 1800ms;
}
#home .jp img {
    height: 100%;
    width: auto;
}
.home-bar{
	width:100%;
	height:20vh;
	position:absolute;
}
.bar-1{
	top:3vh;
	background: url(../img/home_0002_top.jpg) no-repeat left center;
	background-size: cover;
	opacity:0;
}
.pace-done .bar-1{
	-webkit-animation:fadeInLeft 1.2s cubic-bezier(0.91, 0.01, 0.6, 0.99);
	        animation:fadeInLeft 1.2s cubic-bezier(0.91, 0.01, 0.6, 0.99);
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	-webkit-animation-delay: 600ms;
	        animation-delay: 600ms;
}
.bar-2{
	top:26vh;
	background: url(../img/home_0003_middle.jpg) no-repeat left center;
	background-size: cover;
	opacity:0;
}
.pace-done .bar-2{
	-webkit-animation:fadeInRight 1.2s cubic-bezier(0.91, 0.01, 0.6, 0.99);
	        animation:fadeInRight 1.2s cubic-bezier(0.91, 0.01, 0.6, 0.99);
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	-webkit-animation-delay: 1200ms;
	        animation-delay: 1200ms;
}
.bar-3{
	top: 49vh;
	background: url(../img/home_0004_bottom.jpg) no-repeat left center;
	background-size: cover;
	opacity:0;
}
.pace-done .bar-3{
	-webkit-animation:fadeInLeft 1.2s cubic-bezier(0.91, 0.01, 0.6, 0.99);
	        animation:fadeInLeft 1.2s cubic-bezier(0.91, 0.01, 0.6, 0.99);
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	-webkit-animation-delay: 1800ms;
	        animation-delay: 1800ms;
}
#sinopsis p{
	color: #fff;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
	opacity: 0;
}
#sinopsis img, #ficha img, #ficha img, #extras img{
	max-width: 280px;
	height:auto;
	margin-bottom: 30px;
	opacity: 0;
}
#sinopsis.visible p, #sinopsis.visible img, #ficha.visible img, #ficha.visible .wrap-credito, #extras.visible img {
	-webkit-animation:fadeIn 800ms ease-in-out;
	        animation:fadeIn 800ms ease-in-out;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	-webkit-animation-delay: 800ms;
	        animation-delay: 800ms
}
#sinopsis.visible p, #ficha.visible .wrap-credito {
	-webkit-animation-delay:1200ms;
	        animation-delay:1200ms;
}
.wrap-credito{
	width:100;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	opacity: 0;
}
.job{
	width:50%;
	text-align: right;
	font-weight: 900;
	color:#fff;
	padding-right: 3px;
	
}
.name{
	width:50%;
	text-align: left;
	font-weight: 300;
	color:#fff;
	padding-left: 3px;
	
}
.tickets{
	position: absolute;
    bottom: 18vh;
    font-size: 21px;
    background: rgba(255,255,255,.3);
    line-height: 1;
    padding: .8em 1em .55em;
    color: #232525;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 0;
    border-radius: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-box-shadow: 0 0.5em 2em rgba(0,0,0,.2);
            box-shadow: 0 0.5em 2em rgba(0,0,0,.2);
		-webkit-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
	
}
.tickets:hover, .tickets:focus{
    color: #fff;
    background: #232525;
	text-decoration: none!important;

}
#extras{
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
    padding: 80px;
}
#extras .embed-responsive{
	margin-bottom:40px;
}
@media (max-width:1100px){
	#home .jp {
    height: 90vh;
	}
	.bar-3, .bar-1{
		background-position: 50% center;
	}
	.bar-2{
		background-position: 80% center;
	}
}
@media (max-width:990px){
	#home .jp {
    height: 85vh;
    right: -6vw;
	}
	.bar-3, .bar-1{
		background-position: 20% center;
	}
	.bar-2{
		background-position: 60% center;
	}
	#home .logo {
    height: 150px;
    bottom: 6vh;
}
	.tickets{
		left: 0;
    -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
            transform: translateX(40px);
    bottom: 40px;
	}
	.menu-col a {
    font-size: 36px;
}
	.menu-col img {
    width: 220px;
}
}
@media (max-width:768px){
	#home .jp {
    height: 85vh;
    right: -8vw;
	}
	.bar-1{
		background-position: 27% center;
		height: 12vh;
	}
	.bar-2{
		background-position: 49% center;
		top: 18vh;
		height: 12vh;
	}
	.bar-3{
		background-position: 21% center;
		height: 12vh;
		top: 33vh!important;
	}
	#home .logo {
           height: 150px;
    bottom: 5vh;
    left: 5vh;
    background: #fff;
    padding: 10px;
    text-align: center;
    right: 5vh;
}
	#home .logo img {
    height: calc(100% - 51px);
    width: auto;
}
	.ticketsb, .ticketsb:hover, .ticketsb:focus {

    font-size: 16px;
}
	.tickets, .tickets:hover, .tickets:focus{
	left: 3vh;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    bottom: 3vh;
    right: 3vh;
    text-align: center;
    border-radius: 0;
    background: #232525;
    color: #fff;
}
	.menu-wrapper{
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
	}
	.menu-col {
    width: 80%;
}
	.menu-col ul {
    padding: 0;
    margin-top: 40px;
}
	#sinopsis img, #ficha img, #extras img{
	max-width: 180px;
		height:auto;
	}
	.boletos{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.boletos a img{
		width:80%;
	}
}
@media (max-width:576px){
	#home .jp {
    height: 85vh;
    right: -20vw;
	}
	.menu-col a {
    font-size: 27px;
}
	#sinopsis, #ficha{
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 60px;
	}
	#sinopsis img, #ficha img, #extras img{
	max-width: 180px;
		height:auto;
	}
}

@-webkit-keyframes cd-sequence {
	 0% {
    -webkit-transform: translateY(-50%) translateX(-1.3158%);
            transform: translateY(-50%) translateX(-1.3158%);
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-98.6842%);
            transform: translateY(-50%) translateX(-98.6842%);
  }
}

@keyframes cd-sequence {
	 0% {
    -webkit-transform: translateY(-50%) translateX(-1.3158%);
            transform: translateY(-50%) translateX(-1.3158%);
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-98.6842%);
            transform: translateY(-50%) translateX(-98.6842%);
  }
}

@-webkit-keyframes cd-sequence-reverse {
	 0% {
   
		 -webkit-transform: translateY(-50%) translateX(-98.6842%);
            transform: translateY(-50%) translateX(-98.6842%);
  }
  100% {
     -webkit-transform: translateY(-50%) translateX(-1.3158%);
            transform: translateY(-50%) translateX(-1.3158%);
  }
}

@keyframes cd-sequence-reverse {
	 0% {
   
		 -webkit-transform: translateY(-50%) translateX(-98.6842%);
            transform: translateY(-50%) translateX(-98.6842%);
  }
  100% {
     -webkit-transform: translateY(-50%) translateX(-1.3158%);
            transform: translateY(-50%) translateX(-1.3158%);
  }
}
