.team-section-tpl2 .slick-dots li.slick-active {
	background: #cdcdcd !important;
}

.team-section-tpl2 .team-section__header {
	text-align: center;
	margin-bottom: 10px;
}

.team-section-tpl2 .team-section__label {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #Fff;
	background: #01796f;
	padding: 6px 18px;
	border-radius: 100px;
	margin-bottom: 14px;
}

.team-section-tpl2 .team-section__title {
	font-size: clamp(26px, 4vw, 40px);
	font-weight: 800;
	color: #1a2340;
	line-height: 1.2;
}

.team-section-tpl2 .team-section__title span {
	color: #3e8ef7;
}

.team-section-tpl2 .team-slider-wrap {
	position: relative;
	padding: 8px 4px 48px;
}

.team-section-tpl2 .team-card {
	outline: none;
	padding: 12px;
}

.team-section-tpl2 .team-card__inner {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 7px 2px rgb(0 0 0 / 7%);
	transition: transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.2), box-shadow 0.35s ease;
	cursor: pointer;
}

.team-section-tpl2 .team-card__inner:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 48px rgba(62, 142, 247, 0.18);
}

.team-section-tpl2 .team-card__photo-wrap {
	width: 100%;
	aspect-ratio: 0.8333333333;
	overflow: hidden;
	position: relative;
	background: #d6e8ff;
}

.team-section-tpl2 .team-card__photo-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.5s ease;
	display: block;
}

.team-section-tpl2 .team-card__inner:hover .team-card__photo-wrap img {
	transform: scale(1.06);
}

.team-section-tpl2 .team-card__photo-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 55%, rgba(62, 142, 247, 0.12) 100%);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.team-section-tpl2 .team-card__inner:hover .team-card__photo-wrap::after {
	opacity: 1;
}

.team-section-tpl2 .team-card__info {
	padding: 20px 20px 22px;
	text-align: center;
}

.team-section-tpl2 .team-card__name {
	font-size: 18px;
	font-weight: 800;
	color: #01796f;
	margin-bottom: 6px;
	transition: color 0.2s;
}

.team-section-tpl2 .team-card__inner:hover .team-card__name {
	color: #01796f;
}

.team-section-tpl2 .team-card__role {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #01796f;
}

.team-section-tpl2 .team-slider-wrap .slick-dots {
	bottom: -33px;
}

.team-section-tpl2 .team-slider-wrap .slick-dots li button:before {
	font-size: 10px;
	color: #3e8ef7;
	opacity: 0.3;
	transition: opacity 0.25s;
}

.team-section-tpl2 .team-slider-wrap .slick-dots li.slick-active button:before {
	opacity: 1;
}

.team-section-tpl2 .team-slider-wrap .slick-prev,
.team-section-tpl2 .team-slider-wrap .slick-next {
	width: 44px;
	height: 44px;
	z-index: 10;
}

.team-section-tpl2 .team-slider-wrap .slick-prev {
	left: -52px;
}

.team-section-tpl2 .team-slider-wrap .slick-next {
	right: -52px;
}

.team-section-tpl2 .team-slider-wrap .slick-prev:before,
.team-section-tpl2 .team-slider-wrap .slick-next:before {
	display: none;
}

.team-section-tpl2 .slick-arrow-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: white;
	border: none;
	box-shadow: 0 4px 16px rgba(62, 142, 247, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.team-section-tpl2 .slick-arrow-btn:hover {
	background: #3e8ef7;
}

.team-section-tpl2 .slick-arrow-btn:hover svg path {
	stroke: white;
}

.team-section-tpl2 .slick-arrow-btn svg {
	width: 18px;
	height: 18px;
}

.team-section-tpl2 .slick-arrow-btn svg path {
	stroke: #3e8ef7;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	transition: stroke 0.2s;
}

section.team-section-tpl2 {
	padding: 30px 0px 0px;
	background-color: var(--faq_background_color) !important;
}

@media (max-width: 900px) {
	.team-section-tpl2 .team-slider-wrap .slick-prev {
		left: -36px;
	}

	.team-section-tpl2 .team-slider-wrap .slick-next {
		right: -36px;
	}
}

@media (max-width: 600px) {

	.team-section-tpl2 .team-slider-wrap .slick-prev,
	.team-section-tpl2 .team-slider-wrap .slick-next {
		display: none !important;
	}
}

@keyframes cardIn {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.team-section-tpl2 .slick-slide.slick-active .team-card__inner {
	animation: cardIn 0.5s ease both;
}








































/* team v3  */
section.team-section-tpl3 .slick-dots li.slick-active {
	background: var(--bv-primary) !important;
}


.team-section-tpl3 .team-section {
	max-width: 1200px;
	margin: 0 auto;
}

.team-section-tpl3 .team-section h2 {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 40px;
	color: #111;
}

.team-section-tpl3 .team-slider {
	margin: 0 -15px;
}

.team-section-tpl3 .team-item {
	padding: 0 15px;
	outline: none;
}

.team-section-tpl3 .team-card {
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.3s ease;
	margin-bottom: 20px;
}

.team-section-tpl3 .team-img-wrap {
	position: relative;
	overflow: hidden;
	height: 320px;
}

.team-section-tpl3 .team-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
	transition: transform 0.4s ease;
}

.team-section-tpl3 .team-img-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	transition: background 0.35s ease;
	pointer-events: none;
}

