/* CSS Color Variables */
:root {
  /* Primary/Brand Colors (adapted to the green theme) */
  --color-primary: #68A083; /* Calming Sage Green */
  --color-primary-dark: #497760; /* Darker Sage Green */
  
  /* Base Colors (black replaced with deep green) */
  --color-white: #FFF;
  --color-black: #0F1A14; /* Deep Forest Green, almost black */
  --color-pure-black: #0A140F; /* The very darkest green */
  
  /* Background Colors (a hierarchy of dark greens) */
  --color-bg-primary: #0F1A14; /* formerly #0a0a0a */
  --color-bg-secondary: #121F18; /* formerly #121212 */
  --color-bg-tertiary: #182820; /* formerly #1b1b1b */
  --color-bg-dark: #14211A; /* formerly #131212 */
  --color-bg-card: #1D2D24; /* formerly #1c1c1c */
  --color-bg-elevated: #20352A; /* formerly #212121 */
  --color-bg-hover: #284034; /* formerly #262626 */
  --color-bg-active: #355245; /* formerly #323232 */
  --color-bg-input: #2A4438; /* formerly #292929 */
  --color-bg-overlay: #0A140F; /* formerly #040404 */
  
  /* Text Colors (light text remains for contrast) */
  --color-text-primary: #FFF;
  --color-text-secondary: #e0e0e0;
  --color-text-tertiary: #CCC;
  --color-text-muted: #999;
  --color-text-subtle: #888;
  --color-text-disabled: #777;
  --color-text-placeholder: #999;
  --color-text-dark: #121F18; /* formerly #111 */
  --color-text-light-gray: #BBB;
  --color-text-medium-gray: #b1b1b1;
  --color-text-pale: #cacaca;
  --color-text-content: #b9b9b9;
  --color-text-bright: #eaeaea;
  --color-text-silver: #D2D2D2;
  
  /* Border Colors (gray values tinted with green) */
  --color-border-primary: rgba(90, 110, 100, 0.4);
  --color-border-secondary: rgba(90, 110, 100, 0.65);
  --color-border-light: rgba(110, 130, 120, 0.2);
  --color-border-medium: rgba(100, 120, 110, 0.35);
  --color-border-subtle: #355245; /* formerly #333 */
  --color-border-input: rgba(90, 110, 100, 0.6);
  --color-border-dark: #20352A; /* formerly #222 */
  --color-border-card: #20352A; /* formerly #212121 */
  
  /* Accent Colors (mid-grays replaced with mid-greens) */
  --color-accent-gray: #4E6E5E; /* formerly #515151 */
  --color-accent-medium: #497760; /* formerly #4e4e4e */
  --color-accent-light: #5A826D; /* formerly #555 */
  
  /* Overlay Colors (black overlays are now dark green) */
  --color-overlay-dark: rgba(10, 20, 15, 0.75); /* formerly rgb(0 0 0 / 75%) */
  --color-overlay-light: rgba(255, 255, 255, 0.3);
  --color-overlay-bg: rgba(10, 20, 15, 0.7); /* formerly rgba(0, 0, 0, 0.7) */
  --color-overlay-noise: rgba(130, 130, 130, 0.1);
  
  /* Tag/Badge Colors (using a desaturated green base) */
  --color-tag-bg: rgba(90, 110, 100, 0.12);
  --color-tag-bg-hover: rgba(90, 110, 100, 0.35);
  --color-tag-bg-alt: rgba(90, 110, 100, 0.22);
  --color-tag-bg-alt-hover: rgba(90, 110, 100, 0.40);
  
  /* Form Colors */
  --color-form-bg: rgba(90, 110, 100, 0.10);
  --color-form-bg-disabled: rgba(90, 110, 100, 0.06);
  --color-form-bg-table: rgba(90, 110, 100, 0.05);
  --color-form-header: rgba(90, 110, 100, 0.15);
  --color-form-border: rgba(90, 110, 100, 0.25);
  
  /* Stroke Colors */
  --color-stroke-primary: #FFF;
  --color-stroke-dark: #121F18; /* formerly #111 */
  --color-stroke-muted: #AAA;
  
  /* Line Colors */
  --color-line-divider: #607A6C; /* formerly #7d7d7d */
  --color-line-accent: #355245; /* formerly #3e3e3e */
}
/* ------------------------------------------------------------- *
 * Portfolio slider (full screen)
/* ------------------------------------------------------------- */

.tt-portfolio-slider {
	position: relative;
	width: 100%;
	background-color: var(--color-bg-primary);
}

.tt-portfolio-slider .swiper {
	height: 100vh;
}
@media (max-width: 1024px) {
	.tt-portfolio-slider .swiper {
		height: calc(100vh - 50px);
	}
}

/* Portfolio slider slide */
.tt-portfolio-slider .swiper-slide {
	position: relative;
	overflow: hidden;
	background-color: var(--color-black);
}


/* Portfolio slider item 
========================= */
.tt-portfolio-slider-item {
	position: relative;
	height: 100%;
}

img.tt-psi-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/* Slide opasity cover (for prev/next slides) */
.tt-portfolio-slider-item::after {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	background-color: var(--color-black);
	transition: 0.5s ease-in-out;
}
.swiper-slide-prev .tt-portfolio-slider-item::after,
.swiper-slide-next .tt-portfolio-slider-item::after {
	opacity: .7;
	visibility: visible;
}


/* Portfolio slider caption 
============================ */
.tt-portfolio-slider-caption {
	position: absolute;
	top: 55%;
	left: 0;
	width: auto;
	/*max-width: 1000px;*/
	margin: 0px 2% 0 12%;
	color: var(--color-text-primary);
	z-index: 998;
	pointer-events: none;
	transform: translate3d(0, -50%, 0);
}
@media (max-width: 767px) {
	.tt-portfolio-slider-caption {
		margin-left: 10%;
	}
}
.tt-ps-caption-inner {
}

.tt-portfolio-slider-caption a {
	pointer-events: initial;
}

/* Portfolio slider caption title */
.tt-ps-caption-title {
	margin: 0;
	font-size: clamp(40px, 5.2vw, 100px);
	font-weight: bold;
	font-weight: 600;
	line-height: 1.2;
}
.tt-ps-caption-title a {
	display: inline;
	color: var(--color-text-primary);
}

/* Portfolio slider caption title hover if the magic cursor is not enabled */
body:not(.tt-magic-cursor) .tt-ps-caption-title a {
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(transparent calc(100% - 3px),currentColor 3px);
	background-image: linear-gradient(transparent calc(100% - 3px),currentColor 3px);
	background-image: -ms-linear-gradient(transparent 96%,currentColor 3px);
	transition: 0.6s cubic-bezier(.215,.61,.355,1);
	background-size: 0 96%;
}
body:not(.tt-magic-cursor) .tt-ps-caption-title a:hover {
	background-size: 100% 96%;
	color: currentColor;
}

/* Portfolio slider caption category */
.tt-ps-caption-category {
	margin: 30px 0 0 0;
	font-size: calc(13px + 0.1vw);
	font-weight: 500;
}
@media (max-width: 1024px) {
	.tt-ps-caption-category {
		margin: 30px 0 0 0;
	}
}


/* Portfolio slider caption position 
===================================== */
/* Position center */
.tt-portfolio-slider-caption.psc-center {
	top: 50%;
	left: 50%;
	width: 90%;
	margin: 0;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
	transform: translate(-50%, -50%);
}


/* Portfolio slider caption styles 
=================================== */
/* Style stroke */
.tt-portfolio-slider-caption.psc-stroke .tt-ps-caption-title {
	font-weight: bold;
	font-weight: 800;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--color-stroke-primary);
	-webkit-text-fill-color: transparent;
}
@media (max-width: 1200px) {
	.tt-portfolio-slider-caption.psc-stroke .tt-ps-caption-title {
		-webkit-text-stroke-width: 1px;	
	}
}
@media (max-width: 991px) {
	.tt-portfolio-slider-caption.psc-stroke .tt-ps-caption-title {
		-webkit-text-stroke-width: 1px;	
	}
}


/* Portfolio slider navigation 
=============================== */
.tt-portfolio-slider-navigation {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 4%;
	left: 50%;
	width: 300px;
	height: 60px;
	z-index: 1;
	transform: translate3d(-50%, 0, 0);
}
@media (max-width: 767px) {
	.tt-portfolio-slider-navigation {
		width: 90%;
	}
}

.tt-ps-nav-prev,
.tt-ps-nav-next {
	position: absolute;
	top: 0;
	z-index: 20;
}
.tt-ps-nav-prev {
	left: 0;
}
.tt-ps-nav-next {
	right: 0;
}

.tt-ps-nav-arrow {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	font-size: 18px;
	color: var(--color-text-primary);
	cursor: pointer;
	outline: none;
}
body:not(.tt-magic-cursor) .tt-ps-nav-arrow:hover {
	opacity: .5;
}
.tt-ps-nav-arrow-prev::after,
.tt-ps-nav-arrow-next::after {
	line-height: 0;

	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.tt-ps-nav-arrow-prev::after {
	content: "\f053";
}
.tt-ps-nav-arrow-next::after {
	content: "\f054";
}

.tt-ps-nav-arrow.tt-ps-nav-arrow-disabled {
	/* opacity: .5; */
	cursor: auto;
	pointer-events: none;
}

.tt-portfolio-slider .swiper-button-lock {
	display: none;
}


/* Portfolio slider pagination 
=============================== */
.tt-ps-nav-pagination {
}

.tt-portfolio-slider .swiper-pagination-lock {
	display: none;
}

/* Portfolio slider pagination bullets */
.tt-ps-nav-pagination-bullets {
	font-size: 0;
}
.tt-ps-nav-pagination-bullets .swiper-pagination-bullet {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: transparent;
	margin: 8px;
	opacity: 1;
	border-radius: 100%;
	border: 2px solid var(--color-white);
}
.tt-ps-nav-pagination-bullets .swiper-pagination-bullet-active {
	background: var(--color-text-primary);
	opacity: 1;
}

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

/* Portfolio slider pagination fraction */
.tt-ps-nav-pagination-fraction {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text-primary);
	line-height: 1;
}

.tt-ps-nav-pagination-fraction .swiper-pagination-current {
	position: relative;
	top: -4px;
}
.tt-ps-nav-pagination-fraction .swiper-pagination-total {
	position: relative;
	bottom: -4px;
}

/* Portfolio slider pagination progressbar */
.tt-ps-nav-pagination-progressbar {
	position: absolute;
	left: 70px;
	right: 70px;
	width: auto;
	max-width: 100%;
	height: 2px;
	background-color: var(--color-overlay-light);
}
.tt-ps-nav-pagination-progressbar .swiper-pagination-progressbar-fill {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-text-primary);
	transform: scale(0);
	transform-origin: left top;
}


/* If portfolio slider item image is light (class "psi-image-is-light")
=========================================== */
/* Make slider caption dark */
body.psi-light-image-on .tt-ps-caption-category,
body.psi-light-image-on .tt-ps-caption-title a {
	color: var(--color-text-dark);
}

body.psi-light-image-on .tt-portfolio-slider-caption.psc-stroke .tt-ps-caption-title {
    -webkit-text-stroke-color: var(--color-text-dark);
}

/* Make slider navigation dark */
body.psi-light-image-on .tt-ps-nav-pagination-fraction,
body.psi-light-image-on .tt-ps-nav-arrow {
	color: var(--color-text-dark);
}
body.psi-light-image-on .tt-ps-nav-pagination-progressbar {
	background-color: rgb(0 0 0 / 20%);
}
body.psi-light-image-on .tt-ps-nav-pagination-progressbar .swiper-pagination-progressbar-fill {
	background-color: var(--color-text-dark);
}
body.psi-light-image-on .tt-ps-nav-pagination-bullets .swiper-pagination-bullet {
	border-color: var(--color-text-dark);
}
body.psi-light-image-on .tt-ps-nav-pagination-bullets .swiper-pagination-bullet-active {
	background: var(--color-text-dark);
}

/* Make magic cursor dark */
body.psi-light-image-on:not(.tt-ol-menu-open) #ball {
	border-color: var(--color-accent-gray);
}
body.psi-light-image-on:not(.tt-ol-menu-open) #ball .ball-drag::before,
body.psi-light-image-on:not(.tt-ol-menu-open) #ball .ball-drag::after {
	color: var(--color-text-dark);
}

/* Make header logo dark */
body.psi-light-image-on #tt-header .tt-logo-light {
	display: none;
}
body.psi-light-image-on #tt-header .tt-logo-dark {
	display: block;
}

/* Make overlay menu toggle button dark */
body.psi-light-image-on:not(.tt-ol-menu-open) .tt-ol-menu-toggle-btn-text {
	color: var(--color-text-dark);
}
body.psi-light-image-on:not(.tt-ol-menu-open) .tt-ol-menu-toggle-btn span::before, 
body.psi-light-image-on:not(.tt-ol-menu-open) .tt-ol-menu-toggle-btn span::after {
	background-color: var(--color-text-dark);
}

