<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
:root {
	--tt-main-bg-color: #0a0a0a; /* background color. */
	--tt-main-color: #c00; /* main color. */
}


/* ------------------------------------------------------------- *
 * General
/* ------------------------------------------------------------- */

* { box-sizing: border-box; }

html, body {
	padding: 0;
	margin: 0;
}


/* ------------------------------------------------------------- *
 * Page header
/* ------------------------------------------------------------- */

#page-header {
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.page-header-inner,
body.ph-image-on.ph-bg-image-on #page-header .page-header-inner {
	width: 100%;
	padding-top: 9vw;
	padding-bottom: 12vw;
	z-index: 2;
}
body.ph-image-on #page-header .page-header-inner {
	padding-top: 16vw;
	padding-bottom: 13vw;
}
body:not(.tt-boxed) .page-header-inner, 
.page-header-inner:not(.tt-wrap) {
	padding-left: 13%;
	padding-right: 13%;
}
@media (max-width: 1920px) {
	.page-header-inner {
		padding-top: 250px;
		padding-bottom: 140px;
	}
	body.ph-image-on #page-header .page-header-inner {
		padding-top: 200px;
		padding-bottom: 140px;
	}

	/* If page header image does not exist or project info list exist */
	body:not(.ph-image-on) #page-header .page-header-inner,
	body.ph-image-on.ph-bg-image-on #page-header .page-header-inner {
		padding-top: 100px;
		padding-bottom: 110px;
	}
}
@media (max-width: 1400px) {
	body.tt-boxed .page-header-inner.tt-wrap {
		padding-left: 8%;
		padding-right: 5%;
	}
}
@media (max-width: 1024px) {
	#page-header .page-header-inner {
		padding-top: 150px;
		padding-bottom: 150px;
	}
	body:not(.tt-boxed) .page-header-inner, 
	.page-header-inner:not(.tt-wrap) {
		padding-left: 5%;
		padding-right: 5%;
	}
}
@media (max-width: 768px) {
	.page-header-inner,
	body:not(.ph-image-on) #page-header .page-header-inner,
	body.ph-image-on.ph-bg-image-on #page-header .page-header-inner {
		padding-top: 70px;
		padding-bottom: 90px;
	}
}
@media (max-width: 540px) {
	body:not(.ph-center-on).ph-image-on #page-header .page-header-inner {
		padding-top: 240px;
		padding-bottom: 40vw;
	}
}


/* Page header caption 
======================= */
.ph-caption {
	position: relative;
}

/* page header caption title */
.ph-caption-title {
	position: relative;
	margin: 0;
	font-size: clamp(38px, 5vw, 82px);
	font-weight: bold;
	font-weight: 600;
	color: var(--tt-main-color);
	line-height: 1.2;
	z-index: 9;
}

/* page header caption title ghost */
.ph-caption-title-ghost {
	position: absolute;
	display: flex;
	align-items: center;
	top: 0;
	bottom: 0;
	left: 6%;
	padding-top: 5%;
	font-size: calc(18px + 13.5vw);
	font-weight: bold;
	font-weight: 600;
	color: #333;
	white-space: nowrap;
	line-height: 1;
	opacity: .1;
	z-index: 1;
	pointer-events: none;
}
.ph-caption-title-ghost .phgh-text { /* cloned text by .js */
	display: inline-block;
	margin-right: 7vw;
}
#page-header.ph-bg-image .ph-caption-title-ghost { /* disable title ghost if "ph-bg-image" is enabled */
	display: none;
}

/* page header caption subtitle */
.ph-caption-subtitle {
	position: relative;
	margin-bottom: 20px;
	font-size: calc(15px + 0.3vw);
	font-weight: 500;
	color: #CCC;
	z-index: 9;
}
.ph-caption-title + .ph-caption-subtitle {
	margin-top: 20px;
	margin-bottom: 0;
}


/* ------------------------------------------------------------- *
 * Custom scrollbar style
/* ------------------------------------------------------------- */

.tt-custom-scrollbar {
	overflow-y: auto;
}

/* Works on Firefox */
.tt-custom-scrollbar,
.tt-sliding-sidebar-inner,
.tt-sidebar {
	scrollbar-width: thin;
	scrollbar-color: #555 #2a2a2a;
}
select {
	scrollbar-width: thin;
	scrollbar-color: #666 #2a2a2a;
}

/* Works on Chrome, Edge, and Safari */
.tt-custom-scrollbar::-webkit-scrollbar,
.tt-sliding-sidebar-inner::-webkit-scrollbar,
.tt-sidebar::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
select::-webkit-scrollbar {
	width: 10px;
}
.tt-custom-scrollbar::-webkit-scrollbar-track,
.tt-sliding-sidebar-inner::-webkit-scrollbar-track,
.tt-sidebar::-webkit-scrollbar-track,
select::-webkit-scrollbar-track {
	background: #2a2a2a;
}
.tt-custom-scrollbar::-webkit-scrollbar-thumb,
.tt-sliding-sidebar-inner::-webkit-scrollbar-thumb,
.tt-sidebar::-webkit-scrollbar-thumb {
	background-color: #555;
	border-radius: 50px;
}
select::-webkit-scrollbar-thumb {
	background-color: #666;
	border-radius: 50px;
}


/* ------------------------------------------------------------- *
 * Smooth Scrollbar
 * Source: https://github.com/idiotWu/smooth-scrollbar/
/* ------------------------------------------------------------- */

/* Hide default scrollbar */
body:not(.is-mobile).tt-smooth-scroll {
	overflow: hidden !important;
}

/* Scroll content (added if &lt;body&gt; contain class "tt-smooth-scroll". Disabled on mobile devices!) */
body:not(.is-mobile).tt-smooth-scroll #scroll-container { 
	width: auto;
	height: 100vh;
	overflow: auto;
	margin: 0;
}

/* Styling scrollbar */
.scrollbar-track {
	background: transparent !important;
	z-index: 99999 !important;
	transition: background 0.2s ease-in-out;
}
.scrollbar-track:hover {
	background: rgba(222, 222, 222, 0.15) !important;
}
.scrollbar-thumb {
	background: #DDD !important;
	opacity: .25;
	transition: opacity 0.2s ease-in-out;
}
.scrollbar-track:hover .scrollbar-thumb {
	opacity: .5;
}


/* ------------------------------------------------------------- *
 * Magic cursor
/* ------------------------------------------------------------- */

#magic-cursor {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	width: 10px;
	height: 10px;
	pointer-events: none;
	z-index: 99999;
	opacity: 0;
}
body.tt-magic-cursor #magic-cursor {
	display: block;
}

#ball {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
	pointer-events: none;
	border-style: solid;
	border-radius: 50%;
	border-color: #FFF;
	/* Note: border width handled through JS */
}


/* Ball view 
============= */
#ball.ball-view {
	background-color: var(--tt-main-color);
	font-size: 15px;
	font-weight: 500;
	color: #FFF;
	line-height: 1.2;
	text-align: center;
}
#ball .ball-view-inner {
	padding: 0 5px;
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
}
#ball .ball-view-inner i {
	font-size: 19px;
}


/* Ball drag 
============= */
#ball .ball-drag {
	position: absolute;
	display: block;
	width: 100%;
	padding: 0 5px;
	font-size: 15px;
	font-weight: 600;
	color: #FFF;
	line-height: 1.2;
	text-align: center;
	transition: all 0.3s;
}
#ball .ball-drag::before,
#ball .ball-drag::after {
	position: absolute;
	top: 50%;
	margin-top: -5px;
	font-size: 16px;
	color: #FFF;
	height: 10px;
	line-height: 10px;

	/* Font Awesome */
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
#ball .ball-drag::before {
	content: "\f060"; /* Font Awesome */
	left: 0;
	transform: translate3d(-30px, 0, 0);
	transition: all 0.25s;
}
#ball .ball-drag::after {
	content: "\f061"; /* Font Awesome */
	right: 0;
	transform: translate3d(30px, 0, 0);
	transition: all 0.25s;
}


/* Ball close 
============== */
#ball.ball-close-enabled {
	opacity: 1 !important;
}
#ball .ball-close {
	position: absolute;
	padding: 0 5px;
	font-size: 14px;
	font-weight: 600;
	color: #FFF;
	line-height: 1;
	text-align: center;
}


/* Magnetic cursor
=================== */
.magnetic-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
#ball.magnetic-active {
	border-color: var(--tt-main-color) !important;
}


/* ------------------------------------------------------------- *
 * tt-Section
/* ------------------------------------------------------------- */

.tt-section {
	position: relative;
	padding: 80px 0;
}
@media (max-width: 991px) {
	.tt-section {
		padding: 10% 0;
	}
	.pspl-item-title,
	.pspl-item-hover-title {
	color: #f1f1f1 !important;
	}
}
@media (max-width: 767px) {
	.tt-section {
		padding: 10% 0;
	}
}
@media (max-width: 480px) {
	.tt-section {
		padding: 15% 0;
	}
}


/* tt-section background image 
=============================== */
.tt-section-image {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	overflow: hidden;
}


/* tt-section inner 
==================== */
.tt-section-inner {
	position: relative;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	z-index: 2;
}



/* Scroll down 
=============== */
.tt-scroll-down {
	position: absolute;
	bottom: 2%;
	left: 4%;
	z-index: 9;
}
#page-header:not(.ph-full) .tt-scroll-down { /* Display only on full scren page header! */
	display: none;
}

.tt-sd-inner {
	display: inline-flex;
	align-items: center;
	height: 50px;
	text-decoration: none;
	transform: rotate(-90deg);
	transform-origin: center left;
}

/* Scroll down text */
.tt-sd-text {
	margin-left: 10px;
	font-size: 15px;
	font-weight: bold;
	font-weight: 600;
	color: #EEE;
}

/* Scroll down arrow */
.tt-sd-arrow {
	position: relative;
	width: 55px;
}
.tt-sd-arrow-inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #EEE;
	animation: scroll-down-swipe-line 4s infinite;
}
@keyframes scroll-down-swipe-line {
	80% {
		transform-origin: left;
		transform: scaleX(1); 
	}
	90% {
		transform-origin: left;
		transform: scaleX(0); 
	}
	90.1% {
		transform-origin: right;
		transform: scaleX(0); 
	}
	100% {
		transform-origin: right;
		transform: scaleX(1); 
	}
}
.tt-sd-arrow::before,
.tt-sd-arrow::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	width: 12px;
	background-color: #EEE;
	transition: width .3s;
}
.tt-sd-arrow::before {
	top: 0px;
	transform: rotate(-45deg);
	transform-origin: bottom left;
}
.tt-sd-arrow::after {
	bottom: 0px;
	transform: rotate(45deg);
	transform-origin: top left;
}
.tt-sd-arrow,
.tt-sd-arrow::before,
.tt-sd-arrow::after {
	height: 2px;
}

/* Scroll down hover */
.tt-sd-inner:hover .tt-sd-arrow::before,
.tt-sd-inner:hover .tt-sd-arrow::after {
	width: 16px;
}

/* Scroll down for small screens */
@media (max-width: 1024px) {
	.tt-scroll-down {
		bottom: 0%;
		left: 6%;
	}
	.tt-sd-text { 
		display: none;
	}
	.tt-sd-arrow {
		width: 15px;
	}
	.tt-sd-arrow::before, 
	.tt-sd-arrow::after {
		width: 10px;
	}
}


/* Page header share 
===================== */
.ph-share {
	position: absolute;
	display: inline-block;
	bottom: 0;
	right: 3.5%;
	height: 113px;
	z-index: 999;
	cursor: pointer;
	overflow: hidden;
}
.ph-share-inner {
}

.ph-share-trigger {
}
.ph-share-text {
	display: inline-block;
	font-size: 15px;
	color: #EEE;
}
.ph-share-icon {
	font-size: 15px;
	color: #EEE;
}
.ph-share .social-buttons &gt; ul &gt; li a {
	font-size: 14px;
}

@media (min-width: 1025px) {
	.ph-share-inner {
		text-align: right;
	}
	.ph-share-trigger {
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		opacity: 1;
		visibility: visible;
		transform: translate3d(0, 10px, 0);
		transition: all 0.3s ease;
	}
	.ph-share-text {
		letter-spacing: 1px;
		transform: rotate(-90deg);
	}
	.ph-share-icon {
		margin-top: 15px;
	}
	.ph-share:hover .ph-share-trigger {
		opacity: 0;
		visibility: hidden;
		transform: translate3d(0, -30px, 0);
	}

	.ph-share .social-buttons {
		opacity: 0;
		visibility: hidden;
		transform: translate3d(0, -10%, 0);
		transition: all 0.3s ease;
	}
	.ph-share:hover .social-buttons {
		opacity: 1;
		visibility: visible;
		transform: translate3d(0, -60%, 0);
	}
}
@media (max-width: 1024px) {
	.ph-share {
		right: 2%;
		bottom: 1%;
		height: auto;
	}
	.ph-share-inner {
		display: flex;
		align-items: center;
	}
	.ph-share-text {
		margin-right: 15px;
	}
	.ph-share-text::after {
		content: ":";
		margin-left: 1px;
	}
	.ph-share-icon {
		display: none;
	}
}


