/* --------------------------------------------------------------------
*
* Elements Stylesheet
* 
* Template:		Hektor - Creative Agency and Portfolio HTML Website Template
* Author:		Themetorium
* URL:			https://themetorium.net/
*
-------------------------------------------------------------------- */


/* Table of Content
====================
* 
* Table
* Blockquote
* Buttons
* Social buttons
* Forms
* tt-List
* tt-Headings (custom headings)
* Split box
* Accordion
* Avards list
* Scrolling text
* Logo wall
* tt-Pagination
* Testimonials list
* tt-Image
* tt-video
* tt-Embed
* tt-Gallery 
* tt-Clipper
* Moving images
* Sticky horizontal scroll
* Content slider 
* Content carousel 
* Portfolio carousel
* Team list
* 
*/ 



/* ------------------------------------------------------------- *
 * Table
/* ------------------------------------------------------------- */

table {
	width: 100%;
	empty-cells: show;
	word-wrap: break-word;
	margin: 0 0 30px 0;
	text-align: left;
	font-size: 16px;
	border-spacing: 0;
	border-collapse: collapse;
	border: none;
}
th {
	font-weight: bold;
	font-weight: 600;
}
th, 
td {
	padding: 8px 5px;
	font-size: 16px;
	vertical-align: middle;
}

table th, 
table td {
	border: 1px solid rgb(120 120 120 / 25%);
}
table tbody tr:nth-of-type(odd) {
	background-color: rgb(133 133 133 / 5%);
}

/* thead */
table thead {
	background-color: rgb(133 133 133 / 15%);
}
table thead th, 
table thead td {
	padding: 12px 20px;
}

/* tbody */
table tbody th, 
table tbody td {
	padding: 12px 20px;
}

/* tfoot */
table tfoot {
	background-color: rgb(133 133 133 / 15%);
}
table tfoot th, 
table tfoot td {
	padding: 12px 20px;
}

/* caption */
table caption {
	caption-side: bottom;
	padding: 20px 10px;
	font-weight: bold;
	font-weight: 500;
}


/* ------------------------------------------------------------- *
 * Blockquote
/* ------------------------------------------------------------- */

blockquote {
	position: relative;
	margin: 40px 5%;
	padding-left: 50px;
	font-size: 24px;
	font-style: italic;
	font-weight: 500;
	text-wrap: pretty;
	border-left: 4px solid #3e3e3e;
}
@media (max-width: 768px) {
	blockquote {
		margin-left: 0;
		margin-right: 0;
	}
}
blockquote.open-quote {
	border: none;
}
blockquote.open-quote::before {
	position: absolute;
	content: "\275D";
	top: 3px;
	left: 0;
	font-size: 58px;
	font-weight: 500;
	font-style: normal;
	line-height: 1;
}
blockquote footer {
	display: block;
	margin-top: 20px;
	font-size: 80%;
	font-style: normal;
	color: var(--tt-text-muted-color);
}
blockquote footer a {
	color: var(--tt-text-muted-color);
}
blockquote footer a:hover,
blockquote footer a:focus {
	color: var(--tt-text-muted-color);
}
blockquote footer::before {
	display: inline-block;
	content: "";
	width: 20px;
	height: 2px;
	background-color: var(--tt-text-muted-color);
	margin: 0 10px 5px 0;
}


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

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

.tt-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 55px;
	background-color: transparent;
	margin: 12px 3px;
	padding: 0 30px;
	text-align: center;
	font-family: var(--tt-body-font);
	font-size: 17px;
	font-weight: 500;
	overflow: hidden;
	cursor: pointer;
	border: none;
	border-radius: 100px;
	z-index: 9;
}

.tt-btn-inner { /* Added by .js */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto;
	overflow: hidden;
	line-height: 1;
}

