 div.diaporamas_12_responsive_default img
{
filter: none !important;
}
 div#blocks_24{
    margin-bottom: 200px;
    margin-top: 30px;
}
*{
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
    box-sizing: border-box;
}
*:before,
*:after{
    box-sizing: border-box;
}
html,
body{
min-height: 100%;
}
body{
background-image: radial-gradient(mintcream 0%, lightgray 100%);
}
#diapo h1{
display: table;
margin: 5% auto 0;
text-transform: uppercase;
font-family: 'Anaheim', sans-serif;
font-size: 4em;
font-weight: 400;
text-shadow: 0 1px white, 0 2px black;
}
.container1{
margin: 4% auto; 
width: 210px; 
height: 5px;
position: relative;
perspective: 1000px;
} 
#carousel{
        margin-left: -160px;
    left: 50%;
width: 320px;;
height: 100%;
position: absolute;
transform-style: preserve-3d;
animation: rotation 50s infinite linear;
}
#carousel:hover{
animation-play-state: paused;
}
#carousel figure{
display: block;
position: absolute;
width: 90%;
height: 50%px;
left: 10px;
top: 10px;
background: black;
overflow: hidden;
border:solid 1px #49c3ca;
border-radius: 20px;
opacity: 1;
}
#carousel figure:nth-child(1){transform: rotateY(0deg) translateZ(288px);}
#carousel figure:nth-child(2) { transform: rotateY(60deg) translateZ(288px);}
#carousel figure:nth-child(3) { transform: rotateY(1202deg) translateZ(288px);}
#carousel figure:nth-child(4) { transform: rotateY(180deg) translateZ(288px);}
#carousel figure:nth-child(5) { transform: rotateY(240deg) translateZ(288px);}
#carousel figure:nth-child(6) { transform: rotateY(300deg) translateZ(288px);}
#carousel figure:nth-child(7) { transform: rotateY(360deg) translateZ(288px);}
#diapo img{
max-height: 100%;
    height: auto;
    width: 100%;
-webkit-filter: grayscale(1);
cursor: pointer;
transition: all .5s ease;
}
#diapo img:hover{
-webkit-filter: grayscale(0);
  transform: scale(1.2,1.2);
}

@keyframes rotation{
from{
transform: rotateY(0deg);
}
to{
transform: rotateY(360deg);
}
}