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

/* TEAM */

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

.col-lg-4, .col-md-4, .col-sm-4 {
	padding-right:30px;
}

.col-lg-8, .col-md-8, .col-sm-8 {
	padding-left:30px;
}

.col-lg-6:first-child, .col-md-6:first-child, .col-sm-6:first-child {
	padding-right:15px;
}

.col-lg-6:last-child, .col-md-6:last-child, .col-sm-6:last-child {
	padding-left:15px;
}

.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;
	}
}