.tt-btn-inner > * {
	position: relative;
	padding: 5px 0;
	transition: transform 0.3s;
}
.tt-btn-inner > *,
.tt-btn-inner > *::after {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.tt-btn-inner > *::after {
	position: absolute;
	content: attr(data-hover);
	top: 100%;
	width: 100%;
	left: 0;
	padding-left: 0;
	padding-right: 0;
}
.tt-btn:hover .tt-btn-inner > *:not(.tt-btn-icon) {
	transform: translate3d(0, -100%, 0);
}

/* Button icon */
.tt-btn-icon {
	display: inline-flex;
	font-size: 130%;
}
.tt-btn-icon:first-child {
	margin-right: 12px;
}
.tt-btn-icon:last-child {
	margin-left: 12px;
}

/* Magnetic button */
.tt-magnetic-btn {
	display: inline-block;
	margin: 12px 7px;
}
.tt-magnetic-btn .tt-btn {
	margin: 0;
}


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

/* Button round */
.tt-btn-round {
	width: 120px;
	height: 120px;
	padding: 0;
}
@media (max-width: 1024px) {
	.tt-btn-round {
		width: 100px;
		height: 100px;
	}
}
.tt-btn-round .tt-btn-inner > * {
   padding: 10px 0;
}

/* Button primary */
.tt-btn-primary {
	background-color: var(--tt-primary-btn-bg-color);
}
.tt-btn-primary > *,
.tt-btn-primary > *::after {
	color: var(--tt-primary-btn-color);
}

/* Button secondary */
.tt-btn-secondary {
	background-color: var(--tt-dark-color);
}
.tt-btn-secondary > *,
.tt-btn-secondary > *::after {
	color: var(--tt-light-color);
}

/* Button outline */
.tt-btn-outline {
	box-shadow: inset 0 0 0 2px var(--tt-dark-color), 2px 4px 0 -1px var(--tt-dark-color);
}
.tt-btn-outline > *,
.tt-btn-outline > *::after {
	color: var(--tt-dark-color);
}

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

/* Button link */
.tt-btn-link {
	height: auto;
	padding: 0;
	align-items: center;
	text-transform: none;
	font-size: 17px;
	font-weight: normal;
	letter-spacing: 0;
	border-radius: 0;
}
.tt-btn-link > *,
.tt-btn-link > *::after {
	padding: 0;
	color: var(--tt-text-color);
}


/* Button line (alternative to the icon)
=============== */
.tt-btn-line {
	display: inline-block;
	width: 40px;
	height: 2px;
	background-color: var(--tt-text-color);
	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: .2;
	cursor: not-allowed;
}


/* ------------------------------------------------------------- *
 * Social buttons
/* ------------------------------------------------------------- */

.tt-social-buttons {
}
.tt-social-buttons ul {
	display: inline-flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}
.tt-social-buttons ul > li {
	margin: 2px;
}

.tt-social-buttons > ul > li a {
	display: flex;
	align-items: center;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	text-decoration: none;
	font-size: 19px;
	color: var(--tt-text-color);
}


/* Social buttons inline layout
================================ */
.tt-social-buttons.tt-sbtn-inline > ul {
	flex-direction: row;
	flex-wrap: wrap;
}
.tt-social-buttons.tt-sbtn-inline ul > li:first-child {
	margin-left: 0;
}
.tt-social-buttons.tt-sbtn-inline ul > li:last-child {
	margin-right: 0;
}


/* Social buttons styles
========================= */
/* Bordered syle */
@media (min-width: 992px) {
	.tt-social-buttons.tt-sbtn-bordered ul > li {
		margin: 4px;
	}
}
.tt-social-buttons.tt-sbtn-bordered > ul > li a {
	width: 50px;
	height: 50px;
	font-size: 16px;
	color: var(--tt-text-color);
	border-radius: 100px;
	border: 2px solid var(--tt-text-color);
}

/* Filled syle */
@media (min-width: 992px) {
	.tt-social-buttons.tt-sbtn-filled ul > li {
		margin: 4px;
	}
}
.tt-social-buttons.tt-sbtn-filled > ul > li a {
	width: 50px;
	height: 50px;
	background-color: #fff; 
	font-size: 16px;
	color: #0007a3;
	border-radius: 100px;
	border: none;
}


/* ------------------------------------------------------------- *
 * Forms
/* ------------------------------------------------------------- */

.tt-form {
	position: relative;
}

.tt-form-control {
	display: block;
	width: 100%;
	background-color: var(--tt-accent-bg-color);
	padding: 5px 15px;
	font-family: inherit;
	font-size: 19px;
	font-weight: normal;
	color: inherit;
	border: 2px solid var(--tt-border-color);
	border-radius: clamp(5px, 2vw, 10px);
}
.tt-form-control:focus {
	color: inherit;
	border-color: var(--tt-dark-color);
	outline: none;
	box-shadow: none;
}
.tt-form-control + .tt-form-control {
	margin-top: 20px;
}
.tt-form-control:disabled, .tt-form-control[readonly] {
	background-color: rgb(176 176 176 / 6%);
	opacity: .5;
	cursor: not-allowed;
}

.tt-form-control:not(textarea):not([size]) { /* tt-form-control height */
	height: 56px;
}

.tt-form-text {
	display: block;
	margin-top: 5px;
	font-style: italic;
	opacity: .6;
}

label {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 19px;
	font-weight: bold;
	font-weight: 500;
}
label .required {
	display: inline-block;
	font-size: 15px;
	transform: translateY(-5px);
}

::placeholder {
	color: var(--tt-text-color);
	opacity: .6;
}
::-webkit-input-placeholder {
	color: var(--tt-text-color);
	opacity: .6;
}
:-moz-placeholder {
	color: var(--tt-text-color);
	opacity: .6;
}
::-moz-placeholder {
	color: var(--tt-text-color);
	opacity: .6;
}
:-ms-input-placeholder {
	color: var(--tt-text-color);
	opacity: .6;
}

/* form group */
.tt-form-group {
	position: relative;
	margin-bottom: 30px;
}

/* checkbox/radio */
input[type=checkbox], 
input[type=radio] {
	box-sizing: border-box;
	padding: 0;
	cursor: pointer;
}

/* textarea */
textarea,
textarea.tt-form-control {
	padding: 15px
	resize: vertical;
}

/* select */
select {
	cursor: pointer;
}
select option {
	background-color: var(--tt-accent-bg-color);
	color: var(--tt-text-color);
}
select option[value=""][disabled] {
	display: none;
}
select[multiple] option {
	background-color: transparent;
	color: #666;
}
select option[disabled],
select[multiple] option[disabled] {
	color: var(--tt-text-color);
	color: #666;
}
select:invalid {
	color: inherit;
	opacity: .7;
}

/* range slider */
input[type=range] {
	width: 100%;
}


/* Custom forms 
================= */
/* Custom checkbox/radio */
.tt-form-check,
.tt-form-radio {
	position: relative;
	display: block;
	margin: 8px 0 0 5px;
}

.tt-form-check input,
.tt-form-radio input {
	position: absolute;
	top: 50%;
	opacity: 0;
	cursor: pointer;
	transform: translate3d(0, -50%, 0);
}

.tt-form-check label,
.tt-form-radio label {
	position: relative;
	margin-bottom: 0;
	padding-left: 30px;
	vertical-align: top;
	font-size: 19px;
	font-weight: normal;
	cursor: pointer;
}
.tt-form-check label::before,
.tt-form-radio label::before {
	position: absolute;
	top: 3px;
	left: -0;
	display: block;
	width: 20px;
	height: 20px;
	pointer-events: none;
	content: "";
	background-color: var(--tt-dark-color);
	border-radius: 3px;
	transition: background-color 0.2s;
}
.tt-form-check:hover label::before,
.tt-form-radio:hover label::before {
	opacity: .9;
}
.tt-form-check label::after,
.tt-form-radio label::after {
	position: absolute;
	display: none;
	content: "";
	top: 8px;
	left: 7px;
	width: 4px;
	height: 6px;
	border: solid var(--tt-light-color);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.tt-form-check input:checked ~ label::after,
.tt-form-radio input:checked ~ label::after {
   display: block;
}

.tt-form-radio label::before {
	border-radius: 100px;
}
.tt-form-radio label::after {
	top: 10px;
	left: 7px;
	width: 4px;
	height: 4px;
	background-color: var(--tt-light-color);
	border-radius: 100%;
}

.tt-form-check input:disabled,
.tt-form-radio input:disabled {
	cursor: not-allowed;
}
.tt-form-check input:disabled ~ label,
.tt-form-radio input:disabled ~ label {
	cursor: not-allowed;
	opacity: .3;
}

.tt-form-check.tt-form-check-inline,
.tt-form-radio.tt-form-radio-inline {
	display: inline-block;
	margin-right: 10px;
}

/* Custom file upload */
.tt-form-file {
}
.btn-file {
	vertical-align: middle;
}
.btn-file > * input {
	position: absolute;
	left: 50%;
	width: 1%;
	opacity: 0;
}
.tt-file-info {
	width: 75%;
	background-color: transparent;
	border: none;
	outline: none;
	font-size: 14px;
	color: #777;
	line-height: 1;
}

/* Custom form with button inside */
.tt-form-btn-inside {
	position: relative;
}
.tt-form-btn-inside-field {
	position: relative;
}
.tt-form-btn-inside .tt-form-control {
	padding-right: 60px !important;
}
.tt-form-btn-inside button {
	position: absolute;
	top: 1px;
	right: 1px;
	width: 60px;
	height: 54px;
	background-color: transparent;
	font-size: 19px;
	color: var(--tt-text-color);
	border: none;
	outline: none;
	cursor: pointer;
	z-index: 9;
	border-radius: 0 8px 8px 0;
}
.tt-form-btn-inside button:hover {
	opacity: .8;
}


/* Form extra styles 
===================== */
/* form style filled */
.tt-form-filled label {
}
.tt-form-filled .tt-form-control {
	background-color: rgb(136 136 136 / 20%);
	border: none;
}
.tt-form-filled .tt-form-control:focus {
	box-shadow: inset 0 0 0 1px rgb(136 136 136 / 60%);
}
.tt-form-filled .tt-form-control:disabled, 
.tt-form-filled .tt-form-control[readonly] {
	opacity: .3;
}

/* form style minimal */
.tt-form-minimal .tt-form-group {
}
.tt-form-minimal .tt-form-group > label {
	display: none;
}
.tt-form-minimal .tt-form-control {
	background-color: transparent;
	padding-left: 0;
	padding-right: 0;
	border-width: 0 0 2px 0;
	border-style: solid;
	border-radius: 0;
}
.tt-form-minimal .tt-form-control:focus {
}
.tt-form-minimal .tt-form-control:disabled, 
.tt-form-minimal .tt-form-control[readonly] {
	opacity: .5;
}
.tt-form-minimal .tt-form-control {
	border-color: var(--tt-border-color);
}

.tt-form-minimal select.tt-form-control {
	color: var(--tt-text-color);
}

.tt-form-minimal ::placeholder {
	color: var(--tt-text-color);
}
.tt-form-minimal ::-webkit-input-placeholder {
	color: var(--tt-text-color);
}
.tt-form-minimal :-moz-placeholder {
	color: var(--tt-text-color);
}
.tt-form-minimal ::-moz-placeholder {
	color: var(--tt-text-color);
}
.tt-form-minimal :-ms-input-placeholder {
	color: var(--tt-text-color);
}

/* form style creative */
.tt-form-creative {
}
.tt-form-creative .tt-form-group.tt-fg-typing {
}
.tt-form-creative .tt-form-group {
	position: relative;
	background-color: var(--tt-accent-bg-color);
	padding: 25px 15px 20px 25px;
	margin: 0 0 20px 0;
	border-radius: clamp(10px, 2vw, 15px);
	border-width: 2px;
	border-style: solid;
	border-color: var(--tt-border-color);
	box-shadow: 7px 7px 0 -2px var(--tt-shadow-color);
}

.tt-form-creative .tt-form-group label {
	margin: 0;
	padding-bottom: 10px;
	transition: opacity .3s;
}
.tt-form-creative .tt-fg-typing label {
	opacity: .3;
}
.tt-form-creative .tt-form-check label, 
.tt-form-creative .tt-form-radio label {
   margin-bottom: 0 !important;
   padding-bottom: 0 !important;
}

.tt-form-creative .tt-form-control {
	background-color: transparent;
	padding: 10px 5px 10px 0;
	border: none;
	border-radius: 4px;
}
.tt-form-creative .tt-form-control:not(textarea):not([size]) { /* tt-form-control height */
	height: auto !important;
}

.tt-form-creative .tt-form-control:disabled, 
.tt-form-creative .tt-form-control[readonly] {
	background-color: transparent;
	opacity: .4;
}

.tt-form-creative .tt-form-text {
	margin-bottom: 10px;
	transition: opacity .3s;
}
.tt-form-creative .tt-fg-typing .tt-form-text {
	opacity: .3;
}

.tt-form-creative .tt-form-btn-inside button[type="submit"] {
	top: 0px;
	right: 0px;
	height: 44px;
	width: 44px;
	background-color: var(--tt-dark-color);
	margin-top: 0;
	padding: 0;
	color: var(--tt-light-color);
	border-radius: 100px;
}
.tt-form-creative .tt-form-btn-inside button[type="submit"]:hover {
	opacity: .8;
}

/* form style tilted (works only with class "tt-form-creative") */
.tt-form-creative.tt-form-tilted .tt-form-group {
	margin-bottom: 5px;
}
.tt-form-creative.tt-form-tilted .tt-form-group:nth-child(odd) {
	transform: rotate(1deg);
}
.tt-form-creative.tt-form-tilted .tt-form-group:nth-child(even) {
	transform: rotate(-1deg);
}


/* Form counter (effect only with class "tt-form-creative") 
================ */
.tt-form-creative.tt-form-counter {
	counter-reset: tt-form-creative-counter;
}
.tt-form-creative.tt-form-counter:has(.tt-form-group:nth-of-type(2)) .tt-form-group {
	counter-increment: tt-form-creative-counter;
	padding-left: 50px;
}
.tt-form-creative.tt-form-counter:has(.tt-form-group:nth-of-type(2)) .tt-form-group::before {
	position: absolute;
	content: counter(tt-form-creative-counter, decimal-leading-zero);
	left: 12px;
	top: 12px;
	font-size: 14px;
	line-height: 1;
}


/* Form sizes 
============== */
/* form sm */
.tt-form-sm .tt-form-control {
	font-size: 16px;
}
.tt-form-sm .tt-form-control:not(textarea):not([size]) {
	height: 48px;
}

.tt-form-sm ::placeholder {
	font-size: 16px;
}
.tt-form-sm ::-webkit-input-placeholder {
	font-size: 16px;
}
.tt-form-sm :-moz-placeholder {
	font-size: 16px;
}
.tt-form-sm ::-moz-placeholder {
	font-size: 16px;
}
.tt-form-sm :-ms-input-placeholder {
	font-size: 16px;
}

.tt-form-sm label:not(.tt-btn) {
	font-size: 16px;
}

.tt-form-sm .tt-btn {
	height: 46px;
	font-size: 15px;
}
.tt-form-sm .tt-form-btn-inside button {
	height: 42px;
}

.tt-form-sm.tt-form-creative .tt-form-group {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
}
.tt-form-sm.tt-form-creative .tt-form-group label {
	padding-bottom: 5px;
}
.tt-form-sm.tt-form-creative .tt-form-btn-inside button[type="submit"] {
	top: 5px;
}

/* form lg */
.tt-form-lg .tt-form-control {
}
.tt-form-lg .tt-form-control:not(textarea):not([size]) {
	height: 68px;
}

@media (min-width: 768px) {
	.tt-form-lg .tt-form-group label:not(.tt-btn) {
		font-size: 24px;
	}

	.tt-form-lg .tt-form-control {
		font-size: 21px;
	}
	.tt-form-lg ::placeholder {
		font-size: 21px;
	}
	.tt-form-lg ::-webkit-input-placeholder {
		font-size: 21px;
	}
	.tt-form-lg :-moz-placeholder {
		font-size: 21px;
	}
	.tt-form-lg ::-moz-placeholder {
		font-size: 21px;
	}
	.tt-form-lg :-ms-input-placeholder {
		font-size: 21px;
	}
}

.tt-form-lg .tt-btn {
	font-size: 19px;
}
.tt-form-lg .tt-form-btn-inside button {
	height: 68px;
}

.tt-form-lg.tt-form-creative .tt-form-group {
	padding-top: 30px;
	padding-right: 15px;
	padding-bottom: 25px;
}
.tt-form-lg.tt-form-creative .tt-form-group label {
	padding-bottom: 15px;
}


/* ------------------------------------------------------------- *
 * tt-List
/* ------------------------------------------------------------- */

/* List unstyled */
ul.list-unstyled {
	padding-left: 0;
	list-style: none;
}

/* tt-List */
ul.tt-list {
	margin: 0;
	padding: 0 0 0 5px;
	list-style: none;
}
ul.tt-list > li {
	margin-bottom: 6px;
}
ul.tt-list a,
ul.tt-list a:hover,
ul.tt-list a:focus {
	color: currentColor;
}

/* List inline */
ul.list-inline {
	padding-left: 0;
	margin-left: -5px;
	list-style: none;
}
ul.list-inline > li {
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
}


/* ------------------------------------------------------------- *
 * tt-Headings (custom headings)
/* ------------------------------------------------------------- */

.tt-heading {
	position: relative;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 30px;
	z-index: 9;
}
@media (max-width: 991px) {
	.tt-heading {
		margin-bottom: 30px;
	}
}
.tt-wrap .tt-heading {
	padding-left: 0;
	padding-right: 0;
}

/* tt-Headings title */
.tt-heading-title {
	margin: 0;
	font-size: clamp(32px, 3vw, 42px);
	font-weight: bold;
	font-weight: 600;
	line-height: 1.15;
}
@media (max-width: 991px) {
	.tt-heading-title br {
		display: none;
	}
}

.tt-heading-title a,
.tt-heading-title a:hover,
.tt-heading-title a:focus {
	color: currentColor;
}

/* tt-Headings subtitle */
.tt-heading-subtitle {
	margin: 0 0 30px 0;
	font-size: calc(15px + 0.2vw);
	font-weight: bold;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1.2;
}
@media (max-width: 991px) {
	.tt-heading-subtitle br {
		display: none;
	}
}
.tt-heading-title + .tt-heading-subtitle {
	margin: 15px 0 0 0 !important;
}

/* tt-Headings paragraph */
.tt-heading-title + p,
.tt-heading-subtitle + p {
	margin-top: 30px;
}
.tt-heading > p:last-child {
	margin-bottom: 0 !important;
}
@media (max-width: 991px) {
	.tt-heading p br {
		display: none;
	}
}


/* tt-Headings positions center 
================================ */
.tt-heading.tt-heading-center {
	display: flex;
	text-align: center;
	flex-direction: column;
	align-items: center;
	text-align: center;
}


/* tt-Headings sizes 
===================== */
/* size xsm */
.tt-heading.tt-heading-xsm .tt-heading-title {
	font-size: clamp(24px, 2vw, 26px);
}
.tt-heading.tt-heading-xsm .tt-heading-subtitle {
	font-size: calc(12px + 0.1vw);
}

/* size sm */
.tt-heading.tt-heading-sm .tt-heading-title {
	font-size: clamp(26px, 2vw, 34px);
}
.tt-heading.tt-heading-sm .tt-heading-subtitle {
	font-size: calc(14px + 0.1vw);
}

/* size lg */
.tt-heading.tt-heading-lg .tt-heading-title {
	font-size: clamp(36px, 4vw, 62px);
}

/* size xlg */
.tt-heading.tt-heading-xlg .tt-heading-title {
	font-size: clamp(52px, 5vw, 82px);
}
@media (min-width: 992px) {
	.tt-heading.tt-heading-xlg .tt-heading-title + p,
	.tt-heading.tt-heading-xlg .tt-heading-subtitle + p {
		margin-top: 30px;
	}
}

/* size xxlg */
.tt-heading.tt-heading-xxlg .tt-heading-title {
	font-size: clamp(52px, 6vw, 110px);
}
@media (min-width: 992px) {
	.tt-heading.tt-heading-xxlg .tt-heading-title + p,
	.tt-heading.tt-heading-xxlg .tt-heading-subtitle + p {
		margin-top: 30px;
	}
}

/* size xxxlg */
.tt-heading.tt-heading-xxxlg .tt-heading-title {
	font-size: clamp(54px, 10vw, 187px);
}
@media (min-width: 992px) {
	.tt-heading.tt-heading-xxxlg .tt-heading-title + p,
	.tt-heading.tt-heading-xxxlg .tt-heading-subtitle + p {
		margin-top: 30px;
	}
}


/* ------------------------------------------------------------- *
 * Split box
/* ------------------------------------------------------------- */

.tt-split-box {
	position: relative;
}
.tt-wrap .tt-split-box {
	margin-bottom: 60px;
}

/* Split box columns */
.tt-split-box [class*="tt-col-"] {
	padding: 0;
}
.tt-wrap .tt-split-box [class*="tt-col-"] {
	padding-left: 15px;
	padding-right: 15px;
}

/* Split box content */
@media (min-width: 1025px) {
	.tt-split-box-content {
		padding: 10%;
	}
	.tt-wrap .tt-split-box-content {
		padding: 10% 0 10% 7%;
	}
}
@media (max-width: 1024px) {
	.tt-split-box-content {
		padding: 40px 5% 7% 5%;
	}
	.tt-wrap .tt-split-box-content {
		padding: 40px 2% 0 2%;
	}
}

.tt-split-box-title {
	margin: 0 0 30px 0;
	font-size: clamp(32px, 3vw, 42px);
	font-weight: bold;
	font-weight: 600;
	color: var(--tt-text-color);
	line-height: 1;
}
.tt-split-box-text {
	max-width: 800px;
}

/* Split box image */
.tt-split-box-image {
	position: relative;
	overflow: hidden;
}
.tt-split-box-image-inner {
	position: relative;
}
.tt-split-box-image img {
	display: block;
	width: 100%;
	height: auto;
}


/* Split box image custom height
================================= */
.tt-split-box[class*="tt-spx-image-"] .tt-split-box-image {
	height: 100%;
}
.tt-split-box[class*="tt-spx-image-"] .tt-split-box-image::after {
	content: "";
	display: block;
	width: 100%;
}
.tt-split-box.tt-spx-image-1 .tt-split-box-image::after {
	padding-bottom: 75%;
}
.tt-split-box.tt-spx-image-2 .tt-split-box-image::after {
	padding-bottom: 100%;
}
.tt-split-box.tt-spx-image-3 .tt-split-box-image::after {
	padding-bottom: 130%;
}
.tt-split-box[class*="tt-spx-image-"] .tt-split-box-image-inner {
	position: absolute;
	inset: 0;
}
.tt-split-box[class*="tt-spx-image-"] .tt-split-box-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

@media (min-width: 1025px) {
	.tt-split-box[class*="tt-spx-image-"] .tt-split-box-content {
		padding-top: 10%;
		padding-bottom: 10%;
	}
}

/* If image parallax and zoom-in enabled */
.tt-split-box[class*="tt-spx-image-"] .tt-anim-zoomin-wrap,
.tt-split-box[class*="tt-spx-image-"] .tt-image-parallax-wrap,
.tt-split-box[class*="tt-spx-image-"] .tt-image-parallax-inner {
	position: absolute;
	inset: 0;
}


/* Split box reverse
===================== */
.tt-split-box.tt-spx-reverse .tt-row {
	flex-direction: row-reverse;
}
@media (min-width: 1025px) {
	.tt-wrap .tt-split-box.tt-spx-reverse .tt-split-box-content {
		padding: 10% 7% 10% 0;
	}
}


/* Split box styles
==================== */

/* Split box boxed style */
.tt-split-box.tt-spx-boxed {
	--_tt-spx-boxed-margin: clamp(10px, 2vw, 18px);
}
.tt-split-box.tt-spx-boxed .tt-split-box-image {
	background-color: var(--tt-accent-bg-color);
	box-shadow: 8px 8px 0 -2px var(--tt-shadow-color);
	border: 2px solid var(--tt-border-color);
}
.tt-split-box.tt-spx-boxed .tt-split-box-image-inner {
	margin: var(--_tt-spx-boxed-margin);
	overflow: hidden;
}

/* Split box tilted style */
.tt-split-box.tt-spx-tilted-1 .tt-split-box-image {
	transform: rotate(1deg);
}
.tt-split-box.tt-spx-tilted-2 .tt-split-box-image {
	transform: rotate(-1deg);
}

/* Split box border radius */
.tt-split-box.tt-spx-border-radius .tt-split-box-image,
.tt-split-box.tt-spx-border-radius .tt-split-box-image-inner {
	border-radius: clamp(10px, 3vw, 20px);
}


/* ------------------------------------------------------------- *
 * Accordion
/* ------------------------------------------------------------- */

.tt-accordion {
}

.tt-accordion-item {
	position: relative;
}


/* Accordion heading 
===================== */
.tt-accordion-heading {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.tt-acc-head {
	position: relative;
	width: 100%;
	padding: 10px 20px 10px 3.5%;
}
@media (min-width: 1600px) {
	.tt-acc-head {
		padding-left: 10.5%;
	}
}
@media (max-width: 768px) {
	.tt-acc-head {
		padding-right: 15px;
	}
}
.tt-wrap .tt-acc-head {
	padding-left: 0;
}
.tt-acc-head-inner {
	position: relative;
}

.tt-acc-head-title {
	margin: 0;
	font-size: clamp(22px, 2vw, 32px);
	font-weight: bold;
	font-weight: 600;
	line-height: 1.3;
	transition: all 0.3s;
}
.tt-acc-head-subtext {
	max-width: 800px;
	margin-top: 10px;
	font-size: 19px;
	font-weight: normal;
	opacity: .7;
}

/* Accordion heading caret */
.tt-accordion-caret {
	margin-right: 3.5%;
}
@media (min-width: 1600px) {
	.tt-accordion-caret {
		margin-right: 10.5%;
	}
}
.tt-wrap .tt-accordion-caret {
	margin-right: 0;
}
.tt-accordion-caret-inner {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	padding: 8px;
	font-size: clamp(21px, 2vw, 26px);
	cursor: pointer;
	outline: none;
	transform: rotate(90deg);
}

.tt-accordion-caret svg {
	fill: var(--tt-text-color);
}

.tt-accordion-item .tt-accordion-caret-inner > * {
	transition: all 0.3s;
}
.tt-accordion-item.active .tt-accordion-caret-inner > * {
	transform: rotate(180deg);
}
.tt-accordion-item.active .tt-accordion-caret-inner > *,
.tt-accordion-item:not(.active) .tt-accordion-heading:hover .tt-accordion-caret-inner > * {
}


/* Accordion counter 
===================== */
.tt-accordion.tt-acc-counter .tt-accordion-item {
	counter-increment: tt-accordion-counter;
}
.tt-accordion.tt-acc-counter .tt-acc-head-inner {
	display: flex;
}
.tt-accordion.tt-acc-counter .tt-acc-head-inner::before {
	position: relative;
	top: 7px;
	display: block;
	content: counter(tt-accordion-counter, decimal-leading-zero);
	margin-right: 15px;
	font-size: 14px;
	font-weight: normal;
	line-height: 1;
}

@media (min-width: 1600px) {
	.tt-accordion.tt-acc-counter .tt-accordion-content {
		padding-left: 11.5%;
		padding-right: 3.5%;
	}
}
@media (min-width: 992px) {
	.tt-wrap .tt-accordion.tt-acc-counter .tt-accordion-content {
		padding-left: 40px;
		padding-right: 40px;
	}
}


/* Accordion content 
===================== */
.tt-accordion-content {
	padding: 15px 3.5% 40px 3.5%;
}
.tt-wrap .tt-accordion-content {
	padding-left: 0;
}

@media (min-width: 1600px) {
	.tt-accordion-content {
		padding: 15px 3.5% 40px 9.8%;
	}
}
@media (max-width: 768px) {
	.tt-accordion-content {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.tt-accordion-content:not(.is-open) {
	display: none;
}


/* Accordion styles 
==================== */
/* Borders style */
.tt-accordion.tt-acc-borders .tt-accordion-heading {
	border-top: 2px solid var(--tt-border-color);
}
.tt-accordion.tt-acc-borders .tt-acc-head {
	padding-top: 20px;
	padding-bottom: 20px;
}
.tt-accordion.tt-acc-borders .tt-accordion-item:last-child {
	border-bottom: 2px solid var(--tt-border-color);
}

/* Boxed style */
.tt-accordion.tt-acc-boxed {
	margin-left: 3%;
	margin-right: 3%;
}
.tt-wrap .tt-accordion.tt-acc-boxed {
	margin-left: 0;
	margin-right: 0;
}

.tt-accordion.tt-acc-boxed .tt-accordion-item {
	margin-bottom: 20px;
	border-radius: clamp(10px, 3vw, 20px);
	border: 2px solid var(--tt-border-color);
	box-shadow: 7px 7px 0 -2px var(--tt-shadow-color);
}
.tt-accordion.tt-acc-boxed .tt-accordion-item,
.tt-accordion.tt-acc-boxed.tt-acc-tilted .tt-accordion-item {
	background-color: var(--tt-accent-bg-color);
}
.tt-accordion.tt-acc-boxed .tt-acc-head {
	padding: 30px 20px 30px 40px;
}
.tt-accordion.tt-acc-boxed .tt-accordion-caret {
	margin-right: 40px;
}
.tt-accordion.tt-acc-boxed .tt-accordion-content {
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 30px;
}

@media (max-width: 768px) {
	.tt-accordion.tt-acc-boxed .tt-acc-head {
		padding: 20px 15px;
	}
	.tt-accordion.tt-acc-boxed .tt-accordion-caret {
		margin-right: 5px;
	}
	.tt-accordion.tt-acc-boxed .tt-accordion-content {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* Tilted style */
.tt-accordion.tt-acc-tilted .tt-accordion-item {
	background-color: var(--tt-bg-color);
	margin-bottom: 0;
}
.tt-accordion.tt-acc-tilted .tt-accordion-item:nth-child(odd) {
	transform: rotate(0.6deg);
}
.tt-accordion.tt-acc-tilted .tt-accordion-item:nth-child(even) {
	transform: rotate(-0.6deg);
}

.tt-wrap .tt-accordion.tt-acc-tilted .tt-accordion-item:nth-child(odd) {
	transform: rotate(0.8deg);
}
.tt-wrap .tt-accordion.tt-acc-tilted .tt-accordion-item:nth-child(even) {
	transform: rotate(-0.8deg);
}

.tt-accordion.tt-acc-tilted .tt-accordion-content {
	padding-bottom: 50px;
}

.tt-accordion.tt-acc-tilted.tt-acc-borders {
	padding-top: 1vw;
	padding-bottom: 1vw;
	overflow: hidden;
}
.tt-accordion.tt-acc-tilted.tt-acc-borders .tt-accordion-item {
	margin-left: -5px;
	margin-right: -5px;
	padding-left: 10px;
	padding-right: 10px;
	border-top: 2px solid var(--tt-border-color);
	border-bottom: 2px solid var(--tt-border-color);
}
.tt-accordion.tt-acc-tilted.tt-acc-borders .tt-accordion-heading {
	border-top: none;
}


/* Accordion sizes 
=================== */
/* sm */
.tt-accordion.tt-acc-sm .tt-acc-head-title {
	font-size: clamp(19px, 2vw, 22px);
}
.tt-accordion.tt-acc-sm .tt-accordion-caret-inner {
	padding: 10px;
}

/* lg */
.tt-accordion.tt-acc-lg .tt-acc-head-title {
	font-size: clamp(24px, 3vw, 42px);
	font-weight: 600;
}
@media (min-width: 1200px) {
	.tt-accordion.tt-acc-lg.tt-acc-borders .tt-acc-head,
	.tt-accordion.tt-acc-lg.tt-acc-boxed .tt-acc-head {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}
@media (min-width: 768px) {
	.tt-accordion.tt-acc-lg .tt-accordion-caret-inner {
		padding: 5px;
	}
}

/* xlg */
.tt-accordion.tt-acc-xlg .tt-acc-head-title {
	font-size: clamp(24px, 4vw, 58px);
	font-weight: 600;
}
.tt-accordion.tt-acc-xlg .tt-accordion-caret-inner {
	padding: 0;
}
@media (min-width: 1200px) {
	.tt-accordion.tt-acc-xlg.tt-acc-borders .tt-acc-head,
	.tt-accordion.tt-acc-xlg.tt-acc-boxed .tt-acc-head {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}
@media (max-width: 768px) {
	.tt-accordion.tt-acc-xlg .tt-accordion-caret-inner {
		padding: 10px;
	}
}

/* xxlg */
.tt-accordion.tt-acc-xxlg .tt-acc-head-title {
	font-size: clamp(24px, 5vw, 78px);
	font-weight: 600;
}
.tt-accordion.tt-acc-xxlg .tt-accordion-caret-inner {
	padding: 0;
}
@media (min-width: 1200px) {
	.tt-accordion.tt-acc-xxlg.tt-acc-borders .tt-acc-head {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.tt-accordion.tt-acc-xxlg.tt-acc-boxed .tt-acc-head {
		padding: 40px 20px 40px 60px;
	}
	.tt-accordion.tt-acc-xxlg .tt-accordion-caret {
		margin-right: 60px;
	}
	.tt-accordion.tt-acc-xxlg.tt-acc-boxed .tt-accordion-content {
		padding-left: 60px;
		padding-right: 60px;
	}
}
@media (max-width: 768px) {
	.tt-accordion.tt-acc-xxlg .tt-accordion-caret-inner {
		padding: 8px;
	}
}


/* ------------------------------------------------------------- *
 * Avards list
/* ------------------------------------------------------------- */

.tt-avards-list {
	position: relative;
}

.tt-avlist-item {
	position: relative;
	display: block;
	counter-increment: tt-avlist-counter;
	padding: 22px 2vw;
	color: var(--tt-text-color);
	overflow: hidden;
	border-top: 2px solid var(--tt-border-color);
	transition: color .3s;
	transition-delay: .1s;
}
.tt-avlist-item:last-child {
	border-bottom: 2px solid var(--tt-border-color);
}

body:not(.is-mobile) .tt-avlist-item:focus {
	color: var(--tt-dark-color);
}
body:not(.is-mobile) .tt-avlist-item:hover,
body:not(.is-mobile) .tt-avlist-item:active  {
	color: var(--tt-light-color);
}
body:not(.is-mobile) .tt-avlist-item:hover *,
body:not(.is-mobile) .tt-avlist-item:focus * {
	opacity: 1;
}
body:not(.is-mobile) .tt-avlist-item::before {
	position: absolute;
	display: block;
	content: "";
	top: -2px;
	left: 0;
	right: 0;
	bottom: -2px;
	width: 100%;
	background-color: var(--tt-dark-color);
	z-index: 1;
	clip-path: inset(50% 0);
	transition: clip-path .3s ease-in-out;
	will-change: clip-path;
}
body:not(.is-mobile) .tt-avlist-item:hover::before {
	clip-path: inset(0 0);
}
body.is-mobile .tt-avlist-item:hover,
body.is-mobile .tt-avlist-item:focus {
	color: var(--tt-text-color);
}

.tt-wrap .tt-avlist-item {
	border-radius: 4px;
	overflow: hidden;
}
.tt-avlist-item-inner {
	position: relative;
	max-width: 1600px;
	margin: auto;
	z-index: 2;
}

.tt-avlist-col {
	position: relative;
}

.tt-avlist-count::before {
	display: block;
	content: counter(tt-avlist-counter, decimal-leading-zero);
	font-size: 14px;
	line-height: 1;
}

.tt-avlist-title {
	margin: 0;
	padding: 0;
	font-family: var(--tt-body-font);
	font-size: 19px;
	font-weight: 600;
}

.tt-avlist-description,
.tt-avlist-info {
	font-size: 17px;
}

@media (min-width: 769px) {
	.tt-avlist-item-inner {
		display: flex;
	}
	.tt-avlist-col {
		display: flex;
		flex: 1;
		align-items: center;
		padding-left: 15px;
		padding-right: 15px;
	}
	.tt-avlist-col.tt-avlist-col-info {
		flex: .5;
		justify-content: right;
	}
	.tt-avlist-col.tt-avlist-col-count {
		flex: .2;
	}
}
@media (max-width: 768px) {
	.tt-avlist-item {
		padding: 10px 15px;
	}

	.tt-avlist-count {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 2;
		opacity: .7;
	}

	.tt-avlist-title {
		padding-right: 40px;
		margin-bottom: 6px;
	}
	.tt-avlist-title br {
		display: none;
	}
}


/* Avards list tilted style
============================ */
.tt-avards-list.tt-avlist-tilted .tt-avlist-item {
	background-color: var(--tt-bg-color);
	border-bottom: 2px solid var(--tt-border-color);
}
.tt-avards-list.tt-avlist-tilted.tt-avlist-boxed .tt-avlist-item {
	margin-top: -12px;
}
.tt-avards-list.tt-avlist-tilted .tt-avlist-item:nth-child(odd) {
	transform: rotate(0.5deg);
}
.tt-avards-list.tt-avlist-tilted .tt-avlist-item:nth-child(even) {
	transform: rotate(-0.5deg);
}
@media (max-width: 991px) {
	.tt-avards-list.tt-avlist-tilted .tt-avlist-item:nth-child(odd) {
		transform: rotate(1deg);
	}
	.tt-avards-list.tt-avlist-tilted .tt-avlist-item:nth-child(even) {
		transform: rotate(-1deg);
	}
}


/* Avards list boxed style
=========================== */
.tt-avards-list.tt-avlist-boxed {
	padding-left: 3.5vw;
	padding-right: 3.5vw;
}
.tt-wrap .tt-avards-list.tt-avlist-boxed {
	padding-left: 0;
	padding-right: 0;
}

.tt-avards-list.tt-avlist-boxed .tt-avlist-item {
	background-color: var(--tt-accent-bg-color);
	margin-bottom: 15px;
	border-radius: clamp(10px, 3vw, 15px);
	border: 2px solid var(--tt-border-color);
	box-shadow: 6px 6px 0 -2px var(--tt-shadow-color);
}


/* ------------------------------------------------------------- *
 * Scrolling text
/* ------------------------------------------------------------- */

.tt-scrolling-text {
	position: relative;
	display: flex;
	font-size: calc(16px + 5vw);
	line-height: 1.4;
	font-weight: bold;
	font-weight: 600;
	overflow: hidden;
}

.tt-scrt-inner {
	display: flex;
	width: fit-content;
	flex: auto;
	flex-shrink: 0;
	flex-direction: row;
}
.tt-scrt-content {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	will-change: transform;
}
.tt-scrt-text {
	display: flex;
	align-items: center;
	padding-left: 2vw;
	padding-right: 2vw;
}
.tt-scrolling-text.tt-scrt-separator-exist .tt-scrt-text {
	padding-left: 0;
	padding-right: 0;
}


/* Scrolling text separator  
============================ */
.tt-scrt-separator {
	display: flex;
	margin: 0 3vw;
}
.tt-scrt-separator > i {
	font-size: calc(16px + 3vw);
}
.tt-scrt-separator > svg {
	height: calc(20px + 2.5vw);
	fill: var(--tt-text-color);
}

/* If class "scrt-dyn-separator" and data attribute "data-opposite-direction" is enabled */
.tt-scrolling-text.scrt-dyn-separator[data-opposite-direction="true"] .tt-scrt-separator > i,
.tt-scrolling-text.scrt-dyn-separator[data-opposite-direction="true"] .tt-scrt-separator > svg {
	transform: rotate(180deg);
}

/* Dynamic separator */
.tt-scrolling-text.scrt-dyn-separator .tt-scrt-separator {
	transform: scaleX(-1); /* You can use "rotate(180deg)" instead */
	transition: transform .3s;
}
.tt-scrolling-text.scrolled-up.scrt-dyn-separator .tt-scrt-separator {
	transform: scaleX(1); /* You can use "rotate(0deg)" instead */
}


/* Crossed scrolling text  
========================== */
.tt-scrolling-text-crossed {
	display: block;
	padding-top: calc(30px + 3vw);
	padding-bottom: calc(30px + 3vw);
	overflow: hidden;
}
.tt-scrolling-text-crossed-inner {
	margin-left: -50px;
	margin-right: -50px;
}
.tt-scrolling-text-crossed .tt-scrolling-text {
	background-color: var(--tt-bg-color);
}

.bg-white .tt-scrolling-text-crossed .tt-scrolling-text {
	background-color: #ededed;
}

.tt-scrolling-text-crossed .tt-scrolling-text:nth-child(1) {
	transform: translateY(50%) rotate(8deg);
}
.tt-scrolling-text-crossed .tt-scrolling-text:nth-child(2) {
	transform: translateY(-50%) rotate(-8deg);
}
@media (max-width: 991px) {
	.tt-scrolling-text-crossed .tt-scrolling-text:nth-child(1) {
		transform: translateY(50%) rotate(12deg);
	}
	.tt-scrolling-text-crossed .tt-scrolling-text:nth-child(2) {
		transform: translateY(-50%) rotate(-12deg);
	}
}


/* Scrolling text tilted style
=============================== */
.tt-scrolling-text.tt-scrt-tilted-1,
.tt-scrolling-text.tt-scrt-tilted-2  {
	background-color: var(--tt-bg-color);
}
.tt-scrolling-text.tt-scrt-tilted-1  {
	transform: rotate(1deg);
}
.tt-scrolling-text.tt-scrt-tilted-2  {
	transform: rotate(-1deg);
}


/* Scrolling text bordered style
================================= */
.tt-scrolling-text.tt-scrt-bordered:not(.scrt-color-reverse):not(.tt-scrt-boxed) {
	border-top: 2px solid var(--tt-border-color);
	border-bottom: 2px solid var(--tt-border-color);
}


/* Scrolling text boxed style
============================== */
.tt-scrolling-text.tt-scrt-boxed  {
	background-color: transparent;
	padding: 10px 0;
}
.tt-scrolling-text.tt-scrt-boxed .tt-scrt-text {
	display: flex;
	align-items: center;
	background-color: var(--tt-accent-bg-color);
	margin-left: 0.6vw;
	margin-right: 0.6vw;
	padding-left: 3vw;
	padding-right: 3vw;
	border-radius: 1000px;
	border: 2px solid var(--tt-border-color);
	box-shadow: 10px 10px 0 -2px var(--tt-shadow-color);
}
.tt-scrolling-text.tt-scrt-boxed.scrt-color-reverse .tt-scrt-text {
	background-color: var(--tt-dark-color);
	color: var(--tt-bg-color);
}
.tt-scrolling-text.tt-scrt-boxed .tt-scrt-separator {
	margin-right: 0;
}
.tt-scrolling-text.tt-scrt-boxed.scrt-color-reverse .tt-scrt-separator > svg {
	fill: var(--tt-bg-color);
}


/* Scrolling text reverse colors
================================= */
.tt-scrolling-text.scrt-color-reverse:not(.tt-scrt-boxed) {
	background-color: var(--tt-text-color);
	color: var(--tt-bg-color);
}
.tt-scrolling-text.scrt-color-reverse:not(.tt-scrt-boxed) .tt-scrt-separator > svg {
	fill: var(--tt-bg-color);
}


/* Scrolling text sizes
======================== */
/* Size sm */
.tt-scrolling-text.tt-scrt-sm {
	font-size: calc(16px + 3vw);
}
.tt-scrolling-text.tt-scrt-sm .tt-scrt-separator > svg {
	height: calc(20px + 1.5vw);
}

/* Size lg */
.tt-scrolling-text.tt-scrt-lg {
	font-size: calc(16px + 7vw);
}
.tt-scrolling-text.tt-scrt-lg .tt-scrt-separator > svg {
	height: calc(20px + 3.5vw);
}


/* ------------------------------------------------------------- *
 * Logo wall
/* ------------------------------------------------------------- */

.tt-logo-wall {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
	margin-left: 2px;
	overflow: hidden;
}
.tt-logo-wall > li {
	width: 20%;
	padding: 10px;
}

.tt-logo-wall-item {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: clamp(10px, 3vw, 20px);
	border: 2px solid var(--tt-border-color);
}
.tt-logo-wall-item:before {
	display: block;
	content: "";
	width: 100%;
	padding-bottom: 100%;
}

a.tt-logo-wall-item {
}
a.tt-logo-wall-item:hover {
}

.tt-lv-item-inner {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	inset: 0;
	padding: clamp(10%, 3vw, 40px);
}


/* Logo wall img 
================= */
.tt-logo-wall-item img {
}
a.tt-logo-wall-item img {
	transform: scale(1);
	transition: transform .3s ease-in-out, opacity .3s ease-in-out;
}
a.tt-logo-wall-item:hover img {
	transform: scale(1.1);
}

/* Logo wall img light/dark */
.tt-lv-img-dark {
	display: block;
}
.tt-lv-img-light {
	display: none;
}


/* Logo wall styles 
==================== */
/* Logo wall bordered */
.tt-logo-wall.tt-lw-boxed .tt-logo-wall-item {
	background-color: var(--tt-accent-bg-color);
	border: 2px solid var(--tt-border-color);
	box-shadow: 8px 8px 0 -2px var(--tt-shadow-color);
}

/* Logo wall tilted */
.tt-logo-wall.tt-lw-tilted > li:nth-child(odd) .tt-logo-wall-item {
	transform: rotate(1.5deg);
}
.tt-logo-wall.tt-lw-tilted > li:nth-child(even) .tt-logo-wall-item {
	transform: rotate(-1.5deg);
}


/* Logo wall columns (default is 5 columns)
===================== */
.tt-logo-wall.tt-lw-col-6 > li {
	width: 16.66666666666667%;
}
.tt-logo-wall.tt-lw-col-4 > li {
	width: 25%;
}
.tt-logo-wall.tt-lw-col-3 > li {
	width: 33.33333%;
}
.tt-logo-wall.tt-lw-col-2 > li {
	width: 50%;
}


/* Logo wall on smaller screens
================================ */
@media (max-width: 1360px) {
	.tt-logo-wall.tt-lw-col-6 > li {
		width: 20%;
	}
}
@media (max-width: 1200px) {
	.tt-logo-wall > li,
	.tt-logo-wall.tt-lw-col-6 > li {
		width: 25%;
	}
}
@media (max-width: 991px) {
	.tt-logo-wall > li,
	.tt-logo-wall.tt-lw-col-4 > li {
		width: 25%;
	}
}
@media (max-width: 768px) {
	.tt-logo-wall > li,
	.tt-logo-wall.tt-lw-col-6 > li,
	.tt-logo-wall.tt-lw-col-4 > li {
		width: 33.33333%;
	}
}
@media (max-width: 600px) {
	.tt-logo-wall > li,
	.tt-logo-wall.tt-lw-col-6 > li,
	.tt-logo-wall.tt-lw-col-4 > li,
	.tt-logo-wall.tt-lw-col-3 > li {
		width: 50%;
	}
}


/* ------------------------------------------------------------- *
 * tt-Pagination
/* ------------------------------------------------------------- */

.tt-pagination {
	display: flex;
	padding: 40px 3%;
}
.tt-wrap .tt-pagination {
	padding-left: 0;
	padding-right: 0;
}

.tt-pagin-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.tt-pagin-item {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px;
	line-height: 1;
	font-size: 16px;
	font-weight: 500;
	color: var(--tt-text-color);
	border-radius: 100px;
	border: 2px solid var(--tt-border-color);
	transition: opacity 0.3s, border 0.3s;
}
@media (max-width: 1024px) {
	.tt-pagin-item {
		width: 35px;
		height: 35px;
		margin: 2px;
		font-size: 14px !important;
	}
}
.tt-pagin-item:hover,
.tt-pagin-item:focus {
	color: var(--tt-text-color);
}
.tt-pagin-item.active {
	background-color: var(--tt-dark-color);
	font-weight: bold;
	font-weight: 600;
	opacity: 1;
	color: var(--tt-light-color);
	border-color: var(--tt-dark-color);
}

.tt-pagin-prev a,
.tt-pagin-next a {
	font-size: 17px;
}
.tt-pagin-prev {
	margin-right: 10px;
}
.tt-pagin-next {
	margin-left: 10px;
}

/* Align center */
.tt-pagination.tt-pagin-center {
	justify-content: center;
	text-align: center;
}


/* ------------------------------------------------------------- *
 * Testimonials list
/* ------------------------------------------------------------- */

.tt-testimonials-list {
	position: relative;
}


/* Testimonials list item
========================== */
.tt-testimonials-list-item {
	will-change: transform, opacity;
}
.tt-tli-inner {
	background-color: var(--tt-accent-bg-color);
	margin-bottom: 15px;
	padding: 5%;
	border-radius: clamp(10px, 3vw, 20px);
}

.tt-testimonials-list-item blockquote {
	max-width: 1000px;
	margin: auto;
	font-size: clamp(19px, 2vw, 21px);
	font-weight: 500;
	font-style: italic;
	border: none;
}
.tt-testimonials-list-item blockquote:not(.open-quote) {
	padding: 0;
}
.tt-testimonials-list-item blockquote footer {
	margin-top: 20px;
	font-size: 17px;
}


/* Testimonials list item size
=============================== */
.tt-testimonials-list.tt-tli-lg blockquote {
	font-size: clamp(19px, 2vw, 28px);
}
.tt-testimonials-list.tt-tli-xlg blockquote {
	font-size: clamp(19px, 3vw, 32px);
}


/* Testimonials list item boxed style
====================================== */
.tt-testimonials-list.tt-tli-boxed .tt-tli-inner {
	background-color: var(--tt-accent-bg-color);
	margin-bottom: 20px;
	padding: 5%;
	border-radius: clamp(10px, 3vw, 20px);
	border: 2px solid var(--tt-border-color);
	box-shadow: 8px 8px 0 -2px var(--tt-shadow-color);
}


/* Testimonials list item reversed color
========================================= */
.tt-testimonials-list-item.tt-tli-reverse-color .tt-tli-inner {
	background-color: var(--tt-dark-color);
	color: var(--tt-light-color);
	border: none;
	box-shadow: none;
}


/* Testimonials list item tilted style
======================================= */
.tt-testimonials-list.tt-tli-tilted .tt-tli-inner {
	margin-bottom: 5px;
}
.tt-testimonials-list.tt-tli-tilted .tt-testimonials-list-item:nth-child(odd) .tt-tli-inner {
	transform: rotate(1deg);
}
.tt-testimonials-list.tt-tli-tilted .tt-testimonials-list-item:nth-child(even) .tt-tli-inner {
	transform: rotate(-1deg);
}


/* ------------------------------------------------------------- *
 * tt-Image
/* ------------------------------------------------------------- */

.tt-image {
	display: block;
	width: 100%;
}

.tt-image figure {
	position: relative;
}

a.tt-image-link {
	display: block;
}

.tt-image-img {
}
.tt-image-img-inner {
	overflow: hidden;
}
.tt-image-hover {
	transition: transform 1s cubic-bezier(.165,.84,.44,1);
}
a.tt-image-link:hover .tt-image-hover {
	transform: scale(1.1);
}
.tt-image img {
	display: block;
}


/* tt-image border radius 
==========================*/
.tt-image.tti-border-radius .tt-image-img,
.tt-image.tti-border-radius .tt-image-img-inner {
	border-radius: clamp(10px, 3vw, 20px);
}


/* tt-image landscape/portrait mode (no effect on small screens!) 
==================================== */
@media (min-width: 992px) {
	.tt-image.tti-landscape img,
	.tt-image.tti-portrait img,
	.tt-image.tti-square img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: 50% 50%;
		background-color: rgb(133 133 133 / 15%);
	}
	.tt-image.tti-landscape img {
		aspect-ratio: 3 / 2;
	}
	.tt-image.tti-portrait img {
		aspect-ratio: 3 / 4;
	}
	.tt-image.tti-square img {
		aspect-ratio: 2 / 2;
	}
}


/* tt-image boxed style 
========================*/
.tt-image.tti-boxed {
	--_tti-boxed-padding: clamp(10px, 2vw, 18px);
}
.tt-section-inner:not(.tt-wrap) .tt-image.tti-boxed {
	width: auto;
	margin-left: 2%;
	margin-right: 2%;
}

.tt-image.tti-boxed .tt-image-img {
	background-color: var(--tt-accent-bg-color);
	padding: var(--_tti-boxed-padding);
	border: 2px solid var(--tt-border-color);
	box-shadow: 8px 8px 0 -2px var(--tt-shadow-color);
}
@media (min-width: 992px) {
	.tt-image.tti-boxed figcaption {
		right: calc(var(--_figcaption-absolute-right) + var(--_tti-boxed-padding));
		bottom: calc(var(--_figcaption-absolute-bottom) + var(--_tti-boxed-padding));
	}
}


/* tt-image tilted style 
========================*/
.tt-image.tti-tilted-1 {
	transform: rotate(1deg);
}
.tt-image.tti-tilted-2 {
	transform: rotate(-1deg);
}


/* tt-image fixed height (no effect on small screens!). Useful for full width layout.
========================= */
@media (min-width: 1025px) {
	.tt-image.tti-fixed-height img {
		width: 100%;
		height: 80vh;
		object-fit: cover;
		object-position: 50% 50%;
		background-color: rgb(133 133 133 / 15%);
	}
}

/* tt-image full height (no effect on small screens!). Useful for full width layout.
======================== */
@media (min-width: 1025px) {
	.tt-image.tti-full-height img { 
		width: 100%;
		height: 100vh;
		height: 100svh;
		object-fit: cover;
		object-position: 50% 50%;
	}
	.tt-image.tti-full-height.tti-boxed img { 
		height: calc(100vh - var(--_tti-boxed-padding) * 2);
		height: calc(100svh - var(--_tti-boxed-padding) * 2);
	}
}


/* ------------------------------------------------------------- *
 * tt-video
/* ------------------------------------------------------------- */

.tt-video {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	background-color: rgb(133 133 133 / 15%);
}

.tt-video video {
	display: block;
	width: 100%;
	height: auto;
}

/* Border radius */
.tt-video.ttv-border-radius {
	border-radius: clamp(10px, 3vw, 20px);
}

/* Video grayscale */
.tt-video.ttv-grayscale {
	filter: grayscale(1);
}


/* tt-video custom height (no effect on small screens!) 
========================== */
@media (min-width: 992px) {
	.tt-video.ttv-landscape:not(.ttv-fixed-height)::after,
	.tt-video.ttv-portrait:not(.ttv-fixed-height)::after {
		display: block;
		content: "";
	}
	.tt-video.ttv-landscape:not(.ttv-fixed-height)::after {
		padding-bottom: 56.25%;
	}
	.tt-video.ttv-portrait:not(.ttv-fixed-height)::after {
		padding-bottom: 130%;
	}
	.tt-video.ttv-landscape:not(.ttv-fixed-height) video,
	.tt-video.ttv-portrait:not(.ttv-fixed-height) video {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: 50% 50%;
	}
}


/* tt-video fixed height (no effect on small screens!). Useful for full width layout.
========================= */
@media (min-width: 1025px) {
	.tt-video.ttv-fixed-height video {
		width: 100%;
		height: 80vh;
		object-fit: cover;
		object-position: 50% 50%;
	}
}


/* tt-video full height (no effect on small screens!)
======================== */
@media (min-width: 1025px) {
	.tt-video.ttv-full-height video { 
		width: 100%;
		height: 100vh;
		object-fit: cover;
		object-position: 50% 50%;
	}
}


/* ------------------------------------------------------------- *
 * tt-Embed
/* ------------------------------------------------------------- */

.tt-embed {
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: clamp(10px, 3vw, 20px);
}
.tt-embed::before {
	display: block;
	content: "";
	padding-bottom: 56.25%;
}
.tt-embed .tt-embed-item, 
.tt-embed embed, 
.tt-embed iframe, 
.tt-embed object, 
.tt-embed video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}


/* ------------------------------------------------------------- *
 * tt-Gallery (works in combination with tt-Grid)
/* ------------------------------------------------------------- */

.tt-gallery {
	position: relative;
}


/* tt-Gallery item 
=================== */
.tt-gallery-item {
	position: relative;
	display: block;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}
.tt-grid[class*="tt-grid-gap-"] .tt-gallery-item {
	border-radius: clamp(10px, 3vw, 20px);
}

/* tt-Gallery image */
.tt-gallery-image {
	position: relative;
	height: 100%;
	overflow: hidden;
	background-color: rgb(133 133 133 / 15%);
}
.tt-gallery-image img {
	display: block;
	aspect-ratio: 3 / 2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	transition: transform 1s cubic-bezier(.165,.84,.44,1);
}
.tt-gallery-item:hover .tt-gallery-image img {
	transform: scale(1.1);
}

/* tt-Gallery video */
.tt-gallery-video-wrap {
	position: relative;
	height: 100%;
}
.tt-gallery-video {
	display: block;
	aspect-ratio: 3 / 2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	background-color: rgb(133 133 133 / 15%);
}


/* tt-Gallery item columns on small screen 
=========================================== */
@media (max-width: 639px) {
	.tt-gallery .tt-grid-list {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.tt-gallery .tt-grid-item[class*="w-"] {
		grid-column: span 2 !important;
	}
}


/* tt-Gallery portrait mode 
============================ */
.tt-gallery.tt-gai-portrait-mode .tt-gallery-image img,
.tt-gallery.tt-gai-portrait-mode .tt-gallery-video {
	aspect-ratio: 2 / 3;
}


/* tt-Gallery item boxed style 
=============================== */
.tt-gallery.tt-gai-boxed .tt-gallery-item {
	background-color: var(--tt-accent-bg-color);
	padding: clamp(2%, 4%, 15px);
	border: 2px solid var(--tt-border-color);
	box-shadow: 6px 6px 0 -2px var(--tt-shadow-color);
}
.tt-gallery.tt-gai-boxed .tt-gallery-image,
.tt-gallery.tt-gai-boxed .tt-gallery-video {
	border-radius: clamp(10px, 3vw, 20px);
}


/* tt-Gallery item tilted style 
=============================== */
.tt-gallery.tt-gai-tilted .tt-grid-item:nth-child(odd) .tt-gallery-item {
	transform: rotate(1deg);
}
.tt-gallery.tt-gai-tilted .tt-grid-item:nth-child(even) .tt-gallery-item {
	transform: rotate(-1deg);
}


/* ------------------------------------------------------------- *
 * tt-Clipper
/* ------------------------------------------------------------- */

.tt-clipper {
	position: relative;
	width: 100%;
	margin-bottom: 80px;
}
.tt-clipper-inner {
	--_tt-clipper-radius: 15px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	background-color: rgb(135 135 135 / 9%);
	overflow: hidden;
	clip-path: inset(25% round calc(var(--_tt-clipper-radius) * 3));
	will-change: clip-path;
}
.tt-wrap .tt-clipper-inner {
	clip-path: inset(25% round var(--_tt-clipper-radius));
}

/* tt-Clipper height */
@media (min-width: 992px) {
	.tt-clipper-inner {
		min-height: 100vh;
	}
	.tt-wrap .tt-clipper-inner {
		min-height: 80vh;
	}
}
@media (max-width: 991px) {
	.tt-clipper-inner {
		min-height: 70vw;
	}
}

/* tt-Clipper background */
.tt-clipper-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}
.tt-clipper-bg img,
.tt-clipper-bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/* If image parallax and zoom-in is enabled */
.tt-clipper-bg .tt-anim-zoomin-wrap,
.tt-clipper-bg .tt-image-parallax-wrap,
.tt-clipper-bg .tt-image-parallax-inner {
	position: absolute;
	inset: 0;
}

/* tt-Clipper cover */
[class*="tt-clipper-cover-"] .tt-clipper-bg::before {
	position: absolute;
	display: block;
	content: "";
	top: -1px;
	left: -1px;
	bottom: -1px;
	right: -1px;
	background-color: #040404;
	z-index: 1;
	opacity: 0;
}
.tt-clipper-cover-0 .tt-clipper-bg::before { opacity: 0; }
.tt-clipper-cover-0-5 .tt-clipper-bg::before { opacity: .05; }
.tt-clipper-cover-1 .tt-clipper-bg::before { opacity: .1; }
.tt-clipper-cover-1-5 .tt-clipper-bg::before { opacity: .15; }
.tt-clipper-cover-2 .tt-clipper-bg::before { opacity: .2; }
.tt-clipper-cover-2-5 .tt-clipper-bg::before { opacity: .25; }
.tt-clipper-cover-3 .tt-clipper-bg::before { opacity: .3; }
.tt-clipper-cover-3-5 .tt-clipper-bg::before { opacity: .35; }
.tt-clipper-cover-4 .tt-clipper-bg::before { opacity: .4; }
.tt-clipper-cover-4-5 .tt-clipper-bg::before { opacity: .45; }
.tt-clipper-cover-5 .tt-clipper-bg::before { opacity: .5; }
.tt-clipper-cover-5-5 .tt-clipper-bg::before { opacity: .55; }
.tt-clipper-cover-6 .tt-clipper-bg::before { opacity: .6; }
.tt-clipper-cover-6-5 .tt-clipper-bg::before { opacity: .65; }
.tt-clipper-cover-7 .tt-clipper-bg::before { opacity: .7; }
.tt-clipper-cover-7-5 .tt-clipper-bg::before { opacity: .75; }
.tt-clipper-cover-8 .tt-clipper-bg::before { opacity: .8; }
.tt-clipper-cover-8-5 .tt-clipper-bg::before { opacity: .85; }
.tt-clipper-cover-9 .tt-clipper-bg::before { opacity: .9; }
.tt-clipper-cover-9-5 .tt-clipper-bg::before { opacity: .95; }

/* tt-Clipper black & white background */
.tt-clipper.tt-clipper-grayscale .tt-clipper-bg {
	filter: grayscale(1);
}

/* tt-Clipper content */
.tt-clipper-content {
}


/* tt-Clipper button (for mobile devices only!) 
===================== */
body:not(.is-mobile) .tt-clipper-btn {
	display: none;
}
.tt-clipper-btn {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	background-color: color-mix(in oklab, var(--tt-main-color) 70%, transparent);
	font-size: 17px;
	color: #FFF;
	backdrop-filter: blur(10px);
	z-index: 2;
	border-radius: 100%;
}


/* -------------------------------------- *
 * Moving images
/* -------------------------------------- */

.tt-moving-images {
	position: relative;
	display: flex;
	width: 100vw;
}

.tt-moi-list {
	display: inline-flex;
	will-change: transform;
}

.tt-moving-images:not(.tt-moi-equal).tt-moi-top .tt-moi-list {
	align-items: flex-start;
}
.tt-moving-images:not(.tt-moi-equal).tt-moi-bottom .tt-moi-list {
	align-items: flex-end;
}


/* Moving images item 
====================== */
.tt-moi-item {
	width: 25vw;
}
.tt-moi-item-inner {
	position: relative;
	background-color: rgb(133 133 133 / 15%);
	margin: 2.5%;
	border-radius: clamp(10px, 2vw, 20px);
	overflow: hidden;
}
.tt-moi-item img {
	display: block;
	aspect-ratio: 3 / 2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}


/* Moving images item aligns
============================= */
/* Align bottom */
.tt-moving-images:not(.tt-moi-equal).tt-moi-bottom .tt-moi-item:nth-child(1) {
	width: 25vw;
}
.tt-moving-images:not(.tt-moi-equal).tt-moi-bottom .tt-moi-item:nth-child(2) {
	width: 30vw;
}
.tt-moving-images:not(.tt-moi-equal).tt-moi-bottom .tt-moi-item:nth-child(3) {
	width: 35vw;
}
.tt-moving-images:not(.tt-moi-equal).tt-moi-bottom .tt-moi-item:nth-child(4) {
	width: 25vw;
}
.tt-moving-images:not(.tt-moi-equal).tt-moi-bottom .tt-moi-item:nth-child(5) {
	width: 30vw;
}

/* Align top */
.tt-moving-images:not(.tt-moi-equal).tt-moi-top .tt-moi-item:nth-child(1) {
	width: 25vw;
}
.tt-moving-images:not(.tt-moi-equal).tt-moi-top .tt-moi-item:nth-child(2) {
	width: 35vw;
}
.tt-moving-images:not(.tt-moi-equal).tt-moi-top .tt-moi-item:nth-child(3) {
	width: 30vw;
}
.tt-moving-images:not(.tt-moi-equal).tt-moi-top .tt-moi-item:nth-child(4) {
	width: 25vw;
}
.tt-moving-images:not(.tt-moi-equal).tt-moi-top .tt-moi-item:nth-child(5) {
	width: 30vw;
}


/* Moving images item styles
============================= */
/* Item boxed style */
.tt-moving-images.tt-moi-boxed .tt-moi-item-inner {
	background-color: var(--tt-accent-bg-color);
	padding: clamp(2%, 4%, 15px);
	border-radius: clamp(10px, 3vw, 20px);
	border: 2px solid var(--tt-border-color);
	box-shadow: 7px 7px 0 -2px var(--tt-shadow-color);
}
@media (max-width: 768px) {
	.tt-moving-images.tt-moi-boxed .tt-moi-item-inner {
		box-shadow: 4px 4px 0 -2px var(--tt-shadow-color);
	}
}
.tt-moving-images.tt-moi-boxed .tt-moi-item img {
	border-radius: clamp(10px, 2vw, 20px);
}

/* Item tilted style */
.tt-moving-images.tt-moi-tilted-1 .tt-moi-item:nth-child(odd) {
	transform: rotate(1deg);
}
.tt-moving-images.tt-moi-tilted-1 .tt-moi-item:nth-child(even) {
	transform: rotate(-1deg);
}

.tt-moving-images.tt-moi-tilted-2 .tt-moi-item:nth-child(odd) {
	transform: rotate(-1deg);
}
.tt-moving-images.tt-moi-tilted-2 .tt-moi-item:nth-child(even) {
	transform: rotate(1deg);
}


/* ------------------------------------------------------------- *
 * Sticky horizontal scroll
/* ------------------------------------------------------------- */

.tt-sticky-horizontal-scroll {
	position: relative;
}

.tt-shs-pin-wrap {
	position: relative;
}
.tt-shs-animation-wrap {
	--_tt-shs-item-spacing: 3vw; /* Item spacing */
	--_tt-shs-item-border-radius: clamp(10px, 2vw, 20px);

	position: relative;
	display: flex;
	gap: var(--_tt-shs-item-spacing);
}

/* Sticky horizontal scroll item */
.tt-shs-item {
	position: relative;
}
.tt-shs-item:first-child {
	padding-left: calc(var(--_tt-shs-item-spacing));
}
.tt-shs-item:last-child {
	padding-right: calc(var(--_tt-shs-item-spacing));
}

.tt-shs-item-inner {
	width: 50vw; /* Item width is required! */
}
@media (max-width: 1024px) {
	.tt-shs-item-inner {
		width: 80vw; /* Item width is required! */
	}
}
a.tt-shs-item-inner {
	display: block;
}

/* Sticky horizontal scroll item image */
.tt-shs-item-image {
	position: relative;
}
.tt-shs-item-image-inner {
	overflow: hidden;
	border-radius: var(--_tt-shs-item-border-radius);
}

.tt-shs-item-image .tt-anim-zoomin-wrap {
	overflow: hidden;
	border-radius: var(--_tt-shs-item-border-radius);
}

.tt-shs-item-image img {
	aspect-ratio: 3 / 2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	background-color: rgb(133 133 133 / 15%);
}

/* Sticky horizontal scroll item image caption */
@media (min-width: 992px) {
	.tt-shs-item-image figcaption .figcaption-inner {
		/*	line-clamp */
		display: -webkit-box;
		-webkit-line-clamp: 3; /* max lines to show */
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
}


/* Sticky horizontal scroll item boxed style
============================================= */
.tt-sticky-horizontal-scroll.tt-shs-boxed {
	--_tt-shs-boxed-padding: clamp(6px, 2vw, 20px);
}
.tt-sticky-horizontal-scroll.tt-shs-boxed .tt-shs-item-image-inner {
	background-color: var(--tt-accent-bg-color);
	padding: var(--_tt-shs-boxed-padding);
	border: 2px solid var(--tt-border-color);
	box-shadow: 9px 9px 0 -2px var(--tt-shadow-color);
}
.tt-sticky-horizontal-scroll.tt-shs-boxed .tt-shs-item-image img {
	border-radius: var(--_tt-shs-item-border-radius);
}

@media (min-width: 992px) {
	.tt-sticky-horizontal-scroll.tt-shs-boxed .tt-shs-item-image figcaption {
		right: calc(var(--_figcaption-absolute-right) + var(--_tt-shs-boxed-padding));
		bottom: calc(var(--_figcaption-absolute-bottom) + var(--_tt-shs-boxed-padding));
		margin-left: var(--_tt-shs-item-spacing);
	}
}


/* Sticky horizontal scroll item tilted style
============================================= */
.tt-sticky-horizontal-scroll.tt-shs-tilted .tt-shs-item:nth-child(odd) {
	transform: rotate(-1deg);
}
.tt-sticky-horizontal-scroll.tt-shs-tilted .tt-shs-item:nth-child(even) {
	transform: rotate(1deg);
}


/* Keep scrolling info (for mobile devices only!) 
======================= */
body:not(.is-mobile) .tt-shs-keep-scrolling {
	display: none;
}
.tt-shs-keep-scrolling {
	position: absolute;
	display: flex;
	justify-content: center;
	left: 0;
	bottom: -50px;
	width: 100%;
	font-size: 16px;
	visibility: hidden;
	--pointer-events: none;
	opacity: 0;
	transition: opacity .2s, visibility .2s;
}
.tt-sticky-horizontal-scroll.is-pinned .tt-shs-keep-scrolling {
	visibility: visible;
	opacity: 1;
}
.tt-shs-keep-scrolling span {
	padding: 0 6px;
}
.tt-shs-keep-scrolling i {
	margin-top: 3px;
	line-height: 1;
}


/* For small screens 
===================== */
@media (max-width: 1024px) {
}


/* ------------------------------------------------------------- *
 * Content slider 
/* ------------------------------------------------------------- */

.tt-content-slider {
	--_tt-cs-border-radius: clamp(10px, 3vw, 20px);
	position: relative;
}
.tt-content-slider .swiper {
	background-color: rgb(133 133 133 / 15%);
}

.tt-wrap .tt-content-slider .swiper {
	border-radius: var(--_tt-cs-border-radius);
}

/* Content slider item */
.tt-content-slider-item {
	position: relative;
	width: 100%;
	overflow: hidden;
}
@media (min-width: 1025px) {
	.tt-content-slider-item {
		height: 85vh;
		padding-bottom: 0;
	}
}

.tt-wrap .tt-content-slider-item {
	height: auto;
	padding-bottom: 57%;
}
@media (max-width: 1024px) {
	.tt-content-slider-item,
	.tt-wrap .tt-content-slider-item {
		height: auto;
		padding-bottom: 70%;
	}
}

/* Content slider image */
.tt-cs-image-wrap {
	position: absolute;
	inset: 0;
}
.tt-cs-image, 
.tt-cs-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/* If image parallax and zoom-in is enabled */
.tt-content-slider-item .tt-anim-zoomin-wrap,
.tt-content-slider-item .tt-image-parallax-wrap,
.tt-content-slider-item .tt-image-parallax-inner {
	position: absolute;
	inset: 0;
}


/* Content carousel preloader 
=============================== */
.tt-content-slider .swiper-lazy-preloader {
	border-color: var(--tt-main-color);
	border-top-color: transparent;
}


/* Content slider navigation 
============================= */
.tt-cs-nav-prev,
.tt-cs-nav-next {
	position: absolute;
	display: flex;
	align-items: center;
	top: 0;
	width: 50%;
	height: 100%;
	z-index: 2;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
.tt-cs-nav-prev {
	left: 0;
	justify-content: start;
	padding-left: 2%;
}
.tt-cs-nav-next {
	right: 0;
	justify-content: end;
	padding-right: 2%;
}
.tt-cs-nav-next:not([class*="cursor-arrow-"]),
.tt-cs-nav-prev:not([class*="cursor-arrow-"]),
body.is-mobile .tt-cs-nav-next,
body.is-mobile .tt-cs-nav-prev,
body.is-mobile .tt-cs-nav-next {
	pointer-events: none;
}

/* Navigation arrow */
.tt-cs-nav-arrow {
	position: relative;
	display: none;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	background-color: rgb(0 0 0 / 30%);
	backdrop-filter: blur(5px);
	font-size: 16px;
	color: #f1f1f1;
	cursor: pointer;
	outline: none;
	border-radius: 100%;
	transition: background-color .2s;
}
.tt-cs-nav-arrow:hover {
	background-color: rgb(0 0 0 / 60%);
}
.tt-cs-nav-next:not([class*="cursor-arrow-"]) .tt-cs-nav-arrow,
.tt-cs-nav-prev:not([class*="cursor-arrow-"]) .tt-cs-nav-arrow,
body.is-mobile .tt-cs-nav-arrow, 
body.is-mobile .tt-cs-nav-arrow {
	display: flex;
	pointer-events: initial;
}
@media (max-width: 1024px) {
	.tt-cs-nav-arrow {
		width: 34px;
		height: 34px;
		font-size: 15px;
	}
}

/* Navigation arrow icon */
.tt-cs-nav-arrow::after {
	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;
	transition: all 0.2s ease-in-out;
}
.tt-cs-nav-prev .tt-cs-nav-arrow::after {
	content: "\f060";
}
.tt-cs-nav-next .tt-cs-nav-arrow::after {
	content: "\f061";
}

/* Navigation arrow disabled */
.tt-cs-nav-arrow-disabled .tt-cs-nav-arrow {
	opacity: 0;
	visibility: hidden;
	cursor: auto;
	pointer-events: none;
}
.tt-cs-nav-arrow-disabled.cursor-arrow-left,
.tt-cs-nav-arrow-disabled.cursor-arrow-right {
	opacity: .3;
	visibility: hidden;
	cursor: auto;
	pointer-events: none;
}
/*.tt-cs-nav-arrow-disabled.cursor-arrow-left + .cursor-arrow-right:not(.tt-cs-nav-arrow-disabled),
.cursor-arrow-left:has( + .tt-cs-nav-arrow-disabled) {
	width: 100%;
}*/


/* Content slider pagination 
============================= */
.tt-cs-pagination {
	--_tt-cs-pagin-bottom: 3%;
	position: absolute;
	bottom: var(--_tt-cs-pagin-bottom);
	left: 50%;
	z-index: 3;
	transform: translate3d(-50%, 0, 0);
}

/* Content slider pagination bullets */
.tt-cs-pagination .tt-cs-pagination-bullets {
	font-size: 0;
}
.tt-cs-pagination .swiper-pagination-bullet {
	display: inline-block;
	width: 14px;
	height: 14px;
	background-color: #cfcfcf;
	margin: 8px;
	opacity: 1;
	border-radius: 100%;
	border: none;
}
.tt-cs-pagination .swiper-pagination-bullet-active {
	background-color: var(--tt-main-color);
	opacity: 1;
}

/* Content slider pagination dynamic bullets */
.tt-cs-pagination-bullets-dynamic {
	white-space: nowrap;
	overflow: hidden;
	font-size: 0;
}
.tt-cs-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(.33);
	position: relative;
	transition: .2s transform, .2s left;
}
.tt-cs-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(.66);
}
.tt-cs-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(.33);
}
.tt-cs-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(.66);
}
.tt-cs-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(.33);
}
.tt-cs-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1);
}

/* Content slider pagination fraction */
.tt-cs-pagination-fraction {
	background-color: rgb(0 0 0 / 40%);
	backdrop-filter: blur(5px);
	padding: 5px 12px;
	font-size: 14px;
	font-weight: 500;
	color: #f1f1f1;
	border-radius: 100px;
}
.tt-cs-pagination-fraction .swiper-pagination-current {
}
.tt-cs-pagination-fraction .swiper-pagination-total {
}

/* Content slider pagination progressbar */
.tt-cs-pagination-progressbar {
	width: 100%;
	max-width: 200px;
	height: 2px;
	background-color: rgb(159 159 159 / 30%);
}
@media (max-width: 768px) {
	.tt-cs-pagination-progressbar {
		max-width: 90%;
	}
}
.tt-cs-pagination-progressbar .swiper-pagination-progressbar-fill {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #f1f1f1;
	transform: scale(0);
	transform-origin: left top;
}

/* Content slider pagination position outside */
.tt-content-slider.tt-cs-pagination-outside:not(.tt-cs-hide-pagination) {
	overflow: visible;
	margin-bottom: 60px;
}
.tt-content-slider.tt-cs-pagination-outside:not(.tt-cs-hide-pagination) .tt-cs-pagination {
	bottom: -50px;
}
.tt-content-slider.tt-cs-pagination-outside:not(.tt-cs-hide-pagination) .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
	background-color: var(--tt-dark-color);
}
@media (max-width: 1024px) {
	.tt-content-slider.tt-cs-pagination-outside {
		overflow: visible;
		margin-bottom: 50px;
	}
	.tt-content-slider.tt-cs-pagination-outside .tt-cs-pagination {
		bottom: -50px;
	}
}

/* Hide content slider pagination (for desktop only!) */
@media (min-width: 1025px) {
	.tt-content-slider.tt-cs-hide-pagination .tt-cs-pagination {
		display: none !important;
	}
}


/* Content slider boxed style 
============================== */
.tt-content-slider.tt-cs-boxed {
	--_tt-cs-boxed-padding: clamp(10px, 2vw, 20px);

	background-color: var(--tt-accent-bg-color);
	padding: var(--_tt-cs-boxed-padding);
	border-radius: var(--_tt-cs-border-radius);
	border: 2px solid var(--tt-border-color);
	box-shadow: 9px 9px 0 -2px var(--tt-shadow-color);
}
.tt-content-slider.tt-cs-boxed:not(.tt-cs-pagination-outside) .tt-cs-pagination {
	bottom: calc(var(--_tt-cs-pagin-bottom) + var(--_tt-cs-boxed-padding));
}

.tt-content-slider.tt-cs-boxed .swiper {
	border-radius: var(--_tt-cs-border-radius);
}


/* Content slider boxed style 
============================== */
.tt-content-slider.tt-cs-tilted-1 {
	transform: rotate(1deg);
}
.tt-content-slider.tt-cs-tilted-2 {
	transform: rotate(-1deg);
}


/* ------------------------------------------------------------- *
 * Content carousel 
/* ------------------------------------------------------------- */

.tt-content-carousel {
	position: relative;
}

.tt-content-carousel .swiper-wrapper {
}

.tt-content-carousel-item {
	position: relative;
	display: block;
	margin-left: 1.5vw;
	margin-right: 1.5vw;
	line-height: 0;
}
.tt-content-carousel[data-size-small="true"] .tt-content-carousel-item {
	margin-left: 1vw;
	margin-right: 1vw;
}

.tt-cc-image-wrap {
	position: relative;
	width: 100%;
}
.tt-cc-image-inner {
}
.tt-cc-image,
.tt-cc-video {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	object-position: 50% 50%;
	background-color: rgb(133 133 133 / 15%);
}
.tt-cc-image,
.tt-cc-video,
.tt-content-carousel-item .tt-anim-zoomin-wrap,
.tt-content-carousel-item .tt-image-parallax-wrap {
	border-radius: clamp(10px, 3vw, 20px);
	overflow: hidden;
}

/* If image parallax and zoom-in is enabled */
.tt-content-carousel-item .tt-anim-zoomin-wrap,
.tt-content-carousel-item .tt-image-parallax-wrap,
.tt-content-carousel-item .tt-image-parallax-inner {
}


/* Content carousel preloader 
=============================== */
.tt-content-carousel .swiper-lazy-preloader {
	border-color: var(--tt-main-color);
	border-top-color: transparent;
}


/* Content carousel navigation 
=============================== */
.tt-cc-nav-prev,
.tt-cc-nav-next {
	position: absolute;
	top: 50%;
	z-index: 20;
	transform: translateY(-50%);
}
.tt-cc-nav-prev {
	left: 2%;
}
.tt-cc-nav-next {
	right: 2%;
}

.tt-cc-nav-arrow {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 56px;
	height: 56px;
	background-color: rgb(255 255 255 / 85%);
	font-size: 17px;
	color: #121212;
	cursor: pointer;
	outline: none;
	border-radius: 100%;
	transition: background-color .2;
}
@media (max-width: 1024px) {
	.tt-cc-nav-arrow {
		width: 34px;
		height: 34px;
		font-size: 15px;
	}
}
.tt-cc-nav-arrow:hover {
}

.tt-cc-nav-arrow::after {
	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;
	transition: all 0.2s ease-in-out;
}
.tt-cc-nav-prev .tt-cc-nav-arrow::after {
	content: "\f060";
}
.tt-cc-nav-next .tt-cc-nav-arrow::after {
	content: "\f061";
}

.tt-cc-nav-arrow-disabled {
	opacity: .3;
}

/* Hide content carousel navigation */
body:not(.is-mobile) .tt-content-carousel.tt-cc-hide-navigation .tt-cc-nav-prev,
body:not(.is-mobile) .tt-content-carousel.tt-cc-hide-navigation .tt-cc-nav-next {
	display: none !important;
}


/* Content carousel pagination 
=============================== */
.tt-cc-pagination {
	--_tt-cc-pagin-bottom: 6%;

	position: absolute;
	bottom: var(--_tt-cc-pagin-bottom);
	left: 50%;
	z-index: 1;
	transform: translate3d(-50%, 0, 0);
}

/* Content carousel pagination bullets */
.tt-cc-pagination-bullets {
	font-size: 0;
}
.tt-cc-pagination-bullets .swiper-pagination-bullet {
	display: inline-block;
	width: 14px;
	height: 14px;
	background-color: #cfcfcf;
	margin: 8px;
	opacity: 1;
	border-radius: 100%;
	border: none;
}
.tt-cc-pagination-bullets .swiper-pagination-bullet-active {
	background-color: var(--tt-main-color);
	opacity: 1;
}

/* Content carousel pagination dynamic bullets */
.tt-cc-pagination-bullets-dynamic {
	position: absolute;
	left: 50%;
	transform: translate3d(-50%, 0, 0);
	white-space: nowrap;
	overflow: hidden;
	font-size: 0;
}
.tt-cc-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(.33);
	position: relative;
	transition: .2s transform, .2s left;
}
.tt-cc-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(.66);
}
.tt-cc-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(.33);
}
.tt-cc-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(.66);
}
.tt-cc-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(.33);
}
.tt-cc-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1);
}

