*{ padding: 0px;
    margin: 0px;
    list-style: none;
    box-sizing: border-box;
}

a{text-decoration: none;}
h3{font: lighter 30px Verdana;color: #666;padding: 20px;}
h2{font: lighter 18px Verdana;color: #555;padding: 20px 10px 20px 10px;}
h1{font: lighter 10px Verdana;}

header{ width: 100%;height: 50px;box-shadow: 0px 0px 5px green;background: #666;}

.menu-fixed{
        position: fixed;
        z-index: 500;
        top: 0;
        width: 100%;
        box-shadow: 0px 4px 3px rgba(0,0,0,.5);
}
.menu{
        background: #666;
        padding: 10px;
        color: #fff;
        font: 16px Verdana;
        transition: border .7s, color .7s;
}
.menu h1{
        display: inline-block;
        width: 28%;
        text-align: center;
        font-size: 23px;
}
.menu ul{
        display: inline-block;
        width: 69%;
        text-align: right;
}
.menu ul li{
        display: inline-block;
        width: 13%;
        text-align: center;
}
.menu ul li a{
        /*padding-left: 10%;*/
        color: #fff;
        
}
.menu ul li a:hover{
        color: blue;
        text-decoration: underline;
}
/*Inicia Botonera Movil*/

#menuMovil{
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    left: -100%;
}
#menuMovil h2{
    color: rgb(171,171,171);
}
#botoneraMovil{
    position: absolute;
    width: 200px;
    height: auto;
    background: white;
    top: 50px;
    left: -100%;
    transition: left .5s;
}
#botoneraMovil ul li{
    width: 100%;
    line-height: 40px;
    text-align: left;
    border: 1px solid white;
    background: #ccc;
    padding-left: 70px;
}
#botoneraMovil ul li:hover{
    background: #aaa;
    width: 220px;
}
#botoneraMovil ul li a{
    color: #fff;font: 18px Verdana;
    width: 100%;
    height: 100%;
    display: inline-block;
}
#labelMovil span{
    position: absolute;
    width: 30px;
    height: 30px;
    background: url(../img/menu.png) no-repeat;
    background-size: contain;
    margin: 5px;
    cursor: pointer;
    top: 10px;
}
#botonMovil{
    display: none;
}
#labelMovil h2{
    position: absolute;
    top: 0px;
    left: 60px;
}
/*
#labelMovil span:hover{
    background: blue;
}
*/
#botonMovil:checked + #labelMovil span{
    background: url(../img/menu2.png) no-repeat;
    background-size: contain;
}
#botonMovil:checked ~ #botoneraMovil{
    left: 0px;
}

/*Section Inicio*/

#inicio{width:100%;height:400px;background: url(../img/inicioG.jpg) no-repeat top;background-size: cover; -webkit-background-size: cover;-moz-background-size: cover;padding-top: 140px;text-align: center;}
#inicio img{
    height: 200px;
    width: 70%;
}
#inicio img:hover{
    transform: scale(.60);
}

/*Section Descripcion*/

.slider{
    width:100%;
    height: 200px;
    padding: 10px;
    margin: 0px;
    overflow: hidden;
}
.slider ul{
    display: flex;
    padding: 0;
    width: 400%;
    height: 100%;
    animation: cambio 25s infinite;
    animation-timing-function:linear;
}
.slider li{
    width: 100%;
    list-style: none;
    height: 100%;
    padding: 0px;
}
.slider div{
    height: 100%;
    text-align: center;
    padding: 0px 10px 0px 10px;
}
.slider img{
    width: 100%;
    height: 100%;
    box-shadow: 0px 5px 4px rgba(0,0,0,.6);
}
.slider h2{
    height: 20%;
    padding-top: 10px;
    width: 100%;
}
.slider p{
    font: bold 17px Verdana;
    color: #666;
    text-align:center;
    height: 80%;
    padding: 10px;
    width: 100%;
}
@keyframes cambio{
    0% {margin-left: 0;}
    18% {margin-left: 0;}
    
    23% {margin-left:-100%;}
    41% {margin-left:-100%;}
    
    46% {margin-left:-200%;}
    64% {margin-left:-200%;}
    
    69% {margin-left:-300%;}
    87% {margin-left:-300%;}
    
    92% {margin-left:0%;}
    100% {margin-left:0%;}
}
#vermas{
    width: 100%;
    background: url(../img/descgal3G.jpg) no-repeat;
    background-size:cover;
    padding-top: 35%;
    padding-left: 65%;
    box-shadow: 0px 5px 4px rgba(0,0,0,.6);
}
#vermas a{
    background: white;
}
/*Section Nosotros*/

