<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*** 

====================================================================
	Project One
====================================================================

***/
.project-one {
	position: relative;
	display: block;
	padding: 120px 0 230px;
	z-index: 1;
}

.project-one__top {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 38px;
}

.project-one__top .section-title {
	margin-bottom: 0;
}

.project-one__btn-box {
	position: relative;
	display: block;
}

.project-one__bottom {
	position: relative;
	display: block;
}

.project-one__swiper-content {
	display: block;
}

.project-one__single {
	position: relative;
	display: block;
}

.project-one__img {
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 1;
}

.project-one__img:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	background-color: rgba(var(--color-two-rgb), .70);
	-webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
	-ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
	transform: perspective(400px) rotateX(90deg) scaleY(0.5);
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	transition-delay: .1s;
	transition-timing-function: ease-in-out;
	transition-duration: .5s;
	transition-property: all;
	z-index: 1;
}

.project-one__single:hover .project-one__img:before {
	-webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
	-ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
	transform: perspective(400px) rotateX(0deg) scaleY(1.0);
	transition-delay: .1s;
	transition-timing-function: ease-in-out;
	transition-duration: .7s;
	transition-property: all;
}

.project-one__img img {
	width: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: all 500ms ease;
}

.project-one__single:hover .project-one__img img {
	transform: scale(1.05);
}

.project-one__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 20px;
	background-color: var(--white-color);
	padding-top: 23px;
	padding-bottom: 25px;
	padding-left: 30px;
	padding-right: 50px;
	border-top: 7px solid var(--main-color);
	opacity: 0;
	transform: translateY(100%);
	transition: all 700ms ease;
	z-index: 2;
}

.project-one__single:hover .project-one__content {
	opacity: 1;
	transform: translateY(0%);
	transition-delay: 700ms;
}

.project-one__sub-title {
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.project-one__title {
	letter-spacing: -0.04em;
	font-size: 22px;
	line-height: 27px;
}

.project-one__title a {
	color: var(--color-two);
	transition: all 500ms ease;
}

.project-one__title a:hover {
	color: var(--main-color);
}

.project-one__arrow {
	position: absolute;
	bottom: 110px;
	left: 30px;
	opacity: 0;
	transform: translateY(-50px);
	transition: all 700ms ease;
	z-index: 3;
}

.project-one__single:hover .project-one__arrow {
	opacity: 1;
	transform: translateY(0%);
	transition-delay: 700ms;
}

.project-one__arrow a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	width: 80px;
	background-color: var(--main-color);
	font-size: 20px;
	color: var(--white-color);
	transition: all 500ms ease;
}

.project-one__arrow a:hover {
	background-color: var(--white-color);
	color: var(--main-color);
}


.project-one__nav {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 0;
	line-height: 0;
	z-index: 999999;
	right: 0;
	bottom: -75px;
}

.project-one__nav-control {
	position: relative;
	display: inline-block;
	background: #fff;
	width: 60px;
	height: 60px;
	border-radius: 0%;
	border: 1px solid #dcdcdf;
	color: #9e9e9e;
	font-size: 24px;
	line-height: 60px;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.2s ease;
	transition: all 0.2s ease;
	z-index: 1;
}

.project-one__nav-control:hover {
	color: #ffffff;
	border-color: var(--main-color);
	background-color: var(--main-color);
}

.project-one__nav-control.project-one__nav-next {
	position: relative;
	margin-left: 10px;
}



.project-one__control-wrap {
	position: absolute;
	bottom: -62px;
	left: 60px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 0;
	line-height: 0;
	z-index: 100;
}

.project-one__control-wrap .swiper-counter {
	position: relative;
	display: inline-flex;
	align-items: baseline;
	justify-content: space-between;
	width: 110px;
	z-index: 9;
}

.project-one__control-wrap .swiper-counter div {
	position: relative;
	display: inline-block;
	color: var(--color-two);
	font-size: 45px;
	line-height: 45px;
	font-weight: 500;
}

.project-one__control-wrap .swiper-counter div#current2 {
	margin-right: 6px;
}

.project-one__control-wrap .swiper-counter div#total2 {
	position: relative;
	right: 0px;
	color: var(--gray-color);
	font-size: 24px;
	line-height: 24px;
	font-weight: 500;
}

.project-one__control-wrap .swiper-counter div#total2:before {
	content: '/';
	position: absolute;
	left: -15px;
	width: 0px;
	height: 0px;
	top: 0px;
}