/* Make classic menu links dark */
@media (min-width: 1025px) {
	body.psi-light-image-on .tt-main-menu-list > li > a, 
	body.psi-light-image-on .tt-main-menu-list > li > .tt-submenu-trigger > a {
		color: var(--color-text-dark);
	}
	body.psi-light-image-on .tt-main-menu-list.tt-mm-hover > li > a:hover, 
	body.psi-light-image-on .tt-main-menu-list.tt-mm-hover > li > .tt-submenu-trigger > a:hover, 
	body.psi-light-image-on .tt-main-menu-list.tt-mm-hover > li.active > a, 
	body.psi-light-image-on .tt-main-menu-list.tt-mm-hover > li.active > .tt-submenu-trigger > a, 
	body.psi-light-image-on .tt-main-menu-list.tt-mm-hover > li.tt-submenu-open > .tt-submenu-trigger > a {
		opacity: 1;
		color: var(--color-black);
	}
}
@media (max-width: 1024px) {
	body.psi-light-image-on:not(.tt-m-menu-open) .tt-m-menu-toggle-btn-text {
		color: var(--color-text-dark);
	}
	body.psi-light-image-on:not(.tt-m-menu-open) .tt-m-menu-toggle-btn span::before, 
	body.psi-light-image-on:not(.tt-m-menu-open) .tt-m-menu-toggle-btn span::after {
		background-color: var(--color-text-dark);
	}
}

/* Make header tools dark */
body.psi-light-image-on .tt-header-tools .tt-hti-btn {
	color: var(--color-text-dark);
}

/* Make footer dark (if position is absolute) */
@media (min-width: 1025px) {
	body.psi-light-image-on #tt-footer.footer-absolute,
	body.psi-light-image-on #tt-footer.footer-absolute a,
	body.psi-light-image-on #tt-footer.footer-absolute .tt-btn-link > *, 
	body.psi-light-image-on #tt-footer.footer-absolute .tt-btn-link > *::after {
		color: var(--color-text-dark);
	}
	body.psi-light-image-on #tt-footer.footer-absolute .tt-btn-link::after {
		background-color: var(--color-text-dark);
	}
}


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

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

.tt-portfolio-carousel .swiper-wrapper {
	position: relative;
}

.tt-portfolio-carousel .swiper-wrapper.swtr-smooth { /* Add transition when windows resize or orientation change */
	transition: transform 0.8s !important;
}

.tt-portfolio-carousel .swiper-slide {
	display: flex;
	align-items: center;
	height: 100vh;
}
@media (min-width: 1025px) {
	.tt-portfolio-carousel .swiper-slide {
		width: auto;
	}
}
@media (max-width: 1024px) {
	.tt-portfolio-carousel .swiper-slide {
		height: calc(100vh - 50px);
	}
}

.tt-pc-ghost {
	position: absolute;
	font-size: calc(16px + 24vw);
	font-weight: 600;
	color: var(--color-text-primary);
	opacity: .02;
	line-height: 1;
	z-index: -1;
}
.tt-pc-ghost span {
	display: block;
}


/* Portfolio carousel item
=========================== */
.tt-portfolio-carousel-item {
	position: relative;
	display: flex;
	line-height: 0;
}
@media (min-width: 1025px) {
	.tt-portfolio-carousel-item {
		margin-left: 7vw;
		margin-right: 7vw;
	}
}

.tt-pci-image-wrap {
	position: relative;
	width: 100%;
	z-index: 2;
	overflow: hidden;
}
.tt-pci-image,
.tt-portfolio-carousel-item .tt-pci-video {
	position: relative;
}
video.tt-pci-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 1025px) {
	.tt-pci-image,
	.tt-portfolio-carousel-item .tt-pci-video {
		height: 30vw;
	}
	.tt-pci-image {
		width: auto;
	}
	.tt-portfolio-carousel-item .tt-pci-video {
		width: 48vw;
	}
}
@media (max-width: 1024px) {
	.tt-portfolio-carousel-item {
		width: 100%;
	}
	.tt-pci-image,
	.tt-portfolio-carousel-item .tt-pci-video {
		width: 100%;
		height: 60vw;
		object-fit: cover;
		object-position: 50% 50%;
	}
}


/* Portfolio carousel item hover 
================================= */
@media (min-width: 1025px) {
	.pci-hover .tt-slide-active .tt-portfolio-carousel-item .tt-pci-image-wrap,
	.pci-hover .tt-slide-active .tt-portfolio-carousel-item .tt-pci-caption-front {
		clip-path: inset(0 0 0 0);
		transition: all 0.8s cubic-bezier(0.07, 0.72, 0.29, 0.96);
	}
	.pci-hover .tt-slide-active .tt-portfolio-carousel-item:hover .tt-pci-image-wrap,
	.pci-hover .tt-slide-active .tt-portfolio-carousel-item:hover .tt-pci-caption-front {
		clip-path: inset(3% 3% 3% 3%);
	}
	.pci-hover .tt-slide-active-start .tt-portfolio-carousel-item:hover .tt-pci-image-wrap,
	.pci-hover .tt-slide-active-start .tt-portfolio-carousel-item:hover .tt-pci-caption-front {
		clip-path: inset(0 0 0 0);
	}

	.pci-hover .tt-pci-image {
		transition: all 1s cubic-bezier(0.07, 0.72, 0.29, 0.96);
	}
	.pci-hover .tt-portfolio-carousel-item:hover .tt-pci-image {
		transform: scale(1.05); 
	}
}


/* Slide disabled (for non active slides)
================== */
.tt-portfolio-carousel-item {
	transition: all 0.5s ease-in-out;
}
.swiper-slide.tt-pcs-disabled .tt-portfolio-carousel-item {
	cursor: auto;
	pointer-events: none;
	opacity: .3;
	transform: scale(0.9);
}


/* Portfolio carousel item caption 
=================================== */
.tt-pci-caption {
	position: absolute;
	top: 50%;
	width: 100%;
}
.tt-pci-caption-inner {
	position: relative;
}
.tt-pci-title {
	margin: 0;
	font-size: calc(16px + 3.2vw);
	font-weight: bold;
	font-weight: 500;
	color: var(--color-text-primary);
	line-height: 1.2;
}
.tt-pci-categories {
	position: relative;
	margin-top: 30px;
}
.tt-pci-category {
	position: relative;
	display: inline-block;
	font-size: calc(13px + 0.1vw);
	color: var(--color-text-primary);
	line-height: 1.2;
}
.tt-pci-category ~ .tt-pci-category {
	margin-left: -4px;
}
.tt-pci-category ~ .tt-pci-category:not(:empty)::before {
	content: ", ";
}
.tt-pci-category ~ .tt-pci-category ~ .tt-pci-category ~ .tt-pci-category {
	visibility: hidden;
	width: 0;
}
.tt-pci-category ~ .tt-pci-category ~ .tt-pci-category ~ .tt-pci-category ~ .tt-pci-category {
	display: none;
}
.tt-pci-category + .tt-pci-category + .tt-pci-category + .tt-pci-category::before {
	content: "...";
	margin-left: 5px;
	visibility: visible;
}

@media (min-width: 1025px) {
	.tt-pci-caption {
		left: 0;
		transform: translate3d(-100px, -50%, 0);
	}
	.tt-pci-caption-front {
		position: absolute;
		top: 0;
		left: -1px;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		z-index: 3;
		overflow: hidden;
	}
	.tt-pci-caption-back {
		left: -1px;
		z-index: 1;
	}
}
@media (max-width: 1024px) {
	.tt-pci-caption {
		top: 40%;
		left: 5%;
		right: 5%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.tt-pci-caption-back {
		display: none;
	}
	.tt-pci-caption-front {
		z-index: 9;
	}
}


/* Portfolio carousel caption animation 
======================================== */
.swiper-slide .tt-pci-caption-inner,
.swiper-slide .tt-pci-categories {
	opacity: 0;
	visibility: hidden;
	transition: 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.swiper-slide.swiper-slide-prev .tt-pci-caption-inner,
.swiper-slide.swiper-slide-next .tt-pci-caption-inner,
.swiper-slide.swiper-slide-prev .tt-pci-categories,
.swiper-slide.swiper-slide-next .tt-pci-categories {
	transition: all 0.3s ease-out;
}
.swiper-slide.swiper-slide-active .tt-pci-caption-inner,
.swiper-slide.swiper-slide-active .tt-pci-categories {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}

/* Offset */
.swiper-slide.swiper-slide-prev .tt-pci-caption-inner {
	transform: translate3d(-100px, 0, 0) skewX(10deg);
}
.swiper-slide.swiper-slide-next .tt-pci-caption-inner {
	transform: translate3d(100px, 0, 0) skewX(-10deg);
}
.swiper-slide.swiper-slide-prev .tt-pci-categories {
	transform: translate3d(-30px, 0, 0);
}
.swiper-slide.swiper-slide-next .tt-pci-categories {
	transform: translate3d(30px, 0, 0);
}

/* Delay */
.swiper-slide.swiper-slide-active .tt-pci-caption-inner {
	transition-delay: 0.6s;
}
.swiper-slide.swiper-slide-active .tt-pci-categories {
	transition-delay: 0.7s;
}


/* Portfolio carousel caption position 
======================================= */
/* Position center */
@media (min-width: 1025px) {
	.pci-caption-center .swiper-slide.tt-slide-active .tt-pci-caption-front {
		width: auto;
		margin-left: -10vw;
		margin-right: -10vw;
		pointer-events: none;
	}
}
.pci-caption-center .tt-pci-caption-front {
	overflow: visible;
}
.pci-caption-center .tt-pci-caption {
	top: 50%;
	left: 50%;
	padding: 0 5%;
	text-align: center;
	transform: translate3d(-50%, -50%, 0);
}
.pci-caption-center .tt-pci-title {
	font-weight: 600;
}
.pci-caption-center .tt-pci-caption-back {
	display: none !important;
}


/* Portfolio carousel caption styles
===================================== */
/* Style stroke */
@media (min-width: 1025px) {
	.pci-caption-stroke.pci-caption-center .tt-pci-caption-front .tt-pci-title,
	.pci-caption-stroke .tt-pci-caption-back .tt-pci-title {
		-webkit-text-stroke-width: 1px;
		-webkit-text-stroke-color: var(--color-stroke-primary);
		-webkit-text-fill-color: transparent;
	}
	.pci-caption-stroke .tt-pci-title {
		font-weight: bold;
		font-weight: 700;
	}
	.pci-caption-stroke.pci-caption-center .tt-pci-caption-front .tt-pci-title,
	.pci-caption-stroke.pci-caption-center .tt-pci-caption-back .tt-pci-title {
		-webkit-text-stroke-width: 2px;
		font-weight: bold;
		font-weight: 800;
	}

	/* If Firefox */
	body.is-firefox .pci-caption-stroke.pci-caption-center .tt-pci-caption-front .tt-pci-title,
	body.is-firefox .pci-caption-stroke .tt-pci-caption-back .tt-pci-title {
		-webkit-text-stroke-width: 2px;
	}
}

/* If item background image is light */
@media (min-width: 1025px) {
	.pci-image-is-light .tt-pci-caption-front .tt-pci-title {
		color: var(--color-text-dark);
	}
	.pci-image-is-light .tt-pci-caption-front .tt-pci-category {
		color: var(--color-text-dark);
	}
	.pci-image-is-light .tt-pci-image-wrap[class*="cover-opacity-"]::before {
		display: none !important;
	}
}


/* Portfolio carousel navigation 
================================= */
.tt-pc-navigation {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 4%;
	left: 50%;
	width: 300px;
	height: 60px;
	z-index: 1;
	transform: translate3d(-50%, 0, 0);
}
@media (max-width: 767px) {
	.tt-pc-navigation {
		width: 90%;
	}
}

.tt-pc-nav-prev,
.tt-pc-nav-next {
	position: absolute;
	top: 0;
	z-index: 20;
}
.tt-pc-nav-prev {
	left: 0;
}
.tt-pc-nav-next {
	right: 0;
}

.tt-pc-arrow {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	font-size: 18px;
	color: var(--color-text-primary);
	cursor: pointer;
	outline: none;
}
.tt-pc-arrow-prev::after,
.tt-pc-arrow-next::after {
	line-height: 0;

	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.tt-pc-arrow-prev::after {
	content: "\f053";
}
.tt-pc-arrow-next::after {
	content: "\f054";
}

.tt-pc-arrow.tt-pc-arrow-disabled {
	cursor: auto;
	pointer-events: none;
}

.tt-portfolio-carousel .swiper-button-lock {
	display: none;
}


/* Portfolio carousel pagination 
================================= */
.tt-pc-pagination {
}

.tt-portfolio-carousel .swiper-pagination-lock {
	display: none;
}

/* Portfolio carousel pagination bullets */
.tt-pc-pagination-bullets {
	font-size: 0;
}
.tt-pc-pagination-bullets .swiper-pagination-bullet {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: transparent;
	margin: 8px;
	opacity: 1;
	border-radius: 100%;
	border: 2px solid var(--color-white);
}
.tt-pc-pagination-bullets .swiper-pagination-bullet-active {
	background: var(--color-text-primary);
	opacity: 1;
}

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

/* Portfolio carousel pagination fraction */
.tt-pc-pagination-fraction {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text-primary);
	line-height: 1;
}

.tt-pc-pagination-fraction .swiper-pagination-current {
	position: relative;
	top: -4px;
}
.tt-pc-pagination-fraction .swiper-pagination-total {
	position: relative;
	bottom: -4px;
}

/* Portfolio carousel pagination progressbar */
.tt-pc-pagination-progressbar {
	position: absolute;
	left: 70px;
	right: 70px;
	width: auto;
	max-width: 100%;
	height: 2px;
	background-color: var(--color-overlay-light);
}
.tt-pc-pagination-progressbar .swiper-pagination-progressbar-fill {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-text-primary);
	transform: scale(0);
	transform-origin: left top;
}


/* Portfolio carousel scale down 
================================= */
.tt-portfolio-carousel.pc-scale-down .swiper-slide {
	transition: none !important;
}


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

.tt-portfolio-hover-carousel {
	position: relative;
}

.tt-portfolio-hover-carousel .swiper-slide {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto !important;
	height: 100vh;
	padding: 0 5.2%;
}
@media (max-width: 768px) {
	.tt-portfolio-hover-carousel .swiper-slide {
		padding: 0 50px;
	}
}

/* Disable actions until animations are loaded (for "tt-transition" only) */
body.tt-transition .tt-portfolio-hover-carousel::before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
}
body.tt-transition .tt-portfolio-hover-carousel.tt-phc-ready::before {
	display: none;
}