.team-section-tpl3 .team-social-hover {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 14px;
	padding: 20px 0;
	z-index: 2;
	transform: translateY(20px);
	opacity: 0;
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.team-section-tpl3 .team-social-hover a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #111;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	text-decoration: none;
	transition: background 0.2s;
}

.team-section-tpl3 .team-social-hover a:hover {
	background: #e53935;
}

.team-section-tpl3 .team-card:hover .team-img-wrap::after {
	background: rgba(0, 0, 0, 0.55);
}

.team-section-tpl3 .team-card:hover .team-img-wrap img {
	transform: scale(1.04);
}

.team-section-tpl3 .team-card:hover .team-social-hover {
	opacity: 1;
	transform: translateY(0);
}

.team-section-tpl3 .team-info {
	padding: 22px 20px 16px;
	text-align: center;
	border-top: 1px solid #eee;
}

.team-section-tpl3 .team-info h3 {
	font-size: 21px;
	font-weight: 700;
	color: #111;
	margin-bottom: 5px;
}

.team-section-tpl3 .team-info p {
	font-size: 15px;
	color: var(--bv-header-top-bg);
	font-weight: 500;
	margin-bottom: 0;
}

.team-section-tpl3 .team-social-static {
	display: flex;
	justify-content: center;
	gap: 24px;
	padding: 14px 0;
	background: #fff;
	border-top: 1px solid #eee;
}

.team-section-tpl3 .team-social-static a {
	color: #555;
	font-size: 16px;
	text-decoration: none;
	transition: color 0.2s;
}

.team-section-tpl3 .team-social-static a:hover {
	color: #e53935;
}

.team-section-tpl3 .team-slider .slick-dots {
	bottom: -36px;
}

.team-section-tpl3 .team-slider .slick-dots li button:before {
	font-size: 10px;
	color: #ccc;
	opacity: 1;
}

.team-section-tpl3 .team-slider .slick-dots li.slick-active button:before {
	color: #e53935;
	opacity: 1;
}

.team-section-tpl3 .team-slider .slick-prev,
.team-section-tpl3 .team-slider .slick-next {
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	z-index: 10;
	transition: background 0.2s;
}

.team-section-tpl3 .team-slider .slick-prev {
	left: -20px;
}

.team-section-tpl3 .team-slider .slick-next {
	right: -20px;
}

.team-section-tpl3 .team-slider .slick-prev:hover,
.team-section-tpl3 .team-slider .slick-next:hover {
	background: #e53935;
}

.team-section-tpl3 .team-slider .slick-prev:before,
.team-section-tpl3 .team-slider .slick-next:before {
	color: #333;
	font-size: 18px;
	line-height: 40px;
}

.team-section-tpl3 .team-slider .slick-prev:hover:before,
.team-section-tpl3 .team-slider .slick-next:hover:before {
	color: #fff;
}

.testi-section {
	padding: 30px 0px 40px;
}

@media (max-width: 768px) {
	.team-section-tpl3 .team-slider .slick-dots {
		bottom: -16px;
	}

	.team-section-tpl3 .team-slider .slick-prev {
		left: -10px;
	}

	.team-section-tpl3 .team-slider .slick-next {
		right: -10px;
	}

	.team-section-tpl3 .team-img-wrap {
		height: 100%;
	}
}

@media (max-width: 480px) {
	.team-section-tpl3 .team-img-wrap {
		height: 220px;
	}

	.team-section-tpl3 body {
		padding: 40px 30px;
	}
}




















/* team v4  */

.team-section-tpl4 .team-section {
	padding: 41px 0 40px;
	background: var(--team_section_background_color);
	position: relative;
	overflow: hidden;
}

.team-section-tpl4 .team-section::before {
	content: 'ĐỘI NGŨ';
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Playfair Display', serif;
	font-size: 120px;
	font-weight: 700;
	color: rgb(0 0 0 / 4%);
	white-space: nowrap;
	pointer-events: none;
	letter-spacing: 24px;
}