/* Page header styles 
====================== */
/* page header caption title (stroke style) */
#page-header.ph-stroke .ph-caption-title {
	font-weight: bold;
	font-weight: 700;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #FFF;
	-webkit-text-fill-color: transparent;
}
@media (max-width: 1024px) {
	#page-header.ph-stroke .ph-caption-title {
		-webkit-text-stroke-width: 1px;
	}
}


/* Page header sizes 
===================== */
/* Caption size sm */
#page-header.ph-cap-sm .ph-caption-title {
	font-size: clamp(38px, 4vw, 68px);
}

/* Caption size lg */
#page-header.ph-cap-lg .ph-caption-title {
	font-size: clamp(20px, 4vw, 100px);
}

/* Caption size xlg */
#page-header.ph-cap-xlg .ph-caption-title {
	font-size: clamp(38px, 8vw, 142px);
}

/* Caption size xxlg */
#page-header.ph-cap-xxlg .ph-caption-title {
	font-size: clamp(38px, 10vw, 180px);
	line-height: 1;
}
@media (min-width: 1025px) {
	#page-header.ph-cap-xxlg.ph-stroke .ph-caption-title {
		-webkit-text-stroke-width: 3px;
	}
}

/* Page header full screen (no effect on smaller screens!) */
@media (min-width: 1025px) {
	#page-header.ph-full {
		display: flex;
		align-items: center;
		min-height: 100vh;
	}
	#page-header.ph-full .page-header-inner {
		padding-top: 10% !important;
		padding-bottom: 5% !important;
	}
	#page-header.ph-full.ph-center .page-header-inner {
		padding-top: 5% !important;
		padding-bottom: 5% !important;
	}
	#page-header.ph-full .ph-image {
		position: absolute;
		display: flex;
		align-items: center;
		top: 0;
		bottom: 0;
		height: 100%;
	}
	#page-header.ph-full:not(.ph-bg-image).ph-image-cropped .ph-image-inner {
		padding-bottom: 140%;
	}
}



/* Page header positions 
========================= */
/* Position center */
#page-header.ph-center {
	text-align: center;
}
@media (min-width: 1025px) {
	#page-header.ph-center .page-header-inner {
		max-width: 100%;
		padding-left: 4% !important;
		padding-right: 4% !important;
	}
}
#page-header.ph-center .ph-caption {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#page-header.ph-center .ph-caption-title-ghost {
	left: 50%;
	font-size: calc(16px + 12vw);
	transform: translate3d(-50%, 0, 0);
}
#page-header.ph-center .ph-caption-description,
#page-header.ph-center .ph-caption &gt; p {
	margin-left: auto;
	margin-right: auto;
}

#page-header.ph-center:not(.ph-bg-image) .ph-image {
	right: 50%;
	transform: translate(50%, 0);
}


/* ------------------------------------------------------------- *
 * tt-Grid
/* ------------------------------------------------------------- */

.tt-grid {
	position: relative;
}
.tt-grid::after {
	content: "";
	display: table;
	clear: both;
}


/* tt-Grid top content
======================= */
.tt-grid-top {
	position: relative;
	padding-bottom: 40px;
}
body:not(.tt-boxed) .tt-section-inner.tt-wrap .tt-grid:not([class*="ttgr-gap-"]) .tt-grid-top,
.tt-section-inner:not(.tt-wrap) .tt-grid:not([class*="ttgr-gap-"]) .tt-grid-top {
	padding-left: 3vw;
	padding-right: 3vw;
}


/* tt-Ggrid categories/filter 
============================== */
.tt-grid-categories {
	position: relative;
}


/* tt-Ggrid categories/filter trigger 
====================================== */
.ttgr-cat-trigger-wrap {
	position: relative;
	display: inline-block;
	font-size: 16px;
	color: #FFF;
	z-index: 999;
}

.ttgr-cat-trigger {
	position: relative;
	display: inline-flex;
	align-items: center;
	background-color: #2a2a2a;
	cursor: pointer;
	border-radius: 50px;
}
.ttgr-cat-trigger:hover {
}

.ttgr-cat-text {
	float: left;
	min-width: 60px;
	text-align: right;
	overflow: hidden;
}
.ttgr-cat-text &gt; span {
	position: relative;
	display: inline-block;
	width: 100%;
	transition: transform 0.3s;
}
body:not(.is-mobile) .ttgr-cat-trigger:hover .ttgr-cat-text &gt; span {
	transform: translate3d(0, -100%, 0);
}
body:not(.is-mobile) .ttgr-cat-text &gt; span::before {
	position: absolute;
	top: 100%;
	right: 0;
	content: attr(data-hover);
}

.ttgr-cat-icon {
	float: left;
}
.ttgr-cat-icon span {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	font-size: 17px;
}

/* If "ttgr-cat-nav" is open */
@media (min-width: 768px) {
	body.ttgr-cat-nav-open .ttgr-item-inner {
		transition: transform 0.6s ease-in-out;
	}
}
body.ttgr-cat-nav-open .pgi-image.anim-image-parallax,
body.ttgr-cat-nav-open .pgi-video-wrap.anim-image-parallax {
	transition: transform 0.8s ease-in-out;
}

/* tt-Ggrid categories trigger position fixed */
.ttgr-cat-trigger-wrap.ttgr-cat-fixed {
	position: fixed;
	bottom: 5%;
	right: 4%;
	padding: 10px 0 10px 10px;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
}
@media (max-width: 768px) {
	.ttgr-cat-trigger-wrap.ttgr-cat-fixed {
		bottom: 20px;
	}
}
body.ttgr-cat-fixed-on .tt-grid-top {
	padding: 0;
}

.ttgr-cat-trigger-wrap.ttgr-cat-fixed .ttgr-cat-trigger {
	background-color: rgb(50 50 50 / 50%);
	backdrop-filter: blur(10px);
	border-radius: 50px;
	padding-right: 10px;
	color: #fff;
}

/* tt-Ggrid categories trigger colored style */
.ttgr-cat-trigger-wrap.ttgr-cat-colored .ttgr-cat-trigger {
	background-color: var(--tt-main-color);
	color: #FFF;
}