/* Portfolio hover carousel item 
================================= */
.tt-phc-item {
	position: relative;
	display: block;
	pointer-events: none;
}
.tt-portfolio-hover-carousel .swiper-slide.active .tt-phc-item {
	pointer-events: initial;
}
.tt-phc-item::before {
	position: absolute;
	content: attr(data-number);
	top: 0;
	left: -30px;
	width: 20px;
	font-size: calc(12px + 0.1vw);
	font-weight: 300;
	line-height: 10px;
	color: var(--color-text-primary);
	opacity: .5;
	transition: opacity .3s ease-in-out;
}
@media (max-width: 768px) {
	.tt-phc-item::before {
		position: absolute;
		content: attr(data-number);
		top: 0;
		left: -30px;
		width: 20px;
		font-size: 14px;
		font-weight: normal;
		line-height: 10px;
		opacity: .5;
		transition: opacity .3s ease-in-out;
	}
}
.tt-portfolio-hover-carousel .swiper-slide.active .tt-phc-item::before {
	opacity: 1;
}

/* Title */
.tt-phc-item-title {
	margin: 0;
	font-size: calc(28px + 2.3vw);
	font-weight: bold;
	font-weight: 700;
	line-height: 1.2;
	color: transparent;
	-webkit-text-stroke: 1px var(--color-white);
	opacity: .8;
	transition: color .3s ease-in-out;
}
.tt-portfolio-hover-carousel .swiper-slide.active .tt-phc-item-title {
	color: var(--color-text-primary);
	opacity: 1;
}

/* Categories */
.tt-phc-categories {
	position: relative;
	margin-top: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, -5px, 0);
	transition: all .3s ease-in-out;
}
.tt-portfolio-hover-carousel .swiper-slide.active .tt-phc-categories {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}
.tt-phc-category {
	position: relative;
	display: inline-block;
	margin-left: 3px;
	font-size: calc(13px + 0.1vw);
	color: var(--color-text-primary);
	line-height: 1.2;
}
.tt-phc-category ~ .tt-phc-category {
	margin-left: -4px;
}
.tt-phc-category ~ .tt-phc-category:not(:empty)::before {
	content: ", ";
}
.tt-phc-category ~ .tt-phc-category ~ .tt-phc-category ~ .tt-phc-category {
	visibility: hidden;
	width: 0;
}
.tt-phc-category ~ .tt-phc-category ~ .tt-phc-category ~ .tt-phc-category ~ .tt-phc-category {
	display: none;
}
.tt-phc-category + .tt-phc-category + .tt-phc-category + .tt-phc-category::before {
	content: "...";
	margin-left: 5px;
	visibility: visible;
}


/* Portfolio hover carousel images 
=================================== */
.tt-portfolio-hover-carousel-images {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	overflow: hidden;
}

.phc-images-inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--color-bg-secondary);
}

.phc-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transform: scale(1.03);
	transition: all .4s ease-in-out;
}
.phc-image.active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.phc-image img,
.phc-image video.phc-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}


/* Portfolio hover carousel counter 
==================================== */
.tt-phc-counter {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 35px;
	left: 50.3%;
	height: 40px;
	font-size: 14px;
	color: var(--color-text-primary);
	font-weight: normal;
	z-index: 1;
	transform: translate3d(-50%, 0, 0);
}

.tt-phc-count {
	position: relative;
	top: -4px;
	height: 40px;
	line-height: 40px;
}

.tt-phc-count span:first-child {
	opacity: 1;
}

.tt-phc-count span {
	position: absolute;
	right: 0;
	top: 0;
	opacity: 0;
}

.tt-phc-counter-separator {
	position: relative;
	margin: 0;
}
.tt-phc-counter-separator::before {
	display: block;
	content: "";
	width: 17px;
	height: 2px;
	background-color: var(--color-text-primary);
	opacity: .7;
	transform: rotate(-70deg);
}

.tt-phc-total {
	position: relative;
	bottom: -4px;
	height: 40px;
	line-height: 40px;
}


/* If image is light 
===================== */
.phc-image.phc-image-is-light[class*="cover-opacity-"]::before {
	opacity: 0 !important;
}
body.tt-light-bg-on .tt-phc-item-title {
	-webkit-text-stroke: 1px var(--color-text-dark);
}
body.tt-light-bg-on .tt-portfolio-hover-carousel .swiper-slide.active .tt-phc-item-title {
	color: var(--color-text-dark);
	-webkit-text-stroke: 1px var(--color-text-dark);
}
body.tt-light-bg-on .tt-phc-category,
body.tt-light-bg-on .tt-phc-item::before,
body.tt-light-bg-on .tt-phc-counter {
	color: var(--color-text-dark);
}
body.tt-light-bg-on .tt-phc-counter-separator::before {
	background-color: var(--color-text-dark);
}

body.tt-portfolio-hover-carousel-on.tt-light-bg-on #ball {
	border-color: var(--color-text-dark);
}
body.tt-portfolio-hover-carousel-on.tt-light-bg-on  #ball .ball-drag,
body.tt-portfolio-hover-carousel-on.tt-light-bg-on  #ball .ball-drag::before,
body.tt-portfolio-hover-carousel-on.tt-light-bg-on  #ball .ball-drag::after {
	color: var(--color-text-dark);
}

/* Make header logo dark */
body.tt-light-bg-on #tt-header .tt-logo-light {
	display: none;
}
body.tt-light-bg-on #tt-header .tt-logo-dark {
	display: block;
}

/* Make overlay menu toggle button dark */
body.tt-light-bg-on:not(.tt-ol-menu-open) .tt-ol-menu-toggle-btn-text {
	color: var(--color-text-dark);
}
body.tt-light-bg-on:not(.tt-ol-menu-open) .tt-ol-menu-toggle-btn span::before, 
body.tt-light-bg-on:not(.tt-ol-menu-open) .tt-ol-menu-toggle-btn span::after {
	background-color: var(--color-text-dark);
}

/* Make classic menu links dark */
@media (min-width: 1025px) {
	body.tt-light-bg-on .tt-main-menu-list > li > a, 
	body.tt-light-bg-on .tt-main-menu-list > li > .tt-submenu-trigger > a {
		color: var(--color-text-dark);
	}
	body.tt-light-bg-on .tt-main-menu-list.tt-mm-hover > li > a:hover, 
	body.tt-light-bg-on .tt-main-menu-list.tt-mm-hover > li > .tt-submenu-trigger > a:hover, 
	body.tt-light-bg-on .tt-main-menu-list.tt-mm-hover > li.active > a, 
	body.tt-light-bg-on .tt-main-menu-list.tt-mm-hover > li.active > .tt-submenu-trigger > a, 
	body.tt-light-bg-on .tt-main-menu-list.tt-mm-hover > li.tt-submenu-open > .tt-submenu-trigger > a {
		opacity: 1;
		color: var(--color-black);
	}
}
@media (max-width: 1024px) {
	body.tt-light-bg-on:not(.tt-m-menu-open) .tt-m-menu-toggle-btn-text {
		color: var(--color-text-dark);
	}
	body.tt-light-bg-on:not(.tt-m-menu-open) .tt-m-menu-toggle-btn span::before, 
	body.tt-light-bg-on:not(.tt-m-menu-open) .tt-m-menu-toggle-btn span::after {
		background-color: var(--color-text-dark);
	}
}

/* Make header tools dark */
body.tt-light-bg-on .tt-header-tools .tt-hti-btn {
	color: var(--color-text-dark);
}

/* Make footer dark (if position is absolute) */
@media (min-width: 1025px) {
	body.tt-light-bg-on #tt-footer.footer-absolute,
	body.tt-light-bg-on #tt-footer.footer-absolute a,
	body.tt-light-bg-on #tt-footer.footer-absolute .tt-btn-link > *, 
	body.tt-light-bg-on #tt-footer.footer-absolute .tt-btn-link > *::after {
		color: var(--color-text-dark);
	}
	body.tt-light-bg-on #tt-footer.footer-absolute .tt-btn-link::after {
		background-color: var(--color-text-dark);
	}
}


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

.tt-gallery {
	position: relative;
}

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

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

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

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

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

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

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

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

/* tt-Gallery video */
.tt-gallery-video-wrap {
	position: relative;
}
.tt-gallery-video-wrap::before {
	position: absolute;
	bottom: 15px;
	right: 20px;
	font-size: 19px;
	color: var(--color-text-primary);
	z-index: 2;
	opacity: .3;

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


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

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


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

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

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

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

/* Lightgallery autoplay progress bar improvements */
.lg-progress-bar {
	background-color: var(--color-border-subtle);
	height: 3px;
}
.lg-progress-bar .lg-progress {
	background-color: var(--color-primary-dark);
	height: 3px;
}

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


/* ------------------------------------------------------------- *
 * Page nav
/* ------------------------------------------------------------- */

.tt-page-nav {
	position: relative;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
@media screen and (max-width: 1900px) and (min-width: 1024px) {
	.tt-page-nav {
		max-width: 40vw;
	}
}

/* Page nav link */
.tt-pn-link {
	position: relative;
	display: flex;
	align-items: center;
	text-decoration: none;
	overflow: hidden;
}

/* Page nav title */
.tt-pn-title {
	position: relative;
	display: block;
	left: 50%;
	font-size: clamp(42px, 6vw, 110px);
	font-weight: bold;
	font-weight: 500;
	color: var(--color-text-primary);
	line-height: 1.6;
	opacity: .4;
	white-space: nowrap;
	transform: translate3d(-50%, 0, 0);
	transition: transform .6s cubic-bezier(0.51, 0.57, 0.17, 1);

	/* Ellipsis */
	overflow: hidden;
	text-overflow: ellipsis;
} 
.tt-pn-hover-title {
	position: absolute;
	left: 50%;
	font-size: clamp(36px, 6vw, 110px);
	font-weight: bold;
	font-weight: 500;
	color: var(--color-text-primary);
	line-height: 1.6;
	white-space: nowrap;
	transform: translate3d(-50%, 100%, 0);
	transition: transform .6s cubic-bezier(0.51, 0.57, 0.17, 1);
}
@media (max-width: 1024px) {
	.tt-pn-title:hover {
		opacity: 1;
	}
	.tt-pn-hover-title {
		display: none;
	}
}

@media (min-width: 1025px) {
	.tt-pn-link:hover .tt-pn-title {
		transform: translate3d(-50%, -100%, 0);
		transition-delay: 0.1s;
	}
	.tt-pn-link:hover .tt-pn-hover-title {
		transform: translate3d(-50%, 0, 0);
		transition-delay: 0.1s;
	}

	/* If the hover title is cloned (have multiple <span>'s) then animate it */
	.tt-page-nav .tt-pn-hover-title span {
		display: inline-flex;
		align-items: center;
		padding-right: 5vw;
		animation: marquee 3s linear infinite;
		animation-play-state: paused;
	}
	.tt-page-nav .tt-pn-link:hover .tt-pn-hover-title span {
		animation: marquee 3s linear infinite;
		animation-play-state: running;
	}
	@-webkit-keyframes marquee {
		from { transform: translateX(0); }
		to { transform: translateX(-100%); }
	}
	@keyframes marquee {
		from { transform: translateX(0); }
		to { transform: translateX(-100%); }
	}
}

/* Page nav hover title separator (dot) */
.tt-pn-hover-title span::after {
	position: absolute;
	display: block;
	content: "";
	right: 1.9vw;
	top: 56%;
	width: .8vw;
	height: .8vw;
	background-color: var(--color-text-primary);
	border-radius: 100px;
	transform: translate3d(0, -50%, 0);
}

/* Page nav subtitle */
.tt-pn-subtitle {
	margin-top: 20px;
	font-size: calc(16px + 0.1vw);
	color: var(--color-text-primary);
}

/* Page nav image */
.tt-page-nav .tt-pn-image {
	display: none; /* disabled by default */
}
.tt-pn-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.tt-pn-image::before {
	position: absolute;
	display: block;
	content: "";
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background-color: var(--color-bg-overlay);
	opacity: .1;
}
.tt-pn-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#magic-cursor.tt-pn-hover-on {
	z-index: -1;
}
#magic-cursor.tt-pn-hover-on #ball {
	overflow: hidden;
	border: none !important;
}

