.moverScroll{
    animation: moverDSiguiente 0.7s ease-in-out;
    animation-fill-mode: forwards; 
}
@keyframes moverScroll{
    from{scrollTo(0,0);} to { scrollTo(0,300); }    
}
#galeria-6{
	width: 100%;
	height: auto;
	box-sizing: border-box;
    position: relative;
    margin-top: 50px;
}
#galeria-6-titulo{
	width: 350px;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Principal',helvetica,verdana,sans-serif;
    color: rgba(255,255,255,1);
    font-size: 31px; 
    text-transform: uppercase;
    position: absolute;
    top: 50px;
    left: 50%;
    right: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    z-index: 3;
}
#gal-6{
    width: 100%;
    height: 600px;
    background-color: rgba(210,210,210,1);
    position: relative;
    left: 0px;
}
#gal-6-cont{
	width: 100%;
    height: 600px;
    position: relative;    
    display: inline-flex;
    overflow: hidden;
    z-index: 2;
}
.slidegal-6{
	width: 100%;
    height: 600px;
    position: absolute;
    opacity: 1;  
    left: -100%;
    z-index: 2;
    text-align: center;
    padding-top: 150px;
    box-sizing: border-box;
}
.slide-6-imagen{
	position: absolute;
	width: 400px;
	height: auto;
	top: 165px;
    left: 50%;
    right: 50%;
    transform: translate(-55%, 0%);
    -webkit-transform: translate(-55%, 0%);
}
.slide-6-imagen img{
	width: 70%;
	height: auto;
	position: relative;
	z-index: 2;
}
.slide-6-imagen-b{
	position: absolute !important;
	z-index: 1 !important;
	width: 0% !important;
	height: auto;
	left: 50%;
    right: 50%;
    top:50%;
    bottom: 50%;
    transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
.slide-6-imagen:hover .slide-6-imagen-b{
	width: 140% !important;
}
/*.slidegal-6:nth-child(5) .slide-6-imagen img{*/
/*    width:50%;*/
/*}*/
/*.slidegal-6:nth-child(6) .slide-6-imagen img{*/
/*    width:30%;*/
/*}*/


.slidegal-6:nth-child(3) .slide-6-imagen img{
    width:85%;
}
.slidegal-6:nth-child(5) .slide-6-imagen img{
    width:75%;
}
.slidegal-6:nth-child(6) .slide-6-imagen img{
    width:38%;
}
.slidegal-6:nth-child(7) .slide-6-imagen img{
    width:55%;
}
.slidegal-6:nth-child(8) .slide-6-imagen img{
    width:65%;
}




.slide-6-textos{
	width: 100%;
	height: auto;
	padding:20px 7%;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
}
.slide-6-texto{
	width: 25%;
	
	z-index: 10;
}
.slide-6-texto h3{
	color: rgba(255,255,255,1);
	font-size: 17px;
	font-family: 'Principal',helvetica,verdana,sans-serif;
	text-align: right;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.slide-6-texto p{
	padding: 0;
	margin: 0;
	color: rgba(255,255,255,1);
	font-size: 15px;
	line-height: 1.6em;
	font-family: 'Principal',helvetica,verdana,sans-serif;
	text-align: justify;
}
.slide-6-texto a{
	border:none;
	width: 130px;
	color: rgba(255,255,255,1);
	font-size: 15px;
	font-family: 'Principal',helvetica,verdana,sans-serif;
	text-align: center;
	padding:10px;
	box-sizing: border-box;
	border-left: 3px solid rgba(255,255,255,1);
    border-bottom: 3px solid rgba(255,255,255,1);
    background-color: rgba(255,255,255,.1);
    -webkit-transition: background-color, color 0.5s ease-out;
    -moz-transition: background-color, color 0.5s ease-out;
    -o-transition: background-color, color 0.5s ease-out;
    transition: background-color, color 0.5s ease-out;
    position: relative;
    display: block;
    margin-top: 20px;
}
.slide-6-texto a:hover{
	background-color: rgba(255,255,255,1);
	color: rgba(47,101,53,1);
}
.botonesGaleria{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    z-index: 5;
}
.bulletN{
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    border:2px solid rgba(255,255,255,1);
    border-radius: 50%;   
    transition: background-color 0.6s ease;
}
.botonactivoGaleria, .botonGaleria:hover {
    background-color: rgba(255,255,255,1);
}

.moverIActualGaleria{
    animation: moverIActualN 0.7s ease-in-out;
    animation-fill-mode: forwards;
}
.moverISiguienteGaleria{
    animation: moverISiguienteN 0.7s ease-in-out;
    animation-fill-mode: forwards; 
}
@keyframes moverIActualN{
    from{left:0; opacity:1;} to { left:-100%; opacity:1;}
}
@keyframes moverISiguienteN{
    from{ left:100%; opacity:1;} to {left:0%; opacity:1;}
}
.moverDActualGaleria{
    animation: moverDActualN 0.7s ease-in-out;
    animation-fill-mode: forwards;
}
.moverDSiguienteGaleria{
    animation: moverDSiguienteN 0.7s ease-in-out;
    animation-fill-mode: forwards; 
}
@keyframes moverDActualN{
    from{ left:0; opacity:1;} to { left:100%; opacity:1; }
}
@keyframes moverDSiguienteN{
    from{left:-100%; opacity:1;} to { left:0%; opacity:1;}
}
/*Texto*/
.moverCTextoN{
    animation: moverCTextoN 1.5s ease-out;
    animation-fill-mode: forwards;
    text-align: center;
}
@keyframes moverCTextoN{
    from{ left:50%; top:200%; transform: translate(-50%, 0%); -webkit-transform: translate(-50%, 0%); color:rgba(255,255,255,0.1);}
    to{ left:50%; top:25%; transform: translate(-50%, 0%); -webkit-transform: translate(-50%, 0%); color:rgba(255,255,255,1) }
}
.anteriorGaleria, .siguienteGaleria {    
    cursor: pointer;
    position: absolute;
    top: 45%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 17px;
    z-index: 5;
    text-align: center;
    line-height: 53px;
    color: rgba(255,255,255,1);
    -webkit-border-radius: 5px; 
    -moz-border-radius: 5px; 
    border-radius: 5px;
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}
.anteriorGaleria{
	left: 20px;
}
.siguienteGaleria {
    right: 20px;
}
.anteriorGaleria:hover, .siguienteGaleria:hover {
    background-color: rgba(0,0,0,0.8);
}

@media (max-width: 900px){
	#galeria-6-titulo{
		font-size: 25px;
		top: 30px;
	}
	.slidegal-6{
		padding-top: 65px;
	}
	.slide-6-imagen{
		width: 200px;
		position: relative;
		top: 20px;
	}
	.slide-6-textos{
		display: block;
	}
	.slide-6-texto{
		width: 90%;
		margin:0px auto;
		margin-top: 20px;
	}
	.anteriorGaleria{
		left: 0;
		font-size: .8em;
	}
	.siguienteGaleria{
		right: 0;
		font-size: .8em;
	}
	.anteriorGaleria:hover,
	.siguienteGaleria:hover{
		background-color: rgba(0,0,0,0);
	}
}
@media (max-width: 550px){
	.anteriorGaleria{
		left: -10px;
		font-size: .8em;
	}
	.siguienteGaleria{
		right: -10px;
		font-size: .8em;
	}
	.slide-6-texto p{
		font-size: 13px;
		line-height: 1.3em;
	}
	.slide-6-imagen{
		width: 165px;
	}
	.slide-6-texto a{
		width: auto;
		font-size: 13px;
	}
	#galeria-6-titulo{
	    width:300px;
	}
}