/* tt-Ggrid categories/filter nav 
================================== */
.ttgr-cat-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgb(0 0 0 / 70%);
	backdrop-filter: blur(10px);
	pointer-events: initial;
	z-index: 998;
	visibility: hidden;
	opacity: 0;
}
.ttgr-cat-list-holder {
	position: relative;
	height: 100%;
	width: calc(100% + 17px);
	padding-right: 17px;
	overflow-y: scroll;
	z-index: 2;
}
.ttgr-cat-list-inner {
	display: table;
	width: 100%;
	max-width: 1282px;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.ttgr-cat-list-content {
	display: table-cell;
	vertical-align: middle;
	height: 100%;
	padding: 160px 5% 120px 10%;
}
.ttgr-cat-list-content ul &gt; li &gt; a {
	color: #fff
}
/* tt-Ggrid categories list */
.ttgr-cat-list {
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
}
.ttgr-cat-list &gt; li {
	position: relative;
}
.ttgr-cat-list &gt; li &gt; a {
	position: relative;
	display: inline-block;
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: calc(26px + 1.7vw);
	font-weight: bold;
	font-weight: 600;
	line-height: 1.2;
	color: #FFF;
	opacity: .5;
	transition: color 0.3s, transform 0.3s;
}
.ttgr-cat-list &gt; li &gt; a:hover,
.ttgr-cat-list &gt; li &gt; a:focus,
.ttgr-cat-list &gt; li &gt; a.active {
	color: #FFF;
	opacity: 1;
	transform: skew(-15deg, 0deg);
}
.ttgr-cat-list &gt; li:first-child &gt; a {
	padding-top: 0;
}.ttgr-cat-list &gt; li:last-child &gt; a {
	padding-bottom: 0;
}

/* tt-Ggrid categories list item counter */
@media (min-width: 992px) {
	.ttgr-cat-list {
		counter-reset: ttgr-cat-list-counter;
	}
	.ttgr-cat-list .ttgr-cat-item::before {
		position: absolute;
		counter-increment: ttgr-cat-list-counter;
		content: "" counter(ttgr-cat-list-counter, decimal-leading-zero);
		top: 5px;
		left: -40px;
		line-height: 1;
		font-size: 14px;
		font-weight: normal;
		color: #FFF;
		opacity: 0.4;
	}
}

/* tt-Ggrid categories list close (for mobile devises) */
.ttgr-cat-close {
	margin-bottom: 25px;
	font-size: calc(13px + 0.6vw);
	color: #FFF;
}
body:not(.is-mobile) .ttgr-cat-close {
	display: none;
}


/* tt-Ggrid categories/filter classic 
====================================== */
.tt-grid-categories-classic {
	position: relative;
}

.ttgr-cat-classic-nav {
	text-align: left;
}

/* tt-Ggrid categories/filter classic list */
ul.ttgr-cat-classic-list {
	padding: 0;
	margin: 0;
	list-style: none;
}
ul.ttgr-cat-classic-list &gt; li {
	position: relative;
	display: inline-block;
	margin: 0 4px 10px 4px;
}
ul.ttgr-cat-classic-list &gt; li:first-child {
	margin-left: 0;
}
ul.ttgr-cat-classic-list &gt; li:last-child {
	margin-right: 0;
}
ul.ttgr-cat-classic-list &gt; li &gt; a {
	display: inline-block;
	background-color: rgb(125 125 125 / 7%);
	padding: 5px 15px;
	font-size: 15px;
	line-height: 1.4;
	color: #111;
	border-radius: 100px;
	transition: all 0.3s;
}
ul.ttgr-cat-classic-list &gt; li &gt; a:hover,
ul.ttgr-cat-classic-list &gt; li &gt; a.active {
	background-color: rgb(255 255 255 / 13%);
	color: #FFF;
}

/* tt-Ggrid categories/filter classic positions */
@media (min-width: 768px) {
	.ttgr-cat-classic-nav.ttgr-cat-classic-center {
		text-align: center;
	}
	.ttgr-cat-classic-nav.ttgr-cat-classic-right {
		text-align: right;
	}
}

/* tt-Ggrid categories/filter classic colored style */
.ttgr-cat-classic-nav.ttgr-cat-classic-colored ul.ttgr-cat-classic-list &gt; li &gt; a:hover,
.ttgr-cat-classic-nav.ttgr-cat-classic-colored ul.ttgr-cat-classic-list &gt; li &gt; a.active {
	background-color: var(--tt-main-color);
}


/* tt-Grid items
================= */
.tt-grid-items-wrap {
}

/* tt-Grid item */
.tt-grid-item {
	position: relative;
	float: left;
	width: 100%;
}
.ttgr-item-inner {
	position: relative;
}


/* tt-Grid height class ("ttgr-height"). Use it on an element inside "ttgr-item-inner".
======================================== */
.ttgr-height {
	position: relative;
	padding-bottom: 35%;
}
@media (max-width: 768px) {
	.ttgr-height {
		position: relative;
		padding-bottom: 60%;
	}
}

body.tt-boxed .tt-wrap .ttgr-height {
	padding-bottom: 60%;
}

/* if class "ttgr-layout-*" enabled */
.tt-grid[class*="ttgr-layout-"] .ttgr-height {
	padding-bottom: 60%;
}
.tt-grid[class*="ttgr-layout-"].ttgr-portrait:not(.ttgr-layout-creative-1):not(.ttgr-layout-creative-2) .ttgr-height {
	padding-bottom: 140%;
}


/* tt-Grid layouts 
=================== */
/* layout-2 */
@media (min-width: 768px) {
	.tt-grid.ttgr-layout-2 .tt-grid-item {
		width: 50%;
	}
}
.tt-grid.ttgr-layout-2 .ttgr-height {
	padding-bottom: 65%;
}

.tt-grid.ttgr-layout-2.ttgr-portrait .ttgr-height,
.tt-grid.ttgr-layout-2.ttgr-portrait-half .tt-grid-item:nth-child(4n+3) .ttgr-height,
.tt-grid.ttgr-layout-2.ttgr-portrait-half .tt-grid-item:nth-child(4n+4) .ttgr-height {
	padding-bottom: 140%;
}

/* layout-3 */
@media (min-width: 768px) {
	.tt-grid.ttgr-layout-3 .tt-grid-item {
		width: 50%;
	}
}
@media (min-width: 1200px) {
	.tt-grid.ttgr-layout-3 .tt-grid-item {
		width: 33.33333%;
	}
}
.tt-grid.ttgr-layout-3 .ttgr-height {
	padding-bottom: 70%;
}

.tt-grid.ttgr-layout-3.ttgr-portrait .ttgr-height,
.tt-grid.ttgr-layout-3.ttgr-portrait-half .tt-grid-item:nth-child(6n+4) .ttgr-height,
.tt-grid.ttgr-layout-3.ttgr-portrait-half .tt-grid-item:nth-child(6n+5) .ttgr-height,
.tt-grid.ttgr-layout-3.ttgr-portrait-half .tt-grid-item:nth-child(6n+6) .ttgr-height {
	padding-bottom: 140%;
}

/* layout-4 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.tt-grid.ttgr-layout-4 .tt-grid-item {
		width: 50%;
	}
}
@media screen and (min-width: 1025px) and (max-width: 1399px) {
	.tt-grid.ttgr-layout-4 .tt-grid-item {
		width: 33.33333%;
	}
}

@media (min-width: 1400px) {
	.tt-grid.ttgr-layout-4 .tt-grid-item {
		width: 25%;
	}
	
	.tt-grid.ttgr-layout-5 .tt-grid-item {
		width: 20%;
	}
		
	.tt-grid.ttgr-layout-6 .tt-grid-item {
		width: 16.6%;
	}
}
.tt-grid.ttgr-layout-4 .ttgr-height {
	padding-bottom: 60%;
}

.tt-grid.ttgr-layout-4.ttgr-portrait .ttgr-height,
.tt-grid.ttgr-layout-4.ttgr-portrait-half .tt-grid-item:nth-child(3n+5) .ttgr-height,
.tt-grid.ttgr-layout-4.ttgr-portrait-half .tt-grid-item:nth-child(6n+7) .ttgr-height,
.tt-grid.ttgr-layout-4.ttgr-portrait-half .tt-grid-item:nth-child(9n+6) .ttgr-height {
	padding-bottom: 140%;
}

/* layout-1-2 */
@media (min-width: 768px) {
	.tt-grid.ttgr-layout-1-2 .tt-grid-item {
		width: 50%;
	}
}
.tt-grid.ttgr-layout-1-2 .tt-grid-item:nth-child(3n+1) {
	width: 100%;
}
.tt-grid.ttgr-layout-1-2 .ttgr-height {
	padding-bottom: 60%;
}
@media (min-width: 768px) {
	.tt-grid.ttgr-layout-1-2 .tt-grid-item:nth-child(3n+1) .ttgr-height {
		padding-bottom: calc(60% - 20%);
	}
}

.tt-grid.ttgr-layout-1-2.ttgr-portrait .ttgr-height,
.tt-grid.ttgr-layout-1-2.ttgr-portrait-half .ttgr-height {
	padding-bottom: 120%;
}
.tt-grid.ttgr-layout-1-2.ttgr-portrait .tt-grid-item:nth-child(3n+1) .ttgr-height {
	padding-bottom: 100%;
}

/* layout-2-1 */
@media (min-width: 768px) {
	.tt-grid.ttgr-layout-2-1 .tt-grid-item {
		width: 50%;
	}
}
.tt-grid.ttgr-layout-2-1 .tt-grid-item:nth-child(3n+0) {
	width: 100%;
}
.tt-grid.ttgr-layout-2-1 .ttgr-height {
	padding-bottom: 60%;
}
@media (min-width: 768px) {
	.tt-grid.ttgr-layout-2-1 .tt-grid-item:nth-child(3n+0) .ttgr-height {
		padding-bottom: calc(60% - 20%);
	}
}

.tt-grid.ttgr-layout-2-1.ttgr-portrait .ttgr-height,
.tt-grid.ttgr-layout-2-1.ttgr-portrait-half .ttgr-height {
	padding-bottom: 120%;
}
.tt-grid.ttgr-layout-2-1.ttgr-portrait .tt-grid-item:nth-child(3n+0) .ttgr-height {
	padding-bottom: 100%;
}

/* layout-2-3 */
@media screen and (min-width: 768px) and (max-width: 1199px) {
	.tt-grid.ttgr-layout-2-3 .tt-grid-item {
		width: 50%;
	}
	.tt-grid.ttgr-layout-2-3 .tt-grid-item:nth-child(3n+1) {
		width: 100%;
	}
	.tt-grid.ttgr-layout-2-3 .ttgr-height {
		padding-bottom: 70% !important;
	}
	.tt-grid.ttgr-layout-2-3 .tt-grid-item:nth-child(3n+1) .ttgr-height {
		padding-bottom: calc(60% - 20%) !important;
	}
}

@media (min-width: 1200px) {
	.tt-grid.ttgr-layout-2-3 .tt-grid-item {
		width: 33.33333%;
	}
	.tt-grid.ttgr-layout-2-3 .tt-grid-item:nth-child(5n+1),
	.tt-grid.ttgr-layout-2-3 .tt-grid-item:nth-child(5n+2) {
		width: 50%;
	}
}
.tt-grid.ttgr-layout-2-3 .ttgr-height {
	padding-bottom: 70%;
}
.tt-grid.ttgr-layout-2-3 .tt-grid-item:nth-child(5n+1) .ttgr-height,
.tt-grid.ttgr-layout-2-3 .tt-grid-item:nth-child(5n+2) .ttgr-height {
	padding-bottom: 60%;
}

.tt-grid.ttgr-layout-2-3.ttgr-portrait .ttgr-height,
.tt-grid.ttgr-layout-2-3.ttgr-portrait .tt-grid-item:nth-child(5n+1) .ttgr-height,
.tt-grid.ttgr-layout-2-3.ttgr-portrait .tt-grid-item:nth-child(5n+2) .ttgr-height,
.tt-grid.ttgr-layout-2-3.ttgr-portrait-half .ttgr-height {
	padding-bottom: 120%;
}

/* layout-3-2 */
@media screen and (min-width: 768px) and (max-width: 1199px) {
	.tt-grid.ttgr-layout-3-2 .tt-grid-item {
		width: 50%;
	}
	.tt-grid.ttgr-layout-3-2 .tt-grid-item:nth-child(3n+0) {
		width: 100%;
	}
	.tt-grid.ttgr-layout-3-2 .ttgr-height {
		padding-bottom: 70% !important;
	}
	.tt-grid.ttgr-layout-3-2 .tt-grid-item:nth-child(3n+0) .ttgr-height {
		padding-bottom: calc(60% - 20%) !important;
	}
}
@media (min-width: 1200px) {
	.tt-grid.ttgr-layout-3-2 .tt-grid-item {
		width: 33.33333%;
	}
	.tt-grid.ttgr-layout-3-2 .tt-grid-item:nth-child(5n+4),
	.tt-grid.ttgr-layout-3-2 .tt-grid-item:nth-child(5n+5) {
		width: 50%;
	}
}
.tt-grid.ttgr-layout-3-2 .ttgr-height {
	padding-bottom: 70%;
}
.tt-grid.ttgr-layout-3-2 .tt-grid-item:nth-child(5n+4) .ttgr-height,
.tt-grid.ttgr-layout-3-2 .tt-grid-item:nth-child(5n+5) .ttgr-height {
	padding-bottom: 60%;
}

.tt-grid.ttgr-layout-3-2.ttgr-portrait .ttgr-height,
.tt-grid.ttgr-layout-3-2.ttgr-portrait .tt-grid-item:nth-child(5n+4) .ttgr-height,
.tt-grid.ttgr-layout-3-2.ttgr-portrait .tt-grid-item:nth-child(5n+5) .ttgr-height,
.tt-grid.ttgr-layout-3-2.ttgr-portrait-half .ttgr-height {
	padding-bottom: 120%;
}

/* layout-3-4 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.tt-grid.ttgr-layout-3-4 .tt-grid-item {
		width: 50%;
	}
	.tt-grid.ttgr-layout-3-4 .tt-grid-item:nth-child(3n+1) {
		width: 100%;
	}
	.tt-grid.ttgr-layout-3-4 .ttgr-height {
		padding-bottom: 70% !important;
	}
	.tt-grid.ttgr-layout-3-4 .tt-grid-item:nth-child(3n+1) .ttgr-height {
		padding-bottom: calc(60% - 20%) !important;
	}
}
@media screen and (min-width: 1025px) and (max-width: 1399px) {
	.tt-grid.ttgr-layout-3-4 .tt-grid-item {
		width: 33.33333%;
	}
	.tt-grid.ttgr-layout-3-4 .tt-grid-item:nth-child(5n+1),
	.tt-grid.ttgr-layout-3-4 .tt-grid-item:nth-child(5n+2) {
		width: 50%;
	}
	.tt-grid.ttgr-layout-3-4 .ttgr-height {
		padding-bottom: 70% !important;
	}
	.tt-grid.ttgr-layout-3-4 .tt-grid-item:nth-child(5n+1) .ttgr-height,
	.tt-grid.ttgr-layout-3-4 .tt-grid-item:nth-child(5n+2) .ttgr-height {
		padding-bottom: 60% !important;
	}
}

@media (min-width: 1400px) {
	.tt-grid.ttgr-layout-3-4 .tt-grid-item {
		width: 25%;
	}
	.tt-grid.ttgr-layout-3-4 .tt-grid-item:nth-child(7n+1),
	.tt-grid.ttgr-layout-3-4 .tt-grid-item:nth-child(7n+2),
	.tt-grid.ttgr-layout-3-4 .tt-grid-item:nth-child(7n+3) {
		width: 33.33333%;
	}
}
.tt-grid.ttgr-layout-3-4 .ttgr-height {
	padding-bottom: 70%;
}
.tt-grid.ttgr-layout-3-4 .tt-grid-item:nth-child(7n+1) .ttgr-height,
.tt-grid.ttgr-layout-3-4 .tt-grid-item:nth-child(7n+2) .ttgr-height,
.tt-grid.ttgr-layout-3-4 .tt-grid-item:nth-child(7n+3) .ttgr-height {
	padding-bottom: 60%;
}

.tt-grid.ttgr-layout-3-4.ttgr-portrait .ttgr-height,
.tt-grid.ttgr-layout-3-4.ttgr-portrait .tt-grid-item:nth-child(7n+1) .ttgr-height,
.tt-grid.ttgr-layout-3-4.ttgr-portrait .tt-grid-item:nth-child(7n+2) .ttgr-height,
.tt-grid.ttgr-layout-3-4.ttgr-portrait .tt-grid-item:nth-child(7n+3) .ttgr-height,
.tt-grid.ttgr-layout-3-4.ttgr-portrait-half .ttgr-height {
	padding-bottom: 140%;
}

/* layout-4-3 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.tt-grid.ttgr-layout-4-3 .tt-grid-item {
		width: 50%;
	}
	.tt-grid.ttgr-layout-4-3 .tt-grid-item:nth-child(3n+0) {
		width: 100%;
	}
	.tt-grid.ttgr-layout-4-3 .ttgr-height {
		padding-bottom: 70% !important;
	}
	.tt-grid.ttgr-layout-4-3 .tt-grid-item:nth-child(3n+0) .ttgr-height {
		padding-bottom: calc(60% - 20%) !important;
	}
}
@media screen and (min-width: 1025px) and (max-width: 1399px) {
	.tt-grid.ttgr-layout-4-3 .tt-grid-item {
		width: 33.33333%;
	}
	.tt-grid.ttgr-layout-4-3 .tt-grid-item:nth-child(5n+4),
	.tt-grid.ttgr-layout-4-3 .tt-grid-item:nth-child(5n+5) {
		width: 50%;
	}
	.tt-grid.ttgr-layout-4-3 .ttgr-height {
		padding-bottom: 70% !important;
	}
	.tt-grid.ttgr-layout-4-3 .tt-grid-item:nth-child(5n+4) .ttgr-height,
	.tt-grid.ttgr-layout-4-3 .tt-grid-item:nth-child(5n+5) .ttgr-height {
		padding-bottom: 60% !important;
	}
}

@media (min-width: 1400px) {
	.tt-grid.ttgr-layout-4-3 .tt-grid-item {
		width: 25%;
	}
	.tt-grid.ttgr-layout-4-3 .tt-grid-item:nth-child(7n+5),
	.tt-grid.ttgr-layout-4-3 .tt-grid-item:nth-child(7n+6),
	.tt-grid.ttgr-layout-4-3 .tt-grid-item:nth-child(7n+7) {
		width: 33.33333%;
	}
}
.tt-grid.ttgr-layout-4-3 .ttgr-height {
	padding-bottom: 70%;
}
.tt-grid.ttgr-layout-4-3 .tt-grid-item:nth-child(7n+5) .ttgr-height,
.tt-grid.ttgr-layout-4-3 .tt-grid-item:nth-child(7n+6) .ttgr-height,
.tt-grid.ttgr-layout-4-3 .tt-grid-item:nth-child(7n+7) .ttgr-height {
	padding-bottom: 60%;
}

.tt-grid.ttgr-layout-4-3.ttgr-portrait .ttgr-height,
.tt-grid.ttgr-layout-4-3.ttgr-portrait .tt-grid-item:nth-child(7n+5) .ttgr-height,
.tt-grid.ttgr-layout-4-3.ttgr-portrait .tt-grid-item:nth-child(7n+6) .ttgr-height,
.tt-grid.ttgr-layout-4-3.ttgr-portrait .tt-grid-item:nth-child(7n+7) .ttgr-height,
.tt-grid.ttgr-layout-4-3.ttgr-portrait-half .ttgr-height {
	padding-bottom: 140%;
}

/* layout-creative-1 */
@media (min-width: 768px) {
	.tt-grid.ttgr-layout-creative-1 .tt-grid-item:nth-of-type(6n+1),
	.tt-grid.ttgr-layout-creative-1 .tt-grid-item:nth-of-type(6n+5) {
		width: 60%;
	}

	.tt-grid.ttgr-layout-creative-1 .tt-grid-item:nth-of-type(6n+2),
	.tt-grid.ttgr-layout-creative-1 .tt-grid-item:nth-of-type(6n+4) {
		width: 40%;
		padding-top: 12vw;
	}

	.tt-grid.ttgr-layout-creative-1 .tt-grid-item:nth-child(3n+3) {
		width: 100%;
		padding: 0 14vw;
	}
	.tt-grid.ttgr-layout-creative-1:not(.ttgr-portrait):not(.ttgr-not-cropped) .tt-grid-item:nth-child(3n+3) .ttgr-height {
		padding-bottom: 55%;
	}
}

/* layout-creative-2 */
@media (min-width: 768px) {
	.tt-grid.ttgr-layout-creative-2 .tt-grid-item:nth-of-type(4n+1),
	.tt-grid.ttgr-layout-creative-2 .tt-grid-item:nth-of-type(4n+4) {
		width: 58%;
	}

	.tt-grid.ttgr-layout-creative-2 .tt-grid-item:nth-of-type(4n+2),
	.tt-grid.ttgr-layout-creative-2 .tt-grid-item:nth-of-type(4n+3) {
		width: 42%;
		padding-top: 9.8vw;
	}

	.tt-grid.ttgr-layout-creative-2 .tt-grid-item:last-child:nth-child(odd) {
		width: 100%;
		padding: 0 14vw;
	}
	.tt-grid.ttgr-layout-creative-2:not(.ttgr-portrait):not(.ttgr-not-cropped) .tt-grid-item:last-child:nth-child(odd) .ttgr-height {
		padding-bottom: 55%;
	}
}


/* tt-grid items shifted 
========================= */
/* Without layout class (one column) */
@media (min-width: 768px) {
	.tt-grid.ttgr-shifted:not([class*="ttgr-layout-"]) .tt-grid-item:nth-child(even) .ttgr-item-inner {
		margin-left: 20vw;
	}
	.tt-grid.ttgr-shifted:not([class*="ttgr-layout-"]) .tt-grid-item:nth-child(odd) .ttgr-item-inner {
		margin-right: 20vw;
	}
}

/* With layout 2 */
@media (min-width: 768px) {
	.tt-grid.ttgr-layout-2.ttgr-shifted .tt-grid-item:nth-child(2) .ttgr-item-inner {
		margin-top: 8vw;
	}
}

/* With layout 3 */
@media (min-width: 768px) {
	.tt-grid.ttgr-layout-3.ttgr-shifted .tt-grid-item:nth-child(2) .ttgr-item-inner {
		margin-top: 13vw;
	}
}
@media (min-width: 1200px) {
	.tt-grid.ttgr-layout-3.ttgr-shifted .tt-grid-item:nth-child(2) .ttgr-item-inner {
		margin-top: 8vw;
	}
}

/* With layout 4 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.tt-grid.ttgr-layout-4.ttgr-shifted .tt-grid-item:nth-child(2) .ttgr-item-inner {
		margin-top: 13vw;
	}
}
@media screen and (min-width: 1025px) and (max-width: 1399px) {
	.tt-grid.ttgr-layout-4.ttgr-shifted .tt-grid-item:nth-child(2) .ttgr-item-inner {
		margin-top: 8vw;
	}
}
@media (min-width: 1400px) {
	.tt-grid.ttgr-layout-4.ttgr-shifted .tt-grid-item:nth-child(2) .ttgr-item-inner,
	.tt-grid.ttgr-layout-4.ttgr-shifted .tt-grid-item:nth-child(4) .ttgr-item-inner {
		margin-top: 6vw;
	}
}


/* tt-grid item gaps 
===================== */
/* Gap 1 */
.tt-grid.ttgr-gap-1,
.tt-grid.ttgr-gap-1 .tt-grid-top {
	margin-left: 0.2vw;
	margin-right: 0.2vw;
}
body.tt-boxed .tt-wrap .tt-grid.ttgr-gap-1 {
	margin-left: -0.2vw;
	margin-right: -0.2vw;
}
body:not(.tt-boxed) .tt-section-inner.tt-wrap .tt-grid.ttgr-gap-1 .tt-grid-top,
.tt-section-inner:not(.tt-wrap) .tt-grid.ttgr-gap-1 .tt-grid-top {
	padding-left: 3vw;
	padding-right: 3vw;
}
@media (min-width: 768px) {
	.tt-grid.ttgr-gap-1 .ttgr-item-inner {
		margin: 0 0.2vw 0.4vw 0.2vw;
	}
}
@media (max-width: 767px) {
	.tt-grid.ttgr-gap-1 .ttgr-item-inner {
		margin: 0 1vw 1vw 1vw;
	}
}

/* Gap 2 */
.tt-grid.ttgr-gap-2,
.tt-grid.ttgr-gap-2 .tt-grid-top {
	margin-left: 1vw;
	margin-right: 1vw;
}
body.tt-boxed .tt-wrap .tt-grid.ttgr-gap-2 {
	margin-left: -1vw;
	margin-right: -1vw;
}
body:not(.tt-boxed) .tt-section-inner.tt-wrap .tt-grid.ttgr-gap-2 .tt-grid-top,
.tt-section-inner:not(.tt-wrap) .tt-grid.ttgr-gap-2 .tt-grid-top {
	padding-left: 1.5vw;
	padding-right: 1.5vw;
}
.tt-grid.ttgr-gap-2 .ttgr-item-inner {
	margin: 0 1vw 2vw 1vw;
}

/* Gap 3 */
.tt-grid.ttgr-gap-3,
.tt-grid.ttgr-gap-3 .tt-grid-top {
	margin-left: 2vw;
	margin-right: 2vw;
}
body.tt-boxed .tt-wrap .tt-grid.ttgr-gap-3 {
	margin-left: -2vw;
	margin-right: -2vw;
}
.tt-grid.ttgr-gap-3 .ttgr-item-inner {
	margin: 0 2vw 4vw 2vw;
}

/* Gap 4 */
.tt-grid.ttgr-gap-4,
.tt-grid.ttgr-gap-4 .tt-grid-top {
	margin-left: 3vw;
	margin-right: 3vw;
}
body.tt-boxed .tt-wrap .tt-grid.ttgr-gap-4 {
	margin-left: -3vw;
	margin-right: -3vw;
}
@media (min-width: 768px) {
	.tt-grid.ttgr-gap-4 .ttgr-item-inner {
		margin: 0 3vw 6vw 3vw;
	}
}
@media (max-width: 767px) {
	.tt-grid.ttgr-gap-4 .ttgr-item-inner {
		margin: 0 1.5vw 5vw 1.5vw;
	}
}

/* Gap 5 */
.tt-grid.ttgr-gap-5,
.tt-grid.ttgr-gap-5 .tt-grid-top {
	margin-left: 4vw;
	margin-right: 4vw;
}
body.tt-boxed .tt-wrap .tt-grid.ttgr-gap-5 {
	margin-left: -4vw;
	margin-right: -4vw;
}
@media (min-width: 768px) {
	.tt-grid.ttgr-gap-5 .ttgr-item-inner {
		margin: 0 4vw 8vw 4vw;
	}
}
@media (max-width: 767px) {
	.tt-grid.ttgr-gap-5 .ttgr-item-inner {
		margin-bottom: 5vw;
	}
}

/* Gap 6 */
.tt-grid.ttgr-gap-6,
.tt-grid.ttgr-gap-6 .tt-grid-top {
	margin-left: 5vw;
	margin-right: 5vw;
}
body.tt-boxed .tt-wrap .tt-grid.ttgr-gap-6 {
	margin-left: -5vw;
	margin-right: -5vw;
}
@media (min-width: 768px) {
	.tt-grid.ttgr-gap-6 .ttgr-item-inner {
		margin: 0 5vw 10vw 5vw;
	}
}
@media (max-width: 767px) {
	.tt-grid.ttgr-gap-6 .ttgr-item-inner {
		margin-bottom: 6vw;
	}
}


/* tt-grid item image not cropped 
================================== */
.tt-grid.ttgr-not-cropped:not([class*="ttgr-layout-"]) .ttgr-height:not(.tt-gallery-video-wrap):not(.pgi-video-wrap),
.tt-grid.ttgr-layout-2.ttgr-not-cropped .ttgr-height:not(.tt-gallery-video-wrap):not(.pgi-video-wrap),
.tt-grid.ttgr-layout-3.ttgr-not-cropped .ttgr-height:not(.tt-gallery-video-wrap):not(.pgi-video-wrap),
.tt-grid.ttgr-layout-4.ttgr-not-cropped .ttgr-height:not(.tt-gallery-video-wrap):not(.pgi-video-wrap) {
	padding-bottom: 0 !important;
	line-height: 0 !important;
}
.tt-grid.ttgr-not-cropped:not([class*="ttgr-layout-"]) .ttgr-height img,
.tt-grid.ttgr-layout-2.ttgr-not-cropped .ttgr-height img,
.tt-grid.ttgr-layout-3.ttgr-not-cropped .ttgr-height img,
.tt-grid.ttgr-layout-4.ttgr-not-cropped .ttgr-height img {
	position: relative;
	top: unset;
	left: unset;
	width: 100%;
	height: auto;
	object-fit: unset;
	object-position: unset;
}

/* Video */
.tt-grid.ttgr-not-cropped:not([class*="ttgr-layout-"]) .ttgr-height.tt-gallery-video-wrap,
.tt-grid.ttgr-not-cropped:not([class*="ttgr-layout-"]) .ttgr-height.pgi-video-wrap {
	padding-bottom: 60%;
}

.tt-grid.ttgr-not-cropped:not([class*="ttgr-layout-"]) .ttgr-height.tt-gallery-video-wrap,
.tt-grid.ttgr-layout-2.ttgr-not-cropped .ttgr-height.tt-gallery-video-wrap,
.tt-grid.ttgr-layout-3.ttgr-not-cropped .ttgr-height.tt-gallery-video-wrap,
.tt-grid.ttgr-layout-4.ttgr-not-cropped .ttgr-height.tt-gallery-video-wrap,
.tt-grid.ttgr-not-cropped:not([class*="ttgr-layout-"]) .ttgr-height.pgi-video-wrap,
.tt-grid.ttgr-layout-2.ttgr-not-cropped .ttgr-height.pgi-video-wrap,
.tt-grid.ttgr-layout-3.ttgr-not-cropped .ttgr-height.pgi-video-wrap,
.tt-grid.ttgr-layout-4.ttgr-not-cropped .ttgr-height.pgi-video-wrap {
	padding-bottom: 0 !important;
	line-height: 0 !important;
}
.tt-grid.ttgr-not-cropped:not([class*="ttgr-layout-"]) .tt-gallery-video,
.tt-grid.ttgr-layout-2.ttgr-not-cropped .ttgr-height .tt-gallery-video,
.tt-grid.ttgr-layout-3.ttgr-not-cropped .ttgr-height .tt-gallery-video,
.tt-grid.ttgr-layout-4.ttgr-not-cropped .ttgr-height .tt-gallery-video {
	position: relative;
	top: unset;
	left: unset;
	width: 100%;
	height: auto;
	object-fit: unset;
	object-position: unset;
}


/* ------------------------------------------------------------- *
 * Portfolio grid
/* ------------------------------------------------------------- */

#portfolio-grid {
	position: relative;
}