/* Content carousel pagination fraction */
.tt-cc-pagination-fraction {
	font-size: 16px;
	font-weight: 500;
	color: #f1f1f1;
}

.tt-cc-pagination-fraction .swiper-pagination-current {
}
.tt-cc-pagination-fraction .swiper-pagination-total {
}

/* Content carousel pagination progressbar */
.tt-cc-pagination-progressbar {
	width: 100%;
	max-width: 200px;
	height: 3px;
	background-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
	.tt-cc-pagination-progressbar {
		max-width: 90%;
	}
}
.tt-cc-pagination-progressbar .swiper-pagination-progressbar-fill {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #f1f1f1;
	transform: scale(0);
	transform-origin: left top;
}

/* Content carousel pagination position outside */
.tt-content-carousel.tt-cc-pagination-outside:not(.tt-cc-hide-pagination) {
	overflow: visible;
	margin-bottom: 60px;
}
.tt-content-carousel.tt-cc-pagination-outside:not(.tt-cc-hide-pagination) .tt-cc-pagination {
	bottom: -50px;
}
.tt-content-carousel.tt-cc-pagination-outside:not(.tt-cc-hide-pagination) .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
	background-color: var(--tt-dark-color);
}

.tt-content-carousel.tt-cc-pagination-outside:not(.tt-cc-hide-pagination) .tt-cc-pagination-fraction {
	color: var(--tt-text-color);
}

