/*
CTC Separate Stylesheet
Updated: 2018-03-07 15:31:24
*/

.containeruno {
  position: relative;
  width: 100%;
}

.image {
  display: block;
  width: 100%;
  height: auto;
  padding:0px;
  margin:0px;	
}

.overlayuno {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: .5s ease;
  transition: .5s ease;	
  background-color: #F03701;
}

.containeruno:hover .overlayuno {
  opacity: 0.85;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);	
  text-align: center;
}

/* animazione da sinistra a destra */ 

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

#prodotti1 {  
  /* This section calls the slideInFromLeft animation we defined above */
  animation: 1s ease-out 0s 1 slideInFromLeft;
 }

/* animazione da sinistra a destra */ 

@keyframes slideInFromright {
  0% {
    transform: translateX(+100%);
  }
  100% {
    transform: translateX(0);
  }
}

#prodotti2 {  
  /* This section calls the slideInFromLeft animation we defined above */
  animation: 1s ease-out 0s 1 slideInFromright;
  
 }