/* Video */
video.tt-pn-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* Page nav styles 
=================== */
/* Style stroke (no effect on small screens) */
@media (min-width: 1025px) {
	.tt-page-nav.tt-pn-stroke .tt-pn-title {
		font-weight: bold;
		font-weight: 800;
		opacity: .6;
		-webkit-text-stroke-width: 1px;
		-webkit-text-stroke-color: var(--color-stroke-primary);
		-webkit-text-fill-color: transparent;
	}

	/* If Firefox */
	body.is-firefox .tt-page-nav.tt-pn-stroke .tt-pn-title {
		-webkit-text-stroke-width: 2px;
	}
}


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

.tt-logo-wall {
	margin: 0;
	padding: 0;
	margin-left: 2px;
	list-style: none;
	overflow: hidden;
}
.tt-logo-wall:after {
	content: "";
	clear: both;
	display: table;
}
.tt-logo-wall > li {
	display: block;
	float: left;
	width: 20%;
	margin-left: -2px;
	margin-bottom: -2px;
	text-align: center;
	border-width: 0 0 1px 1px;
	border-style: solid;
	border-color: var(--color-bg-elevated);
}
.tt-logo-wall > li > a {
	display: block;
}

/* Logo wall img */
.tt-logo-wall > li img {
	opacity: 0.5;
	vertical-align: middle;
	transition: opacity .3s;
}
.tt-logo-wall > li:hover img {
	opacity: 1;
}

/* Logo wall columns */
.tt-logo-wall.cl-col-4 > li {
	width: 25%;
}
.tt-logo-wall.cl-col-3 > li {
	width: 33.33333%;
}
.tt-logo-wall.cl-col-2 > li {
	width: 50%;
}

/* Logo wall on smaller screens */
@media (max-width: 767px) {
	.tt-logo-wall > li {
		width: 50% !important;
	}
}


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

.tt-image {
	overflow: hidden;
}

/* tt-image fixed height */
@media (min-width: 1025px) {
	.tt-image.tti-fixed-height img {
		width: 100%;
		height: 80vh;
		object-fit: cover;
		object-position: 50% 50%;
	}
}


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

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

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

.tt-content-carousel-item {
	position: relative;
	display: block;
	overflow: hidden;
	line-height: 1;
}

@media (min-width: 1025px) {
	.tt-content-carousel .swiper-slide {
		height: 100%;
		width: auto;
	}
	.tt-content-carousel-item {
		margin-left: 4vw;
		margin-right: 4vw;
	}
	.tt-content-carousel .tt-cc-image,
	.tt-content-carousel .swiper-slide .tt-cc-video {
		position: relative;
		width: 100%;
		height: 28vw;
		width: auto;
	}
}
@media (max-width: 1024px) {
	.tt-content-carousel-item {
		margin-left: 2vw;
		margin-right: 2vw;
	}
	.tt-content-carousel .tt-cc-image,
	.tt-content-carousel .swiper-slide .tt-cc-video {
		position: relative;
		width: 100%;
		height: 60vw;
		object-fit: cover;
		object-position: 50% 50%;
	}
}


/* 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: 50px;
	height: 50px;
	font-size: 21px;
	color: var(--color-text-primary);
	cursor: pointer;
	outline: none;
}
.tt-cc-nav-prev .tt-cc-nav-arrow::after,
.tt-cc-nav-next .tt-cc-nav-arrow::after {
	position: relative;
	line-height: 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.tt-cc-nav-prev .tt-cc-nav-arrow::after {
	content: "\f053";
}
.tt-cc-nav-next .tt-cc-nav-arrow::after {
	content: "\f054";
}

.tt-cc-nav-prev.tt-cc-nav-arrow-disabled .tt-cc-nav-arrow,
.tt-cc-nav-next.tt-cc-nav-arrow-disabled .tt-cc-nav-arrow {
	opacity: .3;
	cursor: auto;
	pointer-events: none;
}

/* Hide content carousel navigation*/
.tt-content-carousel.cc-hide-navigation .tt-cc-nav-prev,
.tt-content-carousel.cc-hide-navigation .tt-cc-nav-next {
	display: none !important;
}


/* Content carousel pagination 
=============================== */
.tt-cc-pagination {
	position: absolute;
	bottom: 5%;
	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: 10px;
	height: 10px;
	background-color: transparent;
	margin: 8px;
	opacity: 1;
	border-radius: 100%;
	border: 2px solid var(--color-white);
}
.tt-cc-pagination-bullets .swiper-pagination-bullet-active {
	background: var(--color-text-primary);
	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: 14px;
	font-weight: 600;
	color: var(--color-text-primary);
	letter-spacing: 2px;
}

.tt-cc-pagination-fraction .swiper-pagination-current {
	position: relative;
	top: -4px;
}
.tt-cc-pagination-fraction .swiper-pagination-total {
	position: relative;
	bottom: -4px;
}

/* Content carousel pagination progressbar */
.tt-cc-pagination-progressbar {
	width: 100%;
	max-width: 200px;
	height: 2px;
	background-color: var(--color-overlay-light);
}
@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: var(--color-text-primary);
	transform: scale(0);
	transform-origin: left top;
}

/* Content carousel pagination position outside */
.tt-content-carousel.cc-pagination-outside {
	overflow: visible;
	margin-bottom: 100px;
}
.tt-content-carousel.cc-pagination-outside .tt-cc-pagination {
	bottom: -55px;
}

/* Hide content carousel pagination (for desktop only!) */
body:not(.is-mobile) .tt-content-carousel.cc-hide-pagination .tt-cc-pagination {
	display: none !important;
}


/* Content carousel shifted style (no effect on small screens!) 
================================== */
@media (min-width: 1025px) {
	.tt-content-carousel.cc-shifted .swiper-slide:nth-child(2n) {
		padding-top: 7%;
	}
}


/* ------------------------------------------------------------- *
 * Testimonials slider
/* ------------------------------------------------------------- */

.tt-testimonials-slider {
	position: relative;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 80px;
}

.tt-testimonials-slider .swiper-wrapper {
}

.tt-testimonials-slider .tt-ts-item {
	position: relative;
	display: block;
	margin: 0 auto;
	opacity: .1;
	transition: opacity 0.3s;
}
.tt-testimonials-slider .swiper-slide-active .tt-ts-item {
	opacity: 1;
}
.tt-testimonials-slider .tt-ts-text {
	font-size: calc(19px + 0.6vw);
	line-height: 1.6;
	font-style: italic;
}
.tt-testimonials-slider .tt-ts-subtext {
	margin-top: 30px;
	font-size: 19px;
	color: var(--color-text-muted);
}

@media (min-width: 1025px) {
	.tt-testimonials-slider .swiper-slide {
		width: auto;
		max-width: 800px;
		margin-left: 3vw;
		margin-right: 3vw;
	}
}
@media (max-width: 1024px) {
	.tt-testimonials-slider .swiper-slide {
		width: 100% !important;
		margin-left: 3vw;
		margin-right: 3vw;
	}
	.tt-testimonials-slider .tt-ts-item {
		padding: 20px;
	}
}


/* Testimonials slider navigation 
================================== */
.tt-ts-nav-prev,
.tt-ts-nav-next {
	position: absolute;
	top: 50%;
	z-index: 20;
	transform: translateY(-50%);
}
@media (max-width: 1024px) {
	.tt-ts-nav-prev,
	.tt-ts-nav-next {
		display: none;
	}
}
.tt-ts-nav-prev {
	left: -10%;
}
.tt-ts-nav-next {
	right: -10%;
}

.tt-ts-nav-arrow {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	font-size: 21px;
	color: var(--color-text-primary);
	cursor: pointer;
	outline: none;
}
.tt-ts-nav-prev .tt-ts-nav-arrow::after,
.tt-ts-nav-next .tt-ts-nav-arrow::after {
	position: relative;
	line-height: 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.tt-ts-nav-prev .tt-ts-nav-arrow::after {
	content: "\f053";
}
.tt-ts-nav-next .tt-ts-nav-arrow::after {
	content: "\f054";
}

.tt-ts-nav-prev.tt-ts-nav-arrow-disabled .tt-ts-nav-arrow,
.tt-ts-nav-next.tt-ts-nav-arrow-disabled .tt-ts-nav-arrow {
	opacity: .3;
	cursor: auto;
	pointer-events: none;
}

/* Hide testimonials slider navigation*/
.tt-testimonials-slider.ts-hide-navigation .tt-ts-nav-prev,
.tt-testimonials-slider.ts-hide-navigation .tt-ts-nav-next {
	display: none !important;
}


/* Testimonials slider pagination 
================================== */
.tt-ts-pagination {
	position: absolute;
	left: 50%;
	bottom: -80px;
	z-index: 1;
	transform: translate3d(-50%, 0, 0);
}
@media (max-width: 1024px) {
	.tt-ts-pagination {
		bottom: -50px;
	}
}

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

/* Testimonials slider pagination bullets */
.tt-ts-pagination-bullets {
	font-size: 0;
}
.tt-ts-pagination-bullets .swiper-pagination-bullet {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: transparent;
	margin: 8px;
	opacity: 1;
	border-radius: 100%;
	border: 2px solid var(--color-white);
}
.tt-ts-pagination-bullets .swiper-pagination-bullet-active {
	background: var(--color-text-primary);
	opacity: 1;
}

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


/* Testimonials slider styles
============================== */
/* Full width */
.tt-testimonials-slider.ts-full-width {
	max-width: 100%;
}
.tt-testimonials-slider.ts-full-width .tt-ts-pagination {
	margin-top: 3%;
}
.tt-testimonials-slider.ts-full-width .tt-ts-nav-prev {
	left: 2%;
}
.tt-testimonials-slider.ts-full-width .tt-ts-nav-next {
	right: 2%;
}


/* Testimonials slider scale down 
================================== */
.tt-testimonials-slider.ts-scale-down .swiper-slide {
	transition: none !important;
}


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

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

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


/* Button styles 
================= */
/* Button block */
.tt-btn-block {
	display: block;
	width: 100%;
	margin-right: 0;
	text-align: center;
}
.tt-btn-block > * {
	width: 100%;
}

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

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

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

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

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

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

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

/* Button link */
.tt-btn-link {
	align-items: center;
	border-radius: 0;
}
.tt-btn-link > *,
.tt-btn-link > *::after {
	padding: 0;
	line-height: 1.6;
	color: var(--color-text-primary);
}
.tt-btn-link:hover > * {
	color: var(--color-text-primary);
}

.tt-btn-link::after {
	display: inline-block;
	content: "";
	width: 40px;
	height: 1px;
	background-color: var(--color-text-primary);
	margin-top: 2px;
	margin-left: 15px;
}
body:not(.is-mobile) .tt-btn-link:hover::after {
	animation: swipe-line .8s cubic-bezier(0.475, 0.425, 0, 0.995) forwards;
}

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

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


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

.social-buttons {
}
.social-buttons ul {
	display: inline-flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}
.social-buttons ul > li {
	display: flex;
	justify-content: center;
	align-items: center;
	float: left;
	margin: 0 2px;
}
@media (max-width: 991px) {
	.social-buttons ul > li {
		margin: 0px;
	}
}
.social-buttons ul > li:first-child {
	margin-left: 0;
}
.social-buttons ul > li:last-child {
	margin-right: 0;
}

.social-buttons > ul > li a {
	display: block;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	font-size: 15px;
	font-weight: 600;
	color: var(--color-text-bright);
	transition: opacity 0.2s;
}
body:not(.tt-magic-cursor) .social-buttons > ul:hover > li a {
	opacity: .5;
}
body:not(.tt-magic-cursor) .social-buttons > ul > li a:hover {
	opacity: 1;
}


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

.tt-accordion {
	position: relative;
}

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


/* Accordion heading 
===================== */
.tt-accordion-heading {
	position: relative;
	padding: 20px 13% 20px 0;
	cursor: pointer;
}
.tt-accordion-item:first-child .tt-accordion-heading {
	padding-top: 0;
}
.tt-ac-head-title {
	margin: 0;
	font-size: 32px;
	line-height: 1.2;
}
@media (max-width: 991px) {
	.tt-ac-head-title {
		font-size: 28px;
	}
}

/* Accordion heading subtext */
.tt-accordion-subtext {
	margin-top: 10px;
	font-size: 19px;
	font-weight: normal;
	color: var(--color-text-muted);
}

/* Accordion heading caret */
.tt-accordion-caret-wrap {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate3d(0, -50%, 0);
}
.tt-accordion-caret {
	position: relative;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 21px;
	color: var(--color-text-primary);
	cursor: pointer;
	z-index: 2;
	opacity: .3;
	transition: opacity 0.3s;
}
.tt-accordion-item:not(.active) .tt-accordion-heading:hover .tt-accordion-caret,
.tt-accordion-caret:hover {
	opacity: 1;
}

.tt-accordion-caret::before,
.tt-accordion-caret::after {
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color-text-primary);
}
.tt-accordion-caret::before {
	width: 3px;
	height: 100%;
	transition: height 0.3s;
}
.tt-accordion-caret::after {
	width: 100%;
	height: 3px;
}
.tt-accordion-item.active .tt-accordion-caret::before {
	height: 0;
}