.scroll-pagination {
	position: absolute;
	left: 215px;
	bottom: -75px;
	width: 820px;
}

.swiper-pagination {
	position: absolute;
	top: 0px;
	left: 0;
	background: #f0f0f0;
	height: 4px;
	width: 100%;
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
}

.swiper-pagination-progressbar-fill {
	background: var(--main-color) !important;
	top: 0px !important;
	height: 4px !important;
}





/*** 

====================================================================
	Project Two
====================================================================

***/
.project-two {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 120px 0 150px;
	z-index: 1;
}

.project-two__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: -1;
}

.project-two__bg:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(var(--color-two-rgb), .96);
	z-index: -1;
}

.container-full {
	position: relative;
	display: block;
}

.project-two .section-sub-title-box {
	margin-left: 0px;
}

.project-two .section-sub-title {
	color: var(--white-color);
}

.project-two .section-title__title {
	color: var(--white-color);
}


.project-filter {
	position: relative;
	display: flex;
	align-items: center;
	justify-content:center;
	text-align: center;
	min-width: 630px;
	width: 100%;
	margin: 0 auto 60px;
	border-radius: 5px;
}

.project-filter.style1 li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.project-filter.style1 li .filter-text {
	color: var(--color-two);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 15px 39px 15px;
	cursor: pointer;
	transition: all 0.4s ease;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	letter-spacing: 0.05em;
	background-color: var(--white-color);
	border-right: 1px solid var(--color-four);
}

.project-filter.style1 li:first-child .filter-text {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.project-filter.style1 li:first-child .filter-text:before {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.project-filter.style1 li:last-child .filter-text {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-right: 0px;
}

.project-filter.style1 li:last-child .filter-text:before {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.project-filter.style1 li .filter-text:before {
	position: absolute;
	left: -1px;
	right: 0;
	bottom: -1px;
	top: -1px;
	content: "";
	background: var(--main-color);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	border-radius: 0;
	transform: scale(0);
	z-index: -1;
}

.project-filter.style1 li .filter-text:hover:before,
.project-filter.style1 li.active .filter-text:before {
	transform: scale(1.0);
}

.project-filter.style1 li:hover .filter-text,
.project-filter.style1 li.active .filter-text {
	color: var(--white-color);
}

.project-filter.style1 li .count {
	color: var(--white-color);
	font-size: 12px;
	line-height: 20px;
	font-weight: 700;
	display: block;
	padding: 0 0;
	opacity: 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	height: 20px;
	width: 20px;
	background-color: var(--color-two);
	position: absolute;
	bottom: -10px;
	left: 6px;
	margin: 0;
}

.project-filter.style1 li:hover .count,
.project-filter.style1 li.active .count {
	color: var(--white-color);
	opacity: 1;
}

.project-filter.style1 li .count:before {
	position: absolute;
	bottom: 0;
	right: -10px;
	content: "";
	border-top: 0px solid transparent;
	border-left: 10px solid var(--color-two);
	border-bottom: 10px solid transparent;
}

.project-two__list {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.project-two__list li {
	position: relative;
	flex: 0 0 20%;
	max-width: 20%;
	width: 100%;
	padding: 0 15px;
	margin-bottom: 30px;
}

.project-two__list li:nth-child(2) {
	margin-top: 60px;
}

.project-two__list li:nth-child(4) {
	margin-top: 60px;
}

.project-two__single {
	position: relative;
	display: block;
}

.project-two__img-box {
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 1;
}

.project-two__img-box:before {
	position: absolute;
	top: 0;
	bottom: 10px;
	left: 30px;
	width: 2px;
	height: 0;
	content: "";
	background-image: -moz-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
	background-image: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
	background-image: -ms-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
	transition: all 500ms ease;
	z-index: 2;
}

.project-two__single:hover .project-two__img-box:before {
	height: 97%;
	transition-delay: 500ms;
}

.project-two__img-box:after {
	position: absolute;
	right: 15px;
	left: 10px;
	bottom: 30px;
	height: 2px;
	width: 0;
	content: "";
	background-image: -moz-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.01) 99%, rgb(255, 255, 255) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.01) 99%, rgb(255, 255, 255) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.01) 99%, rgb(255, 255, 255) 100%);
	transition: all 700ms ease;
	z-index: 2;
}

.project-two__single:hover .project-two__img-box:after {
	width: 100%;
	transition-delay: 500ms;
}

