@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);

html, body {
    width: 100%;
    height: 100%;
    background-color: #000;
    background-image: url(../img/BG.png);
}
main {
    width: 100%;
}
section {
    background-size: cover;
    background-position: center;
}
section .main {
    max-width: 1000px;    
    padding: 75px 10% 100px 10%;
    margin: auto;
    text-align: left;
}
section h1 {
    margin-bottom: 25px;
	font-family: 'Roboto Slab', serif;	
	font-size: 2.7em;
    color: #fff;
}
section h2 {
	font-size: 1.2em;
	font-weight: 200;
	color: #ddd;
}
section p {
	margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
	line-height: 20px;
	font-weight: 400;
}
article .main {
    max-width: 1000px;
    padding: 40px 10% 25px 10%;
    margin: auto;
}
article img {
    display: block;
    max-width: 100%;
    margin: 0 auto 30px 0;
}
article h1 {
    margin-bottom: 10px;
	font-family: 'Roboto Slab', serif;	
	font-size: 2.2em;
}
article h2 {
    margin-bottom: 15px;
	font-size: 1.2em;
	font-weight: 200;
	color: #696969;
}
article p {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	margin-bottom: 20px;
    color: #fff;
}
article p.column {
    width: 40%;
    margin-left: 5%;
    float: right;
}
@media screen and (max-width: 600px) {
    article p.column {
        width: 90%;
        margin: auto;
        float: none;
    }
}
blockquote {
	width: 80%;
    margin: 30px auto;
    padding: 0 0 0 20px;
    font-style: italic;
	font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 600;	
    border-left: #4a4a4a 10px solid;
}
blockquote span {
	margin-top: 15px;
	font-family: 'Open Sans', serif;
	font-size: 16px;
    color: #ccc;
}
/*SLIDER*/
.slider {
    width: 100%;
    height: 500px;
    position: relative;
/*    background-color: #f4f4f4;*/
}
.slider .controls {
    width: 100%;
    height: 95%;    
    position: relative;
    z-index: 10;
/*    left: 20%;*/
}
.slider .controls ul.tabs {
    width: 100%;
    position: absolute;
    bottom: 10px;
    text-align: center;
    margin-left: calc(50% - 151px);
}
.slider .controls ul.tabs li {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50%;
    background: #009fb0;
    cursor: pointer;
    opacity: .5;
}
.slider .controls ul.tabs li.current {
    opacity: 1;
}
.slider .controls ul.arrows {
    width: 100%;
    position: absolute;
    top: 37%;
    left: -10%;
}
.slider .controls ul.arrows li  {
    width: 40px;
    height: 90px;
    position: absolute;
    cursor: pointer;
    opacity: .5;
    transition: opacity 0.5s ease 0s;
}
.slider .controls ul.arrows li.backward {
    left: 25px;
    background-image: url(../img/arrow_backward.png);
}
.slider .controls ul.arrows li.forward {
    right: -115px;
    background-image: url(../img/arrow_forward.png);
}
.slider .controls ul.arrows li:hover {
    opacity: 1;
}
.slider .disabled {
    visibility:hidden !important;
}
.slider .items {
    width: 100%;
    height: inherit;
    position: absolute;
    top: 0;
}
.slider .items .item {
    width: 100%;
    height: inherit;
	position: absolute;
	display: none;
}
.slider .items .item .image {
    width: 100%;
    height: 85%;
    margin-bottom: 15px;
    background-position: center;
    background-size: cover;     
}
.slider .items .item p {
    width: 90%;
    height: 10%;
    max-width: 600px;
    margin: auto;
	color: #000;	
    font-size: 0.8em;
    line-height: 15px;
    font-weight: 300;
    text-align: center;
    overflow: hidden;
}
/*SLIDER*/
/*OTROS*/
/*
.arrow {
    width: 50px;
    height: 50px;
    display: block;
    margin-top: 20px;
    border-radius: 50%;
    background-color: #000;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .5;
    transition: all .5s ease;
}
*/

.arrow{
    margin-top: 470px;
    width: 140px;
    height: 40px;
    border: solid 1px #d4da3f;
    box-shadow: 0px 0px 19px -9px #000;
    position: relative;
    top: 0;
    text-align: center;
    font-weight: 700;
    line-height: 35px;
    font-size: 12px;
    color: #d4da3f;
    letter-spacing: 5px;
    text-align: center;
    display: block;
    font-family: 'News Cycle', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin: 0 auto;
}