/* Portfolio grid item */
.portfolio-grid-item {
	position: relative;
}


/* Portfolio grid item image 
============================= */
.pgi-image-wrap {
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 1;
}
.pgi-image-holder {
}
.pgi-image-inner {
}
.pgi-image {
	position: relative;
}
.pgi-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/* video */
.pgi-video-wrap {
	position: relative;
}
video.pgi-video {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* Portfolio grid item caption 
=============================== */
.pgi-caption {
	width: 100%;
	max-width: 1200px;
	padding: 20px 3% 0px 3%;
}
.tt-grid.ttgr-gap-3 .pgi-caption,
.tt-grid.ttgr-gap-4 .pgi-caption,
.tt-grid.ttgr-gap-5 .pgi-caption,
.tt-grid.ttgr-gap-6 .pgi-caption {
	padding-left: 0;
	padding-right: 0;
}

.pgi-caption-inner {
}

/* Portfolio grid item title */
.pgi-title {
	margin: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: clamp(28px, 4vw, 64px);
	font-weight: bold;
	font-weight: 600;
	color: #FFF;
	line-height: 1.5;
}
@media (max-width: 767px) {
	.pgi-title {
		font-size: calc(19px + 1.5vw);
	}
}

/* Portfolio grid item title hover (no effect if "pgi-cap-inside" enabled!) */
#portfolio-grid:not(.pgi-cap-inside) .pgi-title a {
	display: inline;
}
#portfolio-grid:not(.pgi-cap-inside) .pgi-title a {
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(transparent calc(100% - 2px),currentColor 2px);
	background-image: linear-gradient(transparent calc(100% - 2px),currentColor 2px);
	background-image: -ms-linear-gradient(transparent 96%,currentColor 2px);
	transition: 0.5s cubic-bezier(.215,.61,.355,1);
	background-size: 0 96%;
}
#portfolio-grid:not(.pgi-cap-inside) .pgi-title a:hover {
	background-size: 100% 96%;
}