.project-two__img {
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 1;
}

.project-two__img:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	-webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
	-ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
	transform: perspective(400px) rotateX(90deg) scaleY(0.5);
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	transition-delay: .1s;
	transition-timing-function: ease-in-out;
	transition-duration: .5s;
	transition-property: all;
	z-index: 1;
}

.project-two__single:hover .project-two__img:before {
	-webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
	-ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
	transform: perspective(400px) rotateX(0deg) scaleY(1.0);
	transition-delay: .1s;
	transition-timing-function: ease-in-out;
	transition-duration: .7s;
	transition-property: all;
}

.project-two__img img {
	width: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: all 500ms ease;
}

.project-two__single:hover .project-two__img img {
	transform: scale(1.05);
}

.project-two__content {
	position: absolute;
	bottom: 61px;
	left: 55px;
	opacity: 0;
	transform: translateY(-50px);
	transition: all 700ms ease;
	z-index: 2;
}

.project-two__single:hover .project-two__content {
	opacity: 1;
	transform: translateY(0%);
	transition-delay: 700ms;
}

.project-two__sub-title {
	color: var(--white-color);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
}

.project-two__title {
	margin-top: 3px;
}

.project-two__title a {
	color: var(--white-color);
}

/*** 

====================================================================
	Project Three
====================================================================

***/
.project-three {
	position: relative;
	display: block;
	padding: 120px 0 90px;
	z-index: 1;
}

.project-three__top {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 38px;
}

.project-three__top .section-title {
	margin-bottom: 0;
}

.project-three__btn-box {
	position: relative;
	display: block;
}

.project-three__bottom {
	position: relative;
	display: block;
}

.project-three__list {
	position: relative;
	display: flex;
	align-items: center;
	margin-left: -15px;
	margin-right: -15px;
	flex-wrap: wrap;
}

.project-three__list li {
	position: relative;
	flex: 0 0 33.333333%;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 30px;
	transition: 0.5s;
}

@media(min-width: 768px) {
	.project-three__list li {
		flex: 1;

	}
}

.project-three__list li.active {
	flex: 0 0 50%;
}

@media(min-width: 768px) {
	.project-three__list li.active {
		flex: 2;

	}
}

.project-three__single {
	position: relative;
	display: block;
	transition: all 500ms ease;
}

.project-three__img {
	position: relative;
	display: block;
	z-index: 1;
	min-height: 400px;
	background-size: cover;
	background-position: center center;
}

.project-three__content-box {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 55px 0;
	background-position: center bottom;
	transition-delay: .1s;
	transition-timing-function: ease-in-out;
	transition-duration: .5s;
	transition-property: all;
	transform-origin: bottom;
	transform-style: preserve-3d;
	transform: scaleY(0);
	z-index: 2;
}

.project-three__list li.active .project-three__single .project-three__content-box,
.project-three__single:hover .project-three__content-box {
	transform: scaleY(1.0);
}

.project-three__content-box:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	background-color: var(--white-color);
	clip-path: polygon(0 0, 85% 0, 97% 100%, 0% 100%);
	z-index: -1;
}

.project-three__title-box {
	position: relative;
	display: block;
	background-color: var(--main-color);
	padding: 23px 40px 21px;
	padding-right: 100px;
	z-index: 2;
}

.project-three__list li.active .project-three__single .project-three__title-box,
.project-three__single:hover .project-three__title-box {}

.project-three__sub-title {
	color: var(--white-color);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.project-three__title {
	letter-spacing: -0.04em;
}

.project-three__title a {
	color: var(--white-color);
	transition: all 500ms ease;
}

.project-three__title a:hover {
	color: var(--color-two);
}

.project-three__arrow {
	position: absolute;
	right: -28px;
	top: 50%;
	transform: translateY(-50%);
}

.project-three__arrow a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background-color: var(--white-color);
	color: var(--color-two);
	font-size: 15px;
	transition: all 500ms ease;
}

.project-three__arrow a:hover {
	background-color: var(--color-two);
	color: var(--white-color);
}


/*** 

====================================================================
	Project Details
====================================================================

***/
.project-details {
	position: relative;
	display: block;
	padding: 120px 0 0;
	z-index: 1;
}

.project-details .container {
	max-width: 1200px;
}

.project-details__left {
	position: relative;
	display: block;
}

.project-details__img {
	position: relative;
	display: block;
}