/* Accordion content 
===================== */
.tt-accordion-content {
	padding-bottom: 40px;
	color: var(--color-text-secondary);
}
.tt-accordion-content:not(.is-open) {
	display: none;
}

.tt-accordion-content p:last-child {
	margin-bottom: 0;
}


/* Accordion styles 
==================== */
/* borders */
.tt-accordion.tt-ac-borders .tt-accordion-heading {
	padding-top: 30px;
	padding-bottom: 30px;
	border-top: 1px solid var(--color-border-primary);
}

.tt-accordion.tt-ac-borders .tt-accordion-item:last-child {
	border-bottom: 1px solid var(--color-border-primary);
}


/* Accordion sizes 
=================== */
.tt-accordion.tt-ac-sm .tt-ac-head-title {
    font-size: calc(24px + 0.1vw);
}

.tt-accordion.tt-ac-lg .tt-ac-head-title {
	font-size: calc(24px + 1vw);
}

.tt-accordion.tt-ac-xlg .tt-accordion-heading {
	padding-top: 45px;
	padding-bottom: 45px;
}
.tt-accordion.tt-ac-xlg .tt-ac-head-title {
	font-size: calc(24px + 1.5vw);
}

.tt-accordion.tt-ac-xxlg .tt-accordion-heading {
	padding-top: 60px;
	padding-bottom: 60px;
}
.tt-accordion.tt-ac-xxlg .tt-ac-head-title {
	font-size: calc(24px + 2vw);
}


/* ------------------------------------------------------------- *
 * 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;
}


/* tt-Table (styled table)
============ */
table.tt-table th, 
table.tt-table td {
	border: 1px solid var(--color-form-border);
}
table.tt-table tbody tr:nth-of-type(odd) {
	background-color: var(--color-form-bg-table);
}

/* thead */
table.tt-table thead {
	background-color: var(--color-form-header);
}
table.tt-table thead th, 
table.tt-table thead td {
	padding: 16px 20px;
}

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

/* tfoot */
table.tt-table tfoot {
	background-color: var(--color-form-header);
}
table.tt-table tfoot th, 
table.tt-table tfoot td {
	padding: 16px 20px;
}


/* ------------------------------------------------------------- *
 * tt-Tabs 
/* ------------------------------------------------------------- */

.tt-tabs {
	position: relative;
}

/* tt-Tabs buttons */
.tt-tabs-buttons {
	border-radius: 3px;
	overflow: hidden;
}
.tt-tabs-buttons ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}
.tt-tabs-buttons > ul > li {
   margin: 0 5px 5px 0;
}

.tt-tab-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 90px;
	background-color: var(--color-bg-card);
	padding: 10px 40px;
	text-align: center;
	font-size: 19px;
	color: var(--color-text-subtle);
	cursor: pointer;
	border: none;
	outline: none;
	transition: .2s ease-in-out;
}
.tt-tab-btn:hover {
	background-color: var(--color-bg-hover);
	color: var(--color-text-primary);
}
.tt-tab-btn.active {
	background-color: var(--color-bg-active);
	color: var(--color-text-primary);
}

/* tt-Tabs buttons on small screens */
@media (max-width: 991px) {
	.tt-tabs-buttons ul {
		display: block;
	}
	.tt-tabs-buttons > ul > li {
		margin: 0 0 2px 0;
	}
	.tt-tab-btn {
		height: 60px;
	}
}

/* tt-Tabs content */
.tt-tab-content {
	display: none; /* hide all content */
	padding-top: 50px;
}
.tt-tab-content.active {
	display: block;
}


/* tt-Tabs styles
================== */

/* Tabs minimal style*/
.tt-tabs.tt-tabs-minimal .tt-tabs-buttons {
	border-bottom: 1px solid var(--color-border-subtle);
}
.tt-tabs.tt-tabs-minimal .tt-tab-btn {
	height: 60px;
	background-color: transparent;
	padding: 10px 0;
	border: none;
}
@media (min-width: 992px) {
	.tt-tabs.tt-tabs-minimal .tt-tabs-buttons > ul > li {
		margin: 0 40px 0 0;
	}
	.tt-tabs.tt-tabs-minimal .tt-tab-btn.active::after {
		position: absolute;
		content: "";
		bottom: 0;
		z-index: 0;
		width: 100%;
		height: 3px;
		background-color: var(--color-text-primary);
	}
}
@media (max-width: 991px) {
	.tt-tabs.tt-tabs-minimal .tt-tab-btn {
		border-top: 1px solid var(--color-border-subtle);
	}
}

/* Tabs justified style*/
@media (min-width: 992px) {
	.tt-tabs.tt-tabs-justified .tt-tabs-buttons ul {
		flex-wrap: nowrap;
	}
	.tt-tabs.tt-tabs-justified .tt-tabs-buttons > ul > li {
		width: 100%;
		margin: 0 2px 0 0;
	}
	.tt-tabs.tt-tabs-justified .tt-tab-btn {
		padding: 10px 0;
	}
}


/* ------------------------------------------------------------- *
 * Magnetic wrap
/* ------------------------------------------------------------- */

.magnetic-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}


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

blockquote {
	position: relative;
	margin: 35px 5%;
	padding-left: 40px;
	font-size: 24px;
	border-left: 4px solid var(--color-line-accent);
}
@media (max-width: 768px) {
	blockquote {
		margin-left: 0;
		margin-right: 0;
	}
}
blockquote.open-quote {
	border: none;
}
blockquote.open-quote::before {
	position: absolute;
	content: open-quote;
	top: 0;
	left: 0;
	font-size: 84px;
	font-weight: 300;
	color: var(--color-text-silver);
	line-height: 1;
}
blockquote footer {
	display: block;
	margin-top: 20px;
	font-size: 80%;
	color: var(--color-text-muted);
}
blockquote footer::before {
	display: inline-block;
	content: "";
	width: 40px;
	height: 2px;
	background-color: var(--color-line-divider);
	margin: 0 10px 5px 0;
}


/* ------------------------------------------------------------- *
 * Figure
/* ------------------------------------------------------------- */

figure {
	position: relative;
	margin: 0;
}

/* figure image */
figure img {
	width: 100%;
	height: auto;
}

/* figure caption */
figcaption {
	position: relative;
	max-width: 600px;
	padding: 15px;
	font-size: 14px;
	font-style: italic;
	color: var(--color-text-primary);
	z-index: 9;
	opacity: .8;
}
@media (min-width: 1025px) {
	figcaption {
		position: absolute;
		right: 5%;
		bottom: 5%;
		background-color: var(--color-overlay-bg);
	}
}
figcaption a {
	border-bottom: 1px dotted;
}
figcaption a:hover {
	opacity: .9;
}


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

.tt-form-control {
	display: block;
	width: 100%;
	background-color: transparent;
	padding: 5px 15px;
	font-size: 17px;
	font-weight: normal;
	color: var(--color-text-primary);
	border: 1px solid var(--color-border-secondary);
	border-radius: 3px;
}
.tt-form-control:focus {
	color: var(--color-text-primary);
	background-color: transparent;
	border-color: rgb(204 204 204 / 85%);
	outline: none;
	box-shadow: none;
}
.tt-form-control + .tt-form-control {
	margin-top: 20px;
}
.tt-form-control:disabled, .tt-form-control[readonly] {
	background-color: var(--color-form-bg-disabled);
	opacity: .4;
	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;
	color: var(--color-text-muted);
}

label {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 17px;
	font-weight: bold;
	font-weight: 500;
}
label .required {
	opacity: .8;
}


::-webkit-input-placeholder {
	color: var(--color-text-placeholder) !important;
}
:-moz-placeholder {
	color: var(--color-text-placeholder) !important;
}
::-moz-placeholder {
	color: var(--color-text-placeholder) !important;
}
:-ms-input-placeholder {
	color: var(--color-text-placeholder) !important;
}

/* form group */
.tt-form-group {
	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
}

/* select */
select,
select.tt-form-control {
	cursor: pointer;
	color: var(--color-text-muted);
}
select option {
	background-color: var(--color-bg-dark);
	color: var(--color-text-primary);
}
select option[value=""][disabled] {
  display: none;
}
select[multiple] option {
	background-color: transparent;
	color: var(--color-text-primary);
}
select option[disabled],
select[multiple] option[disabled] {
	color: var(--color-text-muted);
}
select:required:invalid {
	color: var(--color-text-muted);
}

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


/* Form inline 
=============== */
@media (min-width: 1025px) {

	/* Form inline */
	form.tt-form-inline {
		display: flex;
		align-items: center;
		margin-bottom: 0;
	}
	form.tt-form-inline .tt-form-group {
		margin: 0 15px 0 0;
	}
	form.tt-form-inline .tt-btn {
		margin: 40px 0 0 0;
	}

	/* Form group inline */
	.tt-form-group.tt-form-inline {
		display: flex;
		align-items: center;
		margin: 0;
	}
	.tt-form-group.tt-form-inline label {
		display: flex;
		margin: 0 15px 0 0;
	}
	.tt-form-group.tt-form-inline label span {
		margin: 0 0 0 4px;
	}
	form.tt-form-inline .tt-btn.tt-form-inline {
		margin: 0;
	}
}


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

.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;
	display: inline;
	margin-bottom: 10px;
	padding-left: 26px;
	vertical-align: middle;
	font-size: 17px;
	cursor: pointer;
}
.tt-form-check label::before,
.tt-form-radio label::before {
	position: absolute;
	top: 3px;
	left: -0;
	display: block;
	width: 18px;
	height: 18px;
	pointer-events: none;
	content: "";
	background-color: var(--color-accent-medium);
	border-radius: 3px;
	transition: background-color 0.2s;
}
.tt-form-check:hover label::before,
.tt-form-radio:hover label::before {
	background-color: #5a5a5a;
}
.tt-form-check label::after,
.tt-form-radio label::after {
	position: absolute;
	display: none;
	content: "";
	top: 7px;
	left: 6px;
	width: 4px;
	height: 6px;
	border: solid var(--color-text-primary);
	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: 9px;
	left: 6px;
	width: 4px;
	height: 4px;
	background-color: var(--color-text-primary);
	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: var(--color-text-disabled);
	line-height: 1;
}

/* Custom form with button inside */
.tt-form-btn-inside {
	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(--color-text-muted);
	border: none;
	outline: none;
	cursor: pointer;
	border-radius: 0 3px 3px 0;
}
.tt-form-btn-inside button:hover {
	color: var(--color-text-primary);
}


/* Form extra styles 
===================== */
/* form style filled */
.tt-form-filled label {
}
.tt-form-filled .tt-form-control {
	background-color: var(--color-form-bg);
	color: var(--color-text-primary);
	border: none;
}
.tt-form-filled .tt-form-control:focus {
	box-shadow: inset 0 0 0 1px var(--color-border-input);
}
.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 {
	margin-bottom: 0px;
}
.tt-form-minimal .tt-form-control:not(select),
.tt-form-minimal select.tt-form-control:not([multiple]) {
	background-color: transparent;
	padding-left: 0;
	padding-right: 0;
	font-size: 17px;
	border-width: 0 0 1px 0;
	border-style: solid;
	border-radius: 2px;
}
.tt-form-minimal select.tt-form-control:not([multiple]) {
	padding-right: 15px;
}
.tt-form-minimal .tt-form-control:focus {
	border-color: var(--color-text-primary);
}
.tt-form-minimal .tt-form-control:disabled, 
.tt-form-minimal .tt-form-control[readonly] {
	opacity: .2;
}
.tt-form-minimal .tt-form-control,
.tt-form-minimal .tt-form-control select {
	border-color: var(--color-border-input);
}