/* Portfolio grid item categories */
.pgi-categories-wrap {
	position: relative;
	margin-top: 8px;
	white-space: nowrap;
	overflow: hidden;
	line-height: 1.2;
}
.pgi-category {
	position: relative;
	display: inline-block;
	font-size: calc(13px + 0.1vw);
	color: #FFF;
	opacity: .6;
}
.pgi-category ~ .pgi-category {
	margin-left: -4px;
}
.pgi-category ~ .pgi-category:not(:empty)::before {
	content: ", ";
}
.pgi-category ~ .pgi-category ~ .pgi-category ~ .pgi-category {
	visibility: hidden;
	width: 0;
}
.pgi-category ~ .pgi-category ~ .pgi-category ~ .pgi-category ~ .pgi-category {
	display: none;
}
.pgi-category + .pgi-category + .pgi-category + .pgi-category::before {
	content: "...";
	margin-left: 5px;
	visibility: visible;
}


/* Portfolio grid item caption sizes 
===================================== */
@media (min-width: 768px) {
	.ttgr-layout-2 .pgi-title,
	.ttgr-layout-1-2 .pgi-title,
	.ttgr-layout-2-1 .pgi-title,
	.ttgr-layout-creative-1 .pgi-title,
	.ttgr-layout-creative-2 .pgi-title {
		font-size: calc(19px + 0.4vw);
	}

	.ttgr-layout-3 .pgi-title,
	.ttgr-layout-2-3 .pgi-title,
	.ttgr-layout-3-2 .pgi-title {
		font-size: calc(19px + 0.2vw);
	}

	.ttgr-layout-4 .pgi-title,
	.ttgr-layout-5 .pgi-title,
	.ttgr-layout-6 .pgi-title,
	.ttgr-layout-3-4 .pgi-title,
	.ttgr-layout-4-3 .pgi-title {
		font-size: calc(19px + 0.1vw);
	}


	body.tt-boxed .tt-wrap .ttgr-layout-2 .pgi-title,
	body.tt-boxed .tt-wrap .ttgr-layout-1-2 .pgi-title,
	body.tt-boxed .tt-wrap .ttgr-layout-2-1 .pgi-title {
		font-size: calc(19px + 0.2vw);
	}

	body.tt-boxed .tt-wrap .ttgr-layout-3 .pgi-title,
	body.tt-boxed .tt-wrap .ttgr-layout-2-3 .pgi-title,
	body.tt-boxed .tt-wrap .ttgr-layout-3-2 .pgi-title {
		font-size: calc(19px + 0.1vw);
	}

	body.tt-boxed .tt-wrap .ttgr-layout-4 .pgi-title,
	body.tt-boxed .tt-wrap .ttgr-layout-3-4 .pgi-title,
	body.tt-boxed .tt-wrap .ttgr-layout-4-3 .pgi-title {
		font-size: calc(19px + 0.1vw);
	}
}


/* Portfolio grid item caption positions 
========================================= */
/* Position inside */
#portfolio-grid.pgi-cap-inside .pgi-caption {
	position: absolute;
	left: 0;
	bottom: 8%;
	padding: 0 8%;
	z-index: 2;
}
#portfolio-grid.pgi-cap-inside .pgi-category {
	opacity: 1;
}

/* Position center */
#portfolio-grid.pgi-cap-center .pgi-caption {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
#portfolio-grid.pgi-cap-center .pgi-caption-inner {
	text-align: center;
}
#portfolio-grid.pgi-cap-inside.pgi-cap-center .pgi-caption {
	left: 50%;
	bottom: 50%;
	transform: translate(-50%, 50%) !important;
}


/* Portfolio grid item caption styles 
====================================== */
/* If light image used (effect only if "pgi-cap-inside" enabled) */
#portfolio-grid.pgi-cap-inside .pgi-image-is-light .pgi-title {
	color: #111;
}
#portfolio-grid.pgi-cap-inside .pgi-image-is-light .pgi-category {
	color: #111;
}
#portfolio-grid.pgi-cap-inside .pgi-image-is-light .pgi-image-holder[class*="cover-opacity-"]::before {
	display: none !important;
}


/* Portfolio grid item hover 
============================= */

/* Clip path (effect only with gaps) */
@media (min-width: 768px) {
	#portfolio-grid.pgi-hover [class*="ttgr-gap-"]:not(.ttgr-gap-1) .pgi-image-holder {
		clip-path: inset(0 0 0 0);
		overflow: hidden;
		transition: clip-path 0.8s cubic-bezier(0.07, 0.72, 0.29, 0.96);
	}
	#portfolio-grid.pgi-hover [class*="ttgr-gap-"]:not(.ttgr-gap-1) .pgi-image-wrap:hover .pgi-image-holder {
		clip-path: inset(3% 3% 3% 3%);
	}

	/* Image zoom */
	#portfolio-grid.pgi-hover .pgi-image {
		transition: all 1s cubic-bezier(.165,.84,.44,1);
	}
	#portfolio-grid.pgi-hover .pgi-image-wrap:hover .pgi-image {
		transform: scale(1.05);
	}
}

/* Caption hover */
body:not(.is-mobile) #portfolio-grid.pgi-cap-inside.pgi-cap-hover .pgi-title, body:not(.is-mobile) #portfolio-grid.pgi-cap-inside.pgi-cap-hover .mos-img {
	transform: translate3d(0, 15px, 0);
	transition: all 0.25s ease-out;
	transition-delay: 0.1s;
}
body:not(.is-mobile) #portfolio-grid.pgi-cap-inside.pgi-cap-hover .portfolio-grid-item:hover .pgi-title, body:not(.is-mobile) #portfolio-grid.pgi-cap-inside.pgi-cap-hover .portfolio-grid-item:hover .mos-img {
	transform: translate3d(0, 0, 0);
}

body:not(.is-mobile) #portfolio-grid.pgi-cap-inside.pgi-cap-hover .pgi-categories-wrap {
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, 20px, 0);
	transition: all 0.25s ease-out;
	transition-delay: 0.1s;
}
body:not(.is-mobile) #portfolio-grid.pgi-cap-inside.pgi-cap-hover .portfolio-grid-item:hover .pgi-categories-wrap {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}


/* ------------------------------------------------------------- *
 * Portfolio List
/* ------------------------------------------------------------- */

.portfolio-list {
	position: relative;
}


/* Portfolio list item 
======================= */
.portfolio-list-item {
	position: relative;
	display: block;
	margin-left: 30%;
	margin-right: 10%;
	margin-bottom: 8%;
}
.portfolio-list-item:last-child {
	margin-bottom: 0;
}
@media (max-width: 1024px) {
	.portfolio-list-item {
		margin-left: 32%;
		margin-right: 5%;
	}
}
@media (max-width: 768px) {
	.portfolio-list-item {
		margin-left: 5%;
		margin-right: 5%;
	}
}

/* Portfolio list item image */
.pli-image,
.pli-video {
	position: relative;
	z-index: 2;
}
.pli-image img {
}

@media (max-width: 768px) {
	.pli-image[class*="cover-opacity-"]::before,
	.pli-video[class*="cover-opacity-"]::before {
		display: none !important;
	}
}

/* Portfolio list item image cropped */
.portfolio-list.pli-cropped .pli-image img,
.pli-video video {
	width: 100%;
	height: 32vw;
	object-fit: cover;
	object-position: 50% 50%;
}
@media (max-width: 1024px) {
	.portfolio-list.pli-cropped .pli-image img,
	.pli-video video {
		height: 45vw;
	}
}
@media (max-width: 768px) {
	.portfolio-list.pli-cropped .pli-image img,
	.pli-video video {
		height: 60vw;
	}
}
@media (min-width: 1399px) {
	.pli-caption {
		max-width: 600px;
	}
}	
@media (max-width: 1398px) {
	.pli-caption {
		max-width: 400px;
	}
}
/* Portfolio list item caption */
@media (min-width: 769px) {
	.pli-caption {
		position: absolute;
		left: -15%;
		bottom: 15%;
		width: 100%;
	}
	.pli-caption-front {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		overflow: hidden;
		z-index: 3;
	}
	.pli-caption.pli-caption-back {
		z-index: 1;
	}
}
@media (max-width: 768px) {
	.pli-caption-front {
		margin-top: 20px;
	}
	.pli-caption.pli-caption-back {
		display: none;
	}
	.pli-title,.pli-caption .mos-img {
		color: #222 !important;
	}
	.pli-caption {
		max-width: 100%;
	}
}

.pli-title {
	margin: 0;
	font-size: calc(16px + 3.5vw);
	font-weight: bold;
	font-weight: 600;
	color: #FFF;
	line-height: 1.2;
}
.pli-caption .mos-img {
	color: #FFF;
	font-size: 18px
}
.pli-caption.pli-caption-front .pli-title {
}
.pli-caption.pli-caption-back .pli-title {
	color: var(--tt-main-color);
}
.pli-caption.pli-caption-back  .mos-img {
	color: #111;
}

.pli-categories-wrap {
	position: relative;
	margin-bottom: 24px;
}
@media (max-width: 768px) {
	.pli-categories-wrap {
		margin-bottom: 10px;
	}
}
.pli-category {
	position: relative;
	display: inline-block;
	font-size: calc(13px + 0.1vw);
	color: #999;
	line-height: 1.6;
}
@media (max-width: 768px) {
	.pli-category {
		color: #999;
	}
}
.pli-category ~ .pli-category {
	margin-left: -4px;
}
.pli-category ~ .pli-category:not(:empty)::before {
	content: ", ";
}
.pli-category ~ .pli-category ~ .pli-category ~ .pli-category {
	visibility: hidden;
	width: 0;
}
.pli-category ~ .pli-category ~ .pli-category ~ .pli-category ~ .pli-category {
	display: none;
}
.pli-category + .pli-category + .pli-category + .pli-category::before {
	content: "...";
	margin-left: 5px;
	visibility: visible;
}


/* Portfolio list item counter
=============================== */
.portfolio-list {
	counter-reset: pli-counter;
}
.pli-counter {
	position: absolute;
	top: 8%;
	left: -30%;
	pointer-events: none;
}
.pli-counter::before {
	counter-increment: pli-counter 1;
	content: "" counter(pli-counter, decimal-leading-zero);
	display: block;
	line-height: 1;
	font-size: calc(17px + 7vw);
	font-weight: 500;
	color: #ccc;
	opacity: 0.15;
	z-index: -1;
}
@media (max-width: 768px) {
	.portfolio-list-item::before {
		display: none;
	}
}


/* Portfolio list item hover
============================= */
@media (min-width: 769px) {
	.portfolio-list.pli-hover .pli-image,
	.portfolio-list.pli-hover .pli-video,
	.portfolio-list.pli-hover .pli-caption-front {
		transition: all 0.8s cubic-bezier(0.07, 0.72, 0.29, 0.96);
		clip-path: inset(0 0 0 0);
	}
	.portfolio-list.pli-hover .portfolio-list-item:hover .pli-image,
	.portfolio-list.pli-hover .portfolio-list-item:hover .pli-video,
	.portfolio-list.pli-hover .portfolio-list-item:hover .pli-caption-front {
		clip-path: inset(3% 3% 3% 3%);
	}

	/* Image zoom */
	.portfolio-list.pli-hover .pli-image-hover-zoom {
		transition: all 1s cubic-bezier(0.07, 0.72, 0.29, 0.96);
	}
	.portfolio-list.pli-hover .portfolio-list-item:hover .pli-image-hover-zoom {
		transform: scale(1.05);
	}
}