.project-details__img img {
	width: 100%;
	object-fit: cover;
}

.project-details__title-1 {
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
	margin-top: 31px;
	margin-bottom: 22px;
}

.project-details__text-2 {
	margin-top: 22px;
	margin-bottom: 44px;
}

.project-details__img-and-points {
	position: relative;
	display: flex;
	align-items: center;
}

.project-details__img-2 {
	position: relative;
	display: block;
	max-width: 270px;
	width: 100%;
}

.project-details__img-2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(var(--color-two-rgb), .90);
}

.project-details__img-2 img {
	width: 100%;
}

.project-details__video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.project-details__video-play {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	font-weight: 800;
	line-height: 80px;
	text-align: center;
	border-radius: 50%;
	color: var(--main-color);
	font-size: var(--font-20);
	font-family: 'Font Awesome 5 Pro';
	background-color: var(--white-color);
	margin: 0 auto 0;
	z-index: 1;
}

.project-details__video-play:hover {
	color: var(--white-color);
	background-color: var(--main-color);
}

.project-details__video-play:before {
	content: "";
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border: 10px solid rgba(var(--white-color-rgb), .20);
	border-radius: 50%;
}

.project-details__video-play:after {
	content: "";
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	border: 10px solid rgba(var(--white-color-rgb), .13);
	border-radius: 50%;
}

.project-details__video-play .ripple,
.project-details__video-play .ripple:before,
.project-details__video-play .ripple:after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
	-moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
	-ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
	-o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
	box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
	-webkit-animation: ripple 3s infinite;
	-moz-animation: ripple 3s infinite;
	-ms-animation: ripple 3s infinite;
	-o-animation: ripple 3s infinite;
	animation: ripple 3s infinite;
}

.project-details__video-play .ripple:before {
	-webkit-animation-delay: .9s;
	-moz-animation-delay: .9s;
	-ms-animation-delay: .9s;
	-o-animation-delay: .9s;
	animation-delay: .9s;
	content: "";
	position: absolute;
}

.project-details__video-play .ripple:after {
	-webkit-animation-delay: .6s;
	-moz-animation-delay: .6s;
	-ms-animation-delay: .6s;
	-o-animation-delay: .6s;
	animation-delay: .6s;
	content: "";
	position: absolute;
}

@-webkit-keyframes ripple {
	70% {
		box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
	}
}

@keyframes ripple {
	70% {
		box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
	}
}

.project-details__points-box {
	position: relative;
	display: block;
	margin-left: 30px;
}

.project-details__points-title {
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
}

.project-details__points-text {
	margin-top: 18px;
	margin-bottom: 29px;
}

.project-details__points {
	position: relative;
	display: block;
}

.project-details__points li {
	position: relative;
	display: flex;
	align-items: center;
}

.project-details__points li+li {
	margin-top: 20px;
}

.project-details__points li .icon {
	position: relative;
	display: inline-block;
}

.project-details__points li .icon span {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 20px;
	color: #8b8e98;
	border: 1px solid #e1e1e1;
	border-radius: 50%;
}

.project-details__points li .text {
	margin-left: 17px;
}

.project-details__text-3 {
	margin-top: 38px;
}

.project-details__sidebar {
	position: relative;
	display: block;
}

.project-details__info {
	position: relative;
	display: block;
	background-color: #f1f3f2;
	padding: 40px 35px 47px;
}

.project-details__info-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 34px;
	margin-bottom: 31px;
}

.project-details__info-list {
	position: relative;
	display: block;
}

.project-details__info-list li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--white-color);
	padding: 20px 20px 17px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.project-details__info-list li:hover {
	background-color: var(--main-color);
}

.project-details__info-list li+li {
	margin-top: 15px;
}

.project-details__info-left {
	position: relative;
	display: block;
}

