/*body {
  margin: 0;
  background: lightgray;
  text-align: center;
  font-family: sans-serif;
  color: #fefefe;
}*/
.container_carousel {
  position: relative;
  width: 430px;
  margin: 50px auto 150px auto;
  perspective: 10000px;
}

@media 
only screen and (max-width: 760px) {  
  #features03-3  {display: none;} 
  }

.carousel3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d; 
  animation: rotate360 15s infinite forwards linear;
}
.carousel__face { 
  position: absolute;
  width: 430px;
  height: 187px;
  top: 20px;
  left: 0px;
  right: 0px;
  background-size: cover;
  box-shadow:inset 0 0 0 200px rgba(0,0,0,0.5);
  display: flex;
}

/*span {
  margin: auto;
  font-size: 2rem;
}*/


.carousel__face:nth-child(1) {
  background-image: url("../images/Presentation/Presentation2-1.jpg");
  transform: rotateY(  0deg) translateZ(430px); }
.carousel__face:nth-child(2) { 
  background-image: url("../images/Presentation/Presentation2-2.jpg");
    transform: rotateY( 72deg) translateZ(430px); }
.carousel__face:nth-child(3) {
  background-image: url("../images/Presentation/Presentation2-3.jpg");
  transform: rotateY( 144deg) translateZ(430px); }
.carousel__face:nth-child(4) {
  background-image: url("../images/Presentation/Presentation2-4.jpg");
  transform: rotateY(216deg) translateZ(430px); }
.carousel__face:nth-child(5) { 
  background-image: url("../images/Presentation/Presentation2-5.jpg");
 transform: rotateY(288deg) translateZ(430px); }




@keyframes rotate360 {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(-360deg);
  }
}