.team-section-tpl4 .container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.team-section-tpl4 .section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 56px;
	gap: 40px;
}

.team-section-tpl4 .header-left {
	max-width: 560px;
}

.team-section-tpl4 .tag-line {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #c8a96e;
	margin-bottom: 16px;
}

.team-section-tpl4 .tag-line::before {
	content: '';
	display: inline-block;
	width: 32px;
	height: 1px;
	background: #c8a96e;
}

.team-section-tpl4 .section-title {
	font-size: 44px;
	font-weight: 700;
	line-height: 1.15;
	color: var(--bv-primary);
}

.team-section-tpl4 .section-title span {
	color: #c8a96e;
	font-style: italic;
}

.team-section-tpl4 .slider-controls {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.team-section-tpl4 .slide-count {
	font-family: 'Playfair Display', serif;
	font-size: 14px;
	color: #bbb;
	min-width: 56px;
	text-align: center;
}

.team-section-tpl4 .slide-count .current {
	color: #1a1a1a;
	font-size: 20px;
}

.team-section-tpl4 .arrow-circle {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1.5px solid #d8d2c8;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.25s, border-color 0.25s, transform 0.2s;
	flex-shrink: 0;
	user-select: none;
}

.team-section-tpl4 .arrow-circle:hover {
	background: #c8a96e;
	border-color: #c8a96e;
	transform: scale(1.08);
}

.team-section-tpl4 .arrow-circle:hover svg {
	stroke: #fff;
}

.team-section-tpl4 .arrow-circle svg {
	width: 18px;
	height: 18px;
	stroke: #888;
	fill: none;
	stroke-width: 2;
	transition: stroke 0.25s;
}

.team-section-tpl4 .team-slider-wrap {
	position: relative;
	overflow: hidden;
}

.team-section-tpl4 .team-slider-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: calc(100% - 18px);
	background: linear-gradient(to left, #f5f3ef, transparent);
	pointer-events: none;
	z-index: 2;
}

.team-section-tpl4 .team-slider {
	margin: 0 -12px;
}

.team-section-tpl4 .team-slider .slick-slide {
	padding: 12px 12px 32px;
}

.team-section-tpl4 .team-slider .slick-list {
	overflow: visible;
}

.team-section-tpl4 .team-slider .slick-track {
	display: flex;
	align-items: stretch;
}

.team-section-tpl4 .team-slider .slick-slide>div {
	height: 100%;
}

.team-section-tpl4 .team-slider .slick-dots {
	bottom: -8px;
}

.team-section-tpl4 .team-slider .slick-dots li button:before {
	font-size: 8px;
	color: #d0c9bc;
	opacity: 1;
	transition: color 0.2s;
}

.team-section-tpl4 .team-slider .slick-dots li.slick-active button:before {
	color: #c8a96e;
}

.team-section-tpl4 .team-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	height: 100%;
	display: flex !important;
	flex-direction: column;
}

.team-section-tpl4 .team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.13);
}

.team-section-tpl4 .card-img {
	position: relative;
	overflow: hidden;
	background: #e8e2d6;
	height: 280px;
	flex-shrink: 0;
}

.team-section-tpl4 .card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
	display: block;
}

.team-section-tpl4 .team-card:hover .card-img img {
	transform: scale(1.06);
}

.team-section-tpl4 .card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20, 20, 20, 0.80) 0%, transparent 55%);
	opacity: 0;
	transition: opacity 0.38s;
	display: flex;
	align-items: flex-end;
	padding: 20px;
}

.team-section-tpl4 .team-card:hover .card-overlay {
	opacity: 1;
}

.team-section-tpl4 .overlay-socials {
	display: flex;
	gap: 8px;
}

.team-section-tpl4 .social-btn {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
	text-decoration: none;
}

.team-section-tpl4 .social-btn:hover {
	background: #c8a96e;
	border-color: #c8a96e;
}

.team-section-tpl4 .social-btn svg {
	width: 14px;
	height: 14px;
	fill: #fff;
}

.team-section-tpl4 .card-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #c8a96e;
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 4px 11px;
	border-radius: 20px;
}

.team-section-tpl4 .card-body {
	padding: 20px 22px 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.team-section-tpl4 .member-role {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #c8a96e;
	margin-bottom: 6px;
}

.team-section-tpl4 .member-name {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 8px;
	line-height: 1.25;
}

.team-section-tpl4 .member-bio {
	font-size: 13.5px;
	font-weight: 300;
	color: #777;
	line-height: 1.75;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}

.team-section-tpl4 .card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #f0ebe2;
}