/* Form sizes 
============== */
/* form sm */
.tt-form-sm .tt-form-control:not(textarea):not([size]),
.tt-form-control.tt-form-sm,
.tt-form-btn-inside .tt-form-control.tt-form-sm + button {
	height: 40px !important;
	font-size: 80%;
}
.tt-form-sm .tt-form-btn-inside button {
	height: 38px !important;
}

/* form lg */
.tt-form-lg .tt-form-control:not(textarea):not([size]),
.tt-form-control.tt-form-lg,
.tt-form-btn-inside .tt-form-control.tt-form-lg + button {
	height: 70px !important;
}
.tt-form-lg .tt-form-btn-inside button {
	height: 68px !important;
}


/* -------------------------------------------------------------------- *
 * Contact info
/* -------------------------------------------------------------------- */

.tt-contact-info {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 17px;
}

.tt-contact-info > li {
	padding: 3px 0;
}

.tt-ci-icon {
	display: inline-block;
	margin-right: 10px;
	font-size: 80%;
}
.tt-contact-info a {
	display: inline;
	transition: color 0.2s;
}
.tt-contact-info a:hover {
	color: var(--color-text-primary);
}

/* Social buttons */
.tt-contact-info .social-buttons {
	display: inline-block;
	margin-top: 15px;
	margin-left: -13px;
}


/* -------------------------------------------------------------------- *
 * Background video
 * Note: position "relative" or "absolute" required on parent element!
/* -------------------------------------------------------------------- */

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


/* ------------------------------------------------------------- *
 * Background noise
/* ------------------------------------------------------------- */

.bg-noise {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
}
.bg-noise:before {
	position: absolute;
	content: '';
	top: -10rem;
	left: -10rem;
	width: calc(100% + 20rem);
	height: calc(100% + 20rem);
	z-index: -1;
	pointer-events: none;
	background-image: url(../img/bg-noise.png);
	background-position: 50%;
	animation: BgNoise 1s steps(2) infinite;
}
@keyframes BgNoise {
	0% { transform: translate3d(0, 9rem, 0) }
	10% { transform: translate3d(-1rem, -4rem, 0) }
	20% { transform: translate3d(-8rem, 2rem, 0) }
	30% { transform: translate3d(9rem, -9rem, 0) }
	40% { transform: translate3d(-2rem, 7rem, 0) }
	50% { transform: translate3d(-9rem, -4rem, 0) }
	60% { transform: translate3d(2rem, 6rem, 0) }
	70% { transform: translate3d(7rem, -8rem, 0) }
	80% { transform: translate3d(-9rem, 1rem, 0) }
	90% { transform: translate3d(6rem, -5rem, 0) }
	to { transform: translate3d(-7rem, 0, 0) }
}


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

.tt-embed {
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 30px;
	overflow: hidden;
}
.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;
}


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

.tt-scrolling-text {
	display: flex;
	position: relative;
	pointer-events: none;
}
.tt-scrolling-text-inner {
	padding-left: 2vw;
	font-size: 7.5vw;
	line-height: 1.1;
	font-weight: bold;
	font-weight: 500;
	color: var(--color-text-primary);
	white-space: nowrap;
	animation-name: tt_scrolling_text; 
	animation-timing-function: linear; 
	animation-iteration-count: infinite; 
	animation-play-state: running;
	/* animation-duration is handled by js. */
}
.tt-scrolling-text-inner:after {
	content: attr(data-text);
}

@keyframes tt_scrolling_text {
	0% { transform: translateX(0) }
	100% { transform: translateX(-50%) }
}

/* Animation direction reverse. */
.tt-scrolling-text.scr-text-reverse .tt-scrolling-text-inner {
	animation-direction: reverse;
}


/* Scrolling text styles 
========================= */
/* Style stroke */
@media (min-width: 1025px) {
	.tt-scrolling-text.scr-text-stroke .tt-scrolling-text-inner {
 		font-weight: 500;
		color: transparent; 
	}
}


/* ------------------------------------------------------------- *
 * Pagination (tt-pagination)
/* ------------------------------------------------------------- */

.tt-pagination {
	display: flex;
	margin-top: 40px;
	padding: 40px 3%;
}
body.tt-boxed .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;
	line-height: 1;
	font-size: 28px;
	font-weight: bold;
	color: var(--color-text-primary);
	opacity: .4;
	transition: opacity 0.3s;
}
@media (max-width: 480px) {
	.tt-pagin-item {
		width: 40px;
		height: 40px;
		font-size: 21px;
	}
}
.tt-pagin-item:hover,
.tt-pagin-item.active {
	opacity: 1;
}

.tt-pagin-prev {
	margin-right: 3%;
}
.tt-pagin-next {
	margin-left: 3%;
}

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


/* ------------------------------------------------------------- *
 * Sidebar (classic)
/* ------------------------------------------------------------- */

.tt-sidebar {
	margin-top: 15px;
	margin-left: 30px;
}
@media (max-width: 1600px) {
	.tt-sidebar {
		margin-left: 10px;
	}
}

/* Sidebar left */
.tt-row.tt-lg-row-reverse .tt-sidebar {
	margin-left: 0;
	margin-right: 30px;
}
@media (max-width: 1600px) {
	.tt-row.tt-lg-row-reverse .tt-sidebar {
		margin-right: 10px;
	}
}

/* Hide elements (added by .js) */
.tt-sidebar-trigger,
.tt-sidebar-close-btn {
	display: none;
}


/* Sidebar on small screen 
=========================== */
@media (max-width: 991px) {
	.tt-sidebar-wrap { 
		position: absolute;
		z-index: 9999;
	}
	.tt-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		width: 400px;
		height: 100vh;
		z-index: 2;
		background-color: var(--color-bg-tertiary);
		padding: 60px 30px 100px 30px;
		margin: 0;
		overflow-y: auto;
		transform: translate3d(-100%, 0, 0);
		transition: transform 0.4s ease-in-out;
	}
	body.tt-sidebar-open .tt-sidebar {
		transform: translate3d(0, 0, 0);
	}
	body.tt-sidebar-open {
		overflow-y: hidden !important;
	}

	/* Sidebar cover */
	.tt-sidebar-cover {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background-color: var(--color-overlay-dark);
		z-index: 1;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s, visibility 0.3s;
	}
	body.tt-sidebar-open .tt-sidebar-cover {
		opacity: 1;
		visibility: visible;
	}

	/* Sidebar trigger */
	.tt-sidebar-trigger {
		position: fixed;
		display: flex;
		align-items: center;
		justify-content: center;
		right: 15px;
		bottom: 15px;
		width: 40px;
		height: 40px;
		background-color: var(--color-primary);
		font-size: 16px;
		color: var(--color-text-primary);
		line-height: 1;
		cursor: pointer;
		z-index: 3;
		border-radius: 100px;
	}
	.tt-sidebar-trigger .tt-str-icon-close {
		display: none;
	}
	.tt-header-tools-dynamic .tt-sidebar-trigger {
		position: relative;
		bottom: auto;
		right: auto;
		width: 40px;
		height: 45px;
		background-color: transparent;
		border-radius: 0;
	}
	.ph-share .tt-sidebar-trigger {
		position: relative;
		bottom: auto;
		right: auto;
		width: 40px;
		height: 40px;
		background-color: transparent;
		border-radius: 0;
	}

	body.tt-sidebar-open .tt-sidebar-trigger .tt-str-icon-close {
		display: block;
	}
	body.tt-sidebar-open .tt-sidebar-trigger .tt-str-icon {
		display: none;
	}

	/* Sidebar top close button */
	.tt-sidebar-close-btn {
		position: absolute;
		display: flex;
		align-items: center;
		justify-content: center;
		top: 20px;
		right: 25px;
		width: 30px;
		height: 30px;
		background-color: var(--color-border-subtle);
		font-size: 16px;
		cursor: pointer;
		border-radius: 50px;
		transition: transform 0.3s;
	}
	.tt-sidebar-close-btn:hover {
		transform: rotate(90deg);
	}
}

@media (max-width: 440px) {
	.tt-sidebar {
		width: 90%;
		padding: 60px 20px 100px 20px;
	}
}


/* ------------------------------------------------------------- *
 * Sliding sidebar
/* ------------------------------------------------------------- */

.tt-sliding-sidebar-wrap {
	position: relative;
	z-index: 9999;
}

body.tt-sliding-sidebar-open {
	overflow-y: hidden!important;
}
body.tt-sliding-sidebar-open .scrollbar-track {
	display: none !important;
}

.tt-sliding-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: 400px;
	height: 100vh;
	z-index: 2;
	background-color: var(--color-bg-tertiary);
	padding-top: 60px;
	overflow: hidden;
	transform: translate3d(-100%, 0, 0);
	transition: transform 0.4s ease-in-out;
}
@media (max-width: 440px) {
	.tt-sliding-sidebar {
		width: 90%;
	}
}
body.tt-sliding-sidebar-open .tt-sliding-sidebar {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}
.tt-sliding-sidebar-inner {
	height: 100%;
	overflow-y: auto;
	padding: 0 6% 10% 6%;
}
body.is-mobile .tt-sliding-sidebar-inner {
	padding-bottom: 100px;
}

.tt-sliding-sidebar-close {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-overlay-dark);
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
body.tt-sliding-sidebar-open .tt-sliding-sidebar-close {
	opacity: 1;
	visibility: visible;
}

.tt-sliding-sidebar-close-btn {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 20px;
	right: 25px;
	width: 30px;
	height: 30px;
	background-color: var(--color-border-subtle);
	font-size: 16px;
	cursor: pointer;
	border-radius: 50px;
	transition: transform 0.3s;
}
.tt-sliding-sidebar-close-btn:hover {
	transform: rotate(90deg);
}

@media (min-width: 769px) {
	body.tt-sliding-sidebar-left-on #content-wrap {
		padding-left: 40px;
	}
	body.tt-sliding-sidebar-right-on #content-wrap {
		padding-right: 40px;
	}
	body.tt-sliding-sidebar-left-on .tt-header-inner {
		padding-left: 70px;
	}
	body.tt-sliding-sidebar-right-on .tt-header-inner {
		padding-right: 70px;
	}
	body.tt-sliding-sidebar-left-on .tt-footer-inner {
		padding-left: 35px;
	}
	body.tt-sliding-sidebar-right-on .tt-footer-inner {
		padding-right: 35px;
	}
}


/* Sliding sidebar trigger 
=========================== */
.tt-sliding-sidebar-trigger {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	width: 40px;
	height: 100vh;
	background-color: var(--color-bg-tertiary);
	font-size: 20px;
	color: #808080;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s, width 0.3s;
}

@media (min-width: 769px) {
	body:not(.is-mobile) .tt-sliding-sidebar-trigger:hover {
		width: 54px;
		background-color: var(--color-border-dark);
		color: var(--color-text-primary);
	}
}

.tt-sliding-sidebar-trigger .tt-ss-icon-close {
	display: none;
}


/* Sliding sidebar position right 
================================== */
.tt-ss-right .tt-sliding-sidebar {
	left: auto;
	right: 0;
	transform: translate3d(100%, 0, 0);
}
.tt-ss-right .tt-sliding-sidebar-trigger {
	left: auto;
	right: 0;
}


/* Sliding sidebar trigger on small screens
============================================ */
@media (max-width: 768px) {
	.tt-sliding-sidebar-trigger {
		top: auto;
		left: auto;
		right: 10px;
		bottom: 15px;
		width: 40px;
		height: 40px;
		background-color: var(--color-primary);
		font-size: 16px;
		color: var(--color-text-primary);
		border-radius: 100px;
		z-index: 3;
	}
	.tt-header-tools-dynamic .tt-sliding-sidebar-trigger {
		position: relative;
		bottom: auto;
		right: auto;
		width: 45px;
		height: 45px;
		background-color: transparent;
		border-radius: 0;
	}
	.ph-share .tt-sliding-sidebar-trigger {
		position: relative;
		bottom: auto;
		right: auto;
		width: 40px;
		height: 40px;
		background-color: transparent;
		border-radius: 0;
	}

	body.tt-sliding-sidebar-open .tt-sliding-sidebar-trigger .tt-ss-icon {
		display: none;
	}
	body.tt-sliding-sidebar-open .tt-sliding-sidebar-trigger .tt-ss-icon-close {
		display: block;
	}
}


