﻿.contenedor-carrusel{
    position: relative;
    display: inline-block;
    text-align: center;
}

.texto-inf-izq{
    position: absolute;
    bottom: 25px;
    left: 10px;
	color: #ffffff;
	text-shadow: 1px 1px #000000, -1px -1px #000000, 1px -1px #000000, -1px 1px #000000;
	letter-spacing: -0.5px; 
	text-align: left;
	line-height: 1.5 ;
}

.texto-sup-izq{
    position: absolute;
    top: 15px;
    left: 10px;
	color: #ffffff;
	text-shadow: 1px 1px #000000, -1px -1px #000000, 1px -1px #000000, -1px 1px #000000;
	letter-spacing: -0.5px; 
	text-align: left;
}

.texto-sup-der{
    position: absolute;
    top: 0px;
    left: 750px;
	text-align: left;
}


.texto-sup-der2{
    position: absolute;
    top: 0px;
    left: 620px;
	text-align: left;
}



.texto-inf-der{
    position: absolute;
    bottom: 15px;
    right: 15px;
	color: #ffffff;
	text-shadow: 1px 1px #000000, -1px -1px #000000, 1px -1px #000000, -1px 1px #000000;
	letter-spacing: -0.5px; 
	text-align: left;
	line-height: 1.5 ;
}

 
.texto-encima{
    position: absolute;
    top: 10px;
    left: 10px;
}
.centrado{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}




.zoom_out{
    transition: width 1s, height 1s, transform 1s;
    -moz-transition: width 1s, height 1s, -moz-transform 1s;
    -webkit-transition: width 1s, height 1s, -webkit-transform 1s;
    -o-transition: width 1s, height 1s,-o-transform 1s;
}
.zoom_out:hover{
    transform : scale(0.9);
    -moz-transform : scale(0.9);      /* Firefox */
    -webkit-transform : scale(0.9);   /* Chrome - Safari */
    -o-transform : scale(0.9);        /* Opera */
}




.zoom_in {
    transition: width 1s, height 1s, transform 1s, box-shadow 1s; 
    -moz-transition: width 1s, height 1s, -moz-transform 1s, -moz- box-shadow 1s;
    -webkit-transition: width 1s, height 1s, -webkit-transform 1s, -webkit-box-shadow 1s;;
    -o-transition: width 1s, height 1s,-o-transform 1s, -o-box-shadow 1s;;
}
.zoom_in:hover{
    transform : scale(1.1); box-shadow: 10px 10px 16px 0px rgba(0,0,0,0.75);
    -moz-transform : scale(1.1); -moz-box-shadow: 10px 10px 16px 0px rgba(0,0,0,0.75);
    -webkit-transform : scale(1.1); -webkit-box-shadow: 10px 10px 16px 0px rgba(0,0,0,0.75);
    -o-transform : scale(1.1); -o-box-shadow: 10px 10px 16px 0px rgba(0,0,0,0.75);
}




.slide
{
  animation: aparecer 2s ease-out 1; /*Definimos un nombre para la animaciÃ³n (â€œaparecerâ€), un tiempo total de 4segundos de duraciÃ³n y un movimiento suavizado al final*/
-webkit-animation: aparecer 2s ease-out 1;/*Chrome, Safari, Android, iOs*/
-moz-animation: aparecer 2s ease-out 1; /*Firefox*/
-o-animation: aparecer 2s ease-out 1; /*Opera*/
-ms-animation: aparecer 2s ease-out 1; /*Internet Explorer*/
}

@keyframes aparecer {
from {margin-left: 25%; opacity: 0; transform: scale(0.5);}  
43% {margin-left:-20; opacity: 1; transform: scale(0.85);}
to {margin-left:0; opacity: 1; transform: scale(1);} 
}

@-o-keyframes aparecer {
from {margin-left: 25%; opacity: 0; transform: scale(0.5);}  
43% {margin-left:-20; opacity: 1; transform: scale(0.85);}
to {margin-left:0; opacity: 1; transform: scale(1);} 
}

@-moz-keyframes aparecer {
from {margin-left: 25%; opacity: 0; transform: scale(0.5);}  
43% {margin-left:-20; opacity: 1; transform: scale(0.85);}
to {margin-left:0; opacity: 1; transform: scale(1);} 
}

@-webkit-keyframes aparecer {
from {margin-left: 25%; opacity: 0; transform: scale(0.5);}  
43% {margin-left:-20; opacity: 1; transform: scale(0.85);}
to {margin-left:0; opacity: 1; transform: scale(1);} 
}

@-ms-keyframes aparecer {
from {margin-left: 25%; opacity: 0; transform: scale(0.5);}  
43% {margin-left:-20; opacity: 1; transform: scale(0.85);}
to {margin-left:0; opacity: 1; transform: scale(1);} 
}
