/*-------------------------------------------------------------- 
# Team  
--------------------------------------------------------------*/
.team-one {
	padding-top: 150px;
	padding-bottom: 110px;
}

.team-one .row.high-gutter {
	margin-left: -20px;
	margin-right: -20px;
}

.team-one .row.high-gutter>[class*=col-] {
	padding-left: 20px;
	padding-right: 20px;
}

.team-one__single {
	position: relative;
	margin-bottom: 154px;
}

.team-one__content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding-left: 30px;
	padding-right: 30px;
	width: 100%;
	transform: translateY(50%);
}

.team-one__content-inner {
	background-color: #fff;
	text-align: center;
	box-shadow: 0px 20px 30px 0px rgba(43, 85, 64, 0.1);
	padding-top: 37px;
	border-radius: 10px;
	padding-bottom: 30px;
	position: relative;
}
.team-one__content h3 {
	margin: 0;
	font-weight: bold;
	font-size: 24px;
	line-height: 1em;
	color: var(--thm-black);
	margin-bottom: 8px;
	position: relative;
}

.team-one__content p {
	margin: 0;
	line-height: 1em;
	color: #93959e;
	font-size: 16px;
	position: relative;
	margin-bottom: 18px;
}

.team-one__social {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
}

.team-one__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 45px;
	height: 45px;
	background-color: #f9b73f;
	color: #fff !important;
	border-radius: 50%;
	transition: 500ms;
}

.team-one__social a:hover {
	color: #fff;
	background-color: var(--thm-black) !important;
}

.team-one__social a i {
	font-size: 18px;
}

.team-one__social a+a {
	margin-left: 10px;
}

.team-one__social a:nth-child(2) {
	background-color: #7b54f9;
}

.team-one__social a:nth-child(3) {
	background-color: #ff5e5e;
}

.team-one__image {
	overflow: hidden;
	border-radius: 10px;
	background-color: #000000;
}

.team-one__image>img {
	width: 100%;
	opacity: 1;
	transform: scale(1);
	transition: transform 500ms, opacity 500ms;
}

.team-one__single:hover .team-one__image>img {
	opacity: 0.4;
	transform: scale(1.05);
}

.team-one__about-page {
	background-color: #f0f7f7;
}

.team-one__about-two {
	padding-bottom: 0;
}