<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-------------------------------------------------------------- 
# Slider
--------------------------------------------------------------*/
.slider-one__wrapper {
	position: relative;
	overflow: hidden;
	background-color: #f0f7f7;
	padding-bottom: 169px;
}

.slider-one__carousel .owl-stage-outer {
	overflow: visible;
}

.slider-one__carousel .owl-item {
	opacity: 0;
	visibility: hidden;
	transition: 500ms;
}

.slider-one__carousel .owl-item.active {
	opacity: 1;
	visibility: visible;
}

.slider-one__item {
	padding-top: 380px;
}

.slider-one__carousel .item {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.slider-one__content {
	width: 100%;
	max-width: 682px;
	position: relative;
	margin-bottom: -135px;
	z-index: 10;
	opacity: 0;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

.slider-one__carousel .active .slider-one__content {
	animation-name: fadeInUp;
}

.slider-one__content::before {
	content: '';
	position: absolute;
	left: 0;
	width: 1920px;
	height: 100%;
	background-color: #ffffff;
}
.slider-one__content-inner {
	position: relative;
	padding-left: 70px;
	padding-right: 70px;
	padding-top: 85px;
	padding-bottom: 66px;
}
.slider-one__content-inner h3 {
	margin: 0;
	color: var(--thm-black);
	font-weight: bold;
	font-size: 45px;
	line-height: 50px;
	position: relative;
}

.slider-one__content-inner p {
	margin: 0;
	font-size: 16px;
	line-height: 26px;
	color: #93959e;
	margin-top: 21px;
	margin-bottom: 33px;
	position: relative;
}

.slider-one__content-inner .thm-btn {
	position: relative;
}

.slider-one__nav {
	position: absolute;
	bottom: 165px;
	right: 70px;
	z-index: 100;
}

.slider-one__nav-left,
.slider-one__nav-right {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	background-color: #fff;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	color: #9c9da5;
	text-align: center;
	transition: 500ms ease;
	box-shadow: 0px 10px 20px 0px rgba(67, 131, 99, 0.2) !important;
}

.slider-one__nav-right {
	margin-top: 20px;
}

.slider-one__nav-left:hover,
.slider-one__nav-right:hover {
	background-color: var(--thm-base);
	color: #fff;
}
/*-------------------------------------------------------------- 
## Slider Two
--------------------------------------------------------------*/
#slider-two__carousel-dots {
	counter-reset: dotsCount;
	display: flex;
	align-items: center;
	position: absolute;
	top: calc(100% + 185px);
	left: 0;
}

@media(max-width: 1440px) {
	#slider-two__carousel-dots {
		top: calc(100% + 105px);
	}
}

#slider-two__carousel-dots li {
	counter-increment: dotsCount;
	position: relative;
	transition: 500ms;
}

#slider-two__carousel-dots li.active {
	transform: translateY(-30px);
}

#slider-two__carousel-dots li+li {
	margin-left: 50px;
}

#slider-two__carousel-dots li::before {
	font-size: 22px;
	line-height: 1em;
	font-family: var(--heading-font);
	color: #b9bac1;
	font-weight: bold;
	content: counters(dotsCount, ".", decimal-leading-zero);
	transition: 500ms;
}

#slider-two__carousel-dots li.active::before {
	color: var(--thm-base);
}

#slider-two__carousel-dots li::after {
	content: '';
	width: 2px;
	height: 0px;
	transition: height 500ms ease;
	display: block;
	margin-left: auto;
	margin-right: auto;
	position: absolute;
	top: 100%;
	left: calc(50% - 1px);
	background-color: var(--thm-base);
}

#slider-two__carousel-dots li.active::after {
	height: 25px;
}

.slider-two__wrapper {
	padding-bottom: 250px;
}

.slider-two__wrapper .my-auto {
	width: 100%;
}

.slider-two__main {
	width: 100%;
	max-width: 546px;
	position: relative;
	z-index: 20;
	background-color: #fff;
}

@media(max-width: 1440px) {
	.slider-two__main {
		padding-right: 30px;
	}
}

.slider-two__main h3 {
	margin: 0;
	color: var(--thm-black);
	font-size: 45px;
	line-height: 50px;
	font-weight: bold;
	letter-spacing: -.02em;
	margin-bottom: 20px;
}

@media(max-width: 1440px) {
	.slider-two__main h3 {
		font-size: 40px;
	}
}

.slider-two__main p {
	margin: 0;
	font-size: 16px;
	line-height: 30px;
	color: #93959e;
	margin-bottom: 30px;
}

.slider-two__wrapper .container-fluid {
	padding-left: 100px;
	padding-right: 100px;
}

@media(max-width: 1440px) {
	.slider-two__wrapper .container-fluid {
		padding-left: 50px;
		padding-right: 50px;
	}
}

.slider-two__carousel {
	width: 100%;
	max-width: 945px;
	position: relative;
	z-index: 19;
}

.slider-two__carousel .owl-stage-outer {
	overflow: visible;
}

.slider-two__carousel .owl-item {
	opacity: 0;
	visibility: hidden;
	transition: all 500ms ease;
}