/* ------------------------------------------------------------- *
 * Sidebar widgets
/* ------------------------------------------------------------- */

.sidebar-widget {
	padding-bottom: 25px;
	margin-bottom: 25px;
}

/* Sidebar headings */
.sidebar-heading {
	position: relative;
	margin-bottom: 40px;
	font-size: 21px;
	font-weight: 700;
}
.sidebar-heading:after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	bottom: -15px;
	width: 35px;
	height: 2px;
	background-color: var(--color-accent-light);
}


/* Sidebar search 
================== */
.sidebar-search {
}


/* Sidebar categories 
====================== */
.sidebar-categories {
}
.sidebar-categories > ul > li {
	padding: 0;
}
.sidebar-categories > ul > li > a {
	display: block;
	text-decoration: none;
	font-size: 18px;
	font-weight: normal;
	color: var(--color-text-medium-gray);
	line-height: 1;
	padding: 10px 0px;
	transition: all 0.2s ease-in-out 0s;
}
.sidebar-categories > ul > li > a:hover {
	color: var(--color-text-primary);
}
.sidebar-categories > ul > li > a span {
	position: relative;
	float: right;
	top: -5px;
	background-color: var(--color-tag-bg-alt);
	padding: 8px 9px 8px 9px;
	text-align: center;
	font-size: 13px;
	font-weight: normal;
	color: var(--color-text-tertiary);
	overflow: hidden;
	z-index: 1;
	border-radius: 100px;
	transition: all .2s ease-in-out;
}
.sidebar-categories > ul > li > a:hover span {
	background-color: var(--color-tag-bg-alt-hover);
	color: var(--color-text-primary);
}


/* Sidebar post list 
===================== */
.sidebar-post-list {
}
.sidebar-post-list > ul > li {
	list-style: none;
	overflow: hidden;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.sidebar-post-list > ul > li:last-child {
	margin: 0;
	padding: 0;
	border: 0;
}

.sidebar-post-data {
}
.sidebar-post-title {
	margin: 0 0 5px 0;
	font-size: 18px;
	font-weight: bold;
	font-weight: 500;
	line-height: 1.4;
}
.sidebar-post-title a {
	color: var(--color-text-medium-gray);
	display: inline;
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: -ms-linear-gradient(transparent 96%,currentColor 1px);
	transition: 0.6s cubic-bezier(.215,.61,.355,1);
	background-size: 0 96%;
}
.sidebar-post-title a:hover {
	background-size: 100% 96%;
	color: var(--color-text-primary);
}
.sidebar-post-author {
	display: block;
	font-size: 14px;
	color: var(--color-text-disabled);
	line-height: 15px;
}
.sidebar-post-author a {
	color: var(--color-text-disabled);
}
.sidebar-post-author a:hover {
	opacity: .8;
}
.sidebar-post-date {
	display: block;
	font-size: 13px;
	color: var(--color-text-disabled);
}


/* Sidebar post comments list 
============================== */
.sidebar-comments-list {
}
.sidebar-comments-list ul {
	margin: 0;
}

/* Sidebar comment */
.sidebar-comment {
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.sidebar-comment:last-child {
	margin: 0;
	padding: 0;
	border: none;
}

/* Sidebar comment meta */
.sidebar-comment-meta {
	overflow: hidden;
}

/* Sidebar comment data */
.sidebar-comment-data {
}
.sidebar-comment-author {
	display: block;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
}
.sidebar-comment-author a {
	position: relative;
	color: var(--color-text-tertiary);
	display: inline;
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: -ms-linear-gradient(transparent 96%,currentColor 1px);
	transition: 0.6s cubic-bezier(.215,.61,.355,1);
	background-size: 0 96%;
}
.sidebar-comment-author a:hover {
	background-size: 100% 96%;
	color: var(--color-text-primary);
}
.sidebar-comment-date {
	display: block;
	font-size: 13px;
	color: var(--color-text-disabled);
}

/* Sidebar comment text */
.sidebar-comment-text {
	margin-top: 5px;
	font-size: 16px;
	line-height: 1.4;
	font-style: italic;
	color: var(--color-text-primary);
}
.sidebar-comment-text a {
	color: var(--color-text-muted);
}
.sidebar-comment-text a:hover {
	opacity: .8;
}
.sidebar-comment-text p {
	margin-bottom: 0;
}


/* Sidebar tags 
================ */
.sidebar-tags {
}
.sidebar-tags-list {
}
.sidebar-tags-list::after { /* Clear */
	content: "";
	display: table;
	clear: both;
}
.sidebar-tags-list > ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar-tags-list > ul > li {
	margin: 3px;
}
.sidebar-tags-list a {
	position: relative;
	display: block;
	background-color: var(--color-tag-bg);
	padding: 2px 10px;
	font-size: 13px;
	font-weight: 300;
	color: var(--color-text-pale);
	overflow: hidden;
	z-index: 1;
	border-radius: 50px;
	transition: all .2s ease-in-out;
}
.sidebar-tags-list a:hover {
	background-color: var(--color-tag-bg-hover);
	color: var(--color-text-primary);
}


/* Sidebar meta 
================ */
.sidebar-meta {
}
.sidebar-meta ul > li > a {
	position: relative;
	margin: 3px 0;
	font-size: 16px;
	color: var(--color-text-medium-gray);
	display: inline;
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: -ms-linear-gradient(transparent 96%,currentColor 1px);
	transition: 0.6s cubic-bezier(.215,.61,.355,1);
	background-size: 0 96%;
}
.sidebar-meta ul > li > a:hover {
	background-size: 100% 96%;
	color: var(--color-text-primary);
}


/* ------------------------------------------------------------- *
 * Blog list
/* ------------------------------------------------------------- */

#blog-list {
}


/* Blog list item
================== */
.blog-list-item {
	position: relative;
	margin-bottom: 80px;
}

/* Blog list item image */
.bli-image-wrap {
}
.bli-image {
	position: relative;
	display: block;
	overflow: hidden;
}
.bli-image img {
	transition: all 1s cubic-bezier(.165,.84,.44,1);
}
.bli-image:hover img {
	transform: scale(1.05);
}

#blog-list.bli-image-cropped .bli-image {
	position: relative;
	background-color: var(--color-overlay-noise);
	padding-bottom: 55%;
}
#blog-list.bli-image-cropped .bli-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/* Blog list item info */
.bli-info {
	position: relative;
	padding-top: 30px;
}

.bli-categories {
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
	font-size: 16px;
	color: var(--color-text-muted);
}
.bli-categories a {
	position: relative;
	display: inline-block;
}
.bli-categories a:hover {
	opacity: .8;
}
.bli-categories a ~ a:not(:empty)::before {
	content: ", ";
}

.bli-title {
	margin-bottom: 20px;
	font-size: clamp(28px, 3vw, 42px);
	font-weight: bold;
	font-weight: 600;
	color: var(--color-text-primary);
	line-height: 1.6;
}
.bli-title a {
	color: var(--color-text-primary);
	display: inline;
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: -ms-linear-gradient(transparent 96%,currentColor 1px);
	transition: 0.6s cubic-bezier(.215,.61,.355,1);
	background-size: 0 96%;
}
.bli-title a:hover {
	background-size: 100% 96%;
}

.bli-meta {
	font-size: 15px;
	color: var(--color-text-muted);
}
.bli-meta a {
	position: relative;
	padding-bottom: 2px;
	color: var(--color-text-muted);
}
.bli-meta a:hover {
	opacity: .8;
}

/* Blog list item description */
.bli-desc {
	margin-top: 40px;
	font-weight: 300;
	font-size: 19px;
	color: var(--color-text-light-gray);
}

/* Blog list item read more button */
.bli-read-more {
	margin: 20px 0 0 0;
}


/* Blog list compact 
===================== */
@media (min-width: 1025px) {
	#blog-list.bli-compact .blog-list-item {
		display: flex;
		margin-bottom: 100px;
	}
	#blog-list.bli-compact .bli-image-wrap {
		-ms-flex: 0 0 30%;
		flex: 0 0 30%;
		max-width: 30%;
	}
	#blog-list.bli-compact .bli-image { 
		padding-bottom: 0;
	}
	#blog-list.bli-compact .bli-image,
	#blog-list.bli-compact .anim-image-parallax-wrap {
		height: 100%;
	}
	#blog-list.bli-compact .bli-info {
		-ms-flex: 0 0 70%;
		flex: 0 0 70%;
		max-width: 70%;
		padding-top: 0;
	}
	#blog-list.bli-compact .bli-image-wrap + .bli-info {
		padding: 0 0 0 5%;
	}
	#blog-list.bli-compact .bli-categories {
		margin-bottom: 10px;
	}
	#blog-list.bli-compact .bli-title {
		margin-bottom: 15px;
		font-size: clamp(28px, 3vw, 38px);
	}
	#blog-list.bli-compact .bli-desc {
		margin-top: 15px;
	}
	#blog-list.bli-compact .bli-read-more {
		margin: 20px 0 0 0;
	}

	/* Counter (no effect if sidebar exist!) */
	body:not(.tt-sidebar-on) #blog-list.bli-compact {
		counter-reset: bli-compact-counter;
	}
	body:not(.tt-sidebar-on) #blog-list.bli-compact .bli-info::before {
		position: absolute;
		counter-increment: bli-compact-counter;
		content: "" counter(bli-compact-counter, decimal-leading-zero);
		top: -20%;
		left: 30%;
		line-height: 1;
		font-size: clamp(40px, 37vw, 360px);
		font-weight: normal;
		color: var(--color-text-primary);
		opacity: 0.1;
		z-index: -1;
	}

	/* If sidebar exist */
	body.tt-sidebar-on #blog-list.bli-compact .bli-title { 
		font-size: 30px;
	}
}


/* ------------------------------------------------------------- *
 * Blog interactive
/* ------------------------------------------------------------- */

.blog-interactive {
}

.blog-interactive-item {
	position: relative;
	margin-bottom: 100px;
}
@media (max-width: 1400px) {
	.blog-interactive-item {
		padding-left: 3%;
		padding-right: 3%;
	}
}
@media (max-width: 768px) {
	.blog-interactive-item {
		padding-left: 0;
		padding-right: 0;
	}
}

/* Blog interactive item counter */
@media (min-width: 769px) {
	.blog-interactive {
		counter-reset: bi-item-counter;
	}
	.blog-interactive-item::before {
		position: absolute;
		counter-increment: bi-item-counter;
		content: "" counter(bi-item-counter, decimal-leading-zero);
		top: 45%;
		right: 0;
		line-height: 1;
		font-size: clamp(40px, 12vw, 220px);
		font-weight: normal;
		color: var(--color-text-primary);
		opacity: 0.1;
		z-index: -1;
		transform: translateY(-50%);
	}
}
@media (max-width: 1400px) {
	.blog-interactive-item::before {
		right: 3%;
	}
}

/* Blog interactive item image */
.bi-item-image {
	position: relative;
	display: block;
	overflow: hidden;
}
.bi-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (min-width: 769px) {
	.blog-interactive-item .bi-item-image {
		display: none;
	}
	#ball .bi-item-image {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: -1;
	}
	#ball .bi-item-image::before {
		position: absolute;
		display: block;
		content: "";
		top: -1px;
		left: -1px;
		bottom: -1px;
		right: -1px;
		background-color: var(--color-bg-overlay);
		opacity: .2;
	}
}
@media (max-width: 768px) {
	.bi-item-image {
		display: block;
		margin-bottom: 30px;
		padding-bottom: 60%;
	}
	.bi-item-image img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: 50% 50%;
	}
}

/* Blog interactive item categories */
.bi-item-categories {
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
	font-size: 16px;
	color: var(--color-text-muted);
}
.bi-item-categories a {
	position: relative;
	display: inline-block;
}
.bi-item-categories a:hover {
	opacity: .8;
}
.bi-item-categories a ~ a:not(:empty)::before {
	content: ", ";
}

/* Blog interactive item title */
.bi-item-title {
	margin-bottom: 30px;
	font-size: clamp(28px, 3vw, 50px);
	font-weight: bold;
	font-weight: 600;
	color: var(--color-text-primary);
	line-height: 1.4;
}
@media (min-width: 769px) {
	.blog-interactive-item:not(.bi-item-image-on) .bi-item-title {
		padding-right: 23%;
	}
}
@media (max-width: 768px) {
	.bi-item-title {
		margin-bottom: 15px;
	}
}
.bi-item-title a {
	display: block;
	color: var(--color-text-primary);
}

.blog-interactive-item:not(.bi-item-image-on) .bi-item-title a {
	color: var(--color-text-primary);
	display: inline;
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: -ms-linear-gradient(transparent 96%,currentColor 1px);
	transition: 0.6s cubic-bezier(.215,.61,.355,1);
	background-size: 0 96%;
}
.blog-interactive-item:not(.bi-item-image-on) .bi-item-title a:hover {
	background-size: 100% 96%;
	color: var(--color-text-primary);
}
@media (min-width: 769px) {
	.blog-interactive-item.bi-item-image-on .bi-item-title a {
		padding-right: 23%;
	}
}