.team-section-tpl4 .exp-tag {
	font-size: 12px;
	color: #aaa;
	display: flex;
	align-items: center;
	gap: 6px;
}

.team-section-tpl4 .exp-tag::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #c8a96e;
}

.team-section-tpl4 .more-btn {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid #e0dbd0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
	text-decoration: none;
}

.team-section-tpl4 .more-btn:hover {
	background: #c8a96e;
	border-color: #c8a96e;
}

.team-section-tpl4 .more-btn:hover svg {
	stroke: #fff;
}

.team-section-tpl4 .more-btn svg {
	width: 13px;
	height: 13px;
	stroke: #aaa;
	fill: none;
	stroke-width: 2;
	transition: stroke 0.2s;
}

.team-section-tpl4 .team-cta {
	text-align: center;
	margin-top: 72px;
}

.team-section-tpl4 .cta-text {
	font-size: 15px;
	color: #999;
	margin-bottom: 18px;
}

.team-section-tpl4 .cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #1a1a1a;
	color: #fff;

	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 16px 36px;
	border-radius: 60px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
}

.team-section-tpl4 .cta-btn:hover {
	background: #c8a96e;
	transform: translateY(-2px);
}

.team-section-tpl4 .cta-btn svg {
	width: 16px;
	height: 16px;
	stroke: #fff;
	fill: none;
	stroke-width: 2.5;
}

@media (max-width: 1100px) {
	.team-section-tpl4 .section-title {
		font-size: 42px;
	}

	.team-section-tpl4 .team-section::before {
		font-size: 90px;
	}
}

@media (max-width: 768px) {
	

	.team-section-tpl4 .container {
		padding: 0 20px;
	}

	.team-section-tpl4 .section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.team-section-tpl4 .section-title {
		font-size: 34px;
	}

	.team-section-tpl4 .team-section::before {
		font-size: 52px;
		letter-spacing: 10px;
	}

	.team-section-tpl4 .card-img {
		height: 240px;
	}

	.team-section-tpl4 .team-slider-wrap::after {
		width: 40px;
	}
}

@media (max-width: 480px) {
	.team-section-tpl4 .section-title {
		font-size: 28px;
	}

	.team-section-tpl4 .team-section::before {
		display: none;
	}

	.team-section-tpl4 .arrow-circle {
		width: 40px;
		height: 40px;
	}
}



















/* team v5  */

.team-section-tpl5 section.ourt-team {
	background: var(--team_section_background_color);
	padding: 40px 0px 40px 0px;
	background-repeat: repeat;
	background-size: contain;
}

.team-section-tpl5 .transpi__section-heading.transpialigh {
	text-align: center;
}

.team-section-tpl5 .transpi__team-item {
	position: relative;
}

.team-section-tpl5 .team__top {
	position: relative;
	z-index: 9;
}

.team-section-tpl5 .team_img img {
	object-fit: cover;
	width: 170px;
	height: 170px;
	border-radius: 100%;
	margin: 0 auto;
	position: relative;
}

.team-section-tpl5 .team_overlay {
	position: absolute;
	top: 12px;
	right: 20px;
}

.team-section-tpl5 .team_overlay .tm_hover {
	display: inline-block;
	background: #ff131d;
	width: 70px;
	height: 70px;
	text-align: center;
	color: #fff;
	line-height: 70px;
	border-radius: 50px;
	font-size: 24px;
	cursor: pointer;
}

.team-section-tpl5 .transpi__team-item .social_icon {
	margin-left: 12px;
	cursor: pointer;
}

.team-section-tpl5 .transpi__team-item .social_icon a {
	display: block;
	width: 45px;
	height: 45px;
	text-align: center;
	border-radius: 50px;
	line-height: 47px;
	color: #fff;
	margin-top: 10px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	-webkit-transform: translateY(11px);
	transform: translateY(11px);
	background: #333;
	border-color: #316ff6;
	visibility: hidden;
	opacity: 0;
}

.team-section-tpl5 .team_content {
	text-align: center;
	padding: 20px 0;
	content: "";
	background: #fff;
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	bottom: -105px;
	border-radius: 10px;
	transition: all 0.3s ease-in;
	padding-top: 95px;
}

.team-section-tpl5 .transpi__team-item:hover .social_icon a {
	opacity: 1;
	visibility: visible;
}

.team-section-tpl5 .team_content h3 {
	font-size: 20px;
	margin-bottom: 2px;
	font-weight: 700;
}

.team-section-tpl5 .team_content span {
	font-size: 17px;
	color: #848484;
}

.team-section-tpl5 .item-our-teams {
	padding-right: 20px;
	padding-bottom: 70px;
	padding-top: 20px;
}

