@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

@import url('https://fonts.googleapis.com/css?family=Bilbo+Swash+Caps');

html, body {
    width: 100%;
    height: 100%;
}
.grad {
/*    background: blue;*/
}
.fondo{
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: -2;
    background-size: cover;
    background-image: linear-gradient( rgba(0,0,0,0.1),rgba(0,0,0,0.1)),url(/gnfactory/LNC/GNF/2016/11/04/0007/img/degradado_nubes_banner.png);
    background-repeat: no-repeat;
    background-position: bottom;
}
    
main {
    width: 100%;
}
section {
    background-size: cover;
    background-position: center;
}
section .main {
    max-width: 1100px;    
        padding: 75px 10% 5px 10%;
    margin: auto;
    text-align: left;
}
section h1 {
        margin-bottom: 25px;
    font-family: 'Bilbo Swash Caps', cursive;
    font-size: 70px;
    line-height: 52px;
    letter-spacing: 1px;
    color: #e5168e;
}
section h2 {
	font-size: 1.2em;
	font-weight: 200;
	color: #ddd;
}
section p {
	margin-bottom: 20px;
    color: #e5168e;
    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: 'Bilbo Swash Caps', cursive;
	font-size: 2.2em;
}
article h2 {
        margin-bottom: 23px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 300;
    color: #147b8e;
}
article p {
	font-size: 18px;
	line-height: 20px;
	font-weight: 400;
	margin-bottom: 20px;
}
article p.column {
    width: 40%;
    margin-left: 5%;
    float: right;
}

blockquote {
	    width: 80%;
    margin: 30px auto;
    padding: 0 0 0 20px;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    border-left: #e5168e 2px solid;
}
blockquote span {
	margin-top: 15px;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
    color: #e5168e;
}

@media screen and (max-width: 600px) {
    article p.column {
        width: 90%;
        margin: auto;
        float: none;
    }
    blockquote {
    width: 98%;
    font-size: 14px;
    }
}

/*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: #06aef5;
    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: 29px;
    height: 89px;
    position: absolute;
    cursor: pointer;
    opacity: .5;
    transition: opacity 0.5s ease 0s;
    list-style: none;
}
.slider .controls ul.arrows li.backward {
    left: 5px;
    background-image: url(/gnfactory/LNC/GNF/2016/11/04/0007/img/arrow_backward.png);
}
.slider .controls ul.arrows li.forward {
    right: 5px;
    background-image: url(/gnfactory/LNC/GNF/2016/11/04/0007/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;
        background-color: #e32585;
}
.slider .items .item .image {
    width: 100%;
    height: 80%;
    margin-bottom: 15px;
    background-position: center;
    background-size: cover;     
}
.slider .items .item p {
    width: 90%;
    height: 20%;
    max-width: 600px;
    margin: auto;
	color: #fff;	
        font-size: 12px;
    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: #e5168e;
    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*/

/* listas */
.items_recuadro {
    width: 95%;
    margin: 0 auto;
}

.items_recuadro ul li{
    color: #e5168e;
    list-style-type: circle;
}
ul li{
   list-style-type: circle;
   color: #e5168e;
    margin-bottom: 20px;
}

ul li span {
       color: #000;
}
/* cierra listas */

.fuente{
    text-transform: uppercase;
    font-size: 14px;
    color: #616161;
}

@media screen and (max-width: 600px) {
    .slider .items .item .image {
    height: 40%;
    }
    .slider .controls {
    height: 45%;
    }
    .slider .items .item p {
    height: 50%;
    }
    .slider {
    height: 420px;
    }
    .slider .controls ul.arrows li {
    list-style: none;
    }
    #logo span {
    display: none;
    }
}



#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;}
}