/* Portfolio list alternative layout
===================================== */
@media (min-width: 1025px) {
	.portfolio-list.pl-alter .portfolio-list-item:nth-child(even) {
		margin-left: 27%;
		margin-right: 13%;
	}
	.portfolio-list.pl-alter .portfolio-list-item:nth-child(odd) {
		margin-left: 13%;
		margin-right: 27%;
	}
}
@media (max-width: 1024px) {
	.portfolio-list.pl-alter .portfolio-list-item:nth-child(even) {
		margin-left: 20%;
		margin-right: 5%;
	}
	.portfolio-list.pl-alter .portfolio-list-item:nth-child(odd) {
		margin-left: 5%;
		margin-right: 20%;
	}
}
@media (max-width: 768px) {
	.portfolio-list.pl-alter .portfolio-list-item:nth-child(even),
	.portfolio-list.pl-alter .portfolio-list-item:nth-child(odd) {
		margin-left: 5%;
		margin-right: 5%;
	}
}

@media (min-width: 769px) {
	.portfolio-list.pl-alter .portfolio-list-item:nth-child(odd) .pli-caption {
		left: 65%;
	}
	.portfolio-list.pl-alter .portfolio-list-item:nth-child(odd) .pli-categories-wrap {
		text-align: right
	}
	.portfolio-list.pl-alter .portfolio-list-item:nth-child(odd) .pli-counter {
		left: auto;
		right: -30%;
	}
}


/* If portfolio list item image is light
========================================= */
@media (min-width: 768px) {
	.portfolio-list-item.pli-image-is-light .pli-image[class*="cover-opacity-"]::before,
	.portfolio-list-item.pli-image-is-light .pli-video[class*="cover-opacity-"]::before {
		display: none;
	}
	.portfolio-list-item.pli-image-is-light .pli-caption-front .pli-title {
		color: #111;
	}
	.portfolio-list-item.pli-image-is-light .pli-caption-front .pli-category {
		color: #111;
	}
}


/* ------------------------------------------------------------- *
 * Portfolio thumbnail list
/* ------------------------------------------------------------- */

.portfolio-thumbnail-list {
	position: relative;
}


/* Portfolio thumbnail list item
================================= */
.ptl-item {
	position: relative;
	display: block;
	padding-top: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #333;
	will-change: transform;
}
.ptl-item:first-child {
	border-top: 1px solid #333;
}
@media (max-width: 767px) {
	.ptl-item {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

/* Item category */
.ptl-item-category-wrap {
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1;
	overflow: hidden;
	z-index: 1;
	opacity: .6;
	transition: opacity 0.3s ease;
}
.ptl-item-category {
	position: relative;
	display: inline-block;
	margin: 0;
	font-size: calc(13px + 0.1vw);
	font-weight: normal;
	color: #FFF;
	line-height: 1.4;
	transition: transform .6s cubic-bezier(0.51, 0.57, 0.17, 1);
}
.ptl-item-category ~ .ptl-item-category {
	margin-left: -4px;
}
.ptl-item-category ~ .ptl-item-category {
	visibility: hidden;
}
.ptl-item-category + .ptl-item-category:not(:empty)::before {
	content: "...";
	margin-left: 2px;
	visibility: visible;
}
.ptl-item-category ~ .ptl-item-category ~ .ptl-item-category {
	display: none;
}

/* Item caption */
.ptl-item-caption {
	position: relative;
	display: inline-grid;
	align-items: center;
	padding-top: 25px;
	text-decoration: none;
}

.ptl-item-caption-inner {
	position: relative;
	max-width: 900px;
	overflow: hidden;
}

/* Item counter */
.portfolio-thumbnail-list {
	counter-reset: ptl-item-counter;
}
.ptl-item-caption::before {
	position: absolute;
	counter-increment: ptl-item-counter;
	content: "" counter(ptl-item-counter, decimal-leading-zero);
	top: 10px;
	right: -20px;
	line-height: 1;
	font-size: calc(12px + 0.2vw);
	font-weight: 300;
	color: #FFF;
	opacity: .5;
	z-index: 2;
	transition: opacity .3s;
}
@media (max-width: 767px) {
	.ptl-item-caption::before {
		right: -10px;
	}
}

/* Item title */
.ptl-item-title,
.ptl-item-hover-title {
	display: block;
	margin: 0;
	padding: 0;
	font-size: clamp(28px, 4vw, 64px);
	font-weight: bold;
	font-weight: 600;
	color: #EEE;
	line-height: 1.2;
	transform: translate3d(0, 0, 0);
	transition: transform 0.4s cubic-bezier(0.51, 0.57, 0.17, 1), opacity 0.4s ease;

	/* Ellipsis */
	overflow: hidden;
	text-overflow: ellipsis;
}
.ptl-item-title {
	position: relative;
}
.ptl-item-hover-title {
	position: absolute;
	left: 0;
	max-width: 100%;
	color: #FFF;
	opacity: 1;
}

/* Item thumbnails  */
.ptl-item-thumbnails {
	display: flex;
}
@media (min-width: 768px) {
	.ptl-item-thumbnails {
		align-items: center;
		justify-content: flex-end;
		height: 100%;
	}
}
@media (max-width: 767px) {
	.ptl-item-thumbnails {
		margin-top: 20px;
	}
}

.ptli-image {
	position: relative;
	width: 100%;
	max-width: clamp(50px, 4vw, 74px);
	line-height: 0;
	overflow: hidden;
	border-radius: 100px;
}
.ptli-image::before {
	display: block;
	content: "";
	padding-bottom: 100%;
}
.ptli-image:not(.ptli-image:first-child) {
	margin-left: 10px;
}

.ptli-image &gt; img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.ptli-image ~ .ptli-image ~ .ptli-image ~ .ptli-image ~ .ptli-image ~ .ptli-image { /* Display 5 thumbnails max */
	display: none;
}

/* Thumbnails overlap */
.portfolio-thumbnail-list.ptl-thumb-overlap .ptli-image {
	max-width: clamp(50px, 5vw, 84px);
	border: 4px solid var(--tt-main-bg-color);
}
.portfolio-thumbnail-list.ptl-thumb-overlap .ptli-image:not(.ptli-image:first-child) {
	margin-left: -20px;
}

/* Item hover */
.ptl-item-title, 
.ptl-item-hover-title {
	white-space: nowrap;
}

.portfolio-thumbnail-list:hover .ptl-item-title {
	opacity: .5;
}
.portfolio-thumbnail-list:hover .ptl-item-category-wrap,
.portfolio-thumbnail-list:hover .ptl-item-caption::before {
	opacity: .3;
}
.ptl-item:hover .ptl-item-category-wrap {
	opacity: .9;
}
.ptl-item:hover .ptl-item-caption::before {
	opacity: .7;
}

.ptl-item:hover .ptl-item-title {
	transform: translate3d(0, -100%, 0);
}
.ptl-item:hover .ptl-item-hover-title {
	transform: translate3d(0, -100%, 0);
}


/* ------------------------------------------------------------- *
 * Portfolio interactive
/* ------------------------------------------------------------- */

.portfolio-interactive {
	position: relative;
	padding-left: 10%;
	padding-right: 10%;
}
body.tt-boxed .tt-wrap .portfolio-interactive {
	padding-left: 3%;
	padding-right: 3%;
}
@media (max-width: 1024px) {
	.portfolio-interactive {
		padding-left: 80px;
		padding-right: 5%;
	}
}


/* Portfolio interactive list 
============================== */
.portfolio-interactive-list {
}

/* Portfolio interactive item */
.portfolio-interactive-item {
	position: relative;
}
.portfolio-interactive-item.pi-item-hover {
	z-index: 9;
}

/* Portfolio interactive item category */
.pi-item-category-wrap {
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1;
	overflow: hidden;
	z-index: 1;
	opacity: .6;
	transition: opacity 0.3s ease;
}
.pi-item-category {
	position: relative;
	display: inline-block;
	margin: 0;
	font-size: calc(13px + 0.1vw);
	font-weight: normal;
	color: var(--tt-main-color);
	line-height: 1.4;
	transition: transform .6s cubic-bezier(0.51, 0.57, 0.17, 1);
}
.pi-item-category ~ .pi-item-category {
	margin-left: -4px;
}
.pi-item-category ~ .pi-item-category {
	visibility: hidden;
}
.pi-item-category + .pi-item-category:not(:empty)::before {
	content: "...";
	margin-left: 2px;
	visibility: visible;
}
.pi-item-category ~ .pi-item-category ~ .pi-item-category {
	display: none;
}

/* Portfolio interactive item link */
.pi-item-title-link {
	position: relative;
	display: inline-grid;
	align-items: center;
	padding-top: 24px;
	padding-bottom: 24px;
	text-decoration: none;
}

.pi-item-title-link-inner {
	position: relative;
	max-width: 900px;
	overflow: hidden;
}

/* Portfolio interactive item counter */
.portfolio-interactive {
	counter-reset: pi-item-counter;
}

@media (max-width: 1024px) {
	.pi-item-title-link::before {
		right: 0;
	}
}

/* Portfolio interactive item title */
.pi-item-title,
.pi-item-hover-title {
	display: block;
	margin: 0;
	padding: 0;
	font-size: clamp(28px, 4vw, 68px);
	font-weight: 600;
	color: #333;
	line-height: 1.2;
	transform: translate3d(0, 0, 0);
	transition: transform 0.4s cubic-bezier(0.51, 0.57, 0.17, 1), opacity 0.4s ease;

	/* Ellipsis */
	overflow: hidden;
	text-overflow: ellipsis;
}
.pi-item-title {
	position: relative;
}
.pi-item-hover-title {
	position: absolute;
	left: 0;
	max-width: 100%;
	color: var(--tt-main-color);
	opacity: 1;
}

/* Portfolio interactive item hover */
.pi-item-title, 
.pi-item-hover-title {
	white-space: nowrap;
}
.portfolio-interactive.hovered .pi-item-title {
	opacity: .5;
}
.portfolio-interactive.hovered .pi-item-category-wrap,
.portfolio-interactive.hovered .pi-item-title-link::before {
	opacity: .3;
}
.pi-item-title-link:hover .pi-item-category-wrap {
	opacity: .9;
}
.pi-item-title-link:hover .pi-item-title {
	transform: translate3d(0, -100%, 0);
}
.pi-item-title-link:hover .pi-item-hover-title {
	transform: translate3d(0, -100%, 0);
}
.portfolio-interactive.hovered .pi-item-title-link:hover::before {
	opacity: .7;
}


/* Portfolio interactive images
================================ */
.pi-item-image {
	position: absolute;
	display: block;
	top: 50%;
	right: 3%;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transform: translate3d(0, -50%, 0);
	transition: all .3s ease-out;
}
.portfolio-interactive-item.pi-item-hover .pi-item-image {
	opacity: 1;
	visibility: visible;
	transition-delay: .1s;
}
.pi-item-image-inner {
	position: relative;
	width: 500px;
	padding-bottom: 70%;
	background-color: #121212;
	line-height: 0;
	transform: translate3d(0, 30px, 0) rotate(0deg) scale(.95);
	transition: transform .3s ease-out;
}
@media (max-width: 992px) {
	.pi-item-image-inner {
		width: 300px;
	}
}
.portfolio-interactive-item.pi-item-hover .pi-item-image-inner {
	transform: translate3d(0, 0, 0) rotate(6deg) scale(1);
	transition-delay: .1s;
}

.pi-item-image img,
.pi-item-image video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .9;
}

video.pi-item-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* Portfolio interactive styles 
================================ */
/* Style stroke (no effect on small screens) */
@media (min-width: 1025px) {
	.portfolio-interactive.pi-stroke .pi-item-title {
		font-weight: bold;
		font-weight: 700;
		-webkit-text-stroke-width: 2px;
		-webkit-text-stroke-color: #EEE;
		-webkit-text-fill-color: transparent;
	}
	body.is-firefox .portfolio-interactive.pi-stroke .pi-item-title {
		-webkit-text-stroke-width: 2px;
	}
}

/* Style inline */
@media (min-width: 768px) {
	.portfolio-interactive.pi-inline .portfolio-interactive-list::after {
		content: "";
		display: table;
		clear: both;
	}
	.portfolio-interactive.pi-inline .portfolio-interactive-item {
		float: left;
	}
	.portfolio-interactive.pi-inline .portfolio-interactive-item:last-child {
		margin-right: 0;
	}
	.portfolio-interactive.pi-inline .pi-item-title-link {
		padding: 25px 50px 40px 0;
	}
	.portfolio-interactive.pi-inline .pi-item-title-link-inner {
		max-width: 600px;
	}
	.portfolio-interactive.pi-inline .pi-item-title-link::after {
		position: absolute;
		content: "/";
		top: 47%;
		right: 15px;
		line-height: 1;
		font-size: calc(12px + 1.3vw);
		font-weight: 500;
		color: #FFF;
		opacity: .5;
		z-index: 2;
		transform: translate3d(0, -50%, 0);
	}
	.portfolio-interactive.pi-inline.pi-center .pi-item-title-link::after {
		top: 65%;
		font-size: calc(12px + 2.3vw);
	}

	.portfolio-interactive.pi-inline .pi-item-title, 
	.portfolio-interactive.pi-inline .pi-item-hover-title {
		font-size: clamp(28px, 3vw, 48px);
		font-weight: 600;
	}
	.portfolio-interactive.pi-inline .pi-item-title-link::before {
		top: 8px;
		right: 55px;
		font-size: calc(11px + 0.2vw);
	}

	.portfolio-interactive.pi-inline .pi-item-category {
		font-size: calc(11px + 0.1vw);
	}

	@media (max-width: 1200px) {
		.portfolio-interactive.pi-inline .pi-item-title-link {
			padding: 25px 40px 30px 0;
		}
		.portfolio-interactive.pi-inline .pi-item-title-link::before {
			right: 45px;
		}
	}

	.portfolio-interactive.pi-inline .pi-item-image-inner {
		width: 400px;
	}
	@media (max-width: 992px) {
		.portfolio-interactive.pi-inline .pi-item-image-inner {
			width: 300px;
		}
	}
}

/* Style center */
.portfolio-interactive.pi-center .portfolio-interactive-list {
	text-align: center;
}
.portfolio-interactive.pi-center:not(.pi-stroke) .pi-item-title {
}
.portfolio-interactive.pi-center .pi-item-title-link {
	padding-bottom: 0;
}
.portfolio-interactive.pi-center .pi-item-title-link::before {
	display: none;
}
.portfolio-interactive.pi-center .pi-item-title-link-inner {
	max-width: 100%;
}
.portfolio-interactive.pi-center .pi-item-category-wrap {
	left: 50%;
	opacity: 0 !important;
	overflow: hidden;
	transform: translateX(-50%);
}
.portfolio-interactive.pi-center .pi-item-title-link:hover .pi-item-category-wrap {
	opacity: 1 !important;
}
.portfolio-interactive.pi-center .pi-item-category {
	transform: translate3d(0, 100%, 0);
}
.portfolio-interactive.pi-center .pi-item-title-link:hover .pi-item-category {
	transform: translate3d(0, 0, 0);
}

.portfolio-interactive.pi-center .pi-item-image {
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
}


/* Portfolio interactive stand-alone 
=====================================
Note: class "pi-full" is for use only if the portfolio interactive section is a stand-alone element of the page (no "page-header", no other sections). 
Also, the top and bottom padding must be removed from the "tt-section" (use the "no-padding" class)!
*/
body:not(.page-header-on) .portfolio-interactive.pi-full {
	display: table;
	width: 100%;
	padding-top: 200px;
	padding-bottom: 200px;
}
body:not(.page-header-on) .portfolio-interactive.pi-full .pi-inner {
	display: table-cell;
	vertical-align: middle;
	height: 100%;
	
}
body:not(.page-header-on) .portfolio-interactive.pi-full {
	min-height: 100vh;
}

@media (max-width: 1024px) {
	body:not(.page-header-on) .portfolio-interactive.pi-full {
		min-height: calc(100vh - 25vh);
		padding-bottom: 40px;
	}
	body:not(.page-header-on) .portfolio-interactive.pi-full .portfolio-interactive-list {
		padding-bottom: 0;
	}
}

/* Portfolio interactive ghost */
.portfolio-interactive-ghost {
	display: none;
}
body.pi-full-on:not(.page-header-on) .portfolio-interactive-ghost {
	position: fixed;
	display: block;
	bottom: 0;
	left: 0;
	font-size: 22.5vw;
	font-weight: bold;
	font-weight: 600;
	color: #FFF;
	line-height: .7;
	opacity: .07;
	z-index: -1;
}
@media (max-width: 767px) {
	body:not(.page-header-on) .portfolio-interactive-ghost,
	body:not(.page-header-on).pi-inline-on .portfolio-interactive-ghost {
		top: 15%;
		bottom: auto;
	}
}

/* Footer position fixed */
@media (min-width: 1025px) {
	body.pi-full-on #tt-footer {
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		pointer-events: none;
	}
	body.pi-full-on #tt-footer a {
		pointer-events: initial;
	}
}