.team-section-tpl5 .slider-our-team .slick-list {
	padding-bottom: 65px;
}

.team-section-tpl5 .team_img:before {
	content: "";
	position: absolute;
	width: 170px;
	height: 170px;
	background: var(--bv-primary);
	border-radius: 50%;
	top: -5px;
	left: 0;
	right: 0;
	margin: auto;
	transition: all 0.3s;
}

.team-section-tpl5 .team_img:hover:before {
	border-top: none;
	top: 0px;
	left: 14px;
	transition: all 0.4s;
}

.team-section-tpl5 section.Specialist a svg path {
	fill: #d22228;
	stroke: #d22228;
}

.team-section-tpl5 .slick-dots {
	bottom: -25px;
}

.team-section-tpl5 .slick-dots li.slick-active {
	background-color: var(--bv-primary) !important;
}

.team-section-tpl5 section.Specialist a svg {
	margin-left: 5px;
	width: 12px;
	height: 12px;
}

.team-section-tpl5 .team__top {
	position: relative;
	z-index: 9;
}

.team-section-tpl5 .transpi__team-item {
	position: relative;
}

@media (max-width: 768px) {
	.team-section-tpl5 .slider-our-team .slick-list {
		padding-bottom: 40px;
	}
}































































/* //////////////////////////////////////////////////////////// team dich vu //////////////////////////// */