.tt-content-carousel.tt-cc-pagination-outside:not(.tt-cc-hide-pagination) .tt-cc-pagination-progressbar {
	background-color: rgba(0, 0, 0, 0.2);
}
.tt-content-carousel.tt-cc-pagination-outside:not(.tt-cc-hide-pagination) .swiper-pagination-progressbar-fill {
	background-color: var(--tt-dark-color);
}

@media (max-width: 1024px) {
	.tt-content-carousel.tt-cc-pagination-outside {
		overflow: visible;
		margin-bottom: 50px;
	}
	.tt-content-carousel.tt-cc-pagination-outside .tt-cc-pagination {
		bottom: -50px;
	}
}

/* Hide content carousel pagination (for desktop only!) */
@media (min-width: 1025px) {
	.tt-content-carousel.tt-cc-hide-pagination .tt-cc-pagination {
		display: none !important;
	}
}


/* Content carousel boxed style
================================ */
.tt-content-carousel.tt-cc-boxed {
	--_tt-cc-border-radius: clamp(10px, 3vw, 20px);
	--_tt-cc-boxed-padding: clamp(10px, 2vw, 17px);
	--_tt-cc-box-shadow-width: 8px;
}
.tt-content-carousel.tt-cc-boxed .swiper {
	padding-bottom: var(--_tt-cc-box-shadow-width);
}
.tt-content-carousel.tt-cc-boxed .tt-cc-image-wrap {
	background-color: var(--tt-accent-bg-color);
	padding: var(--_tt-cc-boxed-padding);
	border-radius: var(--_tt-cc-border-radius);
	border: 2px solid var(--tt-border-color);
	box-shadow: var(--_tt-cc-box-shadow-width) var(--_tt-cc-box-shadow-width) 0 -2px var(--tt-shadow-color);
}

