/*** 
====================================================================
	Team One
====================================================================
***/
.team-one {
	position: relative;
	display: block;
	background-color: var(--thm-black);
	padding: 120px 0 90px;
	overflow: hidden;
	z-index: 1;
}

.team-one__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.06;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.team-one__shape-1 {
	position: absolute;
	bottom: -116px;
	left: 0;
	z-index: -1;
}

.team-one__shape-1 img {
	width: auto;
}

.team-one__shape-2 {
	position: absolute;
	top: 31px;
	right: 23px;
	z-index: -1;
}

.team-one__shape-2 img {
	width: auto;
}

.team-one__shape-3 {
	position: absolute;
	top: 0;
	right: 0;
	border-top: 250px solid var(--thm-base);
	border-bottom: 100px solid transparent;
	border-left: 305px solid transparent;
	z-index: -1;
}

.team-one .container {
	max-width: 1200px;
}

.team-one .section-title__title {
	color: var(--thm-white);
}

.team-one__single {
	position: relative;
	display: flex;
	align-items: center;
	background-color: var(--thm-white);
	border-right: 6px solid #868e8f;
	border-radius: 115px;
	padding-right: 80px;
	margin-bottom: 30px;
	z-index: 1;
}

.team-one__single::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0px;
	right: -6px;
	border-radius: 115px;
	background-color: var(--thm-base);
	transition: -webkit-transform 0.5s ease;
	transition: transform 0.5s ease;
	transition: transform 0.5s ease, -webkit-transform 0.5s ease;
	transform-origin: right center;
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
	z-index: -1;
}

.team-one__single:hover::before {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	transform-origin: right center;
}

.team-one__img-box {
	position: relative;
	display: block;
}

.team-one__img {
	position: relative;
	display: block;
	width: 190px;
	overflow: hidden;
	border: 2px solid var(--thm-black);
	border-radius: 95px;
	z-index: 1;
}

.team-one__img:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	border-radius: 95px;
	background-color: rgba(var(--thm-black-rgb), .40);
	transform: scale(0);
	transform-origin: center;
	transform-style: preserve-3d;
	transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
	z-index: 1;
}

.team-one__single:hover .team-one__img:before {
	transform: scaleX(1);
}

.team-one__img img {
	width: 100%;
	border-radius: 95px;
	transition: all 500ms ease;
	transform: scale(1);
}

.team-one__single:hover .team-one__img img {
	transform: scale(1.05);
}

.team-one__content {
	position: relative;
	display: block;
	margin-left: 40px;
}