.section-index-team-servicer-v1 .slick-prev,
.section-index-team-servicer-v1 .slick-next {
	width: 44px;
	height: 44px;
	z-index: 10;
	border-radius: 50%;
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.section-index-team-servicer-v1 .s1-slider-wrap .slick-dots li.slick-active {
	background: #01796f !important;
}
.section-index-team-servicer-v1 {
    background: var(--team_section_background_color);
}
.section-index-team-servicer-v1 .slick-prev {
	left: -20px;
}

.section-index-team-servicer-v1 .slick-next {
	right: -20px;
}

.section-index-team-servicer-v1 .slick-prev:before,
.section-index-team-servicer-v1 .slick-next:before {
	font-size: 18px;
}

.section-index-team-servicer-v1 .slick-dots {
	bottom: -36px;
}

.section-index-team-servicer-v1 .slick-dots li button:before {
	font-size: 8px;
}

.section-index-team-servicer-v1 .s1 {
	background: #faf7f2;
	padding: 30px 0px 50px;
}

.section-index-team-servicer-v1 .s1-inner {}

.section-index-team-servicer-v1 .s1-hd {
	text-align: center;
	margin-bottom: 56px;
}

.section-index-team-servicer-v1 .s1-ey {
	font-size: 14px;
	text-transform: uppercase;
	color: var(--bv-secondary);
	margin-bottom: 12px;
}

.section-index-team-servicer-v1 .s1-tt {
	font-size: 33px;
	font-weight: 600;
	color: var(--bv-primary);
	line-height: 1.2;
	margin-bottom: 10px;
}

.section-index-team-servicer-v1 .s1-tt em {
	font-style: italic;
	color: var(--bv-secondary);
}

.section-index-team-servicer-v1 .s1-sub {
	font-size: 16px;
	line-height: 1.85;
	color: #000000;
	font-weight: 300;
	max-width: 600px;
	margin: 0 auto;
}

.section-index-team-servicer-v1 .s1-slider-wrap {
	position: relative;
	padding: 0 28px;
}

.section-index-team-servicer-v1 .s1-card {
	text-align: center;
	padding: 0 12px;
	outline: none;
}

.section-index-team-servicer-v1 .s1-avatar-wrap {
	position: relative;
	margin-bottom: 20px;
}

.section-index-team-servicer-v1 .s1-avatar {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	margin: 0 auto;
	border: 4px solid #fff;
	box-shadow: 0 8px 28px rgba(44, 32, 24, 0.14);
	transition: box-shadow 0.3s, transform 0.3s;
	    background: #c7c7c7;

}

.section-index-team-servicer-v1 .s1-card:hover .s1-avatar {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(180, 140, 90, 0.22);
}

.section-index-team-servicer-v1 .s1-badge {
	position: absolute;
	bottom: 8px;
	right: calc(50% - 90px);
	background: var(--bv-secondary);
	color: #fff;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 10px;
}

.section-index-team-servicer-v1 .s1-name {
	font-size: 20px;
	color: #2c2018;
	margin-bottom: 4px;
}

.section-index-team-servicer-v1 .s1-role {
	font-size: 14px;
	text-transform: uppercase;
	color: var(--bv-secondary);
	margin-bottom: 10px;
}

.section-index-team-servicer-v1 .s1-desc {
	font-size: 12px;
	line-height: 1.75;
	color: #8a7060;
	font-weight: 300;
}

.section-index-team-servicer-v1 .s1-slider-wrap .slick-prev,
.section-index-team-servicer-v1 .s1-slider-wrap .slick-next {
	background: #fff;
	border: 1px solid #e0cdb0;
	box-shadow: 0 2px 10px rgba(44, 32, 24, 0.1);
}

.section-index-team-servicer-v1 .s1-slider-wrap .slick-prev:before,
.section-index-team-servicer-v1 .s1-slider-wrap .slick-next:before {
	color: var(--bv-secondary);
}

.section-index-team-servicer-v1 .s1-slider-wrap .slick-dots li.slick-active button:before {
	color: var(--bv-secondary);
}


@media(max-width:990px) {
	.section-index-team-servicer-v1 .s1-tt {
		font-size: 26px;
	}
}












































































/* section-index-team-servicer-v2 */

.section-index-team-servicer-v2 .lbl {
	background: #111;
	color: #fff;
	text-align: center;
	padding: 13px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 10px;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.section-index-team-servicer-v2 .slick-prev,
.section-index-team-servicer-v2 .slick-next {
	width: 44px;
	height: 44px;
	z-index: 10;
	border-radius: 50%;
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.section-index-team-servicer-v2 .slick-prev {
	left: -20px;
}

.section-index-team-servicer-v2 .slick-next {
	right: -20px;
}

.section-index-team-servicer-v2 .slick-prev:before,
.section-index-team-servicer-v2 .slick-next:before {
	font-size: 18px;
}

.section-index-team-servicer-v2 .slick-dots {
	bottom: -36px;
}

.section-index-team-servicer-v2 .slick-dots li button:before {
	font-size: 8px;
}

.section-index-team-servicer-v2 .s2 {
	background: var(--team_section_background_color);
	padding: 35px 0 50px;
}

.section-index-team-servicer-v2 .s2-hd {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: end;
	margin-bottom: 52px;
}

.section-index-team-servicer-v2 .s2-ey {
	font-size: 13px;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.section-index-team-servicer-v2 .s2-tt {
	font-size: 29px;
	color: #182e1a;
	line-height: 1.2;
	font-weight: 700;
}

.section-index-team-servicer-v2 .s2-tt em {
	font-style: italic;
}

.section-index-team-servicer-v2 .s2-sub {
	font-size: 16px;
	line-height: 1.85;
	font-weight: 400;
}

.section-index-team-servicer-v2 .s2-slider-wrap {}

.section-index-team-servicer-v2 .s2-card {
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(24, 46, 26, 0.08);
	transition: transform 0.3s;
	margin: 0 10px;
	outline: none;
}

.section-index-team-servicer-v2 .s2-card:hover {
	transform: translateY(-4px);
}

.section-index-team-servicer-v2 .s2-avatar {
	width: 100%;
	height: 410px;
	object-fit: cover;
	object-position: top;
	display: block;
}

.section-index-team-servicer-v2 .s2-body {
	padding: 20px 20px 24px;
}

.section-index-team-servicer-v2 .s2-name {
	font-size: 19px;
	color: #182e1a;
	margin-bottom: 9px;
	font-weight: 600;
}

.section-index-team-servicer-v2 .s2-role {
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: 500;
}

.section-index-team-servicer-v2 .s2-desc {
	font-size: 14px;
	line-height: 1.75;
	color: #5a7060;
	font-weight: 400;
}

.section-index-team-servicer-v2 .s2-slider-wrap .slick-prev {
	left: 0;
}

.section-index-team-servicer-v2 .s2-slider-wrap .slick-next {
	right: 0;
}

.section-index-team-servicer-v2 .s2-slider-wrap .slick-prev,
.section-index-team-servicer-v2 .s2-slider-wrap .slick-next {
	background: #fff;
	border: 1px solid #c0d8c0;
	box-shadow: 0 2px 10px rgba(24, 46, 26, 0.1);
}

.section-index-team-servicer-v2 .s2-slider-wrap .slick-prev:before,
.section-index-team-servicer-v2 .s2-slider-wrap .slick-next:before {
	color: #4a8a50;
}

.section-index-team-servicer-v2 .s2-slider-wrap .slick-dots li.slick-active button:before {
	color: #4a8a50;
}

@media (max-width: 768px) {
	.section-index-team-servicer-v2 .s2-hd {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 0 0px;
	}

	.section-index-team-servicer-v2 .s2-slider-wrap {}

	.section-index-team-servicer-v2 .s2-tt {
		font-size: 28px;
	}
}

























































/* .section-index-team-servicer-v2 */





.section-index-team-servicer-v2 .s3 {
	background: var(--team_section_background_color) !important;
	padding: 30px 0px 65px;
}

.section-index-team-servicer-v2 .s3-inner {}

.section-index-team-servicer-v2 .s3-hd {
	margin-bottom: 52px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 21px;
}

.section-index-team-servicer-v2 .s3-ey {
	font-size: 13px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--bv-secondary);
	margin-bottom: 5px;
}

.section-index-team-servicer-v2 .s3-tt {
	font-size: 36px;
	font-weight: 600;
	color: #f0e8d0;
	line-height: 1.2;
}

.section-index-team-servicer-v2 .s3-tt em {
	font-style: italic;
	color: var(--bv-secondary);
}

.section-index-team-servicer-v2 .s3-sub {
	font-size: 14px;
	line-height: 1.85;
	color: #fff;
	font-weight: 300;
	max-width: 380px;
}

.section-index-team-servicer-v2 .s3-slider-wrap {
	position: relative;
}

.section-index-team-servicer-v2 .s3-card {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	margin: 0 8px;
	outline: none;
}

.section-index-team-servicer-v2 .s3-avatar {
	width: 100%;
	height: 320px;
	object-fit: cover;
	object-position: top;
	display: block;
	filter: grayscale(30%);
	transition: filter 0.4s, transform 0.5s;
}

.section-index-team-servicer-v2 .s3-card:hover .s3-avatar {
	filter: grayscale(0%);
	transform: scale(1.04);
}

.section-index-team-servicer-v2 .s3-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13, 12, 11, 0.95) 0%, rgba(13, 12, 11, 0.2) 55%, transparent 100%);
}

