/* =================================
	Team One
==================================== */
.team-one {
	position: relative;
	display: block;
	padding: 120px 0px 120px;
	overflow: hidden;
	z-index: 1;
	border-bottom: 1px solid #D9D9D9;;
}
.team-one__single{
	position: relative;
	overflow: hidden;
}
.team-one__single-content{
	text-align: center;
	padding: 30px 20px;
	border-radius: 4px;
	opacity: 0.9;
	background: rgba(var(--color-three-rgb),0.8);
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 110px;
	transition: 0.3s;
}
.team-one__single-content h5{
	color: var(--white-color);
	font-size: 20px;
	font-weight: 700;
	transition: 0.3s;
	margin-bottom: 5px;
}
.team-one__single-content h6{
	color: var(--main-color);
	font-size: 15px;
	font-weight: 500;
}
.team-one__single:hover .team-one__single-content{
	width: 89%;
	height: 185px;
	left: 15px;
	bottom: 15px;
	background-color: rgba(var(--white-color-rgb), 1);
}
.team-one__single:hover .team-one__single-content h5{
	color: var(--color-five);
}
.team-one__single-social .footer-widget__social a {
	background: #EAEAEA;
    color: var(--color-five);
}
.team-one__single-social .footer-widget__social a:hover{
	color: var(--white-color);
}
.team-one__single-social .footer-widget__social {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
	padding-top: 20px;
	border-top: 1px solid #D9D9D9;
}
.team-one__single-social{
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
}
.team-one__single:hover .team-one__single-social{
	opacity: 1;
	visibility: visible;
}
.team-one__single-image{
	transition: 0.3s;
}





/* =======================================
Responsive
========================================== */
@media only screen and (min-width: 768px) and (max-width: 991px){
	.team-one__single-image img{
		width: 100%;
	}
	.team-one__single {
		margin-bottom: 30px;
	}





}


@media only screen and (max-width: 767px){
	.team-one__single-image img{
		width: 100%;
	}
	.team-one__single {
		margin-bottom: 30px;
	}
	.team-one {
		padding: 100px 0px 70px;
	}



}
/* =======================================
Responsive
========================================== */