.arrow.down {
    background-image: url(../svg/arrow_down.svg);
}
.arrow:hover {
    opacity: 1;
}
/*OTROS*/
/*ANIMATION*/
@keyframes animationFrames{
  0% {
    opacity:0;
    background-size: 120%;
  }
  10% {
    opacity:1;  
    background-size: 120%;
  }
  100% {
    opacity:1;
    background-size: 100%;
  }
}
@-moz-keyframes animationFrames{
  0% {
    opacity:0;
    background-size: 120%; 
  }
  10% {
    opacity:1;  
    background-size: 120%;
  }
  100% {
    opacity:1;
    background-size: 100%;
  }
}
@-webkit-keyframes animationFrames {
  0% {
    opacity:0;
    background-size: 120%;  
  }
  10% {
    opacity:1;  
    background-size: 120%;
  }    
  100% {
    opacity:1;
    background-size: 100%;
  }
}
@-o-keyframes animationFrames {
  0% {
    opacity:0;
    background-size: 120%; 
  }
  10% {
    opacity:1;  
    background-size: 120%;
  }
  100% {
    opacity:1;
    background-size: 100%;
  }
}

@-ms-keyframes animationFrames {
  0% {
    opacity:0;
    background-size: 120%;
  }
  10% {
    opacity:1;  
    background-size: 120%;
  }
  100% {
    opacity:1;
    background-size: 100%;
  }
}
/*ANIMATION*/

/*OTROS*/

main p{
    text-align: center;
    margin: 0 auto;
}
main h1{
    text-align: center;
    margin: 0 auto; 
    font-family: 'News Cycle', sans-serif;
    font-size: 36px;
    font-weight: 400;
        color: #fff;
}

#intro{
        height: 860px;
    background-image: url(../img/imageUNO.jpg);
}

main .ico{
    text-align: center;
    margin: 0 auto;
        margin-top: 130px;
}

footer .ico{
    text-align: center;
    margin: 0 auto;
        margin-top: 130px;
}

/*PRUEBA*/

main .seccion#documental, main .seccion#director{
    height: 802px;
}
main .seccion .holdPlayer{
    padding: 20px 0;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    z-index: 10;
    height: 760px;
}
main .seccion #conciertos{
    height: 950px;
}
main .seccion .yt_player{
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 760px;
}
main .seccion .holdPlayer .playBtn{
    position: absolute;
    bottom: 150px;
    left: calc(50% - 95px);
    opacity: 1;
    transition: opacity 0.5s ease 0s;
}
main .seccion .chapter_contain{
    padding: 30px 0;
    position: relative;
    width: 1138px;
    margin: 0 auto;
}

main .seccion .apertura {
    margin: 100px auto 30px auto;
}

/* info responsive */

#mobile_view{display: none;}
/*  ESTILOS DEFAULT - FIN PLANTILLA -  */

/*  ESTILOS CUSTOM */

#desktop_view, #mobile_view{margin: 15px; 0;}
#desktop_view .wrapper{
    width: 590px;
    height: 690px;
    overflow: hidden;
}
.imageFull{width: 100%;}
#mobile_view .wrapper{
    height: 400px;
    overflow: hidden;
}



#desktop{
    overflow: hidden;
    width: 100%;
    height: 664px;
}

/*OTROS*/

.disclaimer{
    width: 300px;
    margin: 0 auto;
    color: #009FB0;
    font-size: 15px;
    text-align: center;
    line-height: 13px;
}

/*  MEDIA QUERY AJUSTES MOBILE  */
@media (max-width: 400px) {
    #mobile_view{display: block;}
    #desktop_view{display: none;}
    .slider .controls ul.tabs {
    display: none;
    }
    .slider .items .item p {
    height: 30%;
    }
    .disclaimer {
    color: #fff;
    }
    .slider .controls ul.arrows li.backward {
    left: 11px;
    background-image: url(../img/arrow_backward.png);
    }
    .slider .controls ul.arrows li.forward {
    right: -49px;
    background-image: url(../img/arrow_forward.png);
    }
}