.section-index-team-servicer-v2 .s3-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 22px 20px;
}

.section-index-team-servicer-v2 .s3-name {
	font-size: 21px;
	color: #f0e8d0;
	margin-bottom: 4px;
}

.section-index-team-servicer-v2 .s3-role {
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--bv-secondary);
	margin-bottom: 8px;
}

.section-index-team-servicer-v2 .s3-desc {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(240, 232, 208, 0.65);
	font-weight: 300;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s, opacity 0.4s;
	opacity: 0;
}

.section-index-team-servicer-v2 .s3-card:hover .s3-desc {
	max-height: 80px;
	opacity: 1;
}

.section-index-team-servicer-v2 .s3-slider-wrap .slick-prev,
.section-index-team-servicer-v2 .s3-slider-wrap .slick-next {
	background: rgba(201, 168, 76, 0.15);
	border: 1px solid rgba(201, 168, 76, 0.4);
}

.section-index-team-servicer-v2 .s3-slider-wrap .slick-prev:before,
.section-index-team-servicer-v2 .s3-slider-wrap .slick-next:before {
	color: var(--bv-secondary);
}

.section-index-team-servicer-v2 .s3-slider-wrap .slick-dots li button:before {
	color: #6a5840;
}

.section-index-team-servicer-v2 .s3-slider-wrap .slick-dots li.slick-active button:before {
	color: var(--bv-secondary);
}

@media (max-width: 768px) {
	.section-index-team-servicer-v2 .s3-hd {
		flex-direction: column;
		align-items: flex-start;
	}

	.section-index-team-servicer-v2 .s3-tt {
		font-size: 28px;
	}
}














































/* .section-index-team-servicer-v4 */

.section-index-team-servicer-v4 {
    background: var(--team_section_background_color);
}

.section-index-team-servicer-v4 .s4 {
	background: #fdf0e8;
	    padding: 50px 24px 60px;
}

.section-index-team-servicer-v4 .s4-inner {}

.section-index-team-servicer-v4 .s4-hd {
	text-align: center;
	margin-bottom: 52px;
}

.section-index-team-servicer-v4 .s4-ey {
	font-size: 14px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--bv-secondary);
	margin-bottom: 12px;
}

.section-index-team-servicer-v4 .s4-tt {
	font-size: 28px;
	color: var(--bv-primary);
	line-height: 1.2;
	margin-bottom: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.section-index-team-servicer-v4 .s4-tt em {
	font-style: italic;
	color: #c06030;
}

.section-index-team-servicer-v4 .s4-sub {
	font-size: 16px;
	line-height: 1.85;
	color: #7a4a28;
	font-weight: 300;
	max-width: 654px;
	margin: 0 auto;
}

.section-index-team-servicer-v4 .s4-slider-wrap {
	position: relative;
	padding: 0 28px;
}

.section-index-team-servicer-v4 .s4-card {
	padding: 0 12px;
	outline: none;
}

.section-index-team-servicer-v4 .s4-img-wrap {
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
}

.section-index-team-servicer-v4 .s4-avatar {
	width: 100%;
	height: 340px;
	object-fit: cover;
	object-position: top;
	display: block;
	transition: transform 0.5s;
}

.section-index-team-servicer-v4 .s4-card:hover .s4-avatar {
	transform: scale(1.04);
}

.section-index-team-servicer-v4 .s4-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #c06030;
	color: #fff;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 8px;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 5px 12px;
}