.tt-content-carousel.tt-cc-boxed:not(.tt-cc-pagination-outside) .tt-cc-pagination {
	bottom: calc(var(--_tt-cc-pagin-bottom) + var(--_tt-cc-boxed-padding));
}


/* Content carousel tilted style
================================= */
.tt-content-carousel.tt-cc-tilted .swiper-slide {
	transition: transform .3s;
}
.tt-content-carousel.tt-cc-tilted .swiper-slide {
	transform: rotate(1deg);
}
.tt-content-carousel.tt-cc-tilted .swiper-slide.swiper-slide-prev,
.tt-content-carousel.tt-cc-tilted .swiper-slide.swiper-slide-next {
	transform: rotate(-1deg);
}

.tt-content-carousel.tt-cc-tilted .swiper {
	padding-top: 20px;
	padding-bottom: 20px;
}


/* ------------------------------------------------------------- *
 * Portfolio carousel 
/* ------------------------------------------------------------- */

.tt-portfolio-carousel {
	position: relative;
	margin-bottom: 60px;
	overflow: visible;
}

.tt-portfolio-carousel .swiper-wrapper {
}


/* Portfolio carousel item 
=========================== */
.tt-portfolio-carousel-item {
	position: relative;
	display: block;
	margin-left: 3.5vw;
	margin-right: 3.5vw;
	line-height: 0;
}
.tt-portfolio-carousel[data-size-small="true"] .tt-portfolio-carousel-item {
	margin-left: 1.2vw;
	margin-right: 1.2vw;
}

