/*
 * Author: Luca Arzilli, ALSolutions
 *
 * Project Name: Bertinga
 *
 */

/* WINES */

#wines .row {
	margin:0px 15px;
}

#wines img { 
	padding-bottom:30px;
}

.container-overlay {
  position: relative;
  transition: 0s ease;
}

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

.container-overlay:hover .overlay {
  opacity: 0.8;
  transition: 2s ease;
}

.container-overlay:hover .text {
	transition: 5s ease;
  opacity: 0.8;
}

.text {
  width:100%;	
  height:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align:center;
  color: #000;
  font-size: 22px;
  line-height:25px;
  position: absolute;
  padding:30px;
  top: 0%;
  left: 0%;
  opacity: 0;
}

.text:hover {
   transition: 6s ease;
}

@media (max-width: 768px) {
	.text {
	  height:90%;
	  font-size: 16px;
	  line-height:18px;
	  padding:10px;
	}
}