/*** 

====================================================================
	Services One
====================================================================

***/

.services-one{
	position: relative;
	padding: 110px 0px 80px;
}

.services-one.style-two{
	background-color: var(--color-four);
}

.services-one.style-three{
	padding-top: var(--padding-zero);
}

.service-block_one{
	position: relative;
}

.service-block_one-inner{
	position: relative;
	padding-top: var(--padding-top-50);
	padding-bottom: var(--padding-bottom-50);
	border-bottom: 1px solid var(--color-two);
}

.service-block_one:last-child .service-block_one-inner{
	padding-bottom:0px;
	border-bottom:none;
}

.service-one-hover {
	width: 300px;
	height: 400px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: 75%;
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
	margin: -200px 0 0 -150px;
	overflow: hidden;
	pointer-events: none;
}
  
.service-block_one-inner:hover .service-one-hover {
	opacity:1;
}

.service-block_one-icon{
	position: relative;
	line-height: 1em;
	color: var(--main-color);
	font-size: var(--font-44);
	font-family: "Flaticon";
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.service-block_one-inner:hover .service-block_one-icon{
	-webkit-transform: scale(-1) rotate(180deg);
    -moz-transform: scale(-1) rotate(180deg);
    -ms-transform: scale(-1) rotate(180deg);
    -o-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}

.service-block_one-heading{
	position: relative;
	margin-left: -130px;
	max-width: 130px;
    text-align: left;
    width: 100%;
}

.service-block_one-heading a{
	position: relative;
	color: var(--color-two);
}

.service-block_one-heading a:hover{
	color: var(--main-color);
}

.service-block_one-text{
	position: relative;
	max-width: 600px;
	color: var(--color-three);
	font-size: var(--font-15);
}

.service-block_one-more{
	position: relative;
	font-weight: 600;
	font-size: var(--font-16);
	text-transform: uppercase;
	color: var(--color-two);
	padding-right: var(--padding-right-30);
}

.service-block_one-more::before{
	position: absolute;
	content: "\f17b";
	right: 0px;
	font-family: "Flaticon";
}

.service-block_one-more:hover{
	color: var(--main-color);
}

@media only screen and (max-width: 1540px){
	
	
	
}

@media only screen and (max-width: 1450px){
	
	
	
}
	
@media only screen and (max-width: 1340px){

	
	
}

@media only screen and (max-width: 1200px){
	
	

}

@media only screen and (max-width: 1140px){
	
	.service-block_one-more{
		position: relative;
		display: inline-block;
		
	}

}

@media only screen and (min-width: 768px){
	
	
	
}

@media only screen and (max-width: 1023px){
	
	.service-block_one-heading{
		max-width: inherit;
		margin-left: var(--margin-zero);
	}
	
}

@media only screen and (max-width: 900px){
	
	.service-block_one-text{
		max-width: 100%;
	}

	.service-block_one-more{
		margin-top: var(--margin-top-20);
	}

}

@media only screen and (max-width: 767px){
	
	.service-block_one-inner{
		padding-left: var(--padding-zero);
	}

	.service-block_one-icon{
		position: relative;
		top: 0px;
		margin-bottom: var(--margin-bottom-25);
	}

	.service-block_one-heading{
		position: relative;
		top: 0px;
		left: 0px;
		margin-bottom: var(--margin-bottom-20);
	}

	.service-block_one-more{
		margin-top: var(--margin-top-25);
	}

	.service-one-hover{
		display: none;
	}

}

@media only screen and (max-width: 599px){
	
	

}

@media only screen and (max-width: 479px) {
	
	

}

/*** 

====================================================================
	Services Two
====================================================================

***/

.services-two{
	position: relative;
	padding: 110px 0px 80px;
}

.services-two .sec-title_text{
	max-width: 360px;
}

.service-block_two{
	position: relative;
	margin-bottom: var(--margin-bottom-30);
}

.service-block_two:last-child{
	margin-bottom:0px;
}

.service-block_two-number{
	position: relative;
	font-size: var(--font-18);
	color: var(--color-five);
	margin-bottom: var(--margin-bottom-10);
}

.service-block_two-inner{
	position: relative;
	padding-bottom: var(--padding-bottom-25);
	border-bottom: 1px solid var(--color-five);
}

.service-block_two:last-child .service-block_two-inner{
	border:none;
	padding:0px;
}

.service-block_two-inner .h-img{
	position: absolute;
	max-width: 200px;
	height: 300px;
	-o-object-fit: contain;
	object-fit: contain;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	top: 50%;
	left: 50%;
	z-index: -10;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.2s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.2s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.2s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-block_two-heading{
	position: relative;
	font-weight: 500;
	font-family: var(--font-family-NotoSerif);
}

.service-block_two-heading a{
	position: relative;
	color: var(--color-two);
}

.service-block_two-heading a:hover{
	color: var(--main-color);
}

.service-block_two-more{
	position: relative;
	font-weight: 400;
	font-size: var(--font-16);
	text-transform: uppercase;
	color: var(--color-two);
	padding-right: var(--padding-right-30);
}

.service-block_two-more::before{
	position: absolute;
	content: "\f17b";
	right: 0px;
	font-size: var(--font-14);
	font-family: "Flaticon";
}

.service-block_two-more:hover{
	color: var(--main-color);
}

@media only screen and (max-width: 1540px){
	
	
	
}

@media only screen and (max-width: 1450px){
	
	
	
}
	
@media only screen and (max-width: 1340px){

	
	
}

@media only screen and (max-width: 1200px){
	
	

}

@media only screen and (max-width: 1140px){
	
	

}

@media only screen and (min-width: 768px){
	
	
	
}

@media only screen and (max-width: 1023px){
	
	.services-two .sec-title_text{
		max-width: 100%;
	}
	
}

@media only screen and (max-width: 900px){
	
}

@media only screen and (max-width: 767px){
	
	.service-block_two-inner .h-img{
		display: none;
	}

}

@media only screen and (max-width: 599px){
	
	

}

@media only screen and (max-width: 479px) {
	
	.service-block_two-more{
		margin-top: var(--margin-top-15);
	}

}

/*** 

====================================================================
	Services Three
====================================================================

***/

.services-three{
	position: relative;
	padding: 110px 0px 80px;
}

.services-three .left-column{
	position: relative;
	margin-top: var(--margin-top-80);
}

.services-three .center-column{
	position: relative;
	text-align: center;
}

.services-three .right-column{
	position: relative;
	text-align: right;
	margin-top: -80px;
}

.service-block_three{
	position: relative;
	margin-bottom: var(--margin-bottom-50);
}

.right-col .service-block_three{
	text-align:right;
}

.service-block_three-inner{
	position: relative;
	max-width: 300px;
	display:inline-block;
}

.service-block_three-icon{
	position: relative;
	line-height: 1em;
	color: var(--color-two);
	font-size: var(--font-50);
	font-family: "Flaticon";
	margin-bottom: var(--margin-bottom-25);
}

.service-block_three-heading{
	position: relative;
	font-weight: 500;
	line-height: 1em;
	font-family: var(--font-family-NotoSerif);
}

.service-block_three-heading a{
	position: relative;
	color: var(--color-two);
}

.service-block_three-text{
	position: relative;
	line-height: 28px;
	font-size: var(--font-16);
	color: var(--color-three);
	margin-top: var(--margin-top-20);
}

.service-block_three-heading a:hover{
	color: var(--main-color);
}

.service-block_three-image{
	position: relative;
	margin-top: var(--margin-top-80);
}

.service-block_three-play{
	position: relative;
	display: inline-block;
	color: var(--color-two);
	font-size: var(--font-16);
	text-transform: uppercase;
	margin-top: var(--margin-top-120);
}

.service-block_three-play span{
	position: relative;
	width:50px;
	height:50px;
	font-weight:800;
	line-height:50px;
	text-align:center;
	border-radius:150px;
	display:inline-block;
	color: var(--color-two);
	font-size:var(--font-14);
	font-family: 'Font Awesome 5 Pro';
	margin-left: var(--margin-left-10);
	border: 1px solid var(--color-two);
}

.service-block_three-play:hover{
	color: var(--color-twenty);
}

@media only screen and (max-width: 1540px){
	
	
	
}

@media only screen and (max-width: 1450px){
	
	
	
}
	
@media only screen and (max-width: 1340px){

	
	
}

@media only screen and (max-width: 1200px){
	
	

}

@media only screen and (max-width: 1140px){
	
	

}

@media only screen and (min-width: 768px){
	
	
	
}

@media only screen and (max-width: 1023px){
	
	.services-three .center-column{
		order: 3;
	}

	.services-three .left-column{
		margin-top: var(--margin-zero);
	}

	.services-three .right-column{
		order: 2;
		margin-top: var(--margin-zero);
	}

	.service-block_three-inner{
		max-width: 100%;
	}
	
	.service-block_three-image{
		margin-top: var(--margin-zero);
	}

}

@media only screen and (max-width: 900px){
	
}

@media only screen and (max-width: 767px){
	
	.service-block_three-inner{
		text-align: center;
	}

	.service-block_three-play{
		margin-top: var(--margin-top-50);
	}

}

@media only screen and (max-width: 599px){
	
	

}

@media only screen and (max-width: 479px) {
	
	

}

/*** 

====================================================================
	Services Four
====================================================================

***/

.services-four{
	position: relative;
	padding: 110px 0px 80px;
}

.services-four .row{
	position: relative;
	margin: 0px -30px;
}

.services-four .column{
	position: relative;
	padding: 0px 30px;
}

.service-block_four{
	position: relative;
	margin-bottom: var(--margin-bottom-35);
}

.service-block_four-inner{
	position: relative;
	padding-bottom: var(--padding-bottom-30);
	border-bottom: 1px solid rgba(var(--white-color-rgb), 0.10);
}

.service-block_four-hover{
	width: 300px;
	height: 400px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: 75%;
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
	margin: -200px 0 0 -150px;
	overflow: hidden;
	pointer-events: none;
}

.service-block_four-inner:hover .service-block_four-hover{
	opacity:1;
}

.service-block_four a{
	position: relative;
	font-weight: 300;
	line-height: 1em;
	display: block;
	font-size: var(--font-64);
	padding-left: var(--padding-left-40);
	font-family:var(--font-family-Outfit);
	color: rgba(var(--white-color-rgb), 0.30);
}

.service-block_four-inner:hover a::before{
	opacity: 1;
	transform: rotate(-45deg);
}

.service-block_four a::before{
	position: absolute;
	content: "\f144";
	right: 0px;
	top: 0px; 
	opacity: 0;
	line-height: 1em;
	font-family: "Flaticon";
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.service-block_four-number{
	position: absolute;
	left: 0px;
	top: -10px;
	font-weight: 300;
	line-height: 1em;
	font-size: var(--font-24);
	color: rgba(var(--white-color-rgb), 0.30);
}

.service-block_four a:hover{
	color: var(--main-color);
}

@media only screen and (max-width: 1540px){
	
	
	
}

@media only screen and (max-width: 1450px){
	
	
	
}
	
@media only screen and (max-width: 1340px){

	
	
}

@media only screen and (max-width: 1200px){
	
	.services-four .row{
		margin: 0px -15px;
	}

	.services-four .column{
		padding: 0px 15px;
	}

}

@media only screen and (max-width: 1140px){
	
	.service-block_four a{
		font-size: var(--font-40);
	}

}

@media only screen and (min-width: 768px){
	
	
	
}

@media only screen and (max-width: 1023px){
	
	
	
}

@media only screen and (max-width: 900px){
	
}

@media only screen and (max-width: 767px){
	
	

}

@media only screen and (max-width: 599px){
	
	.service-block_four a{
		font-size: var(--font-30);
	}

}

@media only screen and (max-width: 479px) {
	
	

}