.slider-two__carousel .owl-item.active {
	opacity: 1;
	visibility: visible;
}

.slider-two__carousel-single img {
	border-radius: 10px;
}

.slider-two__carousel-content {
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;

	width: 100%;
	max-width: 370px;
	position: absolute;
	bottom: -100px;
	left: -130px;
	z-index: 10;
	background-color: #fff;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	box-shadow: -14.142px 14.142px 30px 0px rgba(67, 131, 99, 0.08);
	padding-left: 50px;
	padding-right: 45px;
	padding-top: 64px;
	padding-bottom: 56px;
}

@media(max-width: 1795px) {
	.slider-two__carousel-content {
		left: -70px;
	}
}


@media(max-width: 1675px) {
	.slider-two__carousel-content {
		left: -20px;
	}
}

@media(max-width: 1510px) {
	.slider-two__carousel-content {
		left: 20px;
	}
}
.slider-two__carousel-content::after {
	content: '';
	width: 3px;
	height: 50px;
	background-color: var(--thm-base);
	position: absolute;
	top: 70px;
	left: 0;
}

.slider-two__carousel-content h3 {
	margin: 0;
	color: var(--thm-black);
	font-weight: bold;
	font-size: 26px;
	margin-bottom: 20px;
	line-height: 34px;
}

.slider-two__carousel-content p {
	font-size: 16px;
	line-height: 30px;
	color: #93959e;
	margin: 0;
}

/* animating on active */

.slider-two__carousel .active .slider-two__carousle-content {
	animation-name: fadeInUp;
}
/*-------------------------------------------------------------- 
## Slider Three
--------------------------------------------------------------*/
.slider-three__wrapper {
	position: relative;
}

@media(min-width: 1921px) {
	.slider-three::after {
		background-size: 100% auto;
		bottom: -3px;
	}
}
.slider-three__carousel {
	position: relative;
	z-index: 12;
}
.slider-three__carousel .item {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding-top: 152.5px;
	padding-bottom: 152.5px;
	overflow: hidden;
}

