.team-card {
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
	background-color: var(--whiteColor);
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .1);
	box-shadow: 0 0 15px rgba(0, 0, 0, .1);
	    min-height: 124px;
}

.team-card .team-img {
	position: relative;
	z-index: 1;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.team-card .team-img img {
	border-radius: 5px
}

.team-card .team-img .team-social {
	padding-left: 0;
	list-style-type: none;
	position: absolute;
	z-index: 1;
	right: 30px;
	left: 30px;
	bottom: 30px;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 0
}

.team-card .team-img .team-social li {
	display: inline-block;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
	opacity: 0;
	visibility: hidden;
	margin-right: 10px
}

.team-card .team-img .team-social li:last-child {
	margin-right: 0
}

.team-card .team-img .team-social li a i {
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	font-size: 18px;
	color: var(--orangeColor);
	background-color: var(--whiteColor);
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.team-card .team-img .team-social li a:hover i {
	background-color: var(--orangeColor);
	color: var(--whiteColor);
	border-radius: 50px
}

.team-card .team-img .team-social li:nth-child(1) {
	-webkit-transition-delay: .1s;
	transition-delay: .1s
}

.team-card .team-img .team-social li:nth-child(2) {
	-webkit-transition-delay: .2s;
	transition-delay: .2s
}

.team-card .team-img .team-social li:nth-child(3) {
	-webkit-transition-delay: .3s;
	transition-delay: .3s
}

.team-card .team-img .team-social li:nth-child(4) {
	-webkit-transition-delay: .4s;
	transition-delay: .4s
}

.team-card .content {
	border-radius: 0 0 5px 5px;
	padding: 20px 12px;
	text-align: center;
	margin: 0 auto;
	background-color: var(--whiteColor);
	position: relative;
	z-index: 1
}

.team-card .content::before {
	content: '';
	position: absolute;
	z-index: -1;
	border-radius: 0 0 5px 5px;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background-color: var(--orangeColor);
	-webkit-transition: var(--transition);
	transition: var(--transition);
	opacity: 0
}

.team-card .content h3 {
	margin-bottom: 5px;
	color: var(--titleColor)
}

.team-card .content span {
	color: var(--orangeColor)
}

.team-card:hover .team-img .team-social li {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible
}

.team-card:hover .content::before {
	opacity: 1;
	height: 100%
}

.team-card:hover .content h3 {
	color: var(--whiteColor)
}

.team-card:hover .content span {
	color: var(--whiteColor)
}

@media only screen and (max-width:767px) {
	.team-card .team-img .team-social li {
		opacity: 1;
		visibility: inherit;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@media only screen and (min-width:768px) and (max-width:991px) {
	.team-card .team-img .team-social li {
		opacity: 1;
		visibility: inherit;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@media only screen and (min-width:992px) and (max-width:1199px) {
	.team-card .team-img .team-social {
		left: 10px;
		right: 10px
	}
}