.team-one__sub-title {
	font-weight: 500;
	color: var(--thm-base);
	letter-spacing: 0.05em;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.team-one__single:hover .team-one__sub-title {
	color: var(--thm-white);
}

.team-one__title {
	font-size: 24px;
	font-weight: 600;
	line-height: 34px;
	margin-top: 1px;
	margin-bottom: 8px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.team-one__title a {
	color: var(--thm-black);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.team-one__single:hover .team-one__title a {
	color: var(--thm-white);
}

.team-one__text {
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.team-one__single:hover .team-one__text {
	color: var(--thm-white);
}

/*** 
====================================================================
	Team Two
====================================================================
***/
.team-two {
	position: relative;
	display: block;
	padding: 120px 0 90px;
	z-index: 1;
}

.team-two__bg-box {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 700px;
	background-color: var(--thm-black);
	z-index: -1;
}

.team-two__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.06;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.team-two .container {
	max-width: 1200px;
}

.team-two__left {
	position: relative;
	display: block;
	margin-bottom: 30px;
}

.team-two__left .section-title {
	margin-bottom: 30px;
}

.team-two__left .section-title__title {
	color: var(--thm-white);
}

.team-two__left-text {
	position: relative;
	display: inline-block;
	color: #adafae;
}

.team-two__left-text::before {
	content: "";
	position: absolute;
	bottom: 5px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #adafae;
}

.team-two__btn-box {
	position: relative;
	display: block;
	margin-top: 25px;
}

.team-two__btn {
	padding: 24px 35px 23px;
	background-color: rgba(var(--thm-base-rgb), .40);
}

.team-two__btn:hover {
	color: var(--thm-base);
}

.team-two__btn::before {
	background: var(--thm-base);
}

.team-two__btn::after {
	background: var(--thm-white);
}

.team-two__single {
	position: relative;
	display: block;
	margin-bottom: 30px;
}

.team-two__img-box {
	position: relative;
	display: block;
}

.team-two__img {
	position: relative;
	display: block;
	border-radius: 15px;
}

.team-two__img img {
	width: 100%;
	border-radius: 15px;
}

.team-two__content {
	position: relative;
	display: block;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: -45px;
	text-align: center;
	border-radius: 43px;
	padding: 12px 10px 11px;
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.05);
}

.team-two__sub-title {
	font-size: 16px;
	font-weight: 500;
	color: var(--thm-base);
}

.team-two__title {
	font-size: 24px;
	font-weight: 600;
	line-height: 34px;
}

.team-two__title a {
	color: var(--thm-black);
}

.team-two__hover-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--thm-black);
	text-align: center;
	padding: 34px 10px 20px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-position: bottom left;
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
	-webkit-transform-origin: bottom center;
	transform-origin: bottom center;
	-webkit-transition: -webkit-transform 500ms ease;
	transition: -webkit-transform 500ms ease;
	transition: transform 500ms ease;
	transition: transform 500ms ease, -webkit-transform 500ms ease;
	z-index: 1;
}

.team-two__single:hover .team-two__hover-content {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.team-two__hover-content-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: .25;
	border-radius: 15px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.team-two__hover-title {
	font-size: 24px;
	font-weight: 600;
	line-height: 34px;
	text-transform: uppercase;
	color: var(--thm-white);
	position: relative;
	display: block;
}

.team-two__hover-title a{
	color: inherit;
}

.team-two__hover-title::before {
	content: "";
	position: absolute;
	width: 35px;
	height: 3px;
	background-color: var(--thm-base);
	border-radius: 1px;
	bottom: -11px;
	left: 50%;
	transform: translateX(-50%);
}

.team-two__hover-info-list {
	position: relative;
	display: block;
	margin-top: 19px;
	margin-bottom: 36px;
}

.team-two__hover-info-list li {
	position: relative;
	display: block;
}

.team-two__hover-info-list li+li {
	margin-top: 2px;
}

.team-two__hover-info-list li p {
	color: #adafae;
}

.team-two__hover-info-list li p span {
	color: var(--thm-white);
}

.team-two__social {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(var(--thm-white-rgb), .20);
	border-radius: 27px;
	padding: 14px 20px 11px;
}

.team-two__social a {
	font-size: 14px;
	color: var(--thm-white);
	webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.team-two__social a:hover {
	color: var(--thm-base);
}

.team-two__social a+a {
	margin-left: 27px;
}

/*** 
====================================================================
	Team Three
====================================================================
***/
.team-three {
	position: relative;
	display: block;
	padding: 120px 0 90px;
	overflow: hidden;
	z-index: 1;
}

.team-three__shape-1 {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

.team-three__shape-1 img {
	width: auto;
}

.team-three .container {
	max-width: 1200px;
}

.team-three__single {
	position: relative;
	display: block;
	margin-bottom: 2px;
}

.team-three__img-box {
	position: relative;
	display: block;
}

.team-three__img {
	position: relative;
	display: block;
	border-radius: 15px;
	overflow: hidden;
	z-index: 1;
}

.team-three__img:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(var(--thm-black-rgb), .40);
	visibility: hidden;
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-transform: scaleY(0) translateZ(100px);
	transform: scaleY(0) translateZ(100px);
	-webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
	transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
	transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
	transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
	z-index: 1;
}

.team-three__single:hover .team-three__img:before {
	visibility: visible;
	-webkit-transform: scaleY(1) translateZ(0px);
	transform: scaleY(1) translateZ(0px);
}

.team-three__img img {
	width: 100%;
	border-radius: 15px;
	transition: all 500ms ease;
	transform: scale(1);
}

.team-three__single:hover .team-three__img img {
	transform: scale(1.05);
}

.team-three__content {
	position: relative;
	display: flex;
	margin-top: -89px;
	padding-left: 85px;
	min-height: 167px;
	z-index: 2;
	flex-direction: column;
	justify-content: center;
}

.team-three__content-shape-1 {
	position: absolute;
	top: 0;
	left: 15px;
	right: 15px;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 1;
	visibility: visible;
	transition: all 500ms ease;
	z-index: -1;
}

.team-three__single:hover .team-three__content-shape-1 {
	opacity: 0;
	visibility: hidden;
}

.team-three__content-shape-2 {
	position: absolute;
	top: 0px;
	left: 15px;
	right: 15px;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	visibility: hidden;
	transition: all 500ms ease;
	z-index: -1;
}

.team-three__single:hover .team-three__content-shape-2 {
	opacity: 1;
	visibility: visible;
}

.team-three__title-box {
	position: relative;
	display: block;
}

.team-three__content p {
	font-weight: 500;
	letter-spacing: 0.075em;
	color: var(--thm-base);
	transition: all 500ms ease;
}

.team-three__single:hover .team-three__content p {
	color: var(--thm-white);
}

.team-three__content h3 {
	font-size: 24px;
	font-weight: 600;
	line-height: 34px;
	margin-top: 2px;
}

.team-three__content h3 a {
	color: var(--thm-black);
	transition: all 500ms ease;
}

.team-three__single:hover .team-three__content h3 a {
	color: var(--thm-white);
}

/*** 
====================================================================
	Team Four
====================================================================
***/
.team-four {
	position: relative;
	display: block;
	padding: 120px 0 90px;
	overflow: hidden;
	z-index: 1;
}

.team-four-shape-1 {
	position: absolute;
	bottom: 144px;
	left: 0;
	z-index: -1;
}

.team-four-shape-1 img {
	width: auto;
}

.team-four-shape-2 {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

.team-four-shape-2 img {
	width: auto;
}

.team-four__single {
	position: relative;
	display: block;
	border: 2px solid #dadcdd;
	background-color: var(--thm-white);
	text-align: center;
	margin-bottom: 50px;
	padding: 33px 30px 51px;
	z-index: 1;
}

.team-four__single::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--thm-base);
	transform: scaleX(0.7) rotateX(20deg);
	opacity: 0;
	transition: all 0.4s linear;
	z-index: -1;
}

.team-four__single:hover:before {
	transform: scaleX(1.0) rotateX(0deg);
	transition: all 0.4s linear;
	opacity: 1;
}


.team-four__img {
	position: relative;
	display: block;
}

.team-four__img img {
	width: auto;
}

.team-four__sub-title {
	font-size: 16px;
	font-weight: 500;
	color: var(--thm-base);
	padding-top: 27px;
	webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.team-four__single:hover .team-four__sub-title {
	color: var(--thm-white);
}

.team-four__name {
	font-size: 24px;
	font-weight: 600;
	line-height: 30px;
}

.team-four__name a {
	color: var(--thm-black);
	webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.team-four__single:hover .team-four__name a {
	color: var(--thm-white);
}

.team-four__social {
	position: absolute;
	bottom: -22px;
	left: 0;
	right: 0;
	width: 204px;
	border: 2px solid #dadcdd;
	background-color: var(--thm-white);
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	border-radius: 23px;
	padding: 8px 32px 6px;
	z-index: 2;
}

.team-four__social a {
	position: relative;
	font-size: 15px;
	color: var(--thm-black);
	webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.team-four__social a:hover {
	color: var(--thm-base);
}

/*** 
====================================================================
	Team Page
====================================================================
***/
.team-page {
	position: relative;
	display: block;
	padding: 120px 0 90px;
	background-color: var(--thm-primary);
}

.team-page .container {
	max-width: 1200px;
}


/*** 
====================================================================
	End
====================================================================
***/