/* ---------- Services HERO ------*/

.employee-intro-wrapper {
	width: 100%;
	height: 90vh;
	position: relative;
	margin-bottom: 100px;
}

.employee-intro-img {
	position:absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.employee-intro-img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}


.employee-intro-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 55%;
	height: 100%;
	background: linear-gradient(to right,#000, transparent);
	z-index: 2;
}

.employee-intro-write {
	position: absolute;
	left:5%;
	top:50%;
	transform: translateY(-50%);
	padding: 20px;
	width: 45%;
	z-index: 3;
}

.employee-intro-write p{
	color: orange;
	font-family: "Poppins", sans-serif;
	font-size: 26px;
	padding: 0;
	margin: 0;
}

.employee-intro-write p:nth-child(2){
	font-size: 22px;
	color: #fff;
	padding-top: 20px;
}

/* ---------- training ------ */

.training-wrapper {
	margin:0;
	padding: 0;
	width: 100%;
	height: 80vh;
	display: flex;
	position: relative;
}

.training-left {
	padding-left:40px;
	margin: 0;
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}


.training-write {
	width:70%;
	border-bottom:  1px solid gray;
}

.training-write p {
	font-family: "Montserrat", san-serif;
	font-size: 26px;
	color: #404040;
}

.training-write p:nth-child(2) {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	color: #404040;
}

.training-right {
	width: 60%;
	position: relative;
	box-sizing: border-box;
}

.training-slider {
	width:  600px;
	height: 500px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: relative;
}

.tng-slide.active {
	display: flex;
}

.tng-slide {
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	display: none;
}

.tng-caption {
	position: absolute;
	background: rgba(225,0,0,.8);
	height: 30%;
	width:  100%;
	top: 70%;
	padding: 0;
	margin: 0;
}

.tng-caption p {
	font-family: "Montserrat", sans-serif;
	font-size: 16;
	color: white;
	padding: 10px;
	margin: 0;
}

.tng-controls .previous,
.tng-controls .next{
	width:  40px;
	height: 40px;
	top: 50%;
	font-size: 40px;
	margin-top: -20px;
	text-align: center;
	position: absolute;
	color: red;
	line-height: 40px;
	z-index: 2;
	cursor: pointer;
}

.tng-controls .previous {
	left: 0;
}

.tng-controls .next {
	right: 0;
}

.tng-controls .previous:hover,
.tng-controls .next:hover {
	color: #000;
}

.indicator {
	position: absolute;
	left: 50%;
	bottom: 11%;
	z-index: 2;
	transform: translateX(-50%);

}

.indicator div{
	display: inline-block;
	width: 25px;
	height: 25px;
	color: #fff;
	border-radius: 50%;
	background: orange;
	text-align: center;
	line-height: 25px;
	margin:  5px 3px 0;
	cursor: pointer;
}

.indicator .active{
	background: #000;
}

/*--- fitness ---*/

.fitness-wrapper {
	margin-top:100px;
	padding: 0;
	width: 100%;
	height: 80vh;
	display: flex;
	position: relative;
}

.fitness-right {
	padding-left:100px;
	margin: 0;
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: left;
	align-items: center;
}


.fitness-write {
	width:70%;
	border-bottom: 1px solid gray;
}

.fitness-write p {
	font-family: "Montserrat", san-serif;
	font-size: 26px;
}

.fitness-write p:nth-child(2) {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	color: #727274;
}

.fitness-left {
	width: 60%;
	position: relative;
	box-sizing: border-box;
}

.fitness-slider {
	width:  600px;
	height: 500px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: relative;
}

.fit-slide.active {
	display: flex;
}

.fit-slide {
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	display: none;
}

.fit-controls .fit-prev,
.fit-controls .fit-next{
	width:  40px;
	height: 40px;
	top: 50%;
	font-size: 40px;
	margin-top: -20px;
	text-align: center;
	position: absolute;
	color: red;
	line-height: 40px;
	z-index: 2;
	cursor: pointer;
}

.fit-controls .fit-prev {
	left: 0;
}

.fit-controls .fit-next {
	right: 0;
}

.fit-controls .fit-prev:hover,
.fit-controls .fit-next:hover {
	color: #000;
}

.fitness-indicator {
	position: absolute;
	left: 50%;
	bottom: 11%;
	z-index: 2;
	transform: translateX(-50%);

}

.fitness-indicator div{
	display: inline-block;
	width: 25px;
	height: 25px;
	color: #fff;
	border-radius: 50%;
	background: orange;
	text-align: center;
	line-height: 25px;
	margin:  5px 3px 0;
	cursor: pointer;
}

.fitness-indicator .active{
	background: #000;
}


/* -------- media query ---*/

@media only screen and (max-width: 414px) {

	.employee-intro-wrapper {
		margin-bottom: 0px;
	}

	.employee-intro-overlay {
		width: 70%;
	}

	.employee-intro-write {
		width: 60%;
	}

	.employee-intro-write p:nth-child(2){
		font-size: 16px;
	}

	.training-wrapper {
		padding: 0;
		margin: 0;
		height: 105vh;
		display: block;
	}

	.training-left {
		padding:10px;
		width: 100%;
		height:220px;
		display: block;	
	}

	.training-write {
		width:90%;
		padding: 20px;
		border-bottom:none;
	}

	.training-write p {
		padding: 5px;
		margin: 0;
	}

	.training-write p:nth-child(2) {
		font-size: 14px;
	}

	.training-right {
		width: 100%;
		height: 430px;
	}

	.training-slider {
		width:  100%;
		height: 100%;
	}

	.tng-caption p {
		font-size: 12;
	}

	.tng-controls .previous,
	.tng-controls .next{
		top: 50%;
		background: rgba(255, 255, 255, .5);
		border-radius: 50%;
	}

	.indicator {
		position: absolute;
		left: 50%;
		bottom: 2px;
		z-index: 2;
		transform: translateX(-50%);
	}

	.indicator div{
		width: 20px;
		height: 20px;
		line-height: 20px;

	}


	.fitness-wrapper {
		margin:0;
		height: 96vh;
		display: block;
	}

	.fitness-right {
		padding:0px;
		width: 100%;
		height: 180px;
		display: block;
		position: absolute;
		top: 0;
		left: 0;
	}


	.fitness-write {
		width:90%;
		border-bottom: none;
		padding: 20px;
	}

	.fitness-write p {
		color: #404040;
		padding:5px;
		margin: 0;
	}

	.fitness-write p:nth-child(2) {
		color: #404040;
		font-size: 14px;
	}

	.fitness-left {
		width: 100%;
		position: absolute;
		top: 180px;
		left: 0;
		height: 450px;
	}

	.fitness-slider {
		width:  100%;
		height: 100%;
	}

	.fit-controls .fit-prev,
	.fit-controls .fit-next{
		background: rgba(255, 255, 255, .5);
		border-radius: 50%;
	}

	.fitness-indicator {
		bottom: 2px;
	}

	.fitness-indicator div{
		width: 20px;
		height: 20px;
		line-height: 20px;
	}


}