/*ldc_team_t*/
.ldc_team_t {
	padding: 100px 0;
	position: relative;
}

.ldc_team_t ul {
	list-style: none;
	display: block;
	width: 100%;
}

.ldc_team_t li {
	display: inline-block;
	vertical-align: top;
	width: 47%;
	text-align: left;
	margin: 0 1% 4% 1%;
}

.ldc_team_t table {
	width: 100%;
}

.ldc_team_t td {
	vertical-align: top;
	padding: 7px;
}

.ldc_team_t td:nth-child(1) {
	width: 40%;
}

.ldc_team_t h4 {
	font-size: 30px;
	color: var(--color-text-primary);
	padding: 10px 0 10px;
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
}

.ldc_team_t h4:before {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: var(--color-bg-lighter);
}

.ldc_team_t h4:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	background: var(--color-bg-white);
}

.ldc_team_t h4 strong {
	font-size: 30px;
	color: var(--color-text-secondary);
	display: inline-block;
	margin-right: 7px;
}

.ldc_team_t cite {
	display: block;
	overflow: hidden;
	border-top-left-radius: 135px;
	border-bottom-right-radius: 135px;
	animation: teamrotation 15s linear infinite;
}

.ldc_team_t blockquote {
	display: block;
}

.ldc_team_t p {
	font-size: 17px;
	color: var(--color-text-primary);
	line-height: 175%;
}

.ldc_team_t ul li table td:hover > h4:after {
	width: 50px;
	height: 2px;
	background: var(--color-bg-dark);
	animation: teamrun 15s linear infinite;
}

@keyframes teamrotation {
	40% {
		border-top-left-radius: 135px;
		border-bottom-right-radius: 135px;
	}
	50% {
		border-radius: 150px;
	}
	60% {
		border-top-left-radius: 135px;
		border-bottom-right-radius: 135px;
	}
}

@keyframes teamrun {
	0% {
		margin-left: 0;
	}
	50% {
		margin-left: 100%;
	}
	100% {
		margin-left: 0;
	}
}

/*Animations*/
[data-animate-in] {
	opacity: 0;
	transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-animate-in="up"] {
	transform: translate3d(0, 100px, 0);
}

[data-animate-in="left"] {
	transform: translate3d(-100px, 0, 0);
}

[data-animate-in="right"] {
	transform: translate3d(100px, 0, 0);
}

[data-animate-in="down"] {
	transform: translate3d(0, -100px, 0);
}

[data-animate-in].in-view {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transition: transform 1s ease, opacity 1s ease;
}

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1366px) {
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 1024px) {
	.ldc_team_t table {
		max-width: 300px;
		margin: auto;
	}

	.ldc_team_t td {
		display: block;
		width: 100% !important;
	}
}

@media screen and (max-width: 960px) {
	.ldc_team_t h4 {
		font-size: 24px;
	}

	.ldc_team_t h4 strong {
		font-size: 24px;
	}

	.ldc_team_t p {
		font-size: 15px;
	}
}

@media screen and (max-width: 768px) {
	.ldc_w1300 {
		width: 100%;
		max-width: 100%;
		margin: auto;
		padding: 0;
	}

}

@media screen and (max-width: 640px) {
	.ldc_team_t li {
		display: block;
		width: 100%;
		max-width: 300px;
		margin: 0 auto 30px;
	}
}

@media screen and (max-width: 570px) {
}

@media screen and (max-width: 480px) {
}