.slider-three .anim-elm {
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

.slider-three__content {
	padding-top: 61px;
	padding-bottom: 74px;
	position: relative;
	width: 100%;
	padding-left: 35px;
	padding-right: 65px;
	background-color: #fff;
	margin-left: 30px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}
.slider-three__content h3 {
	margin: 0;
	font-size: 45px;
	line-height: 50px;
	font-weight: bold;
	margin-bottom: 20px;
	color: var(--thm-black);
}

.slider-three__content p {
	margin: 0;
	color: #93959e;
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 33px;
	width: 96%;
}

.slider-three__btn {
	padding-left: 49px;
	padding-right: 49px;
}

/* animating on active */

.slider-three__carousel .active .slider-three__content {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

.slider-three__nav {
	position: absolute;
	left: 60px;
	top: 50%;
	z-index: 14;
	transform: translateY(-50%);
}

.slider-three__nav-left,
.slider-three__nav-right {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	background-color: #fff;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	color: #9c9da5;
	text-align: center;
	transition: 500ms ease;
	z-index: 14;
	box-shadow: 0px 10px 20px 0px rgba(67, 131, 99, 0.2);
}

.slider-three__nav-right {
	margin-top: 20px;
}

.slider-three__nav-left:hover,
.slider-three__nav-right:hover {
	background-color: var(--thm-base);
	color: #fff;
}
/*-------------------------------------------------------------- 
## Slider Four
--------------------------------------------------------------*/
.slider-four__wrapper {
	position: relative;
}
@media(min-width: 1921px) {
	.slider-four::after {
		background-size: 100% auto;
		bottom: -3px;
	}
}

.slider-four__carousel {
	position: relative;
	z-index: 12;
}

.slider-four__carousel .item {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding-top: 271.5px;
	padding-bottom: 271.5px;
}

.slider-four__content .anim-elm {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

.slider-four__content h3 {
	margin: 0;
	font-size: 65px;
	line-height: 1em;
	font-weight: bold;
	color: #fff;
	margin-bottom: 13px;
}

.slider-four__content p {
	margin: 0;
	font-size: 16px;
	line-height: 26px;
	color: #ffffff;
}

/* animating on active */

.slider-four__carousel .active .slider-four__content h3 {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-webkit-animation-delay: .5s;
	animation-delay: .5s;
}

.slider-four__carousel .active .slider-four__content p {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

.slider-four__nav-left,
.slider-four__nav-right {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	background-color: #fff;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	color: #9c9da5;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	transition: 500ms ease;
	position: absolute;
	z-index: 14;
	box-shadow: 0px 10px 20px 0px rgba(67, 131, 99, 0.2);
}

.slider-four__nav-left {
	left: 50px;
}

.slider-four__nav-right {
	right: 50px;
}

.slider-four__nav-left:hover,
.slider-four__nav-right:hover {
	background-color: var(--thm-base);
	color: #fff;
}
@media(min-width: 1921px) {
	.slider-five::after {
		background-size: 100% auto;
		bottom: auto;
	}
}

.slider-five .slider-four__carousel .item {
	padding-top: 206px;
	padding-bottom: 206px;
}

.slider-five .slider-four__content .thm-btn {
	margin-top: 33px;
}

.slider-five .slider-four__carousel .active .slider-four__content .thm-btn {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}/*-------------------------------------------------------------- 
# Services 
--------------------------------------------------------------*/
.service-one {
	background-color: #f0f7f7;
	padding-top: 150px;
	padding-bottom: 90px;
	position: relative;
}
@media(min-width: 1921px) {
	.service-one::after {
		background-size: 100% auto;
		top: calc(100% - 3px);
	}
}

.service-one .container {
	position: relative;
}

.service-one .row.high-gutter {
	margin-left: -20px;
	margin-right: -20px;
}

.service-one .row.high-gutter&gt;[class*=col-] {
	padding-left: 20px;
	padding-right: 20px;
}

.service-one__single {
	margin-bottom: 60px;
	text-align: center;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 20px 30px 0px rgba(67, 131, 99, 0.1);
}

.service-one__image {
	overflow: hidden;
	position: relative;
	background-color: var(--thm-black);
	border-radius: 10px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.service-one__image&gt;img {
	width: 100%;
	transform: scale(1.0);
	opacity: 1;
	transition: opacity 500ms ease, transform 500ms ease;
}

.service-one__single:hover .service-one__image&gt;img {
	opacity: 0.2;
	transform: scale(1.05);
}

.service-one__image&gt;a {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--thm-primary);
	font-size: 23px;
	position: absolute;
	top: calc(50% - 59.5px);
	left: calc(50% - 32.5px);
	opacity: 0;
	transform: perspective(100px) translateZ(30px) rotate(45deg);
	transition: opacity 500ms ease 0ms, transform 500ms ease 0ms, background 500ms ease, color 500ms ease;
}

.service-one__image&gt;a:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.service-one__single:hover .service-one__image&gt;a {
	opacity: 1;
	transform: perspective(100px) translateZ(0px) rotate(0deg);
	transition: opacity 500ms ease 300ms, transform 500ms ease 300ms, background 500ms ease, color 500ms ease;
}

.service-one__link {
	position: absolute;
	bottom: -32.5px;
	left: calc(50% - 32.5px);
	width: 65px;
	height: 65px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 23px;
	background-color: var(--thm-base);
	opacity: 0;
	transform: perspective(100px) translateZ(30px) rotate(45deg);
	transition: color 500ms ease, background 500ms ease, transform 500ms ease, opacity 500ms ease;
}

.service-one__link:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.service-one__single:hover .service-one__link {
	opacity: 1;
	transform: perspective(100px) translateZ(0px) rotate(0deg);
}

.service-one__content {
	position: relative;
	padding-top: 95px;
	padding-bottom: 70px;
}

.service-one__icon {
	width: 100px;
	height: 100px;
	background-color: #ff5e5e;
	border-radius: 10px;
	position: absolute;
	top: -50px;
	left: calc(50% - 50px);
	color: #fff;
	font-size: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-one__icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: inherit;
	transform: rotate(15deg);
	border-radius: inherit;
	opacity: .3;
	transition: transform 500ms;
}

.service-one__single:hover .service-one__icon::before {
	transform: rotate(195deg);
}

.service-one__icon i {
	color: #fff;
	font-size: 50px;
	position: relative;
}

.service-one__content h3 {
	color: var(--thm-black);
	font-size: 24px;
	font-weight: bold;
	margin: 0;
	margin-bottom: 24px;
}

.service-one__content h3 a {
	color: inherit;
	transition: 500ms;
}

.service-one__content p {
	margin: 0;
	color: #93959e;
	font-size: 16px;
	line-height: 30px;
	width: 72%;
	margin-left: auto;
	margin-right: auto;
}

.owl-carousel .owl-item:nth-child(1) .service-one__icon,
[class*=col-]:nth-child(1) .service-one__icon {
	background-color: #ff5e5e;
}

.owl-carousel .owl-item:nth-child(2) .service-one__icon,
[class*=col-]:nth-child(2) .service-one__icon {
	background-color: var(--thm-base);
}

.owl-carousel .owl-item:nth-child(3) .service-one__icon,
[class*=col-]:nth-child(3) .service-one__icon {
	background-color: var(--thm-primary);
}

.owl-carousel .owl-item:nth-child(4) .service-one__icon,
[class*=col-]:nth-child(4) .service-one__icon {
	background-color: #6177ff;
}

.owl-carousel .owl-item:nth-child(5) .service-one__icon,
[class*=col-]:nth-child(5) .service-one__icon {
	background-color: #b540ff;
}

.owl-carousel .owl-item:nth-child(6) .service-one__icon,
[class*=col-]:nth-child(6) .service-one__icon {
	background-color: #00cde5;
}

.owl-carousel .owl-item:nth-child(7) .service-one__icon,
[class*=col-]:nth-child(7) .service-one__icon {
	background-color: #ff5e5e;
}

.owl-carousel .owl-item:nth-child(8) .service-one__icon,
[class*=col-]:nth-child(8) .service-one__icon {
	background-color: var(--thm-base);
}

.owl-carousel .owl-item:nth-child(9) .service-one__icon,
[class*=col-]:nth-child(9) .service-one__icon {
	background-color: var(--thm-primary);
}

.owl-carousel .owl-item:nth-child(10) .service-one__icon,
[class*=col-]:nth-child(10) .service-one__icon {
	background-color: #6177ff;
}

.owl-carousel .owl-item:nth-child(11) .service-one__icon,
[class*=col-]:nth-child(11) .service-one__icon {
	background-color: #b540ff;
}

.owl-carousel .owl-item:nth-child(12) .service-one__icon,
[class*=col-]:nth-child(12) .service-one__icon {
	background-color: #00cde5;
}

.owl-carousel .owl-item:nth-child(13) .service-one__icon,
[class*=col-]:nth-child(7) .service-one__icon {
	background-color: #ff5e5e;
}

.owl-carousel .owl-item:nth-child(14) .service-one__icon,
[class*=col-]:nth-child(8) .service-one__icon {
	background-color: var(--thm-base);
}

.owl-carousel .owl-item:nth-child(15) .service-one__icon,
[class*=col-]:nth-child(9) .service-one__icon {
	background-color: var(--thm-primary);
}

.owl-carousel .owl-item:nth-child(16) .service-one__icon,
[class*=col-]:nth-child(10) .service-one__icon {
	background-color: #6177ff;
}

.owl-carousel .owl-item:nth-child(17) .service-one__icon,
[class*=col-]:nth-child(11) .service-one__icon {
	background-color: #b540ff;
}

.owl-carousel .owl-item:nth-child(18) .service-one__icon,
[class*=col-]:nth-child(12) .service-one__icon {
	background-color: #00cde5;
}


.service-one .owl-dots {
	margin-top: 25px !important;
}

.service-one .owl-dots .owl-dot {
	margin: 0;
	outline: none;
}

.service-one .owl-dots .owl-dot span {
	width: 8px;
	height: 8px;
	margin: 0;
	border-radius: 50%;
	background-color: #d2d9d9;
	margin-left: 5px;
	margin-right: 5px;
	transition: 500ms;
}

.service-one {
	margin-top: 50px;
}

.service-one__service-page {
	margin-top: 0;
}

.service-one .owl-dots .owl-dot.active span,
.service-one .owl-dots .owl-dot:hover span {
	background-color: var(--thm-primary);
	height: 13px;
	width: 13px;
	clip-path: ellipse(30% 50% at 50% 50%);
}

.service-one .owl-stage-outer {
	overflow: visible;
}

.service-one .owl-item {
	opacity: 0;
	visibility: hidden;
	transition: 500ms;
}

.service-one .owl-item.active {
	opacity: 1;
	visibility: visible;
}

.service-block-one .inner-box{
	position: relative;
	display: block;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 40px 59px 40px;
    box-shadow: 0px 20px 30px 0px rgba(67, 131, 99, 0.1);
    transition: all 500ms ease;
    margin-bottom: 75px;
}

.service-block-one .inner-box .shape-layer .shape-1{
	position: absolute;
	top: 30px;
	right: 15px;
	width: 30px;
	height: 80px;
	opacity: 0;
	background-repeat: no-repeat;
	transition: all 500ms ease;
}

.service-block-one .inner-box:hover .shape-layer .shape-1{
	top: 15px;
	opacity: 1;
}

.service-block-one .inner-box .shape-layer .shape-2{
	position: absolute;
	left: 15px;
	bottom: 30px;
	width: 30px;
	height: 55px;
	opacity: 0;
	background-repeat: no-repeat;
	transition: all 500ms ease;
}

.service-block-one .inner-box:hover .shape-layer .shape-2{
	bottom: 15px;
	opacity: 1;
}

.service-block-one .inner-box .shape-layer .shape-3{
	position: absolute;
	top: 0px;
	right: 0px;
	width: 68px;
	height: 33px;
	background-repeat: no-repeat;
	opacity: 0;
	transition: all 500ms ease;
}

.service-block-one .inner-box:hover .shape-layer .shape-3{
	opacity: 1;
}

.service-block-one .inner-box .shape-layer .shape-4{
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 34px;
	height: 90px;
	background-repeat: no-repeat;
	opacity: 0;
	transition: all 500ms ease;
}

.service-block-one .inner-box:hover .shape-layer .shape-4{
	opacity: 1;
}

.service-block-one .inner-box .icon-box{
	position: relative;
	display: inline-block;
	font-size: 50px;
	color: #fff;
	width: 215px;
	height: 182px;
	line-height: 182px;
	text-align: center;
	margin-bottom: 14px;
	z-index: 1;
}

.service-block-one .inner-box .icon-box .pattern-1{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 220px;
	height: 190px;
	background-repeat: no-repeat;
}

.service-block-one .inner-box .icon-box .pattern-2{
	position: absolute;
	left: 40px;
	top: 33px;
	width: 157px;
	height: 120px;
	background-repeat: no-repeat;
	z-index: -1;
	transition: all 1500ms ease;
}

.service-block-one .inner-box .icon-box .pattern-3{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 194px;
	height: 182px;
	background-repeat: no-repeat;
	z-index: -1;
}

.service-block-one .inner-box .lower-content h3{
	position: relative;
	display: block;
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	color: #2d2929;
	margin-bottom: 16px;
}

.service-block-one .inner-box .lower-content h3 a{
	display: inline-block;
	color: #2d2929;
	transition: all 500ms ease;
}

.service-block-one .inner-box .lower-content h3 a:hover{
	text-decoration: underline;
}

.service-block-one .inner-box .lower-content p{
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 30px;
	color: #93959e;
	margin-bottom: 20px;
}

.service-block-one .inner-box .lower-content .btn-box .link-btna-frifat,
.service-block-one .inner-box .lower-content .btn-box .link-btn{
	position: absolute;
    bottom: -32.5px;
    left: calc(50% - 32.5px);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    display: inline-block;
    align-items: center;
    justify-content: center;
    color: #2d2929;
    font-size: 23px;
    background-color: #fff;
    transform: scale(1,1);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    transition: all 500ms ease;
}

.service-block-one .inner-box:hover .lower-content .btn-box .link-btn{
    transform: scale(0,0);
    opacity: 0;
}

.service-block-one .inner-box .lower-content .btn-box .main-nav-one__btn{
	position: absolute;
    bottom: -29.5px;
    left: calc(50% - 78px);
    transform: scale(0,0);
    opacity: 0;
}

.service-block-one .inner-box:hover .lower-content .btn-box .main-nav-one__btn{
	transform: scale(1,1);
    opacity: 1;
}

.service-one__about-one {
	padding-bottom: 135px;
	position: relative;
	margin-top: 0;
}
.service-one__about-one .container {
	position: relative;
}

.service-one__home-one {
	padding-bottom: 140px;
	margin-top: 0;
}
.service-one__carousel-two .service-one__icon {
	position: relative;
	top: auto;
	left: auto;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 45px;
	transition: all 500ms ease;
}

.service-one__carousel-two .service-one__single:hover .service-one__icon {
	background-color: #fff !important;
}

.service-one__carousel-two .service-one__content h3 {
	margin-bottom: 19px;
}

.service-one__carousel-two .service-one__content p {
	transition: 500ms;
}

.service-one__carousel-two .service-one__single:hover .service-one__content h3 {
	color: #fff;
}

.service-one__carousel-two .service-one__single:hover .service-one__content p {
	color: #fff;
}

.service-one__carousel-two .service-one__link {
	background-color: #fff;
	color: var(--thm-base);
}

.service-one__carousel-two .service-one__link:hover {
	background-color: var(--thm-black);
	color: #fff !important;
}

.service-one__carousel-two .service-one__single:hover .service-one__content {
	background-color: #ff5e5e;
}


.service-one__carousel-two [class*=owl-item]:nth-child(1) .service-one__single:hover .service-one__content,
.service-one__carousel-two [class*=owl-item]:nth-child(7) .service-one__single:hover .service-one__content,
.service-one__carousel-two [class*=owl-item]:nth-child(13) .service-one__single:hover .service-one__content {
	background-color: #ff5e5e;
}

.service-one__carousel-two [class*=owl-item]:nth-child(1) .service-one__single:hover .service-one__icon i,
.service-one__carousel-two [class*=owl-item]:nth-child(1) .service-one__single:hover .service-one__link,
.service-one__carousel-two [class*=owl-item]:nth-child(7) .service-one__single:hover .service-one__icon i,
.service-one__carousel-two [class*=owl-item]:nth-child(7) .service-one__single:hover .service-one__link,
.service-one__carousel-two [class*=owl-item]:nth-child(13) .service-one__single:hover .service-one__icon i,
.service-one__carousel-two [class*=owl-item]:nth-child(13) .service-one__single:hover .service-one__link {
	color: #ff5e5e;
}

.service-one__carousel-two [class*=owl-item]:nth-child(2) .service-one__single:hover .service-one__content,
.service-one__carousel-two [class*=owl-item]:nth-child(8) .service-one__single:hover .service-one__content,
.service-one__carousel-two [class*=owl-item]:nth-child(14) .service-one__single:hover .service-one__content {
	background-color: var(--thm-base);
}

.service-one__carousel-two [class*=owl-item]:nth-child(2) .service-one__single:hover .service-one__icon i,
.service-one__carousel-two [class*=owl-item]:nth-child(2) .service-one__single:hover .service-one__link,
.service-one__carousel-two [class*=owl-item]:nth-child(8) .service-one__single:hover .service-one__icon i,
.service-one__carousel-two [class*=owl-item]:nth-child(8) .service-one__single:hover .service-one__link,
.service-one__carousel-two [class*=owl-item]:nth-child(14) .service-one__single:hover .service-one__icon i,
.service-one__carousel-two [class*=owl-item]:nth-child(14) .service-one__single:hover .service-one__link {
	color: var(--thm-base);
}



.service-one__carousel-two [class*=owl-item]:nth-child(3) .service-one__single:hover .service-one__content,
.service-one__carousel-two [class*=owl-item]:nth-child(9) .service-one__single:hover .service-one__content,
.service-one__carousel-two [class*=owl-item]:nth-child(15) .service-one__single:hover .service-one__content {
	background-color: var(--thm-primary);
}

.service-one__carousel-two [class*=owl-item]:nth-child(3) .service-one__single:hover .service-one__icon i,
.service-one__carousel-two [class*=owl-item]:nth-child(3) .service-one__single:hover .service-one__link,
.service-one__carousel-two [class*=owl-item]:nth-child(9) .service-one__single:hover .service-one__icon i,
.service-one__carousel-two [class*=owl-item]:nth-child(9) .service-one__single:hover .service-one__link,
.service-one__carousel-two [class*=owl-item]:nth-child(15) .service-one__single:hover .service-one__icon i,
.service-one__carousel-two [class*=owl-item]:nth-child(15) .service-one__single:hover .service-one__link {
	color: var(--thm-primary);
}



.service-one__carousel-two [class*=owl-item]:nth-child(4) .service-one__single:hover .service-one__content,
.service-one__carousel-two [class*=owl-item]:nth-child(10) .service-one__single:hover .service-one__content,
.service-one__carousel-two [class*=owl-item]:nth-child(16) .service-one__single:hover .service-one__content {
	background-color: #6177ff;
}

.service-one__carousel-two [class*=owl-item]:nth-child(4) .service-one__single:hover .service-one__icon i,
.service-one__carousel-two [class*=owl-item]:nth-child(4) .service-one__single:hover .service-one__link,
.service-one__carousel-two [class*=owl-item]:nth-child(10) .service-one__single:hover .service-one__link,
.service-one__carousel-two [class*=owl-item]:nth-child(10) .service-one__single:hover .service-one__icon i,
.service-one__carousel-two [class*=owl-item]:nth-child(16) .service-one__single:hover .service-one__link,
.service-one__carousel-two [class*=owl-item]:nth-child(16) .service-one__single:hover .service-one__icon i {
	color: #6177ff;
}



.service-one__carousel-two [class*=owl-item]:nth-child(5) .service-one__single:hover .service-one__content,
.service-one__carousel-two [class*=owl-item]:nth-child(11) .service-one__single:hover .service-one__content,
.service-one__carousel-two [class*=owl-item]:nth-child(17) .service-one__single:hover .service-one__content {
	background-color: #b540ff;
}

.service-one__carousel-two [class*=owl-item]:nth-child(5) .service-one__single:hover .service-one__icon i,
.service-one__carousel-two [class*=owl-item]:nth-child(5) .service-one__single:hover .service-one__link,
.service-one__carousel-two [class*=owl-item]:nth-child(11) .service-one__single:hover .service-one__icon i,
.service-one__carousel-two [class*=owl-item]:nth-child(11) .service-one__single:hover .service-one__link,
.service-one__carousel-two [class*=owl-item]:nth-child(17) .service-one__single:hover .service-one__link,
.service-one__carousel-two [class*=owl-item]:nth-child(17) .service-one__single:hover .service-one__icon i {
	color: #b540ff;
}



.service-one__carousel-two [class*=owl-item]:nth-child(6) .service-one__single:hover .service-one__content,
.service-one__carousel-two [class*=owl-item]:nth-child(12) .service-one__single:hover .service-one__content,
.service-one__carousel-two [class*=owl-item]:nth-child(18) .service-one__single:hover .service-one__content {
	background-color: #00cde5;
}

.service-one__carousel-two [class*=owl-item]:nth-child(6) .service-one__single:hover .service-one__icon i,
.service-one__carousel-two [class*=owl-item]:nth-child(6) .service-one__single:hover .service-one__link,
.service-one__carousel-two [class*=owl-item]:nth-child(12) .service-one__single:hover .service-one__icon i,
.service-one__carousel-two [class*=owl-item]:nth-child(12) .service-one__single:hover .service-one__link,
.service-one__carousel-two [class*=owl-item]:nth-child(18) .service-one__single:hover .service-one__link,
.service-one__carousel-two [class*=owl-item]:nth-child(18) .service-one__single:hover .service-one__icon i {
	color: #00cde5;
}

.service-one .owl-nav {
	display: flex;
	justify-content: center;
	align-items: center;
}

.service-one .owl-theme .owl-nav .owl-next,
.service-one .owl-theme .owl-nav .owl-prev {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	background-color: #fff;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	color: rgba(0, 0, 0, 0);
	text-align: center;
	position: relative;
	transition: 500ms ease;
	transition: 500ms;
	border: none;
	outline: none;
	box-shadow: 0px 10px 20px 0px rgba(67, 131, 99, 0.2);
}

.service-one .owl-theme .owl-nav [class*=owl-]:hover {
	background-color: var(--thm-base);
}

.service-one .owl-theme .owl-nav [class*=owl-] span {
	display: none;
}

.service-one .owl-theme .owl-nav [class*=owl-]::after {
	content: "\f105";
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
	color: #9c9da5;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	font-size: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	transition: all 500ms ease;
}

.service-one .owl-theme .owl-nav [class*=owl-prev]::after {
	content: "\f104";
}

.service-one .owl-theme .owl-nav [class*=owl-]:hover::after {
	color: #fff;
}

.service-one .owl-theme .owl-nav .disabled {
	opacity: 1 !important;
}/*-------------------------------------------------------------- 
# Call To Action 
--------------------------------------------------------------*/

.cta-one {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	position: relative;
	padding-top: 187px;
	padding-bottom: 200px;
}

.cta-one::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	opacity: 0.6;
}

.cta-one .container {
	position: relative;
}

.cta-one h3 {
	font-weight: bold;
	margin: 0;
	color: #fff;
	font-size: 50px;
}

.cta-one p {
	margin: 0;
	color: #fff;
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 43px;
	margin-top: 25px;
}

.cta-one__btn {
	padding: 20px 59px;
	border-radius: 35px;
	font-size: 17px;
	background-color: var(--thm-primary);
}

.cta-one__btn:hover {
	background-color: #fff;
	color: var(--thm-black);
}

/*-------------------------------------------------------------- 
## Cta Three 
--------------------------------------------------------------*/

.cta-three .inner-container {
	background-color: var(--thm-primary);
	border-radius: 10px;
	position: relative;
	z-index: 30;
	margin-top: -110px;
}

.cta-three__image img {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.cta-three__content {
	padding-left: 60px;
	padding-right: 75px;
}

.cta-three__content h3 {
	margin: 0;
	color: #fff;
	font-size: 26px;
	line-height: 34px;
	font-weight: bold;
	margin-bottom: 22px;
}

.cta-three__content p {
	margin: 0;
	font-size: 16px;
	line-height: 30px;
	color: #fff;
}/*-------------------------------------------------------------- 
# FAQ 
--------------------------------------------------------------*/
.video-faq__block {
	position: relative;
	background-color: #24262b;
}

.video-faq__block-dot {
	position: absolute;
	right: 0;
	bottom: 2%;
}

.video-faq__block .video-one {
	position: absolute;
	top: 0;
	left: 0;
}

.video-faq__block .container-fluid {
	position: relative;
}

@media(min-width: 1921px) {

	.video-faq__block .container-fluid {
		max-width: 1920px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media(max-width: 1660px) {

	.video-faq__block .video-one {
		left: -10%;
	}
}

@media(max-width: 1440px) {

	.video-faq__block .video-one {
		left: -25%;
	}
}

@media(max-width: 1240px) {

	.video-faq__block .video-one {
		position: relative;
		top: auto;
		left: auto;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
		max-width: 960px;
		display: block;
	}

	.video-faq__block .video-one&gt;img {
		max-width: 100%;
	}

	.video-faq__block [class*=col-] {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.video-faq__block .container-fluid {
	padding-left: 0;
	padding-right: 0;
}


.faq-one__block {
	padding-top: 150px;
	padding-bottom: 146px;
	width: 100%;
	max-width: 540px;
	margin-left: auto;
	margin-right: auto;
}

@media(max-width: 1240px) {
	.faq-one__block {
		padding-top: 80px;
	}
}

.faq-one__block .block-title {
	padding-bottom: 30px;
}

.faq-one__block .block-title h3 {
	color: #fff;
}

.faq-one__block&gt;p {
	color: #c6c6c6;
	margin: 0;
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 37px;
}

.faq-one__block .career-one__accrodion .accrodion {
	background-color: transparent;
	border-radius: 10px;
	padding-top: 0;
	transition: all 500ms ease;
}

.faq-one__block .career-one__accrodion .accrodion-title h4 {
	color: #fff;
}

.faq-one__block .career-one__accrodion .accrodion.active {
	background-color: rgba(255, 255, 255, .07);
	box-shadow: none;
	padding-top: 30px;
}

.faq-one__block .career-one__accrodion .accrodion-content p {
	color: #c6c6c6;
}

.faq-one__block .career-one__accrodion .accrodion+.accrodion {
	margin-top: 40px;
}
.faq-two__image {
	position: absolute;
	bottom: 0;
	right: 10%;
}
.faq-two__image::before {
	content: '';
	width: 10000px;
	height: 270px;
	background-color: var(--thm-primary);
	position: absolute;
	bottom: 0;
	left: 300px;
}

.faq-two__image&gt;img {
	position: relative;
}

@media(max-width: 1660px) {
	.faq-two__image {
		right: 5%;
	}
}

@media(max-width: 1440px) {
	.faq-two__image {
		right: 2%;
	}
}

.faq-two .faq-one__block .career-one__accrodion .accrodion.active {
	background-color: rgba(255, 255, 255, 1);
	box-shadow: none;
	padding-top: 30px;
	box-shadow: 0px 10px 30px 0px rgba(67, 131, 99, 0.15);
}

.faq-two .faq-one__block .career-one__accrodion .accrodion.active .accrodion-title h4 {
	color: var(--thm-black);
}

.faq-two .faq-one__block .career-one__accrodion .accrodion-content p {
	color: #93959e;
}

.faq-three {
	padding-top: 150px;
	padding-bottom: 146px;
	background-color: #f0f7f7;
}

.faq-three .faq-one__block {
	max-width: 100%;
	padding-left: 30px;
	padding-top: 0;
	padding-bottom: 0;
}

.faq-three .faq-one__block .block-title h3 {
	color: var(--thm-black);
}

.faq-three .faq-one__block .career-one__accrodion .accrodion-content p,
.faq-three .faq-one__block&gt;p {
	color: #93959e;
}

.faq-three .faq-one__block .career-one__accrodion .accrodion-title h4 {
	color: var(--thm-black);
}

.faq-three .faq-one__block .career-one__accrodion .accrodion.active {
	background-color: #fff;
	box-shadow: 0px 10px 30px 0px rgba(67, 131, 99, 0.15);
}

.faq-three__image {
	margin-left: 70px;
	position: relative;
}

.faq-three__image&gt;img:not(.faq-three__image-dots) {
	border-radius: 10px;
	position: relative;
	z-index: 10;
	box-shadow: -28.284px 28.284px 30px 0px rgba(34, 69, 51, 0.15);
}

.faq-three__image-dots {
	position: absolute;
	bottom: -55px;
	left: -70px;
}/*-------------------------------------------------------------- 
# Video 
--------------------------------------------------------------*/

.video-one {
	position: relative;
	display: inline-block;
}

.video-one .video-popup {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 22px;
	color: var(--thm-primary);
	width: 100px;
	height: 100px;
	border-radius: 10px;
	background-color: #fff;
	position: absolute;
	top: calc(50% - 50px);
	left: calc(50% - 50px);
}

.video-one .video-popup::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: inherit;
	transform: rotate(15deg);
	border-radius: inherit;
	opacity: .3;
	transition: transform 500ms;
}

.video-one .video-popup:hover::before {
	transform: rotate(195deg);
}

/*-------------------------------------------------------------- 
## Video Two 
--------------------------------------------------------------*/


.video-two {
	position: relative;
	padding-top: 273px;
	padding-bottom: 273px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
}

.video-two::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000000;
	opacity: 0.6;
}

.video-two .container {
	position: relative;
}

.video-two .video-popup {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 22px;
	color: var(--thm-primary);
	width: 100px;
	height: 100px;
	border-radius: 10px;
	background-color: #fff;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.video-two .video-popup::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: inherit;
	transform: rotate(15deg);
	border-radius: inherit;
	opacity: .3;
	transition: transform 500ms;
}

.video-two .video-popup:hover::before {
	transform: rotate(195deg);
}/*-------------------------------------------------------------- 
# Career 
--------------------------------------------------------------*/

.career-one {
	padding-top: 150px;
	padding-bottom: 150px;
}

.career-one__block {
	padding-right: 100px;
}

.career-one__block .block-title {
	padding-bottom: 30px;
}

.career-one__accrodion .accrodion {
	padding-left: 30px;
	padding-top: 30px;
	padding-right: 30px;
	background-color: #fff;
}

.career-one__accrodion .accrodion+.accrodion {
	margin-top: 40px;
}

.career-one__accrodion .accrodion.active {
	padding-bottom: 30px;
	box-shadow: 0px 10px 30px 0px rgba(67, 131, 99, 0.15);
}

.career-one__accrodion .accrodion-title h4 {
	margin: 0;
	font-weight: bold;
	color: var(--thm-black);
	position: relative;
	cursor: pointer;
	padding-left: 55px;
	font-size: 22px;
	line-height: 36px;
}

.career-one__accrodion .accrodion-title h4::before {
	content: '\f067';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
	width: 36px;
	height: 36px;
	background-color: var(--thm-base);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 12px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.career-one__accrodion .accrodion.active .accrodion-title h4::before {
	content: '\f068';
}

.career-one__accrodion .accrodion-content {
	padding-left: 55px;
	padding-top: 10px;
}

.career-one__accrodion .accrodion-content p {
	margin: 0;
	color: #93959e;
	font-size: 16px;
	line-height: 30px;
}

.career-one__accrodion .accrodion-content p+h4 {
	margin-top: 20px;
}

.career-one__accrodion .accrodion-content h4 {
	margin: 0;
	color: var(--thm-black);
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

.career-one__content-list {
	margin-bottom: 20px;
	margin-top: 10px;
}

.career-one__content-list li {
	position: relative;
	padding-left: 20px;
}

.career-one__content-list li::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--thm-base);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.career-one__home-three {
	background-color: #f0f7f7;
}

.career-one__home-three .career-one__accrodion .accrodion {
	background-color: #f0f7f7;
}

.career-one__home-three .career-one__accrodion .accrodion.active {
	background-color: #fff;
}

.career-one__home-five {
	padding-top: 235px;
}</pre></body></html>