/* ------------------------------------------------------------- *
 * Portfolio split
/* ------------------------------------------------------------- */

.portfolio-split {
	position: relative;
}


/* Portfolio split images 
========================== */
.portfolio-split-images {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
	z-index: -1;
	overflow: hidden;
}
@media (max-width: 1400px) {
	.portfolio-split-images {
		width: 45%;
	}
}
@media (max-width: 1024px) {
	.portfolio-split-images {
		width: 100%;
	}
	.portfolio-split-images::before {
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #000;
		opacity: .6;
		z-index: 1;
	}
}

.pspl-images-inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #121212;
}

.pspl-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-in-out;
}
.pspl-image.active {
	opacity: 1;
	visibility: visible;
}
.pspl-image img,
.pspl-image video.pspl-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}


/* Portfolio split list 
======================== */
.portfolio-split-list {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 90vh;
	left: 0;
	width: 50%;
	padding: 200px 3% 100px 17%;
}
@media (max-width: 1400px) {
	.portfolio-split-list {
		width: 55%;
	}
}
@media (max-width: 1024px) {
	.portfolio-split-list {
		left: 0;
		width: 100%;
		padding-left: 70px;
		padding-right: 5%;
		/* text-align: center; */
	}
}

/* Portfolio split item */
.portfolio-split-item {
	position: relative;
}
.portfolio-split-item.pi-item-hover {
	z-index: 9;
}

/* Portfolio split item category */
.pspl-item-category-wrap {
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1;
	overflow: hidden;
	z-index: 1;
	opacity: .6;
	transition: opacity 0.3s ease;
}
.pspl-item-category {
	position: relative;
	display: inline-block;
	margin: 0;
	font-size: calc(13px + 0.1vw);
	font-weight: normal;
	color: #888;
	line-height: 1.4;
	transition: transform .6s cubic-bezier(0.51, 0.57, 0.17, 1);
}
.pspl-item-category ~ .pspl-item-category {
	margin-left: -4px;
}
.pspl-item-category ~ .pspl-item-category {
	visibility: hidden;
}
.pspl-item-category + .pspl-item-category:not(:empty)::before {
	content: "...";
	margin-left: 2px;
	visibility: visible;
}
.pspl-item-category ~ .pspl-item-category ~ .pspl-item-category {
	display: none;
}

/* Portfolio split item link */
.pspl-item-title-link {
	position: relative;
	display: inline-grid;
	align-items: center;
	padding-top: 24px;
	padding-bottom: 24px;
	text-decoration: none;
}

.pspl-item-title-link-inner {
	position: relative;
	max-width: 900px;
	overflow: hidden;
}

/* Portfolio split item counter */
.portfolio-split-list {
	counter-reset: pspl-item-counter;
}

@media (max-width: 1024px) {
	.pspl-item-title-link::before {
		right: 0;
	}
}

/* Portfolio split item title */
.pspl-item-title,
.pspl-item-hover-title {
	display: block;
	margin: 0;
	padding: 0;
	font-size: clamp(32px, 3vw, 54px);
	font-weight: bold;
	font-weight: 600;
	color: #333;
	line-height: 1.2;
	transform: translate3d(0, 0, 0);
	transition: transform 0.4s cubic-bezier(0.51, 0.57, 0.17, 1), opacity 0.4s ease;

	/* Ellipsis */
	overflow: hidden;
	text-overflow: ellipsis;
}
.pspl-item-title {
	position: relative;
}
.pspl-item-hover-title {
	position: absolute;
	left: 0;
	max-width: 100%;
	color: var(--tt-main-color);
	opacity: 1;
}

/* Portfolio split item hover */
.pspl-item-title, 
.pspl-item-hover-title {
	white-space: nowrap;
}
.portfolio-split.hovered .pspl-item-title {
	opacity: .5;
}
.portfolio-split.hovered .pspl-item-category-wrap,
.portfolio-split.hovered .pspl-item-title-link::before {
	opacity: .3;
}
.pspl-item-title-link:hover .pspl-item-category-wrap {
	opacity: .9;
}
.pspl-item-title-link:hover .pspl-item-title {
	transform: translate3d(0, -100%, 0);
}
.pspl-item-title-link:hover .pspl-item-hover-title {
	transform: translate3d(0, -100%, 0);
}
.portfolio-split.hovered .pspl-item-title-link:hover::before {
	opacity: .7;
}


/* Portfolio split ghost 
========================= */
.pspl-ghost {
	position: fixed;
	display: block;
	bottom: 100px;
	left: 3.5%;
	font-size: 15vh;
	font-weight: bold;
	font-weight: 600;
	color: #333;
	line-height: .7;
	opacity: .07;
	z-index: -1;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}
@media (max-width: 1024px) {
	.pspl-ghost {
		display: none;
	}
}


/* Portfolio split reversed layout
=================================== */
body.pspl-reverse-on .portfolio-split-images {
	left: 0;
	right: auto;
}
@media (min-width: 1025px) {
	body.pspl-reverse-on .portfolio-split-list {
		left: 45%;
		padding-left: 5%;
	}
}
@media (min-width: 1400px) {
	body.pspl-reverse-on .portfolio-split-list {
		left: 50%;
	}
}
body.pspl-reverse-on .pspl-ghost {
	left: auto;
	right: 3.5%;
}


/* If portfolio split image is light and active 
================================================ */
@media (min-width: 1025px) {
	body.pspl-light-image-on:not(.pspl-reverse-on):not(.tt-ol-menu-active) .tt-ol-menu-toggle-btn-text,
	body.pspl-light-image-on:not(.pspl-reverse-on) .tt-main-menu-list &gt; li &gt; a, 
	body.pspl-light-image-on:not(.pspl-reverse-on) .tt-main-menu-list &gt; li &gt; .tt-submenu-trigger &gt; a,
	body.pspl-light-image-on:not(.pspl-reverse-on) #tt-footer .footer-social .footer-social-text,
	body.pspl-light-image-on:not(.pspl-reverse-on) #tt-footer .footer-social a {
		color: #111;
	}
	body.pspl-light-image-on:not(.pspl-reverse-on):not(.tt-ol-menu-active) .tt-ol-menu-toggle-btn span::before, 
	body.pspl-light-image-on:not(.pspl-reverse-on):not(.tt-ol-menu-active) .tt-ol-menu-toggle-btn span::after,
	body.pspl-light-image-on:not(.pspl-reverse-on):not(.is-mobile):not(.tt-ol-menu-open) .tt-ol-menu-toggle-btn:hover span {
		background-color: #111;
	}

	/* If reversed layout is enabled */
	body.pspl-light-image-on.pspl-reverse-on:not(.tt-ol-menu-active) #tt-header .tt-logo-light {
		display: none;
	}
	body.pspl-light-image-on.pspl-reverse-on:not(.tt-ol-menu-active) #tt-header .tt-logo-dark {
		display: block;
	}
	body.pspl-light-image-on.pspl-reverse-on #tt-footer .tt-btn-link &gt; *, 
	body.pspl-light-image-on.pspl-reverse-on #tt-footer .tt-btn-link &gt; *::after {
		color: #111;
	}
	body.pspl-light-image-on.pspl-reverse-on #tt-footer .tt-btn-link:hover &gt; *, 
	body.pspl-light-image-on.pspl-reverse-on #tt-footer .tt-btn-link:hover &gt; *::after {
		color: #111;
	}
}



/* ------------------------------------------------------------- *
 * tt-Gallery
/* ------------------------------------------------------------- */

.tt-gallery {
	position: relative;
}

/* tt-Gallery item 
=================== */
.tt-gallery-item {
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 1;
}

/* tt-Gallery image */
.tt-gallery-image-wrap {
}
.tt-gallery-image {
	position: relative;
}
.tt-gallery-image img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/* Image parallax and hover zoom pseudo wraps (added by .js) */
.tt-grid:not(.ttgr-not-cropped) .tt-gallery-image .anim-image-parallax-wrap,
.tt-grid:not(.ttgr-not-cropped) .tt-gallery-image .anim-image-parallax-inner,
.tt-grid:not(.ttgr-not-cropped) .tt-gallery-image .tt-gallery-image-hover-zoom,
.tt-grid[class*="ttgr-layout-creative-"].ttgr-not-cropped .tt-gallery-image .tt-gallery-image-hover-zoom,

.tt-grid[class*="ttgr-layout-1-"].ttgr-not-cropped .tt-gallery-image .anim-image-parallax-wrap,
.tt-grid[class*="ttgr-layout-1-"].ttgr-not-cropped .tt-gallery-image .anim-image-parallax-inner,
.tt-grid[class*="ttgr-layout-1-"].ttgr-not-cropped .tt-gallery-image .tt-gallery-image-hover-zoom,