.project-details__info-left p {
	font-size: 16px;
	font-weight: 500;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.project-details__info-list li:hover .project-details__info-left p {
	color: var(--white-color);
}

.project-details__info-right {
	position: relative;
	display: block;
}

.project-details__info-right span {
	font-size: 16px;
	font-weight: 500;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.project-details__info-list li:hover .project-details__info-right span {
	color: var(--white-color);
}

.project-details__sidebar-img {
	position: relative;
	display: block;
	margin-top: 30px;
}

.project-details__sidebar-img img {
	width: 100%;
}

/*** 

====================================================================
	Project Four
====================================================================

***/
.project-four {
	position: relative;
	display: block;
	padding: 81px 0 90px;
	z-index: 1;
}


/*** 

====================================================================
	Project Page
====================================================================

***/
.project-page {
	position: relative;
	display: block;
	padding: 120px 0 90px;
	z-index: 1;
}

.project-page .container {
	max-width: 1200px;
}

.project-page .project-one__single {
	margin-bottom: 30px;
}

/*** 

====================================================================
	Project Carousel Page
====================================================================

***/
.project-carousel-page {
	position: relative;
	display: block;
	padding: 120px 0 170px;
}

.project-carousel-page .container {
	max-width: 1200px;
}


.te-project-carousel .container {
  max-width: 1320px;
}

.te-project-carousel .section-title__title{
	color:var(--white-color);
}

.te-project-carousel .carousel-nav-style.owl-carousel .owl-nav{
	margin-top:60px;
}

.te-project-carousel .carousel-nav-style .owl-nav .owl-prev, 
.te-project-carousel .carousel-nav-style .owl-nav .owl-next,
.te-project-carousel .te-carousel-dot-style.owl-carousel .owl-dots span{
	border-color: var( --color-four );
	color: var( --color-four );
}

/*** 

====================================================================
	Case Section
====================================================================

***/

.cases-section{
	position: relative;
	padding: 110px 0;
}

.case-block-one {
    position: relative;
}

.case-block-one .inner-box {
    position: relative;
    margin-bottom: 30px;
	min-height: 274px;
}

.case-block-one .image {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.case-block-one .image img {
    position: relative;
    width: 100%;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.case-block-one .inner-box:hover .image img {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
}

.case-block-one .overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    visibility: hidden;
    border-radius: 6px;
    overflow: hidden;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.case-block-one .inner-box:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.case-block-one .overlay::before {
    position: absolute;
    content: "";
    opacity: 0.9;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    background: var(--color-two);
}

.case-block-one .overlay .title {
    position: absolute;
    left: 30px;
    top: 30px;
    font-size: 18px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-family: 'syne', sans-serif;
    z-index: 1;
}

.case-block-one .overlay .title span {
    margin-right: 10px;
    font-weight: normal;
}

.case-block-one .overlay .link-btn {
    position: absolute;
    right: 30px;
    top: 30px;
    -webkit-transform: translateX(30px) rotate(-360deg);
        -ms-transform: translateX(30px) rotate(-360deg);
            transform: translateX(30px) rotate(-360deg);
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.case-block-one .inner-box:hover .overlay .link-btn {
    -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
}

.case-block-one .overlay .link-btn a {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    display: inline-block;
    background: rgb(255, 255, 255);
    border-radius: 50%;
}

.case-block-one .overlay .content {
    position: absolute;
    right: 30px;
    bottom: 30px;
    text-align: right;
}

.case-block-one .overlay::after {
    position: absolute;
    content: "";
    opacity: 0.9;
    right: 43%;
    bottom: 90px;
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(-30deg) scale(0.8);
        -ms-transform: rotate(-30deg) scale(0.8);
            transform: rotate(-30deg) scale(0.8);
    border-radius: 25px;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
	background-color: var(--main-color);
}


.case-block-one .inner-box:hover .overlay::after {
    -webkit-transform: rotate(-30deg) scale(1);
        -ms-transform: rotate(-30deg) scale(1);
            transform: rotate(-30deg) scale(1);
}

.case-block-one .overlay .content h4 {
    font-family: 'syne', sans-serif;
    font-size: 30px;
	font-weight: 700;
    color: rgb(255, 255, 255);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    -webkit-transform: perspective(1200px) rotateX(90deg) translateZ(-40px);
            transform: perspective(1200px) rotateX(90deg) translateZ(-40px);
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.case-block-one .inner-box:hover .overlay .content h4 {
    -webkit-transform: perspective(1200px) rotateX(0deg) translateZ(0px);
            transform: perspective(1200px) rotateX(0deg) translateZ(0px);
}

.case-block-one .read-more-btn {
    position: relative;
    min-height: 274px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: var(--color-two);
    border-radius: 6px;
}

.case-block-one .read-more-btn a {
    position: relative;
    width: 160px;
    height: 160px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    font-family: 'syne', sans-serif;
    border-radius: 50%;
    padding: 53px 0px;
	background-color: var(--main-color);
}

/* End */</pre></body></html>