#nosotros{
    padding-left: 60px;
    padding-right: 40px;
    width: 100%;
}
#nosotros div{
    padding: 20px 0px 0px 0px;
}
#nosotros div h3{
    padding-top: 40px;
    padding-left: 20px;
}
#nosotros div h2{
    padding: 0px 20px 0px 150px;
    text-align: left;
}
#nosotros div img{
    width: 100%;
    height: 240px;
    padding-top: 50px;
}

/*Section valores*/

#valores{
    padding: 0px;
    text-align: center;
    height: 520px;
}
#valores h3{
    color: #172983;
}
#valores input{
    display: none;
}
#valores article{
    display:inline-block;
    width: 24%;
    overflow: hidden;
    transition: width .5s;
    height: 350px;
    border: 1px solid #555;
    background: #86CEEF;
}
#valores label{
    display: block;
    width: 100%;
    text-align: center;
    background: #107EBE;
    cursor: pointer;
    padding: 0px;
    height: 25px;
    color: white;
}
#valores div{
    padding: 0px;
    text-align: center;
    width: 100%;
    height: 90px;
    opacity: .7;
    margin-bottom: 0px;
}
#valores div img{
    padding-top: 0px;
    width: 100%;
    height: auto;
}
#valores p{
    padding: 5%;
    text-align:center;
    font: bold 12px Verdana;
    height: auto;
    color: white;
    opacity: .8;
    background: rgba(0,0,0,.4);
    bottom: 5px;
}

/*checked valor1*/
input#bloque1:checked ~ #cont1{
    width: 67%;
}
input#bloque1:checked ~ #cont2{
    width: 10%;
}
input#bloque1:checked ~ #cont3{
    width: 10%;
}
input#bloque1:checked ~ #cont4{
    width: 10%;
}
input#bloque1:checked ~ input#bloque2:checked{
    
}
/*checked valor2*/
input#bloque2:checked ~ #cont1{
    width: 10%;
}
input#bloque2:checked ~ #cont2{
    width: 67%;
}
input#bloque2:checked ~ #cont3{
    width: 10%;
}
input#bloque2:checked ~ #cont4{
    width: 10%;
}
/*checked valor3*/
input#bloque3:checked ~ #cont1{
    width: 10%;
}
input#bloque3:checked ~ #cont2{
    width: 10%;
}
input#bloque3:checked ~ #cont3{
    width: 67%;
}
input#bloque3:checked ~ #cont4{
    width: 10%;
}
/*checked valor4*/
input#bloque4:checked ~ #cont1{
    width: 10%;
}
input#bloque4:checked ~ #cont2{
    width: 10%;
}
input#bloque4:checked ~ #cont3{
    width: 10%;
}
input#bloque4:checked ~ #cont4{
    width: 67%;
}

/*Section Servicios*/

#servicios{
    width: 100%;
    padding: 20px 0px 10px 0px;
}
#servicios div{
}
#servicios section{
}
#servicios section article{
    text-align: center;
    height: 270px;
}
#servicios section article#textservicios{
/*    height: 500px;*/
    padding: 20px;
    border: 0px;
}
#servicios section article#textservicios img{
    padding-top: 50px;
    width: 100%;
    height: auto;
}
#servicios section article div{
    border: 1px solid #555;
    height: 95%;
    width: 95%;
    padding: 0px;
    box-shadow: 0px 5px 4px rgba(0,0,0,.6);
}
#servicios section article img{
    width: 90%;
    height: 150px;
    padding-top: 10px;
}
#servicios section article p{
    padding: 10px;
}