.tt-pci-item-inner {
	position: relative;
}
.tt-portfolio-carousel:not([data-size-small="true"]) .tt-pci-item-inner {
	pointer-events: none;
}
.tt-portfolio-carousel:not([data-size-small="true"]) .swiper-slide-active .tt-pci-item-inner {
	pointer-events: initial;
}

/* Portfolio carousel item image */
.tt-pci-image {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: rgb(137 137 137 / 12%);
	border-radius: clamp(10px, 3vw, 20px);
}
.tt-pci-image img {
	display: block;
	aspect-ratio: 2 / 1.2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	transition: transform 1s cubic-bezier(.165,.84,.44,1);
	will-change: transform;
}
.tt-portfolio-carousel[data-size-small="true"] .tt-pci-image img {
	aspect-ratio: 3 / 2;
}
.tt-pci-image:hover img {
	transform: scale(1.1);
}

/* Portfolio carousel item video */
.tt-pci-video {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: clamp(10px, 3vw, 20px);
}
.tt-pci-video video {
	position: relative;
	display: block;
	aspect-ratio: 2 / 1.2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	background-color: rgb(137 137 137 / 12%);
	pointer-events: none;
}
.tt-portfolio-carousel[data-size-small="true"] .tt-pci-video video {
	aspect-ratio: 3 / 2;
}