.section-index-team-servicer-v4 .s4-line {
	height: 2px;
	background: linear-gradient(to right, #c06030, transparent);
	margin-bottom: 14px;
	width: 40px;
}

.section-index-team-servicer-v4 .s4-name {
	font-size: 20px;
	color: #3a1a08;
	margin-bottom: 4px;
}

.section-index-team-servicer-v4 .s4-role {
	font-size: 15px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--bv-primary);
	margin-bottom: 0px;
}

.section-index-team-servicer-v4 .s4-desc {
	font-size: 16px;
	line-height: 1.8;
	color: #8a5a38;
	font-weight: 300;
}

.section-index-team-servicer-v4 .s4-slider-wrap .slick-prev,
.section-index-team-servicer-v4 .s4-slider-wrap .slick-next {
	background: #fff;
	border: 1px solid #e8c8a8;
	box-shadow: 0 2px 10px rgba(192, 96, 48, 0.1);
}

.section-index-team-servicer-v4 .s4-slider-wrap .slick-prev:before,
.section-index-team-servicer-v4 .s4-slider-wrap .slick-next:before {
	color: #c06030;
}

.section-index-team-servicer-v4 .s4-slider-wrap .slick-dots li.slick-active button:before {
	color: #c06030;
}

@media (max-width: 768px) {
	.section-index-team-servicer-v4 .s4-tt {
		font-size: 28px;
	}

	.section-index-team-servicer-v4 .s4-avatar {
		height: 240px;
	}
}










































/* .section-index-team-servicer-v5 */


.section-index-team-servicer-v5 .s8 {
	background: var(--team_section_background_color);
	padding: 39px 0px;
}

.section-index-team-servicer-v5 .s8-inner {}

.section-index-team-servicer-v5 .s8-hd {
	margin-bottom: 52px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: end;
}

.section-index-team-servicer-v5 .s8-ey {
	font-size: 13px;
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.section-index-team-servicer-v5 .s8-tt {
	font-size: 27px;
	color: #2c1a0c;
	line-height: 1.2;
	text-transform: uppercase;
	font-weight: 700;
}

.section-index-team-servicer-v5 .s8-tt em {
	font-style: italic;
}

.section-index-team-servicer-v5 .s8-sub {
	font-size: 16px;
	line-height: 1.85;
	font-weight: 300;
}

.section-index-team-servicer-v5 .s8-mosaic {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	grid-template-rows: 280px 280px;
	gap: 16px;
}

.section-index-team-servicer-v5 .s8-tile {
	position: relative;
	overflow: hidden;
	background: #e8d8c8;
}

.section-index-team-servicer-v5 .s8-tile-main {
	grid-row: span 2;
}

.section-index-team-servicer-v5 .s8-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
	transition: transform 0.5s;
}

.section-index-team-servicer-v5 .s8-tile:hover img {
	transform: scale(1.04);
}

.section-index-team-servicer-v5 .s8-tile-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(44, 26, 12, 0.88) 0%, transparent 55%);
}

.section-index-team-servicer-v5 .s8-tile-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 18px;
}

.section-index-team-servicer-v5 .s8-name {
	font-size: 18px;
	color: #fff;
	margin-bottom: 3px;
}

.section-index-team-servicer-v5 .s8-tile-main .s8-name {
	font-size: 26px;
	margin-bottom: 5px;
}

.section-index-team-servicer-v5 .s8-role {
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--bv-primary);
}

.section-index-team-servicer-v5 .s8-desc {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
	font-weight: 300;
	margin-top: 8px;
}

@media (max-width: 768px) {
	.section-index-team-servicer-v5 .s8-mosaic {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 220px 220px 220px;
	}

	.section-index-team-servicer-v5 .s8-tile-main {
		grid-row: span 1;
		grid-column: span 2;
	}

	.section-index-team-servicer-v5 .s8-hd {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.section-index-team-servicer-v5 .s8-tt {
		font-size: 26px;
	}
}

@media (max-width: 480px) {
	.section-index-team-servicer-v5 .s8-mosaic {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.section-index-team-servicer-v5 .s8-tile {
		height: 220px;
	}

	.section-index-team-servicer-v5 .s8-tile-main {
		grid-column: span 1;
	}
}