{#***************** Cards Container **********************#}
.team-members{
	position:relative;
}
.team-members__container{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
{#***************** End Cards Container **********************#}

{#***************** Card **********************#}
.team-members--card-border-styles{
	overflow:hidden;
}
.team-members__team-item{
	transition-property: all !important;
	transition: .3s ease;
}
{#***************** End Cards **********************#}

{#***************** Image Settings **********************#}
.team-members__image-container{
	margin:0;
	line-height:0;
	text-align:center;
	overflow:hidden;
}
.team-members__image{
	transition:all 0.3s ease;
	width:100%;
	height:100%;
}
.team-members--image-full-width{
	width:100%;
}
{#***************** End Image Settings **********************#}

{#***************** Text Content **********************#}
.team-members__text-content{
	display: flex;
	flex-direction:column;
	gap:10px;
}
.team-members__name,
.team-members__position,
.team-members__description *:last-child{
	margin:0;
}
.team-members--image-grayscale{
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	filter: grayscale(100%);
}
.team-members__name,
.team-members__position,
.team-members__description,
.team-members__description *{
	transition:all .3s ease;
}
{#***************** End Text Content **********************#}

{#***************** Social Media **********************#}
.team-members__social-media-container{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap:10px;
	line-height:0;
}
.team-members--social-align-desktop-center{
	justify-content:center;
}
.team-members--social-align-desktop-left{
	justify-content:start;
}
.team-members--social-align-desktop-right{
	justify-content:end;
}
.team-members--social-align-desktop-justify{
	justify-content:space-between;
}
.team-members__social-icon{
	display: flex;
	align-items: center;
	justify-content:center;
	padding:10px;
	transition:all .3s ease;
}
.team-members__social-icon svg path{
	transition:all .3s ease;
}
.team-members__social-type-none{
	width:100%;
}
.team-members--social-align-desktop-center .team-members__social-type-none{
	text-align:center;
}
.team-members--social-align-desktop-left .team-members__social-type-none{
	text-align:left;
}
.team-members--social-align-desktop-right .team-members__social-type-none{
	text-align:right;
}
.team-members--social-align-desktop-justify .team-members__social-type-none{
	text-align:justify;
}
{#***************** End Social Media **********************#}

{#***************** Button **********************#}
.team-members--text-content-middle .team-members--show-button-on-hover{
	opacity:0;
	height:0;
	transform: translateY(100%);
	transition:all .4s ease;
}
.team-members--text-content-middle:hover .team-members--show-button-on-hover{
	opacity:1;
	height:auto;
	transform: translateY(0);
}
{#***************** End Button **********************#}

{#***************** Layout Overlapping Content **********************#}
.team-members--layout-overlapping-content{
	overflow:visible;
}
.team-members--layout-overlapping-content .team-members__image-container{
	position:relative;
	z-index:1;
}
.team-members--layout-overlapping-content .team-members__text-content{
	position:relative;
	z-index:2;
	margin: -60px auto 0;
	max-width:88%;
	transition: all .3s ease;
}
{#***************** End Layout Overlapping Content **********************#}

{#***************** Layout Text On Image **********************#}
.team-members--layout-text-on-image{
	position:relative;
	overflow:hidden;
}
.team-members--layout-text-on-image .team-members__text-content{
	position:absolute;
	width:100%;
	transition:all .5s ease;
}
{#**Behind Position**#}
.team-members--text-content-behind .team-members__text-content{
	justify-content:center;
}
.team-members--layout-text-on-image .team-members__image-container{
	height:100%;
}
.team-members--text-content-behind .team-members__text-content{
	top:0;
	left:0;
	right:0;
	z-index:-1;
	opacity:0;
}
.team-members--text-content-behind:hover .team-members__text-content{
	position:absolute;
	opacity:1;
	z-index:2;
	bottom:0;
}
{#**Middle Position**#}
.team-members--text-content-middle .team-members__text-content{
	justify-content:center;
	bottom:0;
	left:0;
	right:0;
}
.team-members--text-content-middle:hover .team-members__text-content{
	height:100%!important;
}
{#**Bottom Position**#}
.team-members--text-content-bottom .team-members__text-content{
	top:100%;
	left:0;
	right:0;
	transition:all .8s ease;
}
.team-members--text-content-bottom:hover .team-members__text-content{
	top:0;
	justify-content:center;
}
{#**Top Position**#}
.team-members--text-content-top .team-members__text-content{
	bottom:100%;
	left:0;
	right:0;
	transition:all .8s ease;
}
.team-members--text-content-top:hover .team-members__text-content{
	bottom:0;
	justify-content:center;
}
{#***************** End Layout Text On Image **********************#}		

{#***************** Layout Image Circle **********************#}
.team-members--layout-circle-image .team-members__image-container,
.team-members--layout-circle-image .team-members__image{
	margin: 0 auto;
	border-radius:50%;
	transition:all .3s ease;
}
{#***************** End Layout Layout Image Circle **********************#}				

.team-members--editor{
	padding: 10px;
	color: #fff;
	position: relative;
	z-index: 3;
}
.team-members--editor{
	background: repeating-linear-gradient(45deg, rgba(0, 52, 98, 1.0), rgba(0, 52, 98, 1.0) 10px, rgba(0, 111, 186, 1.0) 10px, rgba(0, 111, 186, 1.0) 20px);
}

{#***************** Breakpoints **********************#}
@media(max-width:992px){
	{#***************** Social Media **********************#}
	.team-members--social-align-tablet-center{
		justify-content:center;
	}
	.team-members--social-align-tablet-left{
		justify-content:start;
	}
	.team-members--social-align-tablet-right{
		justify-content:end;
	}
	.team-members--social-align-tablet-justify{
		justify-content:space-between;
	}
	.team-members--social-align-tablet-center .team-members__social-type-none{
		text-align:center;
	}
	.team-members--social-align-tablet-left .team-members__social-type-none{
		text-align:left;
	}
	.team-members--social-align-tablet-right .team-members__social-type-none{
		text-align:right;
	}
	.team-members--social-align-tablet-justify .team-members__social-type-none{
		text-align:justify;
	}
	{#***************** End Social Media **********************#}
}

@media(max-width:765px){
	{#***************** Social Media **********************#}
	.team-members--social-align-mobile-center{
		justify-content:center;
	}
	.team-members--social-align-mobile-left{
		justify-content:start;
	}
	.team-members--social-align-mobile-right{
		justify-content:end;
	}
	.team-members--social-align-mobile-justify{
		justify-content:space-between;
	}
	.team-members--social-align-mobile-center .team-members__social-type-none{
		text-align:center;
	}
	.team-members--social-align-mobile-left .team-members__social-type-none{
		text-align:left;
	}
	.team-members--social-align-mobile-right .team-members__social-type-none{
		text-align:right;
	}
	.team-members--social-align-mobile-justify .team-members__social-type-none{
		text-align:justify;
	}
	{#***************** End Social Media **********************#}
}