/* Portfolio carousel preloader */
.tt-portfolio-carousel .swiper-lazy-preloader {
	border-color: var(--tt-main-color);
	border-top-color: transparent;
}

/* Portfolio carousel item info */
.tt-pci-info {
	position: relative;
	margin-top: 20px;
}

.tt-pci-title {
	margin: 0 clamp(50px, 5vw, 80px) 0 0;
	font-size: calc(24px + 0.7vw);
	font-weight: bold;
	font-weight: 600;
	color: var(--tt-text-color);
	line-height: 1.3;

	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.tt-portfolio-carousel[data-size-small="true"] .tt-pci-title {
	font-size: calc(22px + 0.3vw);
}
.tt-pci-title a {
	position: relative;
	display: inline;
	color: var(--tt-text-color);
	transition: padding-left .4s cubic-bezier(.165,.84,.44,1);
}
.tt-pci-title a:hover,
.tt-pci-title a:focus {
	transition-delay: .1s;
	padding-left: 8px;
	color: var(--tt-text-color);
}

.tt-pci-icon {
	position: absolute;
	top: -3px;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(26px + 0.4vw);
	height: calc(26px + 0.4vw);
	background-color: var(--tt-dark-color);
	color: var(--tt-light-color);
	font-size: 18px;
	text-decoration: none;
	border-radius: 100px;
	transition: transform .4s cubic-bezier(.165,.84,.44,1);
}
.tt-pci-icon:hover {
	transform: scale(1.2);
}
.tt-pci-icon svg {
	width: 60%;
	height: 60%;
	fill: var(--tt-light-color);
	transform: rotate(-45deg);
}

.tt-pci-categories {
	--_pc-category-height: 24px;
	--_pc-category-border: 1px;

	display: flex;
	flex-wrap: wrap;
	height: calc(var(--_pc-category-height) + var(--_pc-category-border) * 2);
	margin-top: 15px;
	overflow: hidden;
}
.tt-pci-category {
	display: inline-flex;
	align-items: center;
	height: var(--_pc-category-height);
	margin: 0 5px 5px 0;
	padding: 0 10px;
	font-size: calc(13px + 0.1vw);
	font-weight: normal;
	line-height: 1;
	color: var(--tt-text-color);
	border-radius: 100px;
	border: var(--_pc-category-border) solid var(--tt-border-color);
	transition: background-color .2s, color .2s, border-color .2s;
}
.tt-pci-category:hover,
.tt-pci-category:focus {
	background-color: var(--tt-dark-color);
	color: var(--tt-light-color);
	border-color: var(--tt-dark-color);
}


/* Portfolio carousel navigation 
================================= */
.tt-pci-nav-prev,
.tt-pci-nav-next {
	position: absolute;
	top: 50%;
	z-index: 20;
	transform: translateY(-50%);
}
.tt-pci-nav-prev {
	left: 2.5%;
}
.tt-pci-nav-next {
	right: 2.5%;
}

.tt-pci-nav-arrow {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: rgb(255 255 255 / 85%);
	font-size: 24px;
	color: #121212;
	line-height: 1;
	cursor: pointer;
	outline: none;
	border-radius: 100%;
	transition: background-color .2s;
}
@media (max-width: 1024px) {
	.tt-pci-nav-arrow {
		width: 34px;
		height: 34px;
		font-size: 15px;
	}
}
.tt-pci-nav-arrow:hover {
}

.tt-pci-nav-arrow::after {
	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;
	transition: all 0.2s ease-in-out;
}
.tt-pci-nav-prev .tt-pci-nav-arrow::after {
	content: "\f060";
}
.tt-pci-nav-next .tt-pci-nav-arrow::after {
	content: "\f061";
}

.tt-pci-nav-arrow-disabled {
	opacity: .3;
}

/* Hide Portfolio carousel navigation */
body:not(.is-mobile) .tt-portfolio-carousel.tt-pci-hide-navigation .tt-pci-nav-prev,
body:not(.is-mobile) .tt-portfolio-carousel.tt-pci-hide-navigation .tt-pci-nav-next {
	display: none !important;
}


/* Portfolio carousel pagination 
================================= */
.tt-pci-pagination {
	position: absolute;
	bottom: -50px;
	left: 50%;
	z-index: 1;
	transform: translate3d(-50%, 0, 0);
}

/* Portfolio carousel pagination bullets */
.tt-pci-pagination-bullets {
	font-size: 0;
}
.tt-pci-pagination-bullets .swiper-pagination-bullet {
	display: inline-block;
	width: 14px;
	height: 14px;
	background-color: var(--tt-dark-color);
	margin: 8px;
	opacity: 1;
	border-radius: 100%;
	border: none;
}
.tt-pci-pagination-bullets .swiper-pagination-bullet-active {
	background-color: var(--tt-main-color);
	opacity: 1;
}

/* Portfolio carousel pagination dynamic bullets */
.tt-pci-pagination-bullets-dynamic {
	position: absolute;
	left: 50%;
	transform: translate3d(-50%, 0, 0);
	white-space: nowrap;
	overflow: hidden;
	font-size: 0;
}
.tt-pci-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(.33);
	position: relative;
	transition: .2s transform, .2s left;
}
.tt-pci-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(.66);
}
.tt-pci-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(.33);
}
.tt-pci-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(.66);
}
.tt-pci-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(.33);
}
.tt-pci-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1);
}

/* Portfolio carousel pagination fraction */
.tt-pci-pagination-fraction {
	font-size: 16px;
	font-weight: 500;
	color: var(--tt-dark-color);
}

.tt-pci-pagination-fraction .swiper-pagination-current {
}
.tt-pci-pagination-fraction .swiper-pagination-total {
}

/* Portfolio carousel pagination progressbar */
.tt-pci-pagination-progressbar {
	width: 100%;
	max-width: 200px;
	height: 3px;
	background-color: rgb(129 129 129 / 30%);
}
@media (max-width: 768px) {
	.tt-pci-pagination-progressbar {
		max-width: 90%;
	}
}
.tt-pci-pagination-progressbar .swiper-pagination-progressbar-fill {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--tt-dark-color);
	transform: scale(0);
	transform-origin: left top;
}


/* Hide Portfolio carousel pagination (for desktop only!) 
====================================== */
@media (min-width: 1025px) {
	.tt-portfolio-carousel.tt-pci-hide-pagination .tt-pci-pagination {
		display: none !important;
	}
}


/* Portfolio carousel item focused style
========================================= */
.tt-portfolio-carousel.tt-pci-focused:not([data-size-small="true"]) .tt-pci-item-inner {
	filter: blur(5px);
	opacity: .3;
	pointer-events: none;
	transform: scale(0.9);
	transition: filter .3s, opacity .3s, transform .3s;
	will-change: transform, opacity, filter;
}
.tt-portfolio-carousel.tt-pci-focused:not([data-size-small="true"]) .swiper-slide-active .tt-pci-item-inner {
	filter: blur(0);
	opacity: 1;
	pointer-events: initial;
	transform: scale(1);
}

.tt-portfolio-carousel.tt-pci-focused:not([data-size-small="true"]):not(.tt-pci-full) .tt-pci-nav-arrow {
	background-color: var(--tt-dark-color);
	color: var(--tt-light-color);
}


/* Portfolio carousel item inside style
======================================== */
.tt-portfolio-carousel.tt-pci-inside .tt-portfolio-carousel-item { 
	color: #FFF;
}

.tt-portfolio-carousel.tt-pci-inside .tt-pci-image::before,
.tt-portfolio-carousel.tt-pci-inside .tt-pci-video::before {
	position: absolute;
	display: block;
	content: "";
	inset: 0;
	background-color: #000;
	opacity: .25;
	z-index: 1;
}
.tt-portfolio-carousel.tt-pci-inside .tt-pci-image img,
.tt-portfolio-carousel.tt-pci-inside .tt-pci-video video {
	aspect-ratio: 3 / 2;
}

