/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 07 2025 | 07:47:28 */
.team-container {
  	position: absolute;
  	bottom: 0%;
  	left: 0;
  	right: 0;
  	background-color: #99874f;
  	overflow: hidden;
  	width: 100%;
  	height:0;
  	transition: all .5s ease;
  	overflow-y:auto;
	border-radius:10px;
	box-shadow: rgba(17, 17, 26, 0.1) 1px 0px 0px;
}
.team-card-name{
	width:100%;
	transition: all 5.4s ease;
}
.equipe-card img{
	transition: all .5s ease;
}
/*.equipe-card:hover .team-card-name{
	top:0;
	position:absolute;
}*/
.equipe-card:hover .team-container {
  	bottom: 0;
  	height: 50%;
}
.equipe-card:hover img {
  	transform: scale(1.05);
  	/*height: 120px;*/
}

.team-text {
  	color: white;
  	font-size: 14px;
  	/*position: absolute;*/
	padding:15px 5px;
	width:100%;
  	/*top: 50%;
  	left: 50%;*/
  	/*-webkit-transform: translate(-50%, -50%);*/
  	/*-ms-transform: translate(-50%, -50%);*/
  	/*transform: translate(-50%, -50%);*/
  	text-align: center;
}
.team-container::-webkit-scrollbar {
  width: 8px;
}

.team-container::-webkit-scrollbar-track {
  background: #99874f;
  border-radius: 20px;
}

.team-container::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #555, #000);
  border-radius: 20px;
	transition: all ease 0.6s;
}

.team-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #666, #222);
}