/*Section Galeria*/
#galeria{
    width: 100%;
    padding: 20px 20px 10px 20px;
    position: relative;
    margin: auto;
    height: 610px;
}
#galeria ul{
    position: relative;
    width: 100%;
    margin: 5px;
    top: 10px;
    height: 500px;
    box-shadow: 0px 0px 30px #222;
    padding: 0px;
}
#galeria ul li{
    width: 25%;
    height: 85px;
    padding: 0px;
}
#galeria ul li div{
    position: absolute;
    opacity: 0;
    right: 10px;
    top: 10px;
    transition: all .2s ease-out;
    height: 90%;
    width: 70%;
}
#galeria ul li div h1{
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 20px;
    color: white;
    font-weight: 100;
}
#galeria ul li div p{
    position: absolute;
    z-index: 1;
    bottom: 4px;
    background: rgba(0,0,0,.4);
    color: white;
    width: 100%;
    line-height: 60px;
    padding-left: 20px;
}
#galeria ul li div img{
    height: 100%;
    width: 100%;
    padding-top: 0px;
}
#galeria ul li div#gal0{
    opacity: 1;
}
#galeria ul li input{
    display: none;
}
#galeria ul li label{
    width: 150px;
    height: 80px;
    position: relative;
    z-index: 3;
    bottom: 50px;
    left: 15px;
    margin: 0px;
    cursor: pointer;
}
#galeria ul li label img{
    width: 90%;
    height: 80px;
    padding-top: 0px;
}
input#select1:checked ~ #gal1{
    opacity: 1;
    z-index: 1;
}
input#select2:checked ~ #gal2{
    opacity: 1;
    z-index: 1;
}
input#select3:checked ~ #gal3{
    opacity: 1;
    z-index: 1;
}
input#select4:checked ~ #gal4{
    opacity: 1;
    z-index: 1;
}
input#select5:checked ~ #gal5{
    opacity: 1;
    z-index: 1;
}
input#select6:checked ~ #gal6{
    opacity: 1;
    z-index: 1;
}
input#select7:checked ~ #gal7{
    opacity: 1;
    z-index: 1;
}
input#select8:checked ~ #gal8{
    opacity: 1;
    z-index: 1;
}

/*Section Contacto*/

#contacto{
    width: 100%;
    min-height: 400px;
    padding: 20px 0px 10px 0px;
}
#contacto div{
    padding: 0px 15px 0px 10px;
}
#contacto div h3{
    padding-top: 40px;
    text-align: center;
}
#contacto div p{
    text-align:center;
    font: bold 16px Verdana;
    height: auto;
    padding: 10px 30px 10px 30px;
}
#contacto div article{
    padding: 0px 10px 0px 10px;
}
#contacto div article p{
    padding: 2px;
}
#contacto div form{
    width: auto;
    background: #fff;
    padding: 40px 5px 20px 10px;
    text-align: center;
}
#contacto div form input{
    width: 90%;
    height: 40px;
    font: 17px Verdana;
    border: 2px solid #666;
    margin-bottom: 5px;
}
#contacto div form textarea{
    width: 90%;
    height: 220px;
    font: 17px Verdana;
    border: 2px solid #666;
    margin-bottom: 5px;
}
#contacto div iframe{
    width: 99%;
    height: 90%;
}
#map{
    width: 100%;
    height: 360px;
    text-align: right;
    padding-top: 20px;
}

footer{width: 100%;background: #666;text-align: center;}
footer p{color: #fff;padding: 0px 10px 0px 10px;font: lighter 14px Verdana;}
footer p a{color: #fff;}

[class*="button-"]{
    border-radius: 100%;
    width: 50px;
    height: 50px;
    margin: 25px;
}
.button-face{
    background: url(../imagenes/1.jpg);
    
}
.button-face:hover{
    background: blue;
}
.button-twitter{
    background: url(../imagenes/2.jpg);
}
.button-twitter:hover{
    background: blue;
}
.button-whatts{
    background: url(../imagenes/3.jpg);
}
.button-whatts:hover{
    background: blue;
}
#servicios section a,#articulos section,#articulos section article,header section #menu a, header section #menu,#inicio section a,#inicio section h2,#inicio section p{transition: border .7s, color .7s, width .7s,background .7s,margin .7s,font .7s,opacity .7s;}
 
.main{
    position: relative;
    margin: auto;
    width: 100%;
    height: auto;
}
.fila{
    position: relative;
    margin: auto;
    width: 100%;
    height: auto;
    clear: both;
    display: table;
}
[class*="col-"]{
    float:left;
	border:0px;
	padding:20px;
}