.tt-portfolio-carousel.tt-pci-inside .tt-pci-info {
	--_pc-info-margin: clamp(4%, 6%, 20px);

	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	inset: 0;
	margin: var(--_pc-info-margin);
	color: #FFF;
	z-index: 2;
	pointer-events: none;
}
.tt-portfolio-carousel.tt-pci-inside .tt-pci-title {
	margin: 0;
	color: #FFF;
}
.tt-portfolio-carousel.tt-pci-inside .tt-pci-title a {
	color: #FFF;
}
.tt-portfolio-carousel.tt-pci-inside .tt-pci-icon {
	top: auto;
	bottom: 0;
	right: 0;
	background-color: rgb(255 255 255 / 75%);
	backdrop-filter: blur(10px);
	color: #222;
}
.tt-portfolio-carousel.tt-pci-inside .tt-pci-icon svg {
	fill: #222;
}
.tt-portfolio-carousel.tt-pci-inside .tt-pci-categories {
	margin-top: 20px;
	padding-right: clamp(60px, 5vw, 80px);
}
.tt-portfolio-carousel.tt-pci-inside .tt-pci-category {
	background-color: rgb(255 255 255 / 75%);
	backdrop-filter: blur(10px);
	color: #222;
	border: none;
}
.tt-portfolio-carousel.tt-pci-inside .swiper-slide-active .tt-pci-category {
	pointer-events: initial;
}
.tt-portfolio-carousel.tt-pci-inside .swiper-slide-active .tt-pci-category:hover {
	background-color: #FFF;
	color: #222;
}


/* Portfolio carousel item boxed style
======================================= */
.tt-portfolio-carousel.tt-pci-boxed {
	--_tt-pci-border-radius: clamp(10px, 3vw, 20px);
	--_tt-pci-boxed-padding: clamp(10px, 2vw, 20px);
	--_tt-pci-box-shadow-width: 8px;
}
@media (min-width: 991px) {
	.tt-portfolio-carousel.tt-pci-boxed[data-size-small="true"] {
		--_tt-pci-boxed-padding: clamp(10px, 1vw, 20px);
	}
}
.tt-portfolio-carousel.tt-pci-boxed .swiper {
	padding-bottom: var(--_tt-pci-box-shadow-width);
}
.tt-portfolio-carousel.tt-pci-boxed .tt-pci-item-inner {
	background-color: var(--tt-accent-bg-color);
	padding: var(--_tt-pci-boxed-padding);
	border-radius: var(--_tt-pci-border-radius);
	border: 2px solid var(--tt-border-color);
	box-shadow: var(--_tt-pci-box-shadow-width) var(--_tt-pci-box-shadow-width) 0 -2px var(--tt-shadow-color);
}

.tt-portfolio-carousel.tt-pci-boxed.tt-pci-inside .tt-pci-info {
	margin: calc(var(--_pc-info-margin) + 2%);
}


/* Portfolio carousel item tilted style
======================================== */
.tt-portfolio-carousel.tt-pci-tilted .swiper {
	padding-top: 20px;
	padding-bottom: 20px;
}

@media (max-width: 990px) {
	.tt-portfolio-carousel.tt-pci-tilted[data-size-small="true"] .tt-portfolio-carousel-item {
		margin-left: 4vw;
		margin-right: 4vw;
	}
}

.tt-portfolio-carousel.tt-pci-tilted .tt-pci-item-inner {
	transition: transform .3s;
}
.tt-portfolio-carousel.tt-pci-tilted .swiper-slide.swiper-slide-prev .tt-pci-item-inner {
	transform: rotate(-1.2deg);
}

.tt-portfolio-carousel.tt-pci-tilted .swiper-slide.swiper-slide-next .tt-pci-item-inner {
	transform: rotate(-1.2deg);
}
.tt-portfolio-carousel.tt-pci-tilted .swiper-slide.swiper-slide-active .tt-pci-item-inner {
	transform: rotate(1.2deg);
}
.tt-portfolio-carousel.tt-pci-tilted .tt-pci-item-inner {
	transform: rotate(1.2deg);
}


/* Portfolio carousel full height
================================== */
.tt-portfolio-carousel.tt-pci-full {
	margin: 0;
}
.tt-portfolio-carousel.tt-pci-full .swiper {
	display: flex;
	align-items: center;
	min-height: 100vh;
	min-height: 100svh;
	margin: 0;
	padding-top: 80px;
	padding-bottom: 80px;
}
.tt-portfolio-carousel.tt-pci-full:not([data-size-small="true"]) .tt-portfolio-carousel-item {
	margin-left: 4.5vw;
	margin-right: 4.5vw;
}
.tt-portfolio-carousel.tt-pci-full[data-size-small="true"] .tt-portfolio-carousel-item {
	margin-left: 2vw;
	margin-right: 2vw;
}

/* Portfolio carousel full height nav */
.tt-portfolio-carousel.tt-pci-full .tt-pci-nav-prev, 
.tt-portfolio-carousel.tt-pci-full .tt-pci-nav-next {
	top: auto;
	bottom: 5%;
	transform: none;
}
.tt-portfolio-carousel.tt-pci-full .tt-pci-nav-arrow {
	width: 50px;
	height: 50px;
	background-color: transparent;
	backdrop-filter: none;
	font-size: 20px;
	color: var(--tt-dark-color);
	outline: none;
	border-radius: 100%;
	border: 2px solid var(--tt-dark-color);
	transition: none;
}
@media (max-width: 768px) {
	.tt-portfolio-carousel.tt-pci-full .tt-pci-nav-arrow {
		width: 40px;
		height: 40px;
		font-size: 17px;
	}
}
.tt-portfolio-carousel.tt-pci-full .tt-pci-nav-arrow:hover,
.tt-portfolio-carousel.tt-pci-full .tt-pci-nav-arrow:focus {
	background-color: var(--tt-dark-color);
	color: var(--tt-light-color);
}
.tt-portfolio-carousel.tt-pci-full .tt-pci-nav-next {
	right: 3.5%;
}
.tt-portfolio-carousel.tt-pci-full .tt-pci-nav-prev {
	left: auto;
	right: calc(3.5% + 70px);
}
@media (max-width: 768px) {
	.tt-portfolio-carousel.tt-pci-full .tt-pci-nav-prev {
		left: 3.5%;
	}
}

/* Portfolio carousel full height pagination */
.tt-portfolio-carousel.tt-pci-full .tt-pci-pagination {
	bottom: 6%;
}

/* Portfolio carousel full height social buttons */
.tt-portfolio-carousel.tt-pci-full .tt-social-buttons {
	position: absolute;
	left: 3.5%;
	bottom: 5%;
	z-index: 9;
}
.tt-portfolio-carousel.tt-pci-full .tt-social-buttons > ul > li a {
	font-size: 17px;
}
@media (max-width: 768px) {
	.tt-portfolio-carousel.tt-pci-full .tt-social-buttons {
		display: none;
	}
}


/* ------------------------------------------------------------- *
 * Team list
/* ------------------------------------------------------------- */

.tt-team-list {
}

.tt-team-list-item {
	position: relative;
}


/* Team list item image 
======================== */
.tt-teli-image {
	position: absolute;
	top: 50%;
	left: 10%;
	z-index: 2;
	pointer-events: none;
	transform: translateY(-50%);
}
@media (max-width: 768px) {
	.tt-teli-image {
		top: 25px;
		left: 20px;
		transform: none;
	}
}
.tt-team-list-item:hover .tt-teli-image {
	z-index: 9;
}
.tt-teli-image-inner {
	width: 100%;
	max-width: 90px;
	border-radius: 1000px;
	overflow: hidden;
	transform: scale(1);
}
.tt-teli-image img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: 50% 50%;
}


/* Team list item inner 
======================== */
.tt-teli-inner {
	position: relative;
	display: block;
	margin: auto;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 30%;
	padding-right: 5.5%;
	color: currentColor;
	overflow: hidden;
	border-bottom: 1px solid var(--tt-border-color);
}
@media (min-width: 769px) {
	.tt-teli-inner {
		display: flex;
		align-items: center;
		gap: 3%;
	}
}
@media (max-width: 768px) {
	.tt-teli-inner {
		padding-left: 140px;
	}
}
.tt-teli-inner:hover,
.tt-teli-inner:focus {
	color: currentColor;
}
.tt-team-list-item:first-child .tt-teli-inner {
	border-top: 1px solid var(--tt-border-color);
}

/* Team list item caption */
.tt-teli-caption {
	flex: 2;
}
.tt-teli-title {
	margin: 0;
	font-size: clamp(24px, 2vw, 38px);
	line-height: 1.2;
}
.tt-teli-info {
	margin-top: 5px;
	font-size: 16px;
}

/* Team list item description */
.tt-teli-description {
	flex: 1.5;
	max-width: 600px;
	font-size: 17px;
}
@media (max-width: 768px) {
	.tt-teli-description {
		margin-top: 10px;
	}
}


/* Team list hover (no effect on mobile devices!).
=================== */
body:not(.is-mobile) .tt-teli-inner::before {
	position: absolute;
	display: block;
	content: "";
	top: -1px;
	left: 0px;
	right: 0px;
	bottom: -1px;
	width: 100%;
	background-color: var(--tt-dark-color);
	z-index: -1;
	clip-path: inset(50% 0);
	transition: clip-path .3s ease-in-out;
	will-change: clip-path;
}
body:not(.is-mobile) .tt-teli-inner:hover::before {
	clip-path: inset(0 0);
}

body:not(.is-mobile) .tt-teli-inner {
	transition: color .3s ease-in-out;
}
body:not(.is-mobile) .tt-team-list-item:hover .tt-teli-inner {
	color: var(--tt-light-color);
}


/* Team list alter style (no effect on small screens and mobile devices!).
========================= */
@media (min-width: 767px) {
	body:not(.is-mobile) .tt-team-list.tt-teli-alter .tt-teli-image {
		position: absolute;
		top: 50%;
		left: 8%;
		z-index: 9;
		transform: translateY(-50%);
	}
	body:not(.is-mobile) .tt-wrap .tt-team-list.tt-teli-alter .tt-teli-image {
		left: 4%;
	}
	body:not(.is-mobile) .tt-team-list.tt-teli-alter .tt-teli-image-inner {
		max-width: clamp(120px, 16vw, 300px);
		border-radius: 15px;
		overflow: hidden;
		opacity: 0;
		transform: scale(0.7) rotate(0deg);;
		transition: all .3s cubic-bezier(0.64, 0.58, 0.47, 1.48);
	}
	body:not(.is-mobile) .tt-wrap .tt-team-list.tt-teli-alter .tt-teli-image-inner {
		max-width: clamp(120px, 13vw, 240px);
	}
	body:not(.is-mobile) .tt-team-list.tt-teli-alter .tt-team-list-item:hover .tt-teli-image-inner {
		opacity: 1;
		transform: scale(1);
	}
	body:not(.is-mobile) .tt-team-list.tt-teli-alter .tt-teli-image img {
		aspect-ratio: 3 / 4;
	}
}
@media (max-width: 768px) {
	body:not(.is-mobile) .tt-team-list.tt-teli-alter .tt-teli-image {
		top: 25px !important;
		left: 20px !important;
		transform: translateY(0);
	}
}


/* Team list tilted style
========================== */
.tt-team-list.tt-teli-tilted .tt-team-list-item:nth-child(odd) .tt-teli-image {
	top: 45%;
}
.tt-team-list.tt-teli-tilted .tt-team-list-item:nth-child(even) .tt-teli-image {
	top: 55%;
}
@media (max-width: 768px) {
	.tt-team-list.tt-teli-tilted .tt-teli-image {
		top: 25px !important;
		left: 20px !important;
		transform: translateY(0);
	}
}

@media (min-width: 767px) {
	body:not(.is-mobile) .tt-team-list.tt-teli-tilted.tt-teli-alter .tt-team-list-item:nth-child(odd):hover .tt-teli-image-inner {
		transform: rotate(3deg);
	}
	body:not(.is-mobile) .tt-team-list.tt-teli-tilted.tt-teli-alter .tt-team-list-item:nth-child(even):hover .tt-teli-image-inner {
		transform: rotate(-3deg);
	}
}

.tt-team-list.tt-teli-tilted .tt-teli-inner {
	margin-left: -5px;
	margin-right: -5px;
	background-color: var(--tt-bg-color);
	border-top: 1px solid var(--tt-border-color);
	border-bottom: 1px solid var(--tt-border-color);
}
.tt-team-list.tt-teli-tilted .tt-team-list-item:nth-child(odd) .tt-teli-inner {
	transform: rotate(.7deg);
}
.tt-team-list.tt-teli-tilted .tt-team-list-item:nth-child(even) .tt-teli-inner {
	transform: rotate(-.7deg);
}
@media (max-width: 768px) {
	.tt-team-list.tt-teli-tilted .tt-team-list-item:nth-child(odd) .tt-teli-inner {
		transform: rotate(1deg);
	}
	.tt-team-list.tt-teli-tilted .tt-team-list-item:nth-child(even) .tt-teli-inner {
		transform: rotate(-1deg);
	}
}


/* Team list boxed style
========================= */
.tt-team-list.tt-teli-boxed {
	margin-left: 3.5%;
	margin-right: 3.5%;
}
.tt-wrap .tt-team-list.tt-teli-boxed {
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 767px) {
	body:not(.is-mobile) .tt-team-list.tt-teli-boxed .tt-teli-image {
		left: 7%;
	}
}
@media (max-width: 768px) {
	.tt-wrap .tt-team-list.tt-teli-boxed .tt-teli-image {
		top: 25px !important;
		left: 20px !important;
		transform: translateY(0);
	}
}

.tt-team-list.tt-teli-boxed:not(.tt-teli-tilted) .tt-teli-inner {
	margin-bottom: 15px;
}
.tt-team-list.tt-teli-boxed .tt-teli-inner {
	padding-left: 30%;
   padding-right: 5.5%;
	border-radius: clamp(10px, 3vw, 20px);
	border: 2px solid var(--tt-border-color);
	box-shadow: 7px 7px 0 -2px var(--tt-shadow-color);
}
@media (max-width: 768px) {
	.tt-team-list.tt-teli-boxed .tt-teli-inner {
		padding-left: 140px;
	}
}