/* Blog interactive item meta */
.bi-item-meta {
	font-size: 15px;
	color: var(--color-text-muted);
}
.bi-item-meta a {
	position: relative;
	padding-bottom: 2px;
	color: var(--color-text-muted);
}
.bi-item-meta a:hover {
	opacity: .8;
}

/* Magic cursor behavior */
#magic-cursor.blog-interactive-hover-on {
	z-index: -1;
}
#magic-cursor.blog-interactive-hover-on #ball {
	overflow: hidden;
	border: none !important;
}

/* Blog interactive item styles 
================================ */
/* Borders */
@media (min-width: 769px) {
	.blog-interactive.bi-borders .blog-interactive-item {
		margin: 0;
		padding-top: 60px;
		padding-bottom: 60px;
		border-bottom: 1px solid var(--color-border-medium);
	}
	.blog-interactive.bi-borders .blog-interactive-item:first-child {
		border-top: 1px solid var(--color-border-medium);
	}
}


/* ------------------------------------------------------------- *
 * Blog single post
/* ------------------------------------------------------------- */

/* blog single inner */
.blog-single-inner {
	position: relative;
	padding-left: 5%;
	padding-right: 5%;
}

/* if page boxed layout enabled */
body.tt-boxed .blog-single-inner.tt-wrap {
	padding-left: 15px;
	padding-right: 15px;
}


/* Blog single post 
==================== */
.tt-blog-post {
	position: relative;
}

/* blog single post content */
.tt-blog-post-content {
}

.tt-blog-post-content p {
	color: var(--color-text-content);
}

/* blog single post image */
.tt-blog-post-image {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
}
.tt-bpi-link {
	position: relative;
	display: block;
}
.tt-blog-post-image img {
}
.tt-bpi-caption {
}

/* blog single tags */
.tt-blog-post-tags {
	padding: 40px 0;
	font-size: 16px;
	font-weight: bold;
	font-weight: 700;
	overflow: hidden;
	margin-top: 60px;
	overflow: hidden;
	border-top: 1px solid var(--color-border-light);
}
.tt-blog-post-tags span {
	color: var(--color-text-light-gray);
}
.tt-blog-post-tags > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.tt-blog-post-tags > ul > li {
	float: left;
	margin: 3px;
}
.tt-blog-post-tags a {
	position: relative;
	display: block;
	background-color: var(--color-tag-bg);
	padding: 2px 10px;
	font-size: 13px;
	font-weight: 300;
	color: var(--color-text-pale);
	overflow: hidden;
	z-index: 1;
	border-radius: 50px;
	transition: all .2s ease-in-out;
}
.tt-blog-post-tags a:hover {
	background-color: var(--color-tag-bg-hover);
	color: var(--color-text-primary);
}


/* Blog single post share 
========================== */
.tt-blog-post-share {
}
.tt-blog-post-share > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.tt-blog-post-share > ul > li {
	display: inline-block;
}
.tt-bps-text {
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: bold;
	font-weight: 700;
}

.tt-blog-post-share .social-buttons {
	margin-left: -20px;
}
.tt-blog-post-share .social-buttons > ul > li a {
	font-size: 19px;
}


/* Blog single post nav 
======================== */
.tt-blog-post-nav {
	margin-top: 60px;
	padding-top: 60px;
	overflow: hidden;
	border-top: 1px solid var(--color-border-light);
}

.tt-bp-nav-col {
	float: left;
	width: 50%;
}
.tt-bp-nav-left {
	padding-right: 5%;
	border-right: 1px solid var(--color-border-light);
}
.tt-bp-nav-left span {
	margin-right: 10px;
}
.tt-bp-nav-right {
	padding-left: 5%;
	text-align: right;
}
.tt-bp-nav-right span {
	margin-left: 10px;
}

.tt-bp-nav-text {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: bold;
	font-weight: 500;
	color: var(--color-text-muted);
}
@media (max-width: 680px) {
	.tt-bp-nav-text {
		margin-bottom: 0;
		font-size: 19px;
		color: var(--color-text-primary);
	}
} 
.tt-bp-nav-title {
	margin: 0;
	font-size: 21px;
	line-height: 1.6;
}
@media (max-width: 680px) {
	.tt-bp-nav-title {
		display: none;
	}
} 
.tt-bp-nav-title a {
	color: var(--color-text-primary);
	display: inline;
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: -ms-linear-gradient(transparent 96%,currentColor 1px);
	transition: 0.6s cubic-bezier(.215,.61,.355,1);
	background-size: 0 96%;
}
.tt-bp-nav-title a:hover {
	background-size: 100% 96%;
	color: var(--color-text-primary);
}


/* Blog single post comments 
============================= */
#tt-blog-post-comments {
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid var(--color-border-light);
}

.tt-bpc-heading {
	margin: 0 0 30px 0;
	font-size: 24px;
}

/* tt-Comments list */
.tt-comments-list {
	padding: 0;
	margin: 0;
	list-style: none;
	overflow: hidden;
}
.tt-comments-list > li {
	margin-top: 40px;
}

/* tt-Comments */
.tt-comment {
}

/* tt-Comments avatar */
.tt-comment-avatar {
	position: relative;
	display: inline-block;
	float: left;
	width: 50px;
	height: 50px;
	margin-right: 20px;
	overflow: hidden;
	border-radius: 100px;
}
.tt-comment-avatar img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
.tt-comment-avatar:hover {
	opacity: .9;
}

/* tt-Comments pody */
.tt-comment-body {
	position: relative;
	display: table;
}
@media (max-width: 768px) {
	.tt-comment-body {
		display: block;
	}
}

/* tt-Comments meta */
.tt-comment-meta {
	margin-right: 70px;
}

.tt-comment-heading {
	margin: 0 0 5px 0;
	text-transform: none;
	letter-spacing: 0;
	font-size: 17px;
	color: var(--color-text-tertiary);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.tt-comment-heading a {
	position: relative;
	color: var(--color-text-tertiary);
	display: inline;
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: -ms-linear-gradient(transparent 96%,currentColor 1px);
	transition: 0.4s cubic-bezier(.215,.61,.355,1);
	background-size: 0 96%;
}
.tt-comment-heading a:hover {
	background-size: 100% 96%;
	color: var(--color-text-primary);
}

.tt-comment-time {
	display: block;
	margin-bottom: 15px;
	font-size: 14px;
	font-weight: normal;
	color: var(--color-text-muted);
}

/* tt-Comments text */
.tt-comment-text {
	clear: both;
	color: var(--color-text-content);
}
@media (max-width: 768px) {
	.tt-comment-text {
		font-size: 16px;
	}
}

/* tt-Comments reply */
.tt-comment-reply {
	position: absolute;
	top: 20px;
	right: 20px;
	text-align: right;
	font-size: 14px;
	font-style: italic;
	z-index: 9;
}
@media (max-width: 768px) {
	.tt-comment-reply {
		top: 0;
		right: 0;
	}
}
.tt-comment-reply a {
	position: relative;
	color: var(--color-text-subtle);
	display: inline;
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: -ms-linear-gradient(transparent 96%,currentColor 1px);
	transition: 0.3s cubic-bezier(.215,.61,.355,1);
	background-size: 0 96%;
}
.tt-comment-reply a:hover {
	background-size: 100% 96%;
	color: var(--color-text-primary);
}

/* blog single post comment form */
.tt-post-comment-form-heading {
	margin-bottom: 50px;
	font-size: 28px;
}
#tt-post-comment-form {
	margin-top: 140px;
}
@media (max-width: 768px) {
	#tt-post-comment-form {
		margin-top: 80px;
	}
}
#tt-post-comment-form .tt-post-comment-reminder {
	margin-top: 30px;
	line-height: 1.2;
}
#tt-post-comment-form .tt-post-comment-reminder label {
	padding-top: 3px;
	font-size: 15px;
	font-weight: normal;
	color: var(--color-text-subtle);
	text-transform: unset;
	letter-spacing: 0;
}


/* ------------------------------------------------------------- *
 * Footer
/* ------------------------------------------------------------- */

#tt-footer {
	position: relative;
	width: 100%;
	font-size: 14px;
	z-index: 2;
}

.tt-footer-inner {
	position: relative;
}
body:not(.tt-boxed) .tt-footer-inner, 
.tt-footer-inner:not(.tt-wrap) {
	padding-left: 3.5%;
	padding-right: 3.5%;
}

#tt-footer a {
	font-size: 14px;
	color: var(--color-text-primary);
}

#tt-footer .tt-btn {
	margin-top: 3px;
	margin-bottom: 3px;
}

/* Footer copyright */
#tt-footer .tt-copyright {
	color: var(--color-text-subtle);
}
#tt-footer .tt-copyright a {
	color: var(--color-text-subtle);
}
#tt-footer .tt-copyright a:hover {
}


/* For desktop only 
==================== */
@media (min-width: 1025px) {
	#tt-footer {
		padding: 30px 0;
	}
	#tt-footer.footer-absolute {
		position: absolute;
		left: 0;
		bottom: 4%;
		padding: 0;
		pointer-events: none;
	}
	#tt-footer.footer-absolute a {
		pointer-events: initial;
	}

	.tt-footer-inner {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}

	/* Footer columns */
	.footer-col {
		flex: 1;
		padding: 0 15px;
		margin: 0 5px;
	}
	.footer-col:first-child {
		margin-left: 0;
		padding-left: 0;
	}
	.footer-col:last-child {
		margin-right: 0;
		padding-right: 0;
	}
	.footer-col-inner {
	}

	/* Align footer column content */
	.footer-col.tt-align-top-center {
		display: flex;
		justify-content: center;
	}
	.footer-col.tt-align-top-right {
		display: flex;
		justify-content: flex-end;
	}

	.footer-col.tt-align-center-left {
		display: flex;
		align-items: center;
	}
	.footer-col.tt-align-center {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.footer-col.tt-align-center-right {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	.footer-col.tt-align-bottom {
		display: flex;
		align-items: flex-end;
	}
	.footer-col.tt-align-bottom-center {
		display: flex;
		align-items: flex-end;
		justify-content: center;
	}
	.footer-col.tt-align-bottom-right {
		display: flex;
		align-items: flex-end;
		justify-content: flex-end;
	}

	/* Footer social */
	#tt-footer .footer-social {
		position: relative;
		line-height: 50px;
		height: 50px;
		pointer-events: auto;
	}
	#tt-footer .footer-social:before { /* expands the hover area */
		position: absolute;
		content: "";
		top: 0;
		bottom: -30px;
		left: 0;
		right: 0;
		z-index: -1;
	}
	#tt-footer .footer-social .footer-social-text {
		display: block;
		text-align: right;
		cursor: pointer;
		opacity: 1;
		visibility: visible;
	}
	#tt-footer .footer-social .footer-social-text > span {
		margin-right: 13px;
	}
	#tt-footer .footer-social .social-buttons {
		opacity: 0;
		visibility: hidden;
		transform: translate3d(0, -50%, 0);
	}
	#tt-footer .footer-social .footer-social-text,
	#tt-footer .footer-social .social-buttons {
		transition: all 0.3s ease;
	}

	#tt-footer .footer-social:hover .footer-social-text {
		transform: translate3d(0, -50%, 0);
		opacity: 0;
		visibility: hidden;
	}
	#tt-footer .footer-social:hover .social-buttons {
		transform: translateY(-100%);
		opacity: 1;
		visibility: visible;
	}
}

/* For smaller screens only 
============================ */
@media (max-width: 1024px) {
	#tt-footer {
		padding: 60px 0 80px 0;
	}
	.tt-footer-inner {
		display: flex;
		flex-direction: column;
	}

	/* Footer columns */
	.footer-col {
		display: block;
		margin-bottom: 10px;
		text-align: center;
	}
	.footer-col:first-child {
	}
	.footer-col:last-child {
	}
	.footer-col-inner {
	}

	/* Order footer columns */
	.footer-col.order-m-first { order: -1; }
	.footer-col.order-m-last { order: 10; }
	.footer-col.order-m-1 { order: 1; }
	.footer-col.order-m-2 { order: 2; }
	.footer-col.order-m-3 { order: 3; }
	.footer-col.order-m-4 { order: 4; }
	.footer-col.order-m-5 { order: 5; }
	.footer-col.order-m-6 { order: 6; }
	.footer-col.order-m-7 { order: 7; }
	.footer-col.order-m-8 { order: 8; }
	.footer-col.order-m-9 { order: 9; }
	.footer-col.order-m-10 { order: 10; }

	/* Footer social */
	#tt-footer .footer-social {
		margin-bottom: 10px;
	}
	#tt-footer .footer-social .footer-social-text {
		display: none;
	}
}