@import 'https://fonts.googleapis.com/css?family=Lobster|Raleway:300,400,700,800';

html, body {
    width: 100%;
    height: 100%;
    background-color: #fff;
}
.body_intro{
   background-color: #000; 
}
header #back {
    position: absolute;
    right: 200px;
    top: 15px;
    z-index: 1001;
}
header #back a {
    height: 25px;
    padding-left: 22px;
    line-height: 25px;
    color: #000;
    font-size: 14px;
    font-weight: 600;    
    background: url(../img/btn_back.png) no-repeat left;
    opacity: .5;
    transition: opacity 0.5s ease 0s;
}
header #back a:hover {
    opacity: 1;
}
main {
    width: 100%;
}
section {
    background-size: cover;
    background-position: center;
}
section .main {
    max-width: 1100px;    
    padding: 75px 10% 100px 10%;
    margin: auto;
    text-align: left;
}
section h1 {
    margin-bottom: 25px;
	font-family: 'Raleway', sans-serif;
	font-size: 2.7em;
    color: #15bce6;
/*    background-color: rgba(0,0,0,0.7);*/
    text-align: center;
    font-weight: 800;
}
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;
        text-align: center;
}
article .main {
    max-width: 1000px;
    padding: 40px 5% 25px 5%;
    margin: auto;
}
article img {
    display: block;
    max-width: 100%;
    margin: 0 auto 30px 0;
}
article h1 {
    margin-bottom: 10px;
	font-family: 'Raleway', sans-serif;
    
	font-size: 2.2em;
        color: #15bce6;
}
article h2 {
    margin-bottom: 15px;
	font-size: 1.2em;
	font-weight: 200;
	color: #000;
}
article p {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	margin-bottom: 20px;
    color: #000;
}
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: 90%;
    margin: 30px auto;
    padding: 0 0 0 20px;
    font-style: italic;
	font-family: 'Open Sans', serif;
    font-size: 18px;
    font-weight: 600;	
    border-left: #15bce6 3px solid;
    color: #000;
}
blockquote span {
	margin-top: 15px;
	font-family: 'Open Sans', serif;
	font-size: 16px;
    color: #15bce6;
}
/*SLIDER*/
.slider {
    width: 100%;
    height: 500px;
    position: relative;
    background-color: #f4f4f4;
}
.slider .controls {
    width: 100%;
    height: 85%;    
    position: relative;
    z-index: 10;
}
.slider .controls ul.tabs {
    width: 100%;
    position: absolute;
    bottom: 10px;
    text-align: center;
}
.slider .controls ul.tabs li {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50%;
    background: #15bce6;
    cursor: pointer;
    opacity: .5;
}
.slider .controls ul.tabs li.current {
    opacity: 1;
}
.slider .controls ul.arrows {
    width: 100%;
    position: absolute;
    top: 40%;
}
.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: 5px;
    background-image: url(../img/arrow_backward.png);
}
.slider .controls ul.arrows li.forward {
    right: 5px;
    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: #15bce6;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .5;
    transition: all .5s ease;
        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*/
#playlist {
	margin-top: 40px;
	text-align: center;
}
#playlist li {
	display: inline-block;
	margin: 10px;
}
#playlist li a {
	width: 250px;
	display: block;
	background: #000;
	transition: background 1s ease;
}
#playlist li a:hover {
	background: #393939;
}
#playlist li a img {
	width: 100%;
	height: 170px;
	margin: 0;
}
#playlist li a span {
	display: block;
	padding: 20px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-align: left;	
}
#playlist li a span em {
	display: block;
	font-size: 11px;
	font-style: normal;
	font-weight: 400;
	
}
/*OTROS*/

/* 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;
}

/*  MEDIA QUERY AJUSTES MOBILE  */
@media (max-width: 400px) {
    #mobile_view{display: block;}
    #desktop_view{display: none;}
}

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


/*  MEDIA QUERY AJUSTES MOBILE  */
@media (max-width: 900px) {
    section h1 {
    font-size: 35px;
    }  
    section h2 {
    font-size: 14px;
    }
    iframe{
        height: 200px;
        margin-bottom: 25px;
    }
}

/* links */

.links {
	margin: 40px 0;
}
.links li {
	max-width: 600px;
	margin: 10px auto;
}
.links li a {
	padding: 20px;
	display: block;
    text-decoration: none !important;
	background: #efefef;
	transition: background 1s ease;
}
.links li a:hover {
	background: #cecece;
}
.links li a img {
	width: 100px;
	float: left;
	margin: 0;
}
.links li a span {
	margin-left: 20px;
	float: left;
	font-size: 14px;
	font-weight: 600;
	color: #000;
	text-align: left;
    text-decoration: none;
}
.links li a span em {
	display: block;
	font-size: 11px;
	font-style: normal;
	font-weight: 400;
}
.links li a i {
	display: block;
	clear: both;
}
@media screen and (max-width: 400px) {
    .links li a img {
        float: none;
        margin: 0;
        margin-bottom: 20px;
    }    
    .links li a span {
        margin-left: 0px;
        float: none;
    }
}