.tt-grid[class*="ttgr-layout-2-"].ttgr-not-cropped .tt-gallery-image .anim-image-parallax-wrap,
.tt-grid[class*="ttgr-layout-2-"].ttgr-not-cropped .tt-gallery-image .anim-image-parallax-inner,
.tt-grid[class*="ttgr-layout-2-"].ttgr-not-cropped .tt-gallery-image .tt-gallery-image-hover-zoom,

.tt-grid[class*="ttgr-layout-3-"].ttgr-not-cropped .tt-gallery-image .anim-image-parallax-wrap,
.tt-grid[class*="ttgr-layout-3-"].ttgr-not-cropped .tt-gallery-image .anim-image-parallax-inner,
.tt-grid[class*="ttgr-layout-3-"].ttgr-not-cropped .tt-gallery-image .tt-gallery-image-hover-zoom,

.tt-grid[class*="ttgr-layout-4-"].ttgr-not-cropped .tt-gallery-image .anim-image-parallax-wrap,
.tt-grid[class*="ttgr-layout-4-"].ttgr-not-cropped .tt-gallery-image .anim-image-parallax-inner,
.tt-grid[class*="ttgr-layout-4-"].ttgr-not-cropped .tt-gallery-image .tt-gallery-image-hover-zoom,

.tt-grid .tt-gallery-video-wrap .anim-image-parallax-wrap,
.tt-grid .tt-gallery-video-wrap .anim-image-parallax-inner,
.tt-grid .tt-gallery-video-wrap .tt-gallery-image-hover-zoom  {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

/* tt-Gallery video */
.tt-gallery-video-wrap {
	position: relative;
}
.tt-gallery-video-wrap::before {
	position: absolute;
	bottom: 5%;
	right: 5%;
	font-size: 19px;
	color: #FFF;
	z-index: 2;
	opacity: .3;

	/* Font Awesome */
	content: "\f03d";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.tt-gallery-video {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}


/* tt-Gallery item hover 
========================= */
@media (min-width: 768px) {
	/* Clip path (effect only with gaps) */
	.tt-gallery.ttga-hover [class*="ttgr-gap-"]:not(.ttgr-gap-1) .tt-gallery-item-inner {
		clip-path: inset(0 0 0 0);
		overflow: hidden;
		transition: clip-path 0.8s cubic-bezier(0.07, 0.72, 0.29, 0.96);
	}
	.tt-gallery.ttga-hover [class*="ttgr-gap-"]:not(.ttgr-gap-1) .tt-gallery-item:hover .tt-gallery-item-inner {
		clip-path: inset(3% 3% 3% 3%);
	}

	/* Image zoom (".tt-gallery-image-hover-zoom" is added by .js) */
	.tt-gallery.ttga-hover .tt-gallery-image-hover-zoom {
		transition: all 1s cubic-bezier(.165,.84,.44,1);
	}
	.tt-gallery.ttga-hover .tt-gallery-item:hover .tt-gallery-image-hover-zoom {
		transform: scale(1.05);
	}
}


/* ----------------------------------------------------------------------- *
 * Lightgallery (lightbox plugin)
 * More info: http://sachinchoolur.github.io/lightGallery)
/* ----------------------------------------------------------------------- */

/* Lightgallery sub html (image caption) */
.lg-sub-html {
	font-size: 14px;
}
@media (max-width : 992px) {
	.lg-sub-html {
		padding: 10px 10px 40px 10px;
		font-size: 14px;
	}
}

.lg-sub-html p {
	display: inline-block;
	max-width: 1000px;
	font-size: 16px;
}

/* Lightgallery thumbnails improvements */
.lg-outer .lg-thumb {
	margin-left: auto;
	margin-right: auto;
}
.lg-outer .lg-thumb-item {
	position: relative;
	border: none;
	border-radius: 0;
	opacity: .4;
	transition: all .3s ease;
}
.lg-outer .lg-thumb-item.active, 
.lg-outer .lg-thumb-item:hover {
	opacity: 1;
}
.lg-outer .lg-thumb-item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/* Lightgallery autoplay progress bar improvements */
.lg-progress-bar {
	background-color: #333;
	height: 3px;
}
.lg-progress-bar .lg-progress {
	background-color: #a90707;
	height: 3px;
}

/* hide next/prev buttons on small screens */
@media (max-width: 768px) {
	.lg-actions .lg-next, .lg-actions .lg-prev {
		display: none;
	}
}




/* ------------------------------------------------------------- *
 * Buttons
/* ------------------------------------------------------------- */

button {
	background-color: transparent;
	cursor: pointer;
	border: none;
}

.tt-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	background-color: transparent;
	margin: 15px 15px 15px 0;
	padding: 0 30px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	font-weight: 500;
	overflow: hidden;
	cursor: pointer;
	border: none;
	border-radius: 100px;
	z-index: 9;
}
.tt-btn:last-child {
	margin-right: 0;
}
.tt-btn &gt; * {
	position: relative;
	color: #FFF;
	transition: transform 0.3s;
}
.tt-btn &gt; *,
.tt-btn &gt; *::after {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	line-height: 1;
}
.tt-btn &gt; *::after {
	position: absolute;
	content: attr(data-hover);
	top: 100%;
	width: 100%;
	left: 0;
	padding-left: 0;
	padding-right: 0;
}
.tt-btn:hover &gt; *:not(.tt-btn-icon) {
	transform: translate3d(0, -100%, 0);
}

/* Button icon (works with "tt-btn-link" only!) */
.tt-btn-icon {
	display: inline-flex;
}
.tt-btn-icon:first-child {
	margin-right: 10px;
}
.tt-btn-icon:last-child {
	margin-left: 10px;
}


/* Button styles 
================= */
/* Button full width */
.tt-btn-full {
	display: flex;
	width: 100%;
	text-align: center;
}

/* Button round */
.tt-btn-round {
	width: 110px;
	height: 110px;
}
@media (max-width: 1024px) {
	.tt-btn-round {
		width: 100px;
		height: 100px;
	}
}
.tt-btn-round &gt; * {
	max-width: 75%;
	padding: 0;
	line-height: 1.4;
}
.tt-btn-round &gt; *::after {
	width: 100;
	line-height: 1.4;
}

/* Button primary */
.tt-btn-primary {
	background-color: var(--tt-main-color);
}
.tt-btn-primary &gt; *,
.tt-btn-primary &gt; *::after {
	color: #FFF;
}
.tt-btn-primary:hover &gt; * {
	color: #FFF;
}

/* Button primary outline */
.tt-btn-primary-outline {
	box-shadow: inset 0 0 0 2px var(--tt-main-color);
}
.tt-btn-primary-outline &gt; *,
.tt-btn-primary-outline &gt; *::after {
	color: var(--tt-main-color);
}
.tt-btn-primary-outline:hover &gt; * {
	color: var(--tt-main-color);
}

/* Button light */
.tt-btn-light {
	background-color: #FFF;
}
.tt-btn-light &gt; *,
.tt-btn-light &gt; *::after {
	color: #111;
}
.tt-btn-light:hover &gt; * {
	color: #111;
}

/* Button light outline */
.tt-btn-light-outline {
	box-shadow: inset 0 0 0 2px #FFF;
}
.tt-btn-light-outline &gt; *,
.tt-btn-light-outline &gt; *::after {
	color: #FFF;
}
.tt-btn-light-outline:hover &gt; * {
	color: #FFF;
}

/* Button dark */
.tt-btn-dark {
	background-color: #292929;
}
.tt-btn-dark &gt; *,
.tt-btn-dark &gt; *::after {
	color: #FFF;
}
.tt-btn-dark:hover &gt; * {
	color: #FFF;
}

/* Button dark outline */
.tt-btn-dark-outline {
	box-shadow: inset 0 0 0 2px #222;
}
.tt-btn-dark-outline &gt; *,
.tt-btn-dark-outline &gt; *::after {
	color: #222;
}
.tt-btn-dark-outline:hover &gt; * {
	color: #222;
}

/* Button link */
.tt-btn-link {
	padding: 0;
	align-items: center;
	font-weight: normal;
	border-radius: 0;
}
.tt-btn-link &gt; *,
.tt-btn-link &gt; *::after {
	padding: 0;
	line-height: 1.6;
	color: #FFF;
}
.tt-btn-link:hover &gt; *,
.tt-btn-link:hover &gt; *::after {
	color: #FFF;
}


/* Button line (alternative to the icon)
=============== */
.tt-btn-line {
	display: inline-block;
	width: 40px;
	height: 1px;
	background-color: #FFF;
	margin-top: 2px;
}
body:not(.is-mobile) .tt-btn:hover .tt-btn-line {
	animation: swipe-line .8s cubic-bezier(0.475, 0.425, 0, 0.995) forwards;
}

@keyframes swipe-line {
	0% {
		transform-origin: right;
		transform: scale(1); 
	}
	33% {
		transform-origin: right;
		transform: scaleX(0); 
	}
	66% {
		transform-origin: left;
		transform: scaleX(0); 
	}
	to {
		transform-origin: left;
		transform: scale(1); } 
}

/* Button disabled */
.tt-btn.tt-btn-disabled {
	opacity: .4;
	cursor: not-allowed;
}


/* Scrolling button
==================== */
.tt-scrolling-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 300px;
	height: 300px;
	line-height: 0;
	z-index: 9;
}
@media (max-width: 991px) {
	.tt-scrolling-btn {
		transform: scale(.8);
	}
}
@media (max-width: 380px) {
	.tt-scrolling-btn {
		transform: scale(.7);
	}
}

/* Scrolling button icon */
.scr-btn-icon {
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	font-size: 18px;
	color: #999;
	transform: translate(-50%, -50%);
	transition: color .2s;
}
.tt-scrolling-btn:hover .scr-btn-icon {
	color: #FFF;
}

/* Scrolling button spinner */
.scr-btn-spinner {
}
.tt-scrolling-btn svg { 
	width: 100%;
}

/* Scrolling button text (Note: If you change the scrolling button text, you probably need to adjust this CSS so that your text fits correctly!) */
.scr-btn-text { 
	font-size: 41px;
	font-weight: bold;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 13px;
	fill: #BBB;
	transition: fill .2s;
}
.tt-scrolling-btn:hover .scr-btn-text { 
	fill: #FFF; 
}

/* ------------------------------------------------------------- *
 * tt-Arrows
/* ------------------------------------------------------------- */

[class*="tt-arrow"] {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 2px;
	box-shadow: inset 0 0 0 40px;
	margin: 10px;
	color: #FFF;
}

[class*="tt-arrow"]:before, 
[class*="tt-arrow"]:after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	width: 12px;
	height: 2px;
	box-shadow: inset 0 0 0 40px;
}
[class*="tt-arrow"]:before {
	top: 0px;
	transform: rotate(-45deg);
	transform-origin: bottom left;
}
[class*="tt-arrow"]:after {
	bottom: 0px;
	transform: rotate(45deg);
	transform-origin: top left;
}

.tt-arrow-left {
	/* Left is devault angle */
}
.tt-arrow-right {
	transform: rotate(180deg);
}
.tt-arrow-up {
	transform: rotate(90deg);
}
.tt-arrow-down {
	transform: rotate(270deg);
}
.tt-arrow-left-up {
	transform: rotate(45deg);
}
.tt-arrow-left-down {
	transform: rotate(320deg);
}
.tt-arrow-right-up {
	transform: rotate(135deg);
}
.tt-arrow-right-down {
	transform: rotate(225deg);
}


.mos-img img{
	display: none;
}
.mos-img{
	padding-top: 10px;
}
 .pgi-category a, .pli-category a {
	color: #ccc;
}

.darkcolor, .darkcolor a {
  color: #111;
}
.mx-icon-zooms {
	z-index: 160;
	position: absolute;
	top: 20px;
	right: 20px;
	transition: all 300ms linear;
	opacity: 0;
}

.mx-icon-zoom {
	padding-top: 18px;
	padding-left: 20px;
	font-size: 18px;
	background-color: var(--tt-main-color);
	color: #fff;
	height: 60px;
	width: 60px;
	border-radius: 50px;
}
.ttgr-item-inner:hover .mx-icon-zooms{
	opacity: 1;
}
.mx-icon-zoom:hover {
	background-color: var(--tt-main-bg-color);
	color: #fff;
}
.mx-icon-zoomleft {
	position: absolute;
	z-index: 100;
	top: 22px;
	left: 22px;
	opacity: 0;
	transition: all 200ms linear;
}


.portfolio-list .portfolio-list-item:hover .mx-icon-zooms {
	opacity: 1;
	top: 95px;
	right: 75px;
}
@media (max-width: 768px) {
.portfolio-list .portfolio-list-item:hover .mx-icon-zooms {
	opacity: 1;
	top: 40px;
	right: 20px;
}
}
.portfolio-split-item:hover .mx-icon-zoomleft {
	opacity: 1;
	left: -65px;
}
 .portfolio-interactive-item:hover .mx-icon-zoomleft {
	opacity: 1;
	left: -65px;
}

.elegantgallery figure{
	margin: 0px;
}</pre></body></html>