/*-- grid teachers --*/
.item-grid-post-teacher .item-post{

}
.item-grid-post-teacher .item-post .post-image{
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	margin-bottom: 12px;
}
.item-grid-post-teacher .item-post .post-thumb{
	overflow: hidden;
	background-color: #f2f2f2;
	transition: .3s;
}
.item-grid-post-teacher .item-post:hover .post-thumb{
	background-color: var(--bzo-main-color-mix-white2);
}
.item-grid-post-teacher .item-post .post-image .socials-teacher{
	background-color: var(--bzo-main-color);
	border-radius: 0 0 14px 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	transition: .3s;
	position: absolute;
	bottom: -70px;
	left: 0;
	width: 100%;
	visibility: hidden;
}
.item-grid-post-teacher .item-post:hover .post-image .socials-teacher{
	bottom: 0;
	visibility: visible;
}
.item-grid-post-teacher .item-post .post-image .socials-teacher ul{
	display: flex;
	gap: 18px;
	list-style: none;
}
.item-grid-post-teacher .item-post .post-image .socials-teacher ul li a{
	color: #fff;
	font-size: 24px;
}
@media(max-width: 880px){
	.item-grid-post-teacher .item-post .post-title{
		font-size: 18px;
	}
}

/*=== page detail teacher ===*/
.content-single-teacher .teacher-position{
	display: flex;
	margin: 10px 0;
}
.content-single-teacher .teacher-position span:not(:last-child)::after{
	content: "-";
	padding: 0 2px;
}
.content-single-teacher .teacher-top{
	gap: 30px;
}
.content-single-teacher .teacher-thumbnail{
	width: 340px;
	background-color: #f2f2f2;
	border-radius: 14px;
}
.content-single-teacher .teacher-thumbnail img{
	width: 100%;
}
.content-single-teacher .socials-teacher{
	margin-bottom: 20px;
}
.content-single-teacher .socials-teacher ul{
	list-style: none;
	display: flex;
	gap: 20px;
}
.content-single-teacher .socials-teacher ul li a{
	width: 36px;
	height: 36px;
	border-radius: 100%;
	background-color: var(--bzo-main-color);
	color: #fff;
	font-size: 20px;
	text-align: center;
	line-height: 34px;
	display: block;
}
.content-single-teacher .socials-teacher ul li a:hover{
	background-color: var(--bzo-main-color2);
}
.content-single-teacher .teacher-experience{
	margin-bottom: 10px;
}
.content-single-teacher .teacher-attr{
	gap: 30px;
}
.content-single-teacher label{
	margin-bottom: 5px;
	display: inline-block;
}
.content-single-teacher .teacher-phone a{
	margin-bottom: 5px;
	display: flex;
	gap: 10px;
	align-items: center;'  '
}
.content-single-teacher .teacher-email a{
	margin-bottom: 20px;
	display: flex;
	gap: 10px;
	align-items: center;
}
.content-single-teacher .detail-content-wrap{
	margin-top: 20px;
}
.content-single-teacher .detail-content-wrap h3{
	font-family: var(--bzo-title_typo-font-family);
	font-size: 26px;
	font-weight: 600;
	color: var(--bzo-main-color);
}
.content-single-teacher .detail-content-wrap ul li::marker{
	color: var(--bzo-main-color2);
}
@media(max-width: 880px){
	.content-single-teacher .teacher-attr{
		flex-direction: column;
		gap: 15px;
	}
	.content-single-teacher .title-teacher{
		font-size: 26px;
	}
	.content-single-teacher .detail-content-wrap h3{
		font-size: 20px;
	}
}
@media(max-width: 767px){
	.content-single-teacher .teacher-top{
		flex-direction: column;
	}
	.content-single-teacher .teacher-content{
		width: 100%;
	}
}