/* --------------------------------------------------------------------
* Template Master Stylesheet
* 
* Template:		Waal - Portfolio Showcase HTML Website Template
* Author:		Themetorium
* URL:			https://themetorium.net/
*
* Template main color: #FF5F14
* Links color: #08b396
* Links hover color: #0ddeba
* Font family (global): 'Lato', sans-serif;
* Font family (alter): 'Playfair Display', serif;
-------------------------------------------------------------------- */


/* Table of Content
====================
# General
# Page transitions / Page preloader
# Lazy-loading plugin
# Page boxed layout
# Cover
# Body inner
# Page wrap
# Page content
# Headings
# Figure
# tt-Section
# Header
# Header alternative style
# Logo
# Header attributes
# Overlay menu
# Hero slider
# Page header
# tt-Headings
# Split box
# Isotope
# Portfolio grid
# Portfolio carousel
# tt-Gallery
# Content toggle
# Portfolio single info
# Portfolio single nav
# Lightgallery
# Content carousel
# Counter Up
# Clients carousel
# Team member
# Thumbnail list
# Blog list
# Blog single post
# Sidebar
# Blog sidebar widgets
# YTP Player
# Accordion
# Buttons
# Scroll to top button
# Social buttons
# Forms
# Pagination
# Blockquotes
# Testimonial carousel
# Info box
# Search results
# Footer
*/ 


/* ------------------------------------------------------------- *
 *  General
/* ------------------------------------------------------------- */

html {
}
html, body {
	padding: 0;
	margin: 0;
}
body {
	position: relative;
	background-color: #FFF;
	font-family: 'Lato', sans-serif;
	line-height: 1.6;
	font-size: 18px;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	color: #333;
	overflow-x: hidden;
}

a {
	color: #08b396;
	text-decoration: none;
}
a:hover, a:focus {
	color: #0ddeba;
	text-decoration: none;
}
a:focus {
	outline: none;
}

p {
	margin: 0 0 20px;
}

img {
	max-width: 100%;
	height: auto;
}

b, strong {
	font-weight: bold;
	font-weight: 700;
}

section {
	position: relative;
}

button {
}
button:focus {
	outline: none;
}

/* selection */
::selection {
	color: #222;
	text-shadow: none;
	background: #FF5F14;
}
::-moz-selection {
	color: #222;
	text-shadow: none;
	background: #FF5F14; /* Firefox */
}
::-webkit-selection {
	color: #222;
	text-shadow: none;
	background: #FF5F14; /* Safari */
}

.small, small {
	font-size: 83%;
}

/* lead */
.lead {
	font-size: 21px;
	font-weight: normal;
}


.color-white {
    color: #fff !important;
}
/* --------------------------------------------------------------------------------------- *
 *  Page transitions / Page preloader (Animsition). Display loading animation while page loads
 *  More info: http://git.blivesta.com/animsition/
/* --------------------------------------------------------------------------------------- */

/* circle loader (loader image location: assets/img/page-loader.gif) */
.animsition-loading {
	z-index: 99999;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	border-radius: 50%;
	overflow: hidden;
	background-color: rgba(130, 130, 130, 0.1);
	
	/* disable animation (spinning) */
	animation: none;
	-webkit-animation: none;
	-moz-animation: none;
	border: none;
}

/* slide overlay */
.overlay-slide-in-top,
.overlay-slide-out-top {
	background-color: #FFF;
	z-index: 99998;
}


/* --------------------------------------------------------------------------------------- *
 *	Lazy-loading plugin - jQuery Lazy 
 *	More info: http://jquery.eisbehr.de/lazy/
/* --------------------------------------------------------------------------------------- */

.lazy {
	position: relative;
}
.lazy.lazy-loader::after {
	position: absolute;
	display: block;
	content: "";
	top: 50%;
	left: 50%;
	width: 54px;
	height: 54px;
	background-image: url(../img/loader.gif);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.lazy.lazy-error::after {
	position: absolute;
	display: block;
	content: "";
	top: 50%;
	left: 50%;
	width: 54px;
	height: 54px;
	background-image: url(../img/no-image.png);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/* if <img> tag */
img.lazy.lazy-loader,
img.lazy.lazy-error {
	width: 100%;
	height: 320px;
}
img.lazy.lazy-loader {
	background-image: url(../img/loader.gif);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	-webkit-background-size: inherit !important;
	background-size: inherit !important;
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-o-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}
img.lazy.lazy-error {
	background-image: url(../img/no-image.png);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	-webkit-background-size: inherit !important;
	background-size: inherit !important;
}


/* ----------------------------------------------------------------------------------------- *
 *  Page boxed layout
 *  Note: Class "boxed" in <body> tag is connected with class "tt-wrap" in several places!
/* ----------------------------------------------------------------------------------------- */

body.tt-boxed .tt-wrap {
	max-width: 1282px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
body.tt-boxed .tt-wrap .tt-wrap {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}


/* ------------------------------------------------------------- *
 *  Cover (used as image cover)
/* ------------------------------------------------------------- */

.cover {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 2;
}

[class*="cover-opacity-"]::before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #000;
	z-index: 1;
	opacity: 0;
}


/* Cover opasity
================= */
.cover-opacity-0::before { opacity: 0; }
.cover-opacity-0-5::before { opacity: .05; }
.cover-opacity-1::before { opacity: .1; }
.cover-opacity-1-5::before { opacity: .15; }
.cover-opacity-2::before { opacity: .2; }
.cover-opacity-2-5::before { opacity: .25; }
.cover-opacity-3::before { opacity: .3; }
.cover-opacity-3-5::before { opacity: .35; }
.cover-opacity-4::before { opacity: .4; }
.cover-opacity-4-5::before { opacity: .45; }
.cover-opacity-5::before { opacity: .5; }
.cover-opacity-5-5::before { opacity: .55; }
.cover-opacity-6::before { opacity: .6; }
.cover-opacity-6-5::before { opacity: .65; }
.cover-opacity-7::before { opacity: .7; }
.cover-opacity-7-5::before { opacity: .75; }
.cover-opacity-8::before { opacity: .8; }
.cover-opacity-8-5::before { opacity: .85; }
.cover-opacity-9::before { opacity: .9; }
.cover-opacity-9-5::before { opacity: .95; }


/* ------------------------------------------------------------- *
 *  Body inner
/* ------------------------------------------------------------- */

#body-inner {
	position: relative;
	overflow: hidden;
}


/* ------------------------------------------------------------- *
 *  Page wrap
/* ------------------------------------------------------------- */

#page-wrap {
	position: relative;
	background-color: #FFF;
	z-index: 5;
}


/* ------------------------------------------------------------- *
 *  Page content
/* ------------------------------------------------------------- */

#page-content {
	position: relative;
	background-color: #FFF;
}


/* ------------------------------------------------------------- *
 * Headings
/* ------------------------------------------------------------- */

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: inherit;
}
.h1, .h2, .h3, h1, h2, h3 {
	line-height: 1.4;
	margin-top: 0px;
	margin-bottom: 24px;
}
.h4, .h5, .h6, h4, h5, h6 {
	line-height: 1.4;
	margin-top: 10px;
	margin-bottom: 24px;
}

.h1, h1 { font-size: 32px; }
.h2, h2 { font-size: 28px; }
.h3, h3 { font-size: 25px; }
.h4, h4 { font-size: 22px; }
.h5, h5 { font-size: 19px; }
.h6, h6 { font-size: 17px; }


/* ------------------------------------------------------------- *
 * Figure
/* ------------------------------------------------------------- */

figure {
	position: relative;
	margin-bottom: 0;
	overflow: hidden;
	background-color: rgba(130, 130, 130, 0.1);
}

@media (max-width: 768px) {
	figure[class*="margin-bottom-"] {
		margin-bottom: 5% !important;
	}
}

/* figure image */
figure img {
	width: 100%;
}

/* figure caption */
figcaption {
	background-color: #F4F4F4;
	padding: 15px;
	font-size: 16px;
	font-weight: 300;
	font-style: italic;
	z-index: 1;
}
@media (max-width: 1280px) {
	figcaption {
		padding-right: 5px;
	}
}

figcaption a {
	border-bottom: 1px dotted;
}
figcaption a:hover {
	opacity: .8;
}


/* ------------------------------------------------------------- *
 * tt-Section
/* ------------------------------------------------------------- */

.tt-section {
	position: relative;
	padding: 80px 0;
}
@media (max-width: 992px) {
	.tt-section {
		padding: 6% 0;
	}
}
@media (max-width: 768px) {
	.tt-section {
		padding: 10% 0;
	}
}
@media (max-width: 480px) {
	.tt-section {
		padding: 15% 0;
	}
}


/* tt-section background image 
=============================== */
.tt-section-image {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	overflow: hidden;
}


/* tt-section inner 
==================== */
.tt-section-inner {
	position: relative;
	width: 100%;
	z-index: 2;
}


/* ------------------------------------------------------------- *
 * Header
/* ------------------------------------------------------------- */

#header {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	max-width: 100%;
	background-color: #FFF;
	z-index: 9998;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
	#header {
		height: 64px;
		z-index: 99999;
		/*-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
		-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);*/
	}
}

/* add padding top to "#page-wrap" if ".header-show-hide-on-scroll" or ".header-fixed-top" is enabled (no effect with ".header-transparent") */
@media (min-width: 992px) {
	body.header-show-hide-on-scroll-on:not(.header-transparent-on) #page-wrap,
	body.header-fixed-top-on:not(.header-transparent-on) #page-wrap {
		padding-top: 80px; /* Same as header height! */
	}
}
@media (max-width: 991px) {
	body.header-show-hide-on-scroll-on #page-wrap,
	body.header-fixed-top-on #page-wrap {
		padding-top: 64px; /* Same as mobile header height! */
	}
}

/* header inner */
.header-inner {
	position: relative;
	padding-left: 3%;
	padding-right: 3%;
}
.header-inner::after {
	content: "";
	display: block;
	clear: both;
}

/* header fixed top */
#header.header-fixed-top {
	position: fixed !important;
}

/* hide header on scroll down and show on scroll up */
#header.header-show-hide-on-scroll {
	position: fixed !important;
}
#header.header-show-hide-on-scroll.fly-up {
	-moz-transform: translate3d(0, -100%, 0);
	-ms-transform: translate3d(0, -100%, 0);
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}
body.tt-m-menu-open #header.header-show-hide-on-scroll { /* disable hide/show header on scroll if mobile menu is open */
	top: 0;
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/* header transparent */
@media (min-width: 992px) {
	#header.header-transparent {
		position: absolute;
		background-color: transparent;
		padding-top: 20px;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
	#header.header-transparent .tt-menu-nav > li > a,
	#header.header-transparent .header-attributes > ul > li > a {
		color: #FFF;
	}
	#header.header-transparent .tt-menu-nav > li > a:hover {
	}

	#header.header-transparent #logo .logo-dark {
		display: none;
	}
	#header.header-transparent #logo .logo-light {
		display: block;
	}
}

/* header transparent dark */
@media (min-width: 992px) {
	#header.header-transparent-dark .tt-menu-nav > li > a,
	#header.header-transparent-dark .header-attributes > ul > li > a {
		color: #000;
	}
	#header.header-transparent-dark .tt-menu-nav > li > a:hover {
	}

	#header.header-transparent-dark #logo .logo-dark {
		display: block;
	}
	#header.header-transparent-dark #logo .logo-light {
		display: none;
	}
}

/* Header filled */
#header.header-filled {
	background-color: rgba(255, 255, 255, 0.95);
	padding: 0;
}
#header.header-transparent.header-filled {
}
#header.header-transparent.header-filled .tt-menu-nav > li > a,
#header.header-transparent.header-filled .header-attributes > ul > li > a {
	color: inherit;
}

@media (min-width: 992px) {
	#header.header-transparent.header-filled #logo .logo-dark {
		display: block;
	}
	#header.header-transparent.header-filled #logo .logo-light {
		display: none;
	}
}


/* ------------------------------------------------------------- *
 * Header alternative style
/* ------------------------------------------------------------- */

#header.header-alt {
	padding-top: 0;
}
#header.header-alt .header-inner {
	padding-right: 0;
}

@media (min-width: 992px) {
	#header.header-alt #logo {
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	#header.header-transparent.header-alt:not(.header-filled) #logo {
		margin-top: 40px;
	}
}

#header.header-alt #tt-ol-menu-trigger {
	background-color: #111;
	margin-top: 0;
	padding: 0 8px;
}
#header.header-alt #tt-ol-menu-trigger .mt-inner {
	width: 50px;
	height: 80px;
}
#header.header-alt .tt-ol-menu-str .str-1, 
#header.header-alt .tt-ol-menu-str .str-2, 
#header.header-alt .tt-ol-menu-str .str-3 {
	background-color: #fff !important;
}
#header.header-alt #tt-ol-menu-trigger .tt-ol-menu-text {
	height: 80px;
	line-height: 80px;
	color: #fff !important;
}

#header.header-alt .header-attributes {
	margin: 0;
}
#header.header-alt .header-attributes > ul > li {
	margin-left: 0;
}
#header.header-alt .header-search-trigger {
	margin-top: 0;
	padding: 0 !important;
	line-height: 80px;
	width: 70px;
	background-color: #111;
	text-align: center;
	color: #FFF !important;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#header.header-alt .header-search-trigger:hover {
	color: #FF5F14 !important;
}

@media (max-width: 991px) {
	#header.header-alt #tt-ol-menu-trigger {
		padding: 0;
	}
	#header.header-alt #tt-ol-menu-trigger .mt-inner,
	#header.header-alt #tt-ol-menu-trigger .tt-ol-menu-text,
	#header.header-alt .header-search-trigger {
		height: 64px;
		line-height: 64px;
	}
	#header.header-alt #tt-ol-menu-trigger .mt-inner,
	#header.header-alt .header-search-trigger {
		width: 60px;
	}
}


/* ------------------------------------------------------------- *
 * Logo
/* ------------------------------------------------------------- */

#logo {
	position: relative;
	display: inline-block;
	margin-top: 21px;
	z-index: 9;
	line-height: 1.5;
}
#header #logo img {
	max-height: 36px
}

#logo .logo-light {
	display: none;
}

#logo .logo-light-m,
#logo .logo-dark-m {
	display: none;
}

@media (max-width: 991px) {
	#header #logo {
		position: relative;
		float: left !important;
		margin-top: 15px !important;
	}
	#header #logo img {
		max-height: 32px !important;
	}

	#logo .logo-dark {
		display: none;
	}
	#logo .logo-dark-m {
		display: block;
	}
}


/* ------------------------------------------------------------- *
 * Header attributes
/* ------------------------------------------------------------- */

.header-attributes {
	position: relative;
	float: right;
	margin-left: 0;
}
@media (max-width: 1200px) {
	.header-attributes {
		margin-left: 10px;
	}
}
@media (max-width: 991px) {
	.header-attributes {
		margin-left: 0;
		margin-right: 5px;
	}
}

.header-attributes > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.header-attributes > ul > li {
	float: left;
	margin-left: 8px;
}
.header-attributes > ul > li > a {
	position: relative;
	display: block;
	margin-top: 18px;
	line-height: 1.5;
	font-size: 17px;
	font-weight: normal;
	color: #000;
	z-index: 9;
}
.header-attributes > ul > li > a:hover {
}
@media (max-width: 991px) {
	.header-attributes > ul > li > a {
		margin: 0;
		padding: 20px 8px;
	}
}


/* Header attributes search 
============================ */

/* header attributes search trigger */
.header-search-trigger {
	padding: 9px 5px;
	font-size: 21px !important;
}
@media (max-width: 991px) {
	.header-search-trigger {
		padding: 17px 5px 13px 5px !important;
	}
}
.header-search-trigger:hover {
}

/* header attributes search */
.header-search {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 80px; /* same as header height */
	z-index: 99999;
	background-color: #FFF;
	opacity: 0;
	visibility: hidden;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

	-moz-transform: translate3d(0, -100%, 0);
	-ms-transform: translate3d(0, -100%, 0);
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}
@media (max-width: 991px) {
	.header-search {
		height: 64px; /* same as mobile header height */
	}
}

body.header-search-open .header-search {
	opacity: 1;
	visibility: visible;
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.header-search-cover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	z-index: 999;
}

.header-search-inner {
	position: relative;
	top: 50%;
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	padding: 0 140px 0 30px;
	z-index: 2;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media (max-width: 767px) {
	.header-search-inner {
		padding: 0 40px 0 0;
	}
}
.header-inner.tt-wrap .header-search-inner {
	max-width: 1282px;
	padding: 0 80px 0 15px;
}

/* header attributes search form */
#header-search-form {
}
.header-search #header-search-input {
	position: relative;
	width: 100%;
	height: 60px;
	background-color: transparent;
	padding: 10px 0;
	font-size: 21px;
	color: #000;
	border: none;
}
.header-search #header-search-input:focus {
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
@media (max-width: 767px) {
	.header-search #header-search-input {
		height: 40px;
		padding: 10px;
		font-size: 16px;
	}
}
.header-search .form-btn-inside button {
	font-size: 24px;
	color: #000;
	padding: 0 10px;
}
@media (max-width: 767px) {
	.header-search .form-btn-inside button {
		font-size: 24px;
		padding: 0 10px;
	}
}
.header-search .form-btn-inside button:hover {
	opacity: 1;
	color: #FF5F14;
}

/* header attributes search close */
.header-search-close {
	position: absolute;
	top: 50%;
	right: 30px;
	margin-top: -2px;
	color: #222;
	cursor: pointer;
	z-index: 9;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media (max-width: 992px) {
	.header-search-close {
		right: 15px;
	}
	.header-search-close span {
		display: none;
	}
}

.header-search-close:hover .tt-close-btn {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
}


/* ------------------------------------------------------------- *
 * Overlay menu
/* ------------------------------------------------------------- */

#tt-overlay-menu {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.94);
	z-index: 99998;
	color: #FFF;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

body.tt-ol-menu-open .tt-ol-menu-body-cover {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99997;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.tt-ol-menu-open #tt-overlay-menu {
	visibility: visible;
	opacity: 1;
}

/* overlay menu inner */
#tt-ol-menu-inner {
	position: relative;
	height: 100%;
	z-index: 3;
	overflow-y: auto;
	padding-bottom: 100px;
}

/* overlay menu inner */
#tt-ol-menu-content {
	position: relative;
	height: 100%;
	overflow: auto;
}


/* Overlay menu navigation 
=========================== */
.tt-ol-menu-nav {
	position: relative;
	top: 25%;
	max-width: 540px;
	margin: 0 auto;
}
@media (max-width : 1600px) {
	.tt-ol-menu-nav {
		top: 20%;
		padding: 0 5% 0 10%;
	}
}
@media (max-width : 574px) {
	.tt-ol-menu-nav {
		top: 18%;
		padding: 0 5% 0 20%;
	}
}

.tt-ol-menu-nav ul {
	padding-left: 0;
	list-style: none;
}

/* overlay menu list */
.tt-ol-menu-list {
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	-moz-transition: -webkit-transform 0.4s, opacity 0.4s;
	-o-transition: -webkit-transform 0.4s, opacity 0.4s;
	-ms-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: -webkit-transform 0.4s, opacity 0.4s;
}
.tt-ol-menu-open .tt-ol-menu-list {
	opacity: 1;
	-webkit-transition-delay: 0.4s;
	-moz-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.tt-ol-menu-list > li {
	margin-bottom: 12px;
}
.tt-ol-menu-list > li > a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	font-family: 'Playfair Display',serif;
	font-size: 36px;
	font-weight: bold;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.6;
	color: #FFF;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
	.tt-ol-menu-list > li > a {
		font-size: 26px !important;
	}
}
@media (max-width: 574px) {
	.tt-ol-menu-list > li > a {
		font-size: 20px !important;
	}
}

.tt-ol-menu-list > li > a::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 2px;
	background-color: #FF5F14;
	left: 0;
	right: 0;
	bottom: 2px;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.tt-ol-menu-list > li > a:hover::after, 
.tt-ol-menu-list > li.active > a::after {
	transform: none;
	transform-origin: left center;

	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}


/* Overlay sub menu 
==================== */
.tt-ol-menu-list .tt-ol-sub-menu {
	display: block;
	margin: 8px 0 20px 0;
	padding: 0;
	overflow: hidden;
}

.tt-ol-menu-list .tt-ol-sub-menu li {
	margin: 3px 0 3px 10px;
}
.tt-ol-menu-list .tt-ol-sub-menu li > a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	font-size: 17px;
	font-weight: normal;
	color: #c3c3c3;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.tt-ol-menu-list .tt-ol-sub-menu li > a:hover,
.tt-ol-menu-list .tt-ol-sub-menu li.active > a {
	color: #FF5F14;
}

/* caret (requires FontAwesome: https://fontawesome.com/) */
.tt-caret {
	position: absolute;
	top: 50%;
	right: -15px;
	font-size: 12px;
	line-height: 0;
}
.tt-caret::after {
	font-family: "Font Awesome 5 Free";
	content: "\f107";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

/* caret in dropdowns */
.tt-submenu .tt-caret {
	position: absolute;
	right: 10px;
	top: 50%;
	-moz-transform: translateY(-50%) rotate(-90deg);
	-ms-transform: translateY(-50%) rotate(-90deg);
	-webkit-transform: translateY(-50%) rotate(-90deg);
	transform: translateY(-50%) rotate(-90deg);
}

/* submenu inline */
#tt-overlay-menu.olm-submenu-inline .tt-ol-menu-list .tt-ol-sub-menu li {
	float: left;
	margin: 0 0 3px 0;
}
#tt-overlay-menu.olm-submenu-inline .tt-ol-menu-list .tt-ol-sub-menu li > a {
	margin-right: 7px;
}

#tt-overlay-menu.olm-submenu-inline .tt-ol-menu-list .tt-ol-sub-menu li > a::after {
	position: relative;
	display: inline-block;
	content: "/";
	margin-left: 7px;
	color: #808080;
}
#tt-overlay-menu.olm-submenu-inline .tt-ol-menu-list .tt-ol-sub-menu li:last-child > a::after {
	display: none;
}


/* Overlay menu footer 
======================= */
.tt-ol-menu-footer {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 10px 70px 40px 70px;
	z-index: 3;
	opacity: 0;
	font-size: 14px;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	-moz-transition: -webkit-transform 0.4s, opacity 0.4s;
	-o-transition: -webkit-transform 0.4s, opacity 0.4s;
	-ms-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: -webkit-transform 0.4s, opacity 0.4s;
}
.tt-ol-menu-open .tt-ol-menu-footer {
	opacity: 1;
	-webkit-transition-delay: 0.6s;
	-moz-transition-delay: 0.6s;
	transition-delay: 0.6s;
}
@media (max-width: 1600px) {
	.tt-ol-menu-footer {
		padding-left: 40px;
		padding-right: 40px;
		padding-bottom: 20px;
	}
}
@media (max-width: 575px) {
	.tt-ol-menu-footer {
		text-align: center;
	}
}

.tt-ol-menu-footer .col-left {
}
.tt-ol-menu-footer .col-right {
}
@media (min-width: 575px) {
	.tt-ol-menu-footer .col-right {
		text-align: right;
	}
}

.tt-ol-menu-footer .tt-ol-menu-copyright {
	margin-top: 5px;
	color: #BBB;
}


/* Overlay menu close button
============================= */
.tt-ol-menu-close {
	position: absolute;
	top: 40px;
	right: 60px;
	font-size: 14px;
	color: #FFF;
	cursor: pointer;
	z-index: 9;
}
@media (max-width: 992px) {
	.tt-ol-menu-close {
		top: 20px;
		right: 30px;
	}
}
@media (max-width: 992px) {
	.tt-ol-menu-close span {
		display: none;
	}
}
.tt-ol-menu-close:hover .tt-close-btn {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
}


/* Overlay menu trigger (menu button)
====================================== */
#tt-ol-menu-trigger {
	display: inline-block;
	float: right;
	margin-top: 15px;
	cursor: pointer;
}
@media (max-width: 991px) {
	#tt-ol-menu-trigger {
		margin-top: 6px;
	}
}

/* overlay menu trigger inner */
#tt-ol-menu-trigger .mt-inner {
	position: relative;
	float: right;
	width: 50px;
	height: 50px;
	z-index: 2;
}
#tt-ol-menu-trigger .tt-ol-menu-text {
	float: left;
	width: auto;
	height: 50px;
	line-height: 50px;
	padding: 0;
	margin-left: 10px;
	font-family: 'Playfair Display',serif;
	font-size: 18px;
	font-weight: 700;
	color: #111;
	z-index: 1;
}
@media (max-width: 768px) {
	#tt-ol-menu-trigger .tt-ol-menu-text {
		display: none;
	}
}

/* overlay menu trigger stripes */
.tt-ol-menu-str {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -9px;
	margin-left: -15px;
	width: 30px;
	height: 18px;
}
.tt-ol-menu-str .str-1, 
.tt-ol-menu-str .str-2, 
.tt-ol-menu-str .str-3 {
	position: absolute;
	display: block;
	background-color: #000;
	width: 100%;
	height: 2px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.tt-ol-menu-str .str-1 {
	top: 0px;
	width: 50%;
}
#tt-ol-menu-trigger:hover .tt-ol-menu-str .str-1 {
	width: 100%;
}
.tt-ol-menu-str .str-2 {
	top: 8px;
}
#tt-ol-menu-trigger:hover .tt-ol-menu-str .str-2 {
	width: 70%;
}
.tt-ol-menu-str .str-3 {
	bottom: 0;
	width: 70%;
}
#tt-ol-menu-trigger:hover .tt-ol-menu-str .str-3 {
	width: 90%;
}

/* if header is transparent */
#header.header-transparent .tt-ol-menu-str .str-1, 
#header.header-transparent .tt-ol-menu-str .str-2, 
#header.header-transparent .tt-ol-menu-str .str-3 {
	background-color: #FFF;
}
#header.header-transparent #tt-ol-menu-trigger .tt-ol-menu-text {
	color: #FFF;
}
@media (max-width: 991px) {
	#header.header-transparent .tt-ol-menu-str .str-1, 
	#header.header-transparent .tt-ol-menu-str .str-2, 
	#header.header-transparent .tt-ol-menu-str .str-3 {
		background-color: #000;
	}
	#header.header-transparent #tt-ol-menu-trigger .tt-ol-menu-text {
		color: #111;
	}
}

/* if header is transparent dark */
#header.header-transparent.header-transparent-dark .tt-ol-menu-str .str-1,
#header.header-transparent.header-transparent-dark .tt-ol-menu-str .str-2,
#header.header-transparent.header-transparent-dark .tt-ol-menu-str .str-3 {
	background-color: #000;
}
#header.header-transparent.header-transparent-dark #tt-ol-menu-trigger .tt-ol-menu-text {
	color: #111;
}

/* if header is filled */
#header.header-filled .tt-ol-menu-str .str-1, 
#header.header-filled .tt-ol-menu-str .str-2, 
#header.header-filled .tt-ol-menu-str .str-3 {
	background-color: #000;
}
#header.header-filled #tt-ol-menu-trigger .tt-ol-menu-text {
	color: #111;
}


/* Overlay menu variations
=========================== */

/* slide left */
#tt-overlay-menu.olm-slide-left {
	opacity: 1;
	-moz-transform: translate3d(-100%, 0, 0);
	-ms-transform: translate3d(-100%, 0, 0);
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}
.tt-ol-menu-open #tt-overlay-menu.olm-slide-left {
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
#tt-overlay-menu.olm-slide-left .tt-ol-menu-list {
	-moz-transform: translate3d(-40px, 0, 0);
	-ms-transform: translate3d(-40px, 0, 0);
	-webkit-transform: translate3d(-40px, 0, 0);
	transform: translate3d(-40px, 0, 0);
}
.tt-ol-menu-open #tt-overlay-menu.olm-slide-left .tt-ol-menu-list {
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);

	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

/* slide left half */
#tt-overlay-menu.olm-slide-left-half {
	right: auto;
	top: 0;
	left: 0;
	width: 50.5%;
	height: 100%;
	opacity: 1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

	-moz-transform: translate3d(-100%, 0, 0);
	-ms-transform: translate3d(-100%, 0, 0);
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}
.tt-ol-menu-open #tt-overlay-menu.olm-slide-left-half {
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
#tt-overlay-menu.olm-slide-left-half .tt-ol-menu-list {
	text-align: left;
	-moz-transform: translate3d(-40px, 0, 0);
	-ms-transform: translate3d(-40px, 0, 0);
	-webkit-transform: translate3d(-40px, 0, 0);
	transform: translate3d(-40px, 0, 0);
}
.tt-ol-menu-open #tt-overlay-menu.olm-slide-left-half .tt-ol-menu-list {
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);

	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.tt-ol-menu-open #tt-overlay-menu.olm-slide-left-half .tt-ol-menu-footer {
	-webkit-transition-delay: 0.6s;
	-moz-transition-delay: 0.6s;
	transition-delay: 0.6s;
}
#tt-overlay-menu.olm-slide-left-half .tt-ol-menu-list > li > a {
	font-size: 26px;
}
#tt-overlay-menu.olm-slide-left-half .tt-ol-menu-list .tt-ol-sub-menu li > a {
	font-size: 16px;
}
@media (max-width: 1300px) {
	#tt-overlay-menu.olm-slide-left-half {
		width: 50.5%;
	}
}
@media (max-width: 992px) {
	#tt-overlay-menu.olm-slide-left-half {
		width: 80%;
	}
}
@media (max-width: 768px) {
	#tt-overlay-menu.olm-slide-left-half {
		width: 100%;
	}
}

/* slide right */
#tt-overlay-menu.olm-slide-right {
	right: 0;
	left: auto;
	opacity: 1;
	-moz-transform: translate3d(100%, 0, 0);
	-ms-transform: translate3d(100%, 0, 0);
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}
.tt-ol-menu-open #tt-overlay-menu.olm-slide-right {
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
#tt-overlay-menu.olm-slide-right .tt-ol-menu-list {
	-moz-transform: translate3d(40px, 0, 0);
	-ms-transform: translate3d(40px, 0, 0);
	-webkit-transform: translate3d(40px, 0, 0);
	transform: translate3d(40px, 0, 0);
}
.tt-ol-menu-open #tt-overlay-menu.olm-slide-right .tt-ol-menu-list {
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);

	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

/* slide right half */
#tt-overlay-menu.olm-slide-right-half {
	left: auto;
	top: 0;
	right: 0;
	width: 50.1%;
	height: 100%;
	opacity: 1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

	-moz-transform: translate3d(100%, 0, 0);
	-ms-transform: translate3d(100%, 0, 0);
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}
.tt-ol-menu-open #tt-overlay-menu.olm-slide-right-half {
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
#tt-overlay-menu.olm-slide-right-half .tt-ol-menu-list {
	text-align: left;
	-moz-transform: translate3d(30px, 0, 0);
	-ms-transform: translate3d(30px, 0, 0);
	-webkit-transform: translate3d(30px, 0, 0);
	transform: translate3d(30px, 0, 0);
}
.tt-ol-menu-open #tt-overlay-menu.olm-slide-right-half .tt-ol-menu-list {
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);

	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.tt-ol-menu-open #tt-overlay-menu.olm-slide-right-half .tt-ol-menu-footer {
	-webkit-transition-delay: 0.6s;
	-moz-transition-delay: 0.6s;
	transition-delay: 0.6s;
}
#tt-overlay-menu.olm-slide-right-half .tt-ol-menu-list > li > a {
	font-size: 28px;
}
#tt-overlay-menu.olm-slide-right-half .tt-ol-menu-list .tt-ol-sub-menu li > a {
	font-size: 16px;
}
@media (max-width: 1300px) {
	#tt-overlay-menu.olm-slide-right-half {
		width: 50.5%;
	}
}
@media (max-width: 992px) {
	#tt-overlay-menu.olm-slide-right-half {
		width: 80%;
	}
}
@media (max-width: 768px) {
	#tt-overlay-menu.olm-slide-right-half {
		width: 100%;
	}
}

/* slide top */
#tt-overlay-menu.olm-slide-top {
	opacity: 1;
	-moz-transform: translate3d(0, -100%, 0);
	-ms-transform: translate3d(0, -100%, 0);
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);

	-webkit-transition-timing-function: cubic-bezier(.75, 0, .29, 1.01);
	transition-timing-function: cubic-bezier(.75, 0, .29, 1.01);
}
.tt-ol-menu-open #tt-overlay-menu.olm-slide-top {
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
#tt-overlay-menu.olm-slide-top .tt-ol-menu-list {
	-moz-transform: translate3d(0, -40px, 0);
	-ms-transform: translate3d(0, -40px, 0);
	-webkit-transform: translate3d(0, -40px, 0);
	transform: translate3d(0, -40px, 0);
}
.tt-ol-menu-open #tt-overlay-menu.olm-slide-top .tt-ol-menu-list {
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);

	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

/* slide bottom */
#tt-overlay-menu.olm-slide-bottom {
	opacity: 1;
	-moz-transform: translate3d(0, 100%, 0);
	-ms-transform: translate3d(0, 100%, 0);
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);

	-webkit-transition-timing-function: cubic-bezier(.75, 0, .29, 1.01);
	transition-timing-function: cubic-bezier(.75, 0, .29, 1.01);
}
.tt-ol-menu-open #tt-overlay-menu.olm-slide-bottom {
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
#tt-overlay-menu.olm-slide-bottom .tt-ol-menu-list {
	-moz-transform: translate3d(0, 40px, 0);
	-ms-transform: translate3d(0, 40px, 0);
	-webkit-transform: translate3d(0, 40px, 0);
	transform: translate3d(0, 40px, 0);
}
.tt-ol-menu-open #tt-overlay-menu.olm-slide-bottom .tt-ol-menu-list {
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);

	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

/* zoom in */
#tt-overlay-menu.olm-zoom-in {
	opacity: 0;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-o-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
}
.tt-ol-menu-open #tt-overlay-menu.olm-zoom-in {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

#tt-overlay-menu.olm-zoom-in .tt-ol-menu-list {
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-o-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
}
.tt-ol-menu-open #tt-overlay-menu.olm-zoom-in .tt-ol-menu-list {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}


/* Overlay menu styles
======================= */

/* light style */
#tt-overlay-menu.olm-light {
	background-color: #FFF;
	color: #111;
	/* -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.18);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.18); */
}

#tt-overlay-menu.olm-light[class*="cover-opacity-"]::before {
	background-color: #fff;
}

#tt-overlay-menu.olm-light .tt-ol-menu-list > li > a {
	color: #111;
}
#tt-overlay-menu.olm-light .tt-ol-menu-list > li > a::after {
}

#tt-overlay-menu.olm-light .tt-ol-menu-list .tt-ol-sub-menu li > a {
	color: #828282;
}
#tt-overlay-menu.olm-light .tt-ol-menu-list .tt-ol-sub-menu li > a:hover,
#tt-overlay-menu.olm-light .tt-ol-menu-list .tt-ol-sub-menu li.active > a {
	color: #000;
}

#tt-overlay-menu.olm-light .tt-ol-menu-close {
	color: #111;
}
#tt-overlay-menu.olm-light .tt-close-btn.tt-close-light::before, 
#tt-overlay-menu.olm-light .tt-close-btn.tt-close-light::after {
	background-color: #222;
}

#tt-overlay-menu.olm-light .social-buttons ul > li > a {
	color: #111;
}
#tt-overlay-menu.olm-light .social-buttons ul > li > a:hover {
	color: #FF5F14;
}

#tt-overlay-menu.olm-light .tt-ol-menu-footer .tt-ol-menu-copyright {
	color: #888;
}


/* ------------------------------------------------------------- *
 * Hero slider
/* ------------------------------------------------------------- */

.tt-hero-slider {
	position: relative;
	overflow: hidden;
}

.tt-hero-slider-inner {
	position: relative;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	z-index: 2;
}


/* Hero slider image 
===================== */
.tt-hero-slider .owl-carousel .owl-item .cc-image {
	min-height: 400px !important;
	height: 60vh;
}
@media (max-width: 992px) {
	.tt-hero-slider .owl-carousel .owl-item .cc-image {
		height: 70vh;
	}
}
@media (max-width: 768px) {
	.tt-hero-slider .owl-carousel .owl-item .cc-image {
		height: 70vh;
	}
}
@media (max-width: 320px) {
	.tt-hero-slider .owl-carousel .owl-item .cc-image {
		height: 80vh;
	}
}


/* Hero slider caption
======================= */
.tt-hero-slider .hero-slider-caption-wrap, 
.tt-hero-slider .hero-slider-caption-holder {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 8;
}

.tt-hero-slider .hero-slider-caption {
	position: absolute;
	left: 7%;
	bottom: 14%;
	padding: 0 15px 0 0;
	z-index: 1;
}
@media (max-width: 768px) {
	.tt-hero-slider .hero-slider-caption {
		bottom: 10%;
	}
}

/* hero slider caption title */
.tt-hero-slider .hesl-caption-title-wrap {
}
.tt-hero-slider .hesl-caption-title {
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-size: 34px;
	font-weight: 700;
	font-style: italic;
	color: #000;
	letter-spacing: 1px;
}

/* hero slider caption subtitle */
.tt-hero-slider .hesl-caption-subtitle-wrap {
	margin-top: 10px;
}
.tt-hero-slider .hesl-caption-subtitle {
	margin: 0;
	font-size: 17px;
	font-weight: normal;
	color: #000;
}

/* hero slider caption category */
.tt-hero-slider .hesl-caption-category {
	margin-top: 20px;
	font-size: 16px;
	font-weight: normal;
	font-style: italic;
}
.tt-hero-slider .hesl-caption-category span {
	position: relative;
	display: inline-block;
}
.tt-hero-slider .hesl-caption-category span ~ span:not(:empty)::before {
	content: ", ";
}
.tt-hero-slider .hesl-caption-category a {
	position: relative;
	display: inline-block;
	color: #000;
}
.tt-hero-slider .hesl-caption-category a:hover {
}
.tt-hero-slider .hesl-caption-category a::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 1px;
	background-color: #000;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.tt-hero-slider .hesl-caption-category a:hover::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/* hero slider caption divider */
.hesl-caption-divider {
	width: 35px;
	height: 4px;
	background-color: #FF5F14;
	margin-top: 25px;
}

/* hero slider caption description */
.tt-hero-slider .hesl-caption-description-wrap {
	margin-top: 30px;
}
.tt-hero-slider .hesl-caption-description {
	font-size: 18px;
}


/* Hero slider caption sizes 
============================= */
/* caption sizes xs */
.hero-slider-caption-wrap.hesl-cap-xs .hesl-caption-title {
	font-size: 24px;
}
.hero-slider-caption-wrap.hesl-cap-xs .hesl-caption-subtitle {
	font-size: 16px;
}
.hero-slider-caption-wrap.hesl-cap-xs .hesl-caption-category span,
.hero-slider-caption-wrap.hesl-cap-xs .hesl-caption-category a {
	font-size: 13px;
}
.hero-slider-caption-wrap.hesl-cap-xs .hesl-caption-description {
	font-size: 16px;
}

/* caption sizes sm */
.hero-slider-caption-wrap.hesl-cap-sm .hesl-caption-title {
	font-size: 28px;
}
.hero-slider-caption-wrap.hesl-cap-sm .hesl-caption-subtitle {
	font-size: 16px;
}
.hero-slider-caption-wrap.hesl-cap-sm .hesl-caption-category span,
.hero-slider-caption-wrap.hesl-cap-sm .hesl-caption-category a {
	font-size: 16px;
}
.hero-slider-caption-wrap.hesl-cap-sm .hesl-caption-description {
}

/* caption sizes lg */
.hero-slider-caption-wrap.hesl-cap-lg .hesl-caption-title {
	font-size: 42px;
}
.hero-slider-caption-wrap.hesl-cap-lg .hesl-caption-subtitle {
	font-size: 24px;
}
.hero-slider-caption-wrap.hesl-cap-lg .hesl-caption-category span,
.hero-slider-caption-wrap.hesl-cap-lg .hesl-caption-category a {
}
.hero-slider-caption-wrap.hesl-cap-lg .hesl-caption-description {
}

/* caption sizes xlg */
.hero-slider-caption-wrap.hesl-cap-xlg .hesl-caption-title {
	font-size: 48px;
}
.hero-slider-caption-wrap.hesl-cap-xlg .hesl-caption-subtitle {
	font-size: 30px;
}
.hero-slider-caption-wrap.hesl-cap-xlg .hesl-caption-category span,
.hero-slider-caption-wrap.hesl-cap-xlg .hesl-caption-category a {
}
.hero-slider-caption-wrap.hesl-cap-xlg .hesl-caption-description {
}

/* caption sizes xxlg */
.hero-slider-caption-wrap.hesl-cap-xxlg .hesl-caption-title {
	font-size: 52px;
}
.hero-slider-caption-wrap.hesl-cap-xxlg .hesl-caption-subtitle {
	font-size: 24px;
}
.hero-slider-caption-wrap.hesl-cap-xxlg .hesl-caption-category span,
.hero-slider-caption-wrap.hesl-cap-xxlg .hesl-caption-category a {
}
.hero-slider-caption-wrap.hesl-cap-xxlg .hesl-caption-description {
	font-size: 20px;
	font-weight: normal;
}

/* caption sizes on smaller screens */
@media (max-width: 991px) {
	.hero-slider-caption-wrap.hesl-cap-sm .hesl-caption-title,
	.hero-slider-caption-wrap.hesl-cap-lg .hesl-caption-title,
	.hero-slider-caption-wrap.hesl-cap-xlg .hesl-caption-title,
	.hero-slider-caption-wrap.hesl-cap-xxlg .hesl-caption-title {
		font-size: 28px;
	}
	.hero-slider-caption-wrap.hesl-cap-xlg .hesl-caption-subtitle,
	.hero-slider-caption-wrap.hesl-cap-xxlg .hesl-caption-subtitle {
		font-size: 17px;
	}
	.hero-slider-caption-wrap.hesl-cap-lg .hesl-caption-description,
	.hero-slider-caption-wrap.hesl-cap-xlg .hesl-caption-description,
	.hero-slider-caption-wrap.hesl-cap-xxlg .hesl-caption-description {
		font-size: 16px;
	}
}
@media (max-width: 767px) {
	.hero-slider-caption-wrap.hesl-cap-sm .hesl-caption-title,
	.hero-slider-caption-wrap.hesl-cap-lg .hesl-caption-title,
	.hero-slider-caption-wrap.hesl-cap-xlg .hesl-caption-title {
		font-size: 28px;
	}
	.hero-slider-caption-wrap.hesl-cap-sm .hesl-caption-subtitle,
	.hero-slider-caption-wrap.hesl-cap-lg .hesl-caption-subtitle,
	.hero-slider-caption-wrap.hesl-cap-xlg .hesl-caption-subtitle,
	.hero-slider-caption-wrap.hesl-cap-xxlg .hesl-caption-subtitle {
		font-size: 17px;
	}
}


/* Hero slider caption positions
================================= */
/* position center */
.tt-hero-slider .hero-slider-caption-wrap.hesl-cap-center .hero-slider-caption {
	top: 50%;
	left: 50%;
	bottom: auto;
	right: auto;
	width: 100%;
	max-width: 1200px;
	padding: 0 15px;
	text-align: center;
	z-index: 1;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.tt-hero-slider .hero-slider-caption-wrap.hesl-cap-center .hesl-caption-title-wrap,
.tt-hero-slider .hero-slider-caption-wrap.hesl-cap-center .hesl-caption-subtitle-wrap,
.tt-hero-slider .hero-slider-caption-wrap.hesl-cap-center .hesl-caption-divider,
.tt-hero-slider .hero-slider-caption-wrap.hesl-cap-center .hesl-caption-category,
.tt-hero-slider .hero-slider-caption-wrap.hesl-cap-center .hesl-caption-description-wrap {
	margin-left: auto;
	margin-right: auto;
}

/* position right */
.tt-hero-slider .hero-slider-caption-wrap.hesl-cap-right .hero-slider-caption {
	left: auto;
	right: 7%;
	padding: 0 0 0 15px;
	text-align: right;
}
.tt-hero-slider .hero-slider-caption-wrap.hesl-cap-right .hesl-caption-divider {
	margin-left: auto;
}
.tt-hero-slider .hero-slider-caption-wrap.hesl-cap-right .hesl-caption-description-wrap {
	margin-left: auto;
}


/* Hero slider caption styles 
============================== */
/* hero slider caption light color */
.hero-slider-caption-wrap.hesl-cap-light {
	color: #FFF;
}
.hero-slider-caption-wrap.hesl-cap-light .hesl-caption-title {
	color: #FFF;
}
.hero-slider-caption-wrap.hesl-cap-light .hesl-caption-subtitle {
	color: #FFF;
}
.hero-slider-caption-wrap.hesl-cap-light .hesl-caption-category,
.hero-slider-caption-wrap.hesl-cap-light .hesl-caption-category span,
.hero-slider-caption-wrap.hesl-cap-light .hesl-caption-category a {
	color: #FFF;
}
.hero-slider-caption-wrap.hesl-cap-light .hesl-caption-category a::after {
	background-color: #FFF;
}
.hero-slider-caption-wrap.hesl-cap-light .hesl-caption-description {
	color: #FFF;
}

/* hero slider caption alternative style */
.hero-slider-caption-wrap.hesl-cap-alter .hesl-caption-title {
	display: inline;
	background-color: #FF5F14;
	padding-right: 5px;
	color: #000;
}
.hero-slider-caption-wrap.hesl-cap-alter .hesl-caption-subtitle {
	display: inline;
	background-color: #111;
	color: #FFF;
}
.hero-slider-caption-wrap.hesl-cap-alter .hesl-caption-category span {
	display: inline;
	background-color: #111;
	padding-right: 3px;
	color: #FFF;
}
.hero-slider-caption-wrap.hesl-cap-alter .hesl-caption-category span ~ span:not(:empty)::before {
   display: none;
} 
.hero-slider-caption-wrap.hesl-cap-alter .hesl-caption-category a {
	color: #FFF;
}
.hero-slider-caption-wrap.hesl-cap-alter .hesl-caption-category a:hover {
	opacity: .8;
}
.hero-slider-caption-wrap.hesl-cap-alter .hesl-caption-category a::after {
	display: none;
}
.hero-slider-caption-wrap.hesl-cap-alter .hesl-caption-description {
	display: inline;
	background-color: #FFF;
	color: #111;
}


/* Animate caption if only one item enabled 
============================================ */
.tt-hero-slider .owl-carousel[data-items="1"] .owl-item .hero-slider-caption-holder {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;

	-moz-transform: translate3d(0, 20px, 0);
	-ms-transform: translate3d(0, 0, 20px);
	-webkit-transform: translate3d(0, 20px, 0);
	transform: translate3d(0, 20px, 0);

	-webkit-transition-delay: 0.8s;
	-moz-transition-delay: 0.8s;
	transition-delay: 0.8s;
}
.tt-hero-slider .owl-carousel[data-items="1"] .owl-item.active .hero-slider-caption-holder {
	opacity: 1;
	visibility: visible;
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}


/* ------------------------------------------------------------- *
 * Page header
/* ------------------------------------------------------------- */

#page-header {
	position: relative;
	overflow: hidden;
}

/* page header inner */
.page-header-inner {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	z-index: 1;
}
@media (max-width: 992px) {
	.page-header-inner {
		padding-top: 15%;
		padding-bottom: 12%;
	}
}
@media (max-width: 480px) {
	.page-header-inner {
		padding-top: 20%;
		padding-bottom: 12%;
	}
}

@media (max-width: 1360px) {
	#page-header .page-header-inner {
		padding-left: 7%;
		padding-right: 7%;
	}
}

/* if isotope filter button enabled */
@media (max-width: 768px) {
	body.fi-btn-on .page-header-inner, 
	body.fi-btn-on.header-transparent-on .page-header-inner {
		padding-bottom: 120px !important;
	}
}

/* if "ph-almost-full" or "ph-full" is enabled */
#page-header.ph-almost-full .page-header-inner.tt-wrap,
#page-header.ph-full .page-header-inner.tt-wrap {
	max-width: 100%;
	padding-left: 7%;
	padding-right: 7%;
}
@media (max-width: 768px) {
	#page-header.ph-almost-full .page-header-inner.tt-wrap,
	#page-header.ph-full .page-header-inner.tt-wrap {
		padding-left: 4%;
		padding-right: 4%;
	}
}


/* Page header image 
===================== */
.page-header-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}


/* Page header caption 
======================= */
.page-header-caption {
	position: relative;
	margin: 0 auto;
	z-index: 4;
}

/* page header title */
.ph-title-wrap {
}
.page-header-title {
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-size: 34px;
	font-weight: bold;
	font-weight: 700;
	font-style: italic;
	color: #000;
	letter-spacing: 1px;
}
@media (max-width: 991px) {
	.page-header-title {
		font-size: 30px ;
	}
}
@media (max-width: 768px) {
	.page-header-title {
		font-size: 26px;
	}
}

/* page header subtitle */
.ph-subtitle-wrap {
	margin-top: 10px;
}
.page-header-subtitle {
	margin: 0;
	font-size: 17px;
	font-weight: normal;
	color: #000;
}
@media (max-width: 992px) {
	.page-header-subtitle {
		margin-top: 8px;
	}
}
@media (max-width : 768px) {
	.page-header-subtitle {
		font-size: 17px;
	}
}

/* page header categories */
.page-header-category {
	margin-top: 20px;
	font-size: 16px;
	font-weight: normal;
	font-style: italic;
}
.page-header-category span {
	position: relative;
	display: inline-block;
}
.page-header-category span ~ span:not(:empty)::before {
	content: ", ";
}
.page-header-category a {
	position: relative;
	display: inline-block;
	color: #000;
}
.page-header-category a:hover {
}
.page-header-category a::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 1px;
	background-color: #000;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.page-header-category a:hover::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/* page header caption divider */
.ph-caption-divider {
	width: 35px;
	height: 4px;
	background-color: #FF5F14;
	margin-top: 25px;
}

/* page header description */
.page-header-description-wrap {
	margin: 30px 0 0 0;
}
.page-header-description {
	line-height: inherit;
	font-size: 18px;
}
.page-header-description-wrap p {
}
@media (max-width: 767px) {
	.page-header-description-wrap {
		font-size: 16px;
	}
}


/* Page header caption sizes 
============================= */
/* caption sizes xs */
.page-header-caption.ph-cap-xs .page-header-title {
	font-size: 24px;
}
.page-header-caption.ph-cap-xs .page-header-subtitle {
	font-size: 16px;
}
.page-header-caption.ph-cap-xs .page-header-category span, 
.page-header-caption.ph-cap-xs .page-header-category a {
	font-size: 14px;
}
.page-header-caption.ph-cap-xs .page-header-description {
	font-size: 16px;
}

/* caption sizes sm */
.page-header-caption.ph-cap-sm .page-header-title {
	font-size: 28px;
}
.page-header-caption.ph-cap-sm .page-header-subtitle {
	font-size: 16px;
}
.page-header-caption.ph-cap-sm .page-header-category span, 
.page-header-caption.ph-cap-sm .page-header-category a {
	font-size: 16px;
}
.page-header-caption.ph-cap-sm .page-header-description {
}

/* caption sizes lg */
.page-header-caption.ph-cap-lg .page-header-title {
	font-size: 42px;
}
.page-header-caption.ph-cap-lg .ph-subtitle-wrap {
	margin-top: 20px;
}
.page-header-caption.ph-cap-lg .page-header-subtitle {
	font-size: 20px;
}
.page-header-caption.ph-cap-lg .page-header-category span, 
.page-header-caption.ph-cap-lg .page-header-category a {
}
.page-header-caption.ph-cap-lg .page-header-description {
}

/* caption sizes xlg */
.page-header-caption.ph-cap-xlg .page-header-title {
	font-size: 48px;
}
.page-header-caption.ph-cap-xlg .ph-subtitle-wrap {
	margin-top: 20px;
}
.page-header-caption.ph-cap-xlg .page-header-subtitle {
	font-size: 20px;
}
.page-header-caption.ph-cap-xlg .page-header-category span, 
.page-header-caption.ph-cap-xlg .page-header-category a {
}
.page-header-caption.ph-cap-xlg .page-header-description {
}

/* caption sizes xxlg */
.page-header-caption.ph-cap-xxlg .page-header-title {
	font-size: 52px;
}
.page-header-caption.ph-cap-xxlg .ph-subtitle-wrap {
	margin-top: 20px;
}
.page-header-caption.ph-cap-xxlg .page-header-subtitle {
	font-size: 24px;
}
.page-header-caption.ph-cap-xxlg .page-header-category span, 
.page-header-caption.ph-cap-xxlg .page-header-category a {
}
.page-header-caption.ph-cap-xxlg .page-header-description {
	font-size: 20px;
	font-weight: normal;
}

/* caption sizes on smaller screens */
@media (max-width: 991px) {
	.page-header-caption.ph-cap-sm .page-header-title,
	.page-header-caption.ph-cap-lg .page-header-title,
	.page-header-caption.ph-cap-xlg .page-header-title,
	.page-header-caption.ph-cap-xxlg .page-header-title {
		font-size: 28px;
	}
	.page-header-caption.ph-cap-xlg .page-header-subtitle,
	.page-header-caption.ph-cap-xxlg .page-header-subtitle {
		font-size: 17px;
	}
	.page-header-caption.ph-cap-lg .page-header-description,
	.page-header-caption.ph-cap-xlg .page-header-description,
	.page-header-caption.ph-cap-xxlg .page-header-description {
		font-size: 16px;
	}
}
@media (max-width: 767px) {
	.page-header-caption.ph-cap-sm .page-header-title,
	.page-header-caption.ph-cap-lg .page-header-title,
	.page-header-caption.ph-cap-xlg .page-header-title,
	.page-header-caption.ph-cap-xxlg .page-header-title {
		font-size: 26px;
	}
	.page-header-caption.ph-cap-sm .page-header-subtitle,
	.page-header-caption.ph-cap-lg .page-header-subtitle,
	.page-header-caption.ph-cap-xlg .page-header-subtitle,
	.page-header-caption.ph-cap-xxlg .page-header-subtitle {
		font-size: 17px;
	}
}


/* Page header aligns 
====================== */
/* page header align center */
.ph-center .page-header-caption {
	text-align: center;
}
.ph-center .page-header-caption .ph-title-wrap,
.ph-center .page-header-caption .ph-subtitle-wrap,
.ph-center .page-header-caption .page-header-description-wrap,
.ph-center .page-header-caption .page-header-title,
.ph-center .page-header-caption .page-header-subtitle {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.ph-center .ph-caption-divider {
	margin-left: auto;
	margin-right: auto;
}

/* page header align right */
.ph-right .page-header-caption {
	text-align: right;
}
.ph-right .page-header-caption .ph-title-wrap,
.ph-right .page-header-caption .ph-subtitle-wrap,
.ph-right .page-header-caption .page-header-description-wrap,
.ph-right .page-header-caption .page-header-title,
.ph-right .page-header-caption .page-header-subtitle {
	margin-left: auto;
	text-align: right;
}
.ph-right .ph-caption-divider {
	margin-left: auto;
}


/* Page header sizes 
===================== */
#page-header.ph-xs .page-header-inner {
	padding-top: 40px;
	padding-bottom: 40px;
}
#page-header.ph-sm .page-header-inner {
	padding-top: 80px;
	padding-bottom: 80px;
}
#page-header.ph-lg .page-header-inner {
	padding-top: 140px;
	padding-bottom: 140px;
}
#page-header.ph-xlg .page-header-inner {
	padding-top: 200px;
	padding-bottom: 200px;
}

@media (max-width: 991px) {
	#page-header.ph-xs .page-header-inner,
	#page-header.ph-sm .page-header-inner,
	#page-header.ph-lg .page-header-inner,
	#page-header.ph-xlg .page-header-inner {
		padding-top: 15%;
		padding-bottom: 15%;
	}
}
@media (max-width: 480px) {
	#page-header.ph-xs .page-header-inner,
	#page-header.ph-sm .page-header-inner,
	#page-header.ph-lg .page-header-inner,
	#page-header.ph-xlg .page-header-inner {
		padding-top: 20%;
		padding-bottom: 20%;
	}
}

/* page header full height (for desktop only) */
@media (min-width: 992px) {
	#page-header.ph-full { 
		height: calc(100vh - 80px); /* minus same as header height */
		min-height: calc(100vh - 80px); /* minus same as header height */
	}
	body.header-transparent-on #page-header.ph-full { 
		height: 100vh;
		min-height: 100vh;
	}

	/* caption position */
	#page-header.ph-full .page-header-inner { 
		display: table;
		width: 100%;
		height: 85%;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	#page-header.ph-full .page-header-caption {
		display: table-cell;
		vertical-align: bottom;
	}

	#page-header.ph-full.ph-center .page-header-inner { 
		height: 100%;
	}
	#page-header.ph-full.ph-center .page-header-caption {
		display: table-cell;
		vertical-align: middle;
	}
}

/* page header full height (for small screens only) */
@media (max-width: 991px) {
	#page-header.ph-full-m { 
		height: calc(100vh - 64px); /* minus same as mobile header height */
		min-height: calc(100vh - 64px); /* minus same as mobile header height */
	}

	/* caption position */
	#page-header.ph-full-m .page-header-inner { 
		display: table;
		width: 100%;
		height: 85%;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	#page-header.ph-full-m .page-header-caption {
		display: table-cell;
		vertical-align: bottom;
	}
	body.tt-boxed #page-header.ph-full-m .page-header-inner.tt-wrap .page-header-caption {
		padding-left: inherit;
		padding-right: inherit;
	}

	#page-header.ph-full-m.ph-center .page-header-inner { 
		height: 100%;
	}
	#page-header.ph-full-m.ph-center .page-header-caption {
		display: table-cell;
		vertical-align: middle;
	}
}

/* page header almost full height (for desktop only) */
@media (min-width: 992px) {
	#page-header.ph-almost-full { 
		height: calc(90vh - 80px); /* minus same as header height */
		min-height: calc(90vh - 80px); /* minus same as header height */
	}
	body.header-transparent-on #page-header.ph-almost-full { 
		height: 90vh;
		min-height: 90vh;
	}

	/* caption position */
	#page-header.ph-almost-full .page-header-inner { 
		display: table;
		width: 100%;
		height: 85%;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	#page-header.ph-almost-full .page-header-caption {
		display: table-cell;
		vertical-align: bottom;
	}

	#page-header.ph-almost-full.ph-center .page-header-inner { 
		height: 100%;
	}
	#page-header.ph-almost-full.ph-center .page-header-caption {
		display: table-cell;
		vertical-align: middle;
	}
}

/* page header almost full height (for small screens only) */
@media (max-width: 991px) {
	#page-header.ph-almost-full-m { 
		height: calc(90vh - 64px); /* minus same as mobile header height */
		min-height: calc(90vh - 64px); /* minus same as mobile header height */
	}

	/* caption position */
	#page-header.ph-almost-full-m .page-header-inner { 
		display: table;
		width: 100%;
		height: 85%;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	#page-header.ph-almost-full-m .page-header-caption {
		display: table-cell;
		vertical-align: bottom;
	}

	#page-header.ph-almost-full-m.ph-center .page-header-inner { 
		height: 100%;
	}
	#page-header.ph-almost-full-m.ph-center .page-header-caption {
		display: table-cell;
		vertical-align: middle;
	}
}


/* Page header styles 
====================== */
/* page header caption light color */
.page-header-caption.ph-cap-light {
	color: #FFF;
}
.page-header-caption.ph-cap-light .page-header-title {
	color: #FFF;
}
.page-header-caption.ph-cap-light .page-header-subtitle {
	color: #FFF;
}
.page-header-caption.ph-cap-light .page-header-category,
.page-header-caption.ph-cap-light .page-header-category span, 
.page-header-caption.ph-cap-light .page-header-category a {
	color: #FFF;
}
.page-header-caption.ph-cap-light .page-header-category a::after {
	background-color: #FFF;
}
.page-header-caption.ph-cap-light .page-header-description-wrap {
	color: #FFF;
}

/* page header caption alternative style */
.page-header-caption.ph-cap-alter .page-header-title {
	display: inline;
	background-color: #FF5F14;
	padding-right: 4px;
	color: #000;
}
.page-header-caption.ph-cap-alter .page-header-subtitle {
	display: inline;
	background-color: #111;
	color: #FFF;
} 
.page-header-caption.ph-cap-alter .page-header-category span {
	display: inline;
	background-color: #111;
	padding-right: 3px;
	color: #FFF;
}
.page-header-caption.ph-cap-alter .page-header-category span ~ span:not(:empty)::before {
   display: none;
}
.page-header-caption.ph-cap-alter .page-header-category a {
	color: #FFF;
}
.page-header-caption.ph-cap-alter .page-header-category a:hover {
	opacity: .9;
}
.page-header-caption.ph-cap-alter .page-header-category a::after {
	display: none;
}
.page-header-caption.ph-cap-alter .page-header-description {
	display: inline;
	background-color: #FFF;
	color: #111;
}


/* Page header if "header-transparent" enabled.
================================================ */
body.header-transparent-on #page-header .page-header-inner {
	padding-top: 200px;
	padding-bottom: 100px;
}
body.header-transparent-on #page-header.ph-xs .page-header-inner {
	padding-top: 150px;
	padding-bottom: 50px;
}
body.header-transparent-on #page-header.ph-sm .page-header-inner {
	padding-top: 200px;
	padding-bottom: 50px;
}
body.header-transparent-on #page-header.ph-lg .page-header-inner {
	padding-top: 300px;
	padding-bottom: 100px;
}
body.header-transparent-on #page-header.ph-xlg .page-header-inner {
	padding-top: 400px;
	padding-bottom: 100px;
}

@media (max-width: 991px) {
	body.header-transparent-on #page-header .page-header-inner,
	body.header-transparent-on #page-header.ph-sm .page-header-inner,
	body.header-transparent-on #page-header.ph-lg .page-header-inner,
	body.header-transparent-on #page-header.ph-xlg .page-header-inner {
		padding-top: 15%;
		padding-bottom: 15%;
	}
}
@media (max-width: 480px) {
	body.header-transparent-on #page-header .page-header-inner,
	body.header-transparent-on #page-header.ph-sm .page-header-inner,
	body.header-transparent-on #page-header.ph-lg .page-header-inner,
	body.header-transparent-on #page-header.ph-xlg .page-header-inner {
		padding-top: 20%;
		padding-bottom: 20%;
	}
}


/* Page header scroll down button (displayed only if "#page-header" contains class "ph-full" or "ph-full-m")
================================== */
#page-header .ph-scroll-down {
	position: absolute;
	display: none;
	bottom: 50px;
	right: 60px;
	z-index: 9;
	overflow: hidden;
}

/* position senter if isotope filter button enabled */
body.fi-btn-on #page-header .ph-scroll-down {
	bottom: 30px;
	right: 50%;
	margin-right: -17px;
}

/* enable only with "ph-full" or "ph-full-m" */
@media (min-width: 992px) {
	#page-header.ph-full .ph-scroll-down {
		display: block;
	}
}
@media (max-width: 991px) {
	#page-header.ph-full-m .ph-scroll-down {
		display: block;
		bottom: 20px;
		right: 30px;
	}
}

/* scroll down button */
#page-header .ph-scroll-down-btn {
	position: relative;
	display: inline-block;
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	font-size: 21px;
	color: #000;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#page-header .ph-scroll-down-btn::before {
	line-height: 37px;

	font-family: "Font Awesome 5 Free";
	content: "\f078";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
#page-header .ph-scroll-down-btn:focus,
#page-header .ph-scroll-down-btn:hover {
	color: #FF5F14;
}

/* if page header caption contains class "ph-cap-light" */
body.ph-cap-light-on #page-header .ph-scroll-down-btn {
	color: #FFF;
}
body.ph-cap-light-on #page-header .ph-scroll-down-btn:hover {
	color: #FF5F14;
}


/* ------------------------------------------------------------- *
 * tt-Headings
/* ------------------------------------------------------------- */

.tt-heading {
	position: relative;
	z-index: 3;
	margin-bottom: 40px;
}

/* tt-heading inner */
.tt-heading-inner {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	z-index: 2;
}
body.tt-boxed .tt-wrap .tt-heading-inner {
	padding-left: 0;
	padding-right: 0;
}

/* tt-heading in split-box */
.split-box .tt-heading-inner {
	padding: 0;
}

/* tt-heading title */
.tt-heading-title {
	max-width: 920px;
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: bold;
	font-weight: 700;
}
@media (max-width: 768px) {
	.tt-heading-title {
		font-size: 28px;
	}
}
.tt-heading-title a {
	color: inherit;
}
.tt-heading-title a:hover {
	color: #FF5F14;
}
.text-center .tt-heading-title {
	margin-left: auto;
	margin-right: auto;
}
.text-right .tt-heading-title {
	margin-left: auto;
}

/* tt-heading subtitle */
.tt-heading-subtitle {
	max-width: 800px;
	margin-bottom: 10px;
	font-family: Georgia,Times,"Times New Roman",serif;
	font-size: 17px;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 1px;
}
.tt-heading-subtitle a {
	color: inherit;
}
.tt-heading-subtitle a:hover {
	color: #FF5F14;
}

.text-center .tt-heading-subtitle {
	margin-left: auto;
	margin-right: auto;
}
.text-right .tt-heading-subtitle {
	margin-left: auto;
}

/* tt-heading divider */
.tt-heading-divider {
	width: 35px;
	height: 4px;
	background-color: #FF5F14;
	margin-top: 25px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.text-center .tt-heading-divider {
	margin-left: auto;
	margin-right: auto;
}
.text-right .tt-heading-divider {
	margin-left: auto;
}
.tt-heading:hover .tt-heading-divider {
	width: 45px;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.bg-main .tt-heading-divider { 
	background-color: #FFF; 
}

/* tt-heading ghost */
.tt-heading-ghost {
	position: absolute;
	top: 0;
	left: 0;
	font-family: 'Playfair Display', serif;
	font-size: 15vw;
	font-weight: 800;
	color: #656565;
	white-space: nowrap;
	opacity: .1;
	z-index: -1;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media (min-width: 992px) {
	.text-center .tt-heading-ghost {
		left: 50%;
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}
@media (max-width: 1200px) {
	.tt-heading-ghost {
		font-size: 21vw;
	}
}
@media (max-width: 991px) {
	.tt-heading-ghost {
		top: 30%;
		font-size: 25vw;
	}
}
@media (max-width: 768px) {
	.tt-heading-ghost {
		top: 30%;
		font-size: 32vw;
	}
}


/* tt-heading sizes 
==================== */
/* tt-heading xs */
.tt-heading.tt-heading-xs .tt-heading-title {
	font-size: 20px;
}
.tt-heading.tt-heading-xs .tt-heading-subtitle {
	margin-bottom: 10px;
	font-size: 15px;
}

/* tt-heading sm */
.tt-heading.tt-heading-sm .tt-heading-title {
	font-size: 24px;
}
.tt-heading.tt-heading-sm .tt-heading-subtitle {
	margin-bottom: 10px;
	font-size: 15px;
}
@media (max-width: 991px) {
	.tt-heading.tt-heading-sm .tt-heading-title {
		font-size: 24px;
	}
}
@media (max-width: 768px) {
	.tt-heading.tt-heading-sm .tt-heading-title {
		font-size: 24px;
	}
}

/* tt-heading lg */
.tt-heading.tt-heading-lg .tt-heading-title {
	font-size: 34px;
}
.tt-heading.tt-heading-lg .tt-heading-subtitle {
	margin-bottom: 10px;
	font-size: 17px;
}
@media (max-width: 991px) {
	.tt-heading.tt-heading-lg .tt-heading-title {
		font-size: 34px;
	}
}
@media (max-width: 768px) {
	.tt-heading.tt-heading-lg .tt-heading-title {
		font-size: 34px;
	}
}

/* tt-heading xlg */
.tt-heading.tt-heading-xlg .tt-heading-title {
	font-size: 38px;
}
.tt-heading.tt-heading-xlg .tt-heading-subtitle {
	margin-bottom: 8px;
	font-size: 19px;
}
@media (max-width: 1200px) {
	.tt-heading.tt-heading-xlg .tt-heading-title {
		font-size: 38px;
	}
}
@media (max-width: 991px) {
	.tt-heading.tt-heading-xlg .tt-heading-title {
		font-size: 38px;
	}
}
@media (max-width: 768px) {
	.tt-heading.tt-heading-xlg .tt-heading-title {
		font-size: 38px;
	}
	.tt-heading.tt-heading-xlg .tt-heading-subtitle {
		font-size: 19px;
	}
}

/* tt-heading xxlg */
.tt-heading.tt-heading-xxlg .tt-heading-title {
	font-size: 44px;
}
.tt-heading.tt-heading-xxlg .tt-heading-subtitle {
	margin-bottom: 6px;
	font-size: 20px;
}
@media (max-width: 1200px) {
	.tt-heading.tt-heading-xxlg .tt-heading-title {
		font-size: 44px;
	}
	.tt-heading.tt-heading-xxlg .tt-heading-subtitle {
		font-size: 20px;
	}
}
@media (max-width: 991px) {
	.tt-heading.tt-heading-xxlg .tt-heading-title {
		font-size: 38px;
	}
	.tt-heading.tt-heading-xxlg .tt-heading-subtitle {
		font-size: 20px;
	}
}
@media (max-width: 768px) {
	.tt-heading.tt-heading-xxlg .tt-heading-title {
		font-size: 38px;
	}
	.tt-heading.tt-heading-xxlg .tt-heading-subtitle {
		font-size: 20px;
	}
}


/* ------------------------------------------------------------- *
 * Split box
/* ------------------------------------------------------------- */

.split-box {
	overflow: hidden;
}

/* Split box image 
=================== */
.split-box-image {
	position: relative;
	background-color: rgba(130, 130, 130, 0.1);
	z-index: 2;
}
img.split-box-image {
	background-color: transparent;
}

/* split box image height */
.split-box-image-height {
}
@media (max-width: 991px) {
	.split-box-image-height {
		padding-bottom: 70% !important;
	}
}

/* split box image shadow (for boxed layout only!) */
body.tt-boxed .tt-wrap .split-box-image.sbi-shadow {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-box-shadow: 0px 30px 40px -24px rgba(0, 0, 0, 0.45);
	-moz-box-shadow: 0px 30px 40px -24px rgba(0, 0, 0, 0.45);
	box-shadow: 0px 30px 40px -24px rgba(0, 0, 0, 0.45);
}
body.tt-boxed .tt-wrap .split-box-image.sbi-shadow:hover {
	-webkit-box-shadow: 0px 25px 40px -15px rgba(0, 0, 0, 0.55);
	-moz-box-shadow: 0px 25px 40px -15px rgba(0, 0, 0, 0.55);
	box-shadow: 0px 25px 40px -15px rgba(0, 0, 0, 0.55);
}

/* Split box content 
===================== */
.split-box-content {
	position: relative;
	z-index: 1;
}
.split-box-content-inner {
	max-width: 1282px; /* same as tt-boxed content */
	max-height: 100%; 
	padding: 14%;
}
.split-box-content-inner.text-center {
	margin-left: auto;
	margin-right: auto;
}

/* If boxed layout enabled */
body.tt-boxed .tt-wrap .split-box-content-inner {
	padding-left: 0;
}
body.tt-boxed .tt-wrap .split-box-image + .split-box-content .split-box-content-inner {
	padding-left: 10%;
	padding-right: 0;
}

body.tt-boxed .tt-wrap .split-box-content + .split-box-content .split-box-content-inner {
	padding-left: 10%;
	padding-right: 0;
}

/* If boxed layout enabled + "order-first" classes enabled */
body.tt-boxed .tt-wrap .split-box-content.order-first .split-box-content-inner,
body.tt-boxed .tt-wrap .split-box-content.order-sm-first .split-box-content-inner,
body.tt-boxed .tt-wrap .split-box-content.order-md-first .split-box-content-inner,
body.tt-boxed .tt-wrap .split-box-content.order-lg-first .split-box-content-inner {
	padding-left: 0;
	padding-right: 10%;
}

/* If boxed layout enabled + "order-last" classes enabled */
body.tt-boxed .tt-wrap .split-box-content.order-last .split-box-content-inner,
body.tt-boxed .tt-wrap .split-box-content.order-sm-last .split-box-content-inner,
body.tt-boxed .tt-wrap .split-box-content.order-md-last .split-box-content-inner,
body.tt-boxed .tt-wrap .split-box-content.order-lg-last .split-box-content-inner {
	padding-left: 10%;
	padding-right: 0;
}

/* On small screens */
@media (max-width: 991px) {
	.split-box-content .split-box-content-inner {
		padding: 80px 15px 80px 15px;
	}
	body.tt-boxed .tt-wrap .split-box-content .split-box-content-inner {
		padding: 20px 0 0 0 !important;
	}
}

/* split box content ghost */
.split-box-content-ghost {
	position: absolute;
	top: 75%;
	left: 2%;
	bottom: auto;
	line-height: 1;
	font-family: 'Playfair Display', serif;
	font-size: 20vw;
	font-weight: bold;
	color: #656565;
	white-space: nowrap;
	opacity: .1;
	z-index: -1;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media (max-width: 992px) {
	.split-box-content-ghost {
		top: 40%;
		font-size: 40vw;
	}
}
@media (max-width: 768px) {
	.split-box-content-ghost {
		top: 20%;
		font-size: 40vw;
	}
}


/* --------------------------------------------------- *
 * Isotope (more info: http://isotope.metafizzy.co/)
/* --------------------------------------------------- */

.isotope-wwrap {
	position: relative;
}
.isotope {
}


/* Isotope top content 
======================= */
.isotope-top-content {
	position: relative;
	padding: 50px 3%;
}

/* if gutter enabled */
.isotope.iso-gutter-1 .isotope-top-content {
	margin-left: 6px;
}
.isotope.iso-gutter-2 .isotope-top-content {
	margin-left: 1.5%;
}
.isotope.iso-gutter-3 .isotope-top-content {
	margin-left: 2.5%;
	padding-left: 2.4%;
	padding-right: 2.5%;
}
.isotope.iso-gutter-4 .isotope-top-content {
	margin-left: 3.5%;
	padding-left: 3.3%;
	padding-right: 3.5%;
}
.isotope.iso-gutter-5 .isotope-top-content {
	margin-left: 4.5%;
	padding-left: 4.1%;
	padding-right: 4.5%;
}
.isotope.iso-gutter-6 .isotope-top-content {
	margin-left: 6.5%;
	padding-left: 5.6%;
	padding-right: 6.5%;
}

/* if boxed layout enabled */
body.tt-boxed .tt-wrap .isotope-top-content {
	padding-left: 0;
	padding-right: 0;
}


/* ================
	Isotope filter 
=================== */

.isotope-filter {
}

/* isotope filter links title */
.ifl-title {
}
.ifl-title span {
	font-size: 16px;
	font-weight: bold;
}
.ifl-title i {
	font-size: 16px;
}
.fi-btn .ifl-title {
	display: none !important;
}


/* Isotope filter links 
======================== */
ul.isotope-filter-links {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.isotope-filter-links > li {
	display: inline-block;
	margin: 0 13px;
}
@media (max-width: 768px) {
	ul.isotope-filter-links > li {
		margin: 5px 8px;
	}
}
ul.isotope-filter-links > li:first-child {
	margin-left: 0;
}
ul.isotope-filter-links > li:last-child {
	margin-right: 0;
}
ul.isotope-filter-links > li > button,
ul.isotope-filter-links > li > a {
	position: relative;
	display: block;
	background: none;
	padding: 2px 0;
	margin: 4px 0;
	font-size: 17px;
	font-weight: normal;
	color: #000;
	cursor: pointer;
	border: none;
}
ul.isotope-filter-links > li > button:focus,
ul.isotope-filter-links > li > a:focus {
	outline: none;
}
ul.isotope-filter-links > li > button::after,
ul.isotope-filter-links > li > a::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 2px;
	background: #FF5F14;
	left: 0;
	right: 0;
	bottom: 0px;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
ul.isotope-filter-links > li > button.active,
ul.isotope-filter-links > li > a.active {
}
ul.isotope-filter-links > li > button:hover::after,
ul.isotope-filter-links > li > button.active::after,
ul.isotope-filter-links > li > a:hover::after,
ul.isotope-filter-links > li > a.active::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}


/* Isotope filter aligns 
========================= */
/* filter center */
.isotope-filter.fi-center {
	text-align: center;
}

/* filter right */
.isotope-filter.fi-right {
	text-align: right;
}
@media (max-width: 768px) {
	.isotope-filter.fi-right {
		text-align: left;
	}
}


/* Change isotope filter to button (use class "fi-btn") 
======================================================== */
.isotope-filter.fi-btn {
	position: absolute;
	top: 30px;
	left: 0;
	right: auto;
	z-index: 9997;
	padding: 0 0 8px 0 !important;
	margin: 0 !important;
}

@media (min-width: 992px) {
	.isotope-filter.fi-btn {
		top: 60px;
	}
	.isotope.iso-gutter-1 .isotope-filter.fi-btn {
		top: 70px;
	}
	.isotope.iso-gutter-2 .isotope-filter.fi-btn {
		top: 90px;
	}
	.isotope.iso-gutter-3 .isotope-filter.fi-btn {
		top: 110px;
	}
	.isotope.iso-gutter-4 .isotope-filter.fi-btn,
	.isotope.iso-gutter-5 .isotope-filter.fi-btn,
	.isotope.iso-gutter-6 .isotope-filter.fi-btn {
		top: 110px;
	}

	/* if header transparent enabled */
	body.header-transparent-on .isotope-filter.fi-btn,
	body.header-transparent-on .isotope.iso-gutter-1 .isotope-filter.fi-btn,
	body.header-transparent-on .isotope.iso-gutter-2 .isotope-filter.fi-btn,
	body.header-transparent-on .isotope.iso-gutter-3 .isotope-filter.fi-btn,
	body.header-transparent-on .isotope.iso-gutter-4 .isotope-filter.fi-btn,
	body.header-transparent-on .isotope.iso-gutter-5 .isotope-filter.fi-btn,
	body.header-transparent-on .isotope.iso-gutter-6 .isotope-filter.fi-btn {
		top: 120px;
	}
}

/* isotope filter button */
.isotope-filter-button {
	position: relative;
	display: none;
	width: auto;
	height: 46px;
	line-height: 46px;
	background-color: #FF5F14;
	padding: 0 16px;
	text-align: center;
	font-size: 14px;
	color: #111;
	cursor: pointer;
	z-index: 2;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.isotope-filter-button > span {
	display: inline-block;
}
.isotope-filter.fi-btn .isotope-filter-button {
	display: block;
}
body.iso-filter-open .isotope-filter.fi-btn .isotope-filter-button {
	background-color: #FF5F14;
	color: #111;
}

.isotope-filter-button .ifb-title {
	margin-left: 2px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: normal;
	letter-spacing: 2px;
}

.isotope-filter-button .ifb-text {
	margin-left: 2px;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
}

/* isotope filter button icons */
.isotope-filter-button .ifb-icon {
	font-size: 14px;
	line-height: 43px;
}
.isotope-filter-button .ifb-icon-close {
	display: none;
}

/* isotope filter button on smaller screens */
@media (max-width: 992px) {
	.isotope-filter.fi-btn .isotope-filter-button {
		background-color: #FF5F14;
		color: #111;
	}

	.isotope-filter-button .ifb-icon-close,
	body.iso-filter-open .isotope-filter.fi-btn .isotope-filter-button .ifb-icon {
		display: none;
	}
	body.iso-filter-open .isotope-filter.fi-btn .isotope-filter-button .ifb-icon-close {
		display: inline-block;
	}
}

/* isotope filter button links (dropdown) */
.isotope-filter.fi-btn ul.isotope-filter-links {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 160px;
	list-style: none;
	background-color: #FF5F14;
	padding: 15px 0;
	text-align: left;
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	-webkit-box-shadow: 0 10px 40px -5px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 10px 40px -5px rgba(0, 0, 0, .4);
	box-shadow: 0 10px 40px -5px rgba(0, 0, 0, .4);

	-moz-transform: translate3d(0, 5px, 0);
	-ms-transform: translate3d(0, 5px, 0);
	-webkit-transform: translate3d(0, 5px, 0);
	transform: translate3d(0, 5px, 0);

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
body.iso-filter-open .isotope-filter.fi-btn ul.isotope-filter-links {
	visibility: visible;
	opacity: 1;
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);

	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.isotope-filter.fi-btn ul.isotope-filter-links > li {
	display: block;
	margin: 2px 0;
	line-height: 1.2;
}
.isotope-filter.fi-btn ul.isotope-filter-links > li > button,
.isotope-filter.fi-btn ul.isotope-filter-links > li > a {
	width: 100%;
	display: block;
	margin: 0;
	padding: 6px 20px;
	text-align: left;
	font-size: 15px;
	font-weight: normal;
	color: #000;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.isotope-filter.fi-btn ul.isotope-filter-links > li > button::after,
.isotope-filter.fi-btn ul.isotope-filter-links > li > button.active::after,
.isotope-filter.fi-btn ul.isotope-filter-links > li > a::after,
.isotope-filter.fi-btn ul.isotope-filter-links > li > a.active::after {
	content: none;
}
.isotope-filter.fi-btn ul.isotope-filter-links > li > button:hover,
.isotope-filter.fi-btn ul.isotope-filter-links > li > button.active,
.isotope-filter.fi-btn ul.isotope-filter-links > li > a:hover,
.isotope-filter.fi-btn ul.isotope-filter-links > li > a.active {
	background-color: rgba(162, 162, 162, 0.1);
	color: #000;
}

/* isotope filter aligns */
.isotope-filter.fi-btn.fi-right {
	left: auto;
	right: 2%;
}
.isotope-filter.fi-btn.fi-right ul.isotope-filter-links {
	left: auto;
	right: 0;
}

.isotope-filter.fi-btn.fi-right ul.isotope-filter-links,
.isotope-filter.fi-btn.fi-right ul.isotope-filter-links > li > button,
.isotope-filter.fi-btn.fi-right ul.isotope-filter-links > li > a {
	text-align: right;
}

/* if class "fi-btn-on" exist (in <body> tag)*/
body.fi-btn-on .isotope-top-content {
	margin-top: 0 !important;
	padding: 0;
}

body.fi-btn-on .isotope.iso-gutter-1 .isotope-top-content {
	padding-top: 6px;
	padding-bottom: 0;
}
body.fi-btn-on .isotope.iso-gutter-2 .isotope-top-content {
	padding-top: 1.5%;
	padding-bottom: 0;
}
body.fi-btn-on .isotope.iso-gutter-3 .isotope-top-content {
	padding-top: 2.5%;
	padding-bottom: 0;
}
body.fi-btn-on .isotope.iso-gutter-4 .isotope-top-content,
body.fi-btn-on .isotope.iso-gutter-5 .isotope-top-content,
body.fi-btn-on .isotope.iso-gutter-6 .isotope-top-content {
	padding-top: 3.5%;
	padding-bottom: 0;
}

/* if page header enabled */
body.page-header-on .isotope-filter.fi-btn {
	left: 3.5%;
	right: auto;
}
body.page-header-on .isotope-filter.fi-btn.fi-right {
	left: auto;
	right: 3.5%;
}

body.page-header-on .isotope-filter.fi-btn {
	top: -80px;
}
body.page-header-on .isotope.iso-gutter-1 .isotope-filter.fi-btn {
	top: -64px;
}
body.page-header-on .isotope.iso-gutter-2 .isotope-filter.fi-btn {
	top: -60px;
}
body.page-header-on .isotope.iso-gutter-3 .isotope-filter.fi-btn {
	top: -40px;
}
body.page-header-on .isotope.iso-gutter-4 .isotope-filter.fi-btn,
body.page-header-on .isotope.iso-gutter-5 .isotope-filter.fi-btn,
body.page-header-on .isotope.iso-gutter-6 .isotope-filter.fi-btn {
	top: -40px;
}
@media (max-width: 992px) {
	body.page-header-on .isotope-filter.fi-btn,
	body.page-header-on .isotope.iso-gutter-1 .isotope-filter.fi-btn,
	body.page-header-on .isotope.iso-gutter-2 .isotope-filter.fi-btn,
	body.page-header-on .isotope.iso-gutter-3 .isotope-filter.fi-btn,
	body.page-header-on .isotope.iso-gutter-4 .isotope-filter.fi-btn,
	body.page-header-on .isotope.iso-gutter-5 .isotope-filter.fi-btn,
	body.page-header-on .isotope.iso-gutter-6 .isotope-filter.fi-btn {
		top: -100px !important;
	}
}

/* if page header image enabled */
body.page-header-image-on .isotope-filter.fi-btn {
	top: -100px !important;
}

/* if page header background color enabled (class bg-* exist) */
body.page-header-on.page-header-bg-on .isotope.iso-gutter-1 .isotope-filter.fi-btn, 
body.page-header-on.page-header-bg-on .isotope.iso-gutter-2 .isotope-filter.fi-btn, 
body.page-header-on.page-header-bg-on .isotope.iso-gutter-3 .isotope-filter.fi-btn,
body.page-header-on.page-header-bg-on .isotope.iso-gutter-4 .isotope-filter.fi-btn, 
body.page-header-on.page-header-bg-on .isotope.iso-gutter-5 .isotope-filter.fi-btn, 
body.page-header-on.page-header-bg-on .isotope.iso-gutter-6 .isotope-filter.fi-btn {
	top: -100px;
}

/* if page boxed layout enabled */
body.tt-boxed .tt-wrap .isotope-filter.fi-btn {
	top: 60px;
	left: 0;
	margin: 0;
}
body.tt-boxed .tt-wrap .isotope-filter.fi-btn.fi-right {
	left: auto;
	right: 0;
}

@media (min-width: 992px) {
	body.tt-boxed .tt-wrap .isotope-filter.fi-btn {
		top: 70px;
	}
	body.tt-boxed.page-header-on .tt-wrap .isotope-filter.fi-btn {
		top: -40px;
	}
}
	
body.tt-boxed.fi-btn-on .tt-wrap .isotope-top-content,
body.tt-boxed.fi-btn-on .tt-wrap .isotope.iso-gutter-1 .isotope-top-content,
body.tt-boxed.fi-btn-on .tt-wrap .isotope.iso-gutter-2 .isotope-top-content,
body.tt-boxed.fi-btn-on .tt-wrap .isotope.iso-gutter-3 .isotope-top-content {
	padding-top: 40px;
}
body.tt-boxed.fi-btn-on .tt-wrap .isotope.iso-gutter-4 .isotope-top-content,
body.tt-boxed.fi-btn-on .tt-wrap .isotope.iso-gutter-5 .isotope-top-content,
body.tt-boxed.fi-btn-on .tt-wrap .isotope.iso-gutter-6 .isotope-top-content {
	padding-top: 60px;
}
@media (max-width: 991px) {
	body.tt-boxed.fi-btn-on .tt-wrap .isotope-top-content,
	body.tt-boxed.fi-btn-on .tt-wrap .isotope.iso-gutter-1 .isotope-top-content,
	body.tt-boxed.fi-btn-on .tt-wrap .isotope.iso-gutter-2 .isotope-top-content,
	body.tt-boxed.fi-btn-on .tt-wrap .isotope.iso-gutter-3 .isotope-top-content
	body.tt-boxed.fi-btn-on .tt-wrap .isotope.iso-gutter-4 .isotope-top-content,
	body.tt-boxed.fi-btn-on .tt-wrap .isotope.iso-gutter-5 .isotope-top-content,
	body.tt-boxed.fi-btn-on .tt-wrap .isotope.iso-gutter-6 .isotope-top-content {
		padding-top: 20px;
	}
}


/* Isotope filter button styles 
================================ */
/* filter button dark style */
.isotope-filter.fi-btn.fi-btn-dark .isotope-filter-button {
	background-color: #000;
	color: #FFF;
}
body.iso-filter-open .isotope-filter.fi-btn.fi-btn-dark .isotope-filter-button {
	background-color: #000;
	color: #FFF;
}

/* filter button light style */
.isotope-filter.fi-btn.fi-btn-light .isotope-filter-button {
	background-color: #FFF;
	color: #000;
}
body.iso-filter-open .isotope-filter.fi-btn.fi-btn-light .isotope-filter-button {
	background-color: #FFF;
	color: #000;
}

@media (min-width: 992px) { /* no effect on small screens */

	/* filter button transparent dark style */
	.isotope-filter.fi-btn.fi-btn-transparent-dark .isotope-filter-button {
		background-color: transparent;
		padding: 0;
		color: #000;
	}
	body.iso-filter-open .isotope-filter.fi-btn.fi-btn-transparent-dark .isotope-filter-button {
		background-color: transparent;
		color: #000;
	}
	.isotope-filter.fi-btn.fi-btn-transparent-dark .isotope-filter-button .ifb-icon {
		font-size: 21px;
	}

	/* filter button transparent light style */
	.isotope-filter.fi-btn.fi-btn-transparent-light .isotope-filter-button {
		background-color: transparent;
		padding: 0;
		color: #FFF;
	}
	body.iso-filter-open .isotope-filter.fi-btn.fi-btn-transparent-light .isotope-filter-button {
		background-color: transparent;
		color: #FFF;
	}
	.isotope-filter.fi-btn.fi-btn-transparent-light .isotope-filter-button .ifb-icon {
		font-size: 21px;
	}

}


/* Isotope filter button dropdown styles 
========================================= */
/* filter button dropdown dark style */
.isotope-filter.fi-btn.fi-btn-dropdown-dark ul.isotope-filter-links {
	background-color: #000;
}
.isotope-filter.fi-btn.fi-btn-dropdown-dark ul.isotope-filter-links > li > button,
.isotope-filter.fi-btn.fi-btn-dropdown-dark ul.isotope-filter-links > li > a {
	color: #FFF;
}
.isotope-filter.fi-btn.fi-btn-dropdown-dark ul.isotope-filter-links > li > button:hover,
.isotope-filter.fi-btn.fi-btn-dropdown-dark ul.isotope-filter-links > li > button.active,
.isotope-filter.fi-btn.fi-btn-dropdown-dark ul.isotope-filter-links > li > a:hover,
.isotope-filter.fi-btn.fi-btn-dropdown-dark ul.isotope-filter-links > li > a.active {
	background-color: transparent;
	color: #FF5F14;
}

/* filter button dropdown light style */
.isotope-filter.fi-btn.fi-btn-dropdown-light ul.isotope-filter-links {
	background-color: #FFF;
}
.isotope-filter.fi-btn.fi-btn-dropdown-light ul.isotope-filter-links > li > button,
.isotope-filter.fi-btn.fi-btn-dropdown-light ul.isotope-filter-links > li > a {
	color: #000;
}
.isotope-filter.fi-btn.fi-btn-dropdown-light ul.isotope-filter-links > li > button:hover,
.isotope-filter.fi-btn.fi-btn-dropdown-light ul.isotope-filter-links > li > button.active,
.isotope-filter.fi-btn.fi-btn-dropdown-light ul.isotope-filter-links > li > a:hover,
.isotope-filter.fi-btn.fi-btn-dropdown-light ul.isotope-filter-links > li > a.active {
	background-color: transparent;
	color: #FF5F14;
}


/* ====================
	Isotope items wrap
======================= */
.isotope-items-wrap {
	margin-bottom: -1px;
	overflow: hidden; /* gutter fix! */

	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}

/* isotope items wrap (if gutter enabled) */
.isotope.iso-gutter-1 .isotope-items-wrap {
	margin-top: 6px;
	margin-left: 6px;
	margin-right: 6px;
}
.isotope.iso-gutter-2 .isotope-items-wrap {
	margin-top: 1.5%;
	margin-left: 1.5%;
	margin-right: 1.5%;
}
.isotope.iso-gutter-3 .isotope-items-wrap {
	margin-top: 2.5%;
	margin-left: 2.5%;
	margin-right: 2.5%;
}
.isotope.iso-gutter-4 .isotope-items-wrap {
	margin-top: 2.5%;
	margin-left: 3.5%;
	margin-right: 3.5%;
}
.isotope.iso-gutter-5 .isotope-items-wrap {
	margin-top: 3.5%;
	margin-left: 4.5%;
	margin-right: 4.5%;
}
.isotope.iso-gutter-6 .isotope-items-wrap {
	margin-top: 4.5%;
	margin-left: 6.5%;
	margin-right: 6.5%;
}

/* if boxed layout enabled */
body.tt-boxed .tt-wrap .isotope-items-wrap,
body.tt-boxed .tt-wrap .isotope.iso-gutter-3 .isotope-items-wrap,
body.tt-boxed .tt-wrap .isotope.iso-gutter-4 .isotope-items-wrap,
body.tt-boxed .tt-wrap .isotope.iso-gutter-5 .isotope-items-wrap,
body.tt-boxed .tt-wrap .isotope.iso-gutter-6 .isotope-items-wrap {
	margin-left: 0;
	margin-right: 0;
}
@media (max-width: 991px) {
	body.tt-boxed .tt-wrap .isotope-items-wrap,
	body.tt-boxed .tt-wrap .isotope.iso-gutter-3 .isotope-items-wrap,
	body.tt-boxed .tt-wrap .isotope.iso-gutter-4 .isotope-items-wrap,
	body.tt-boxed .tt-wrap .isotope.iso-gutter-5 .isotope-items-wrap,
	body.tt-boxed .tt-wrap .isotope.iso-gutter-6 .isotope-items-wrap {
		margin-top: 20px;
	}
}

/* if "isotope-top-content" exist */
body.iso-top-content-on .isotope .isotope-items-wrap {
	margin-top: 0 !important;
}

/* if "page-header" exist */
body.page-header-on.tt-boxed .tt-wrap .isotope-items-wrap,
body.page-header-on.tt-boxed .tt-wrap .isotope.iso-gutter-3 .isotope-items-wrap,
body.page-header-on.tt-boxed .tt-wrap .isotope.iso-gutter-4 .isotope-items-wrap,
body.page-header-on.tt-boxed .tt-wrap .isotope.iso-gutter-5 .isotope-items-wrap,
body.page-header-on.tt-boxed .tt-wrap .isotope.iso-gutter-6 .isotope-items-wrap {
	margin-top: 80px;
}
@media (max-width: 991px) {
	body.page-header-on.tt-boxed .tt-wrap .isotope-items-wrap,
	body.page-header-on.tt-boxed .tt-wrap .isotope.iso-gutter-3 .isotope-items-wrap,
	body.page-header-on.tt-boxed .tt-wrap .isotope.iso-gutter-4 .isotope-items-wrap,
	body.page-header-on.tt-boxed .tt-wrap .isotope.iso-gutter-5 .isotope-items-wrap,
	body.page-header-on.tt-boxed .tt-wrap .isotope.iso-gutter-6 .isotope-items-wrap {
		margin-top: 20px;
	}
}


/* isotope item 
================ */
.isotope-item {
	float: left;
	width: 33.33333333%;
}

/* isotope last item (it makes last item to 100% wide). Class: "iso-last-item" */
@media (max-width : 991px) {
	.isotope-item.iso-last-item {
		width: 100% !important;
	}
}


/* isotope item heights 
======================== */
/* isotope item height-1 (use class "iso-height-1") */
.isotope-item.iso-height-1 > div,
.isotope-item.iso-height-1 > a,
.isotope-item.iso-height-1 > article,
.isotope-item.iso-height-1 > figure {
	display: block;
	padding-bottom: 70%;
}

/* isotope item height-2 (use class "iso-height-2") */
.isotope-item.iso-height-2 > div,
.isotope-item.iso-height-2 > a,
.isotope-item.iso-height-2 > article,
.isotope-item.iso-height-2 > figure {
	display: block;
	padding-bottom: 140%;
}

/* isotope item height-2 if "iso-gutter-1" enabled */
.isotope.iso-col-2.iso-gutter-1 .isotope-item.iso-height-2 > div,
.isotope.iso-col-2.iso-gutter-1 .isotope-item.iso-height-2 > a,
.isotope.iso-col-2.iso-gutter-1 .isotope-item.iso-height-2 > article,
.isotope.iso-col-2.iso-gutter-1 .isotope-item.iso-height-2 > figure {
	padding-bottom: 140.7%;
}
.isotope.iso-col-3.iso-gutter-1 .isotope-item.iso-height-2 > div,
.isotope.iso-col-3.iso-gutter-1 .isotope-item.iso-height-2 > a,
.isotope.iso-col-3.iso-gutter-1 .isotope-item.iso-height-2 > article,
.isotope.iso-col-3.iso-gutter-1 .isotope-item.iso-height-2 > figure {
	padding-bottom: 140.9%;
}
.isotope.iso-col-4.iso-gutter-1 .isotope-item.iso-height-2 > div,
.isotope.iso-col-4.iso-gutter-1 .isotope-item.iso-height-2 > a,
.isotope.iso-col-4.iso-gutter-1 .isotope-item.iso-height-2 > article,
.isotope.iso-col-4.iso-gutter-1 .isotope-item.iso-height-2 > figure {
	padding-bottom: 141.4%;
}

/* isotope item height-2 if "iso-gutter-2" enabled */
.isotope.iso-col-2.iso-gutter-2 .isotope-item.iso-height-2 > div,
.isotope.iso-col-2.iso-gutter-2 .isotope-item.iso-height-2 > a,
.isotope.iso-col-2.iso-gutter-2 .isotope-item.iso-height-2 > article,
.isotope.iso-col-2.iso-gutter-2 .isotope-item.iso-height-2 > figure {
	padding-bottom: 143.1%;
}
.isotope.iso-col-3.iso-gutter-2 .isotope-item.iso-height-2 > div,
.isotope.iso-col-3.iso-gutter-2 .isotope-item.iso-height-2 > a,
.isotope.iso-col-3.iso-gutter-2 .isotope-item.iso-height-2 > article,
.isotope.iso-col-3.iso-gutter-2 .isotope-item.iso-height-2 > figure {
	padding-bottom: 144.7%;
}
.isotope.iso-col-4.iso-gutter-2 .isotope-item.iso-height-2 > div,
.isotope.iso-col-4.iso-gutter-2 .isotope-item.iso-height-2 > a,
.isotope.iso-col-4.iso-gutter-2 .isotope-item.iso-height-2 > article,
.isotope.iso-col-4.iso-gutter-2 .isotope-item.iso-height-2 > figure {
	padding-bottom: 146.5%;
}

/* isotope item height-2 if "iso-gutter-3" enabled */
.isotope.iso-col-2.iso-gutter-3 .isotope-item.iso-height-2 > div,
.isotope.iso-col-2.iso-gutter-3 .isotope-item.iso-height-2 > a,
.isotope.iso-col-2.iso-gutter-3 .isotope-item.iso-height-2 > article,
.isotope.iso-col-2.iso-gutter-3 .isotope-item.iso-height-2 > figure {
	padding-bottom: 145.3%;
}
.isotope.iso-col-3.iso-gutter-3 .isotope-item.iso-height-2 > div,
.isotope.iso-col-3.iso-gutter-3 .isotope-item.iso-height-2 > a,
.isotope.iso-col-3.iso-gutter-3 .isotope-item.iso-height-2 > article,
.isotope.iso-col-3.iso-gutter-3 .isotope-item.iso-height-2 > figure {
	padding-bottom: 148%;
}
.isotope.iso-col-4.iso-gutter-3 .isotope-item.iso-height-2 > div,
.isotope.iso-col-4.iso-gutter-3 .isotope-item.iso-height-2 > a,
.isotope.iso-col-4.iso-gutter-3 .isotope-item.iso-height-2 > article,
.isotope.iso-col-4.iso-gutter-3 .isotope-item.iso-height-2 > figure {
	padding-bottom: 151.1%;
}

/* isotope item height-2 if "iso-gutter-4" enabled */
.isotope.iso-col-2.iso-gutter-4 .isotope-item.iso-height-2 > div,
.isotope.iso-col-2.iso-gutter-4 .isotope-item.iso-height-2 > a,
.isotope.iso-col-2.iso-gutter-4 .isotope-item.iso-height-2 > article,
.isotope.iso-col-2.iso-gutter-4 .isotope-item.iso-height-2 > figure {
	padding-bottom: 147.6%;
}
.isotope.iso-col-3.iso-gutter-4 .isotope-item.iso-height-2 > div,
.isotope.iso-col-3.iso-gutter-4 .isotope-item.iso-height-2 > a,
.isotope.iso-col-3.iso-gutter-4 .isotope-item.iso-height-2 > article,
.isotope.iso-col-3.iso-gutter-4 .isotope-item.iso-height-2 > figure {
	padding-bottom: 151.5%;
}
.isotope.iso-col-4.iso-gutter-4 .isotope-item.iso-height-2 > div,
.isotope.iso-col-4.iso-gutter-4 .isotope-item.iso-height-2 > a,
.isotope.iso-col-4.iso-gutter-4 .isotope-item.iso-height-2 > article,
.isotope.iso-col-4.iso-gutter-4 .isotope-item.iso-height-2 > figure {
	padding-bottom: 156.5%;
}

/* isotope item height-2 if "iso-gutter-5" enabled */
.isotope.iso-col-2.iso-gutter-5 .isotope-item.iso-height-2 > div,
.isotope.iso-col-2.iso-gutter-5 .isotope-item.iso-height-2 > a,
.isotope.iso-col-2.iso-gutter-5 .isotope-item.iso-height-2 > article,
.isotope.iso-col-2.iso-gutter-5 .isotope-item.iso-height-2 > figure {
	padding-bottom: 150%;
}
.isotope.iso-col-3.iso-gutter-5 .isotope-item.iso-height-2 > div,
.isotope.iso-col-3.iso-gutter-5 .isotope-item.iso-height-2 > a,
.isotope.iso-col-3.iso-gutter-5 .isotope-item.iso-height-2 > article,
.isotope.iso-col-3.iso-gutter-5 .isotope-item.iso-height-2 > figure {
	padding-bottom: 155%;
}
.isotope.iso-col-4.iso-gutter-5 .isotope-item.iso-height-2 > div,
.isotope.iso-col-4.iso-gutter-5 .isotope-item.iso-height-2 > a,
.isotope.iso-col-4.iso-gutter-5 .isotope-item.iso-height-2 > article,
.isotope.iso-col-4.iso-gutter-5 .isotope-item.iso-height-2 > figure {
	padding-bottom: 162%;
}

/* isotope item height-2 if "iso-gutter-6" enabled */
.isotope.iso-col-2.iso-gutter-6 .isotope-item.iso-height-2 > div,
.isotope.iso-col-2.iso-gutter-6 .isotope-item.iso-height-2 > a,
.isotope.iso-col-2.iso-gutter-6 .isotope-item.iso-height-2 > article,
.isotope.iso-col-2.iso-gutter-6 .isotope-item.iso-height-2 > figure {
	padding-bottom: 154.9%;
}
.isotope.iso-col-3.iso-gutter-6 .isotope-item.iso-height-2 > div,
.isotope.iso-col-3.iso-gutter-6 .isotope-item.iso-height-2 > a,
.isotope.iso-col-3.iso-gutter-6 .isotope-item.iso-height-2 > article,
.isotope.iso-col-3.iso-gutter-6 .isotope-item.iso-height-2 > figure {
	padding-bottom: 164%;
}
.isotope.iso-col-4.iso-gutter-6 .isotope-item.iso-height-2 > div,
.isotope.iso-col-4.iso-gutter-6 .isotope-item.iso-height-2 > a,
.isotope.iso-col-4.iso-gutter-6 .isotope-item.iso-height-2 > article,
.isotope.iso-col-4.iso-gutter-6 .isotope-item.iso-height-2 > figure {
	padding-bottom: 175.5%;
}

@media (max-width: 1200px) {
	/* isotope item height-2 if "iso-gutter-1" enabled */
	.isotope.iso-col-4.iso-gutter-1 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-4.iso-gutter-1 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-4.iso-gutter-1 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-4.iso-gutter-1 .isotope-item.iso-height-2 > figure {
		padding-bottom: 141.5%;
	}

	/* isotope item height-2 if "iso-gutter-2" enabled */
	.isotope.iso-col-4.iso-gutter-2 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-4.iso-gutter-2 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-4.iso-gutter-2 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-4.iso-gutter-2 .isotope-item.iso-height-2 > figure {
		padding-bottom: 144.5%;
	}

	/* isotope item height-2 if "iso-gutter-3" enabled */
	.isotope.iso-col-4.iso-gutter-3 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-4.iso-gutter-3 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-4.iso-gutter-3 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-4.iso-gutter-3 .isotope-item.iso-height-2 > figure {
		padding-bottom: 148%;
	}

	/* isotope item height-2 if "iso-gutter-4" enabled */
	.isotope.iso-col-4.iso-gutter-4 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-4.iso-gutter-4 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-4.iso-gutter-4 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-4.iso-gutter-4 .isotope-item.iso-height-2 > figure {
		padding-bottom: 151.5%;
	}

	/* isotope item height-2 if "iso-gutter-5" enabled */
	.isotope.iso-col-4.iso-gutter-5 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-4.iso-gutter-5 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-4.iso-gutter-5 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-4.iso-gutter-5 .isotope-item.iso-height-2 > figure {
		padding-bottom: 155.5%;
	}

	/* isotope item height-2 if "iso-gutter-6" enabled */
	.isotope.iso-col-4.iso-gutter-6 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-4.iso-gutter-6 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-4.iso-gutter-6 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-4.iso-gutter-6 .isotope-item.iso-height-2 > figure {
		padding-bottom: 164%;
	}
}

@media (max-width: 991px) {
	/* isotope item height-2 if "iso-gutter-1" enabled */
	.isotope.iso-col-3.iso-gutter-1 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-3.iso-gutter-1 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-3.iso-gutter-1 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-3.iso-gutter-1 .isotope-item.iso-height-2 > figure {
		padding-bottom: 141.1%;
	}
	.isotope.iso-col-4.iso-gutter-1 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-4.iso-gutter-1 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-4.iso-gutter-1 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-4.iso-gutter-1 .isotope-item.iso-height-2 > figure {
		padding-bottom: 141.1%;
	}

	/* isotope item height-2 if "iso-gutter-2" enabled */
	.isotope.iso-col-3.iso-gutter-2 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-3.iso-gutter-2 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-3.iso-gutter-2 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-3.iso-gutter-2 .isotope-item.iso-height-2 > figure {
		padding-bottom: 143%;
	}
	.isotope.iso-col-4.iso-gutter-2 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-4.iso-gutter-2 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-4.iso-gutter-2 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-4.iso-gutter-2 .isotope-item.iso-height-2 > figure {
		padding-bottom: 143%;
	}

	/* isotope item height-2 if "iso-gutter-3" enabled */
	.isotope.iso-col-3.iso-gutter-3 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-3.iso-gutter-3 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-3.iso-gutter-3 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-3.iso-gutter-3 .isotope-item.iso-height-2 > figure {
		padding-bottom: 145.1%;
	}
	.isotope.iso-col-4.iso-gutter-3 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-4.iso-gutter-3 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-4.iso-gutter-3 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-4.iso-gutter-3 .isotope-item.iso-height-2 > figure {
		padding-bottom: 145.1%;
	}

	/* isotope item height-2 if "iso-gutter-4" enabled */
	.isotope.iso-col-3.iso-gutter-4 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-3.iso-gutter-4 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-3.iso-gutter-4 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-3.iso-gutter-4 .isotope-item.iso-height-2 > figure {
		padding-bottom: 147.5%;
	}

	.isotope.iso-col-4.iso-gutter-4 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-4.iso-gutter-4 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-4.iso-gutter-4 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-4.iso-gutter-4 .isotope-item.iso-height-2 > figure {
		padding-bottom: 147.5%;
	}

	/* isotope item height-2 if "iso-gutter-5" enabled */
	.isotope.iso-col-3.iso-gutter-5 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-3.iso-gutter-5 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-3.iso-gutter-5 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-3.iso-gutter-5 .isotope-item.iso-height-2 > figure {
		padding-bottom: 149.5%;
	}

	.isotope.iso-col-4.iso-gutter-5 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-4.iso-gutter-5 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-4.iso-gutter-5 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-4.iso-gutter-5 .isotope-item.iso-height-2 > figure {
		padding-bottom: 149.5%;
	}

	/* isotope item height-2 if "iso-gutter-6" enabled */
	.isotope.iso-col-3.iso-gutter-6 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-3.iso-gutter-6 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-3.iso-gutter-6 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-3.iso-gutter-6 .isotope-item.iso-height-2 > figure {
		padding-bottom: 155%;
	}

	.isotope.iso-col-4.iso-gutter-6 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-4.iso-gutter-6 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-4.iso-gutter-6 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-4.iso-gutter-6 .isotope-item.iso-height-2 > figure {
		padding-bottom: 154.8%;
	}
}

/* isotope iso-col-1 if "iso-height-1" enabled */
.isotope.iso-col-1 .isotope-item.iso-height-1 > div,
.isotope.iso-col-1 .isotope-item.iso-height-1 > a,
.isotope.iso-col-1 .isotope-item.iso-height-1 > article,
.isotope.iso-col-1 .isotope-item.iso-height-1 > figure {
	display: block;
	padding-bottom: 30%;
}
@media (max-width: 768px) {
	.isotope.iso-col-1 .isotope-item.iso-height-1 > div,
	.isotope.iso-col-1 .isotope-item.iso-height-1 > a,
	.isotope.iso-col-1 .isotope-item.iso-height-1 > article,
	.isotope.iso-col-1 .isotope-item.iso-height-1 > figure {
		padding-bottom: 60%;
	}
}
/* isotope iso-col-1 if "iso-height-2" enabled */
.isotope.iso-col-1 .isotope-item.iso-height-2 > div,
.isotope.iso-col-1 .isotope-item.iso-height-2 > a,
.isotope.iso-col-1 .isotope-item.iso-height-2 > article,
.isotope.iso-col-1 .isotope-item.iso-height-2 > figure {
	display: block;
	padding-bottom: 50%;
}
@media (max-width: 768px) {
	.isotope.iso-col-1 .isotope-item.iso-height-2 > div,
	.isotope.iso-col-1 .isotope-item.iso-height-2 > a,
	.isotope.iso-col-1 .isotope-item.iso-height-2 > article,
	.isotope.iso-col-1 .isotope-item.iso-height-2 > figure {
		padding-bottom: 60%;
	}
}


/* Isotope gutter (add more space between isotope items) 
=========================================================*/
/* iso-gutter-1 */
.isotope.iso-gutter-1 .isotope-item { padding: 0 0 6px 6px; }
.isotope.iso-gutter-1 { margin-left: -6px; }

/* iso-gutter-2 */
.isotope.iso-gutter-2 .isotope-item { padding: 0 0 1.5% 1.5%; }
.isotope.iso-gutter-2 { margin-left: -1.5%; }

/* iso-gutter-3 */
.isotope.iso-gutter-3 .isotope-item { padding: 0 0 2.5% 2.5%; }
.isotope.iso-gutter-3 { margin-left: -2.6%; }

/* iso-gutter-4 */
.isotope.iso-gutter-4 .isotope-item { padding: 0 0 3.5% 3.5%; }
.isotope.iso-gutter-4 { margin-left: -3.61%; }

/* iso-gutter-5 */
.isotope.iso-gutter-5 .isotope-item { padding: 0 0 4.5% 4.5%; }
.isotope.iso-gutter-5 { margin-left: -4.7%; }

/* iso-gutter-6 */
.isotope.iso-gutter-6 .isotope-item { padding: 0 0 6.5% 6.5%; }
.isotope.iso-gutter-6 { margin-left: -7%; }


/* Isotope columns 
=================== */
.isotope.iso-col-1 .isotope-item {
	width: 100%;
}
.isotope.iso-col-2 .isotope-item {
	width: 50%;
}
.isotope.iso-col-3 .isotope-item {
	width: 33.33333333%;
}
.isotope.iso-col-4 .isotope-item {
	width: 25%;
}

/* isotope grid sizer */
.grid-sizer {
	width: 33.33333333%;
}
.isotope.iso-col-1 .grid-sizer {
	width: 100%;
}
.isotope.iso-col-2 .grid-sizer {
	width: 50%;
}
.isotope.iso-col-3 .grid-sizer {
	width: 33.33333333%;
}
.isotope.iso-col-4 .grid-sizer {
	width: 25%;
}

/* isotope item width (alternative width) */
.isotope.iso-col-2 .width-2 { width: 100%; }
.isotope.iso-col-3 .width-2 { width: 66.66666666%; }
.isotope.iso-col-4 .width-2 { width: 50%; }


/* Isotope columns on smaller screens 
====================================== */
@media (max-width: 1200px) {
	.isotope.iso-col-4 .isotope-item,
	.isotope.iso-col-4 .grid-sizer {
		width: 33.33333333%;
	}
	.isotope.iso-col-4 .width-2 {
		width: 66.66666666%;
	}
}

@media (max-width: 991px) {
	.isotope-item,
	.isotope.iso-col-3 .isotope-item,
	.isotope.iso-col-4 .isotope-item,
	
	.grid-sizer,
	.isotope.iso-col-3 .grid-sizer,
	.isotope.iso-col-4 .grid-sizer,

	.isotope.iso-col-3 .width-2,
	.isotope.iso-col-4 .width-2 {
		width: 50%;
	}
}

@media (max-width: 768px) {
	.isotope-item,
	.isotope.iso-col-2 .isotope-item,
	.isotope.iso-col-3 .isotope-item,
	.isotope.iso-col-4 .isotope-item,

	.grid-sizer,
	.isotope.iso-col-2 .grid-sizer,
	.isotope.iso-col-3 .grid-sizer,
	.isotope.iso-col-4 .grid-sizer,
	
	.isotope.iso-col-2 .width-2,
	.isotope.iso-col-3 .width-2,
	.isotope.iso-col-4 .width-2 {
		width: 100%;
	}
}


/* Isotope item text box (must be the first item!)
=================================================== */
.iso-text-box-holder {
	position: relative;
	background-color: #FFF;
}
.iso-text-box-wrap {
	padding: 80px 0; 
}
.isotope-item.iso-height-1 .iso-text-box-wrap,
.isotope-item.iso-height-2 .iso-text-box-wrap {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 0;
	overflow: hidden;
}
.iso-text-box-inner {
	padding: 0 5%;
}
@media (min-width: 1200px) {
	.iso-text-box-inner {
		display: table;
		width: 100%;
		height: 100%;
		padding: 0 10%;
	}
	.iso-text-box-content {
		display: table-cell;
		vertical-align: middle;
	}
}

.isotope.iso-col-4 .itb-parent { width: 50% !important; }

.isotope.iso-col-4 .iso-height-2.itb-parent .iso-text-box-holder {
	padding-bottom: 105%;
}

/* if gutter-1 enabled */
.isotope.iso-col-4.iso-gutter-1 .iso-height-1.itb-parent .iso-text-box-holder { padding-bottom: 70.3%; }
.isotope.iso-col-4.iso-gutter-1 .iso-height-2.itb-parent .iso-text-box-holder { padding-bottom: 105.6%; }

/* if gutter-2 enabled */
.isotope.iso-col-4.iso-gutter-2 .iso-height-1.itb-parent .iso-text-box-holder { padding-bottom: 71%; }
.isotope.iso-col-4.iso-gutter-2 .iso-height-2.itb-parent .iso-text-box-holder { padding-bottom: 107.9%; }

/* if gutter-3 enabled */
.isotope.iso-col-4.iso-gutter-3 .iso-height-1.itb-parent .iso-text-box-holder { padding-bottom: 71.7%; }
.isotope.iso-col-4.iso-gutter-3 .iso-height-2.itb-parent .iso-text-box-holder { padding-bottom: 109.9%; }

/* if gutter-4 enabled */
.isotope.iso-col-4.iso-gutter-4 .iso-height-1.itb-parent .iso-text-box-holder { padding-bottom: 72.4%; }
.isotope.iso-col-4.iso-gutter-4 .iso-height-2.itb-parent .iso-text-box-holder { padding-bottom: 112.2%; }

/* if gutter-5 enabled */
.isotope.iso-col-4.iso-gutter-5 .iso-height-1.itb-parent .iso-text-box-holder { padding-bottom: 73%; }
.isotope.iso-col-4.iso-gutter-5 .iso-height-2.itb-parent .iso-text-box-holder { padding-bottom: 114.2%; }

/* if gutter-6 enabled */
.isotope.iso-col-4.iso-gutter-6 .iso-height-1.itb-parent .iso-text-box-holder { padding-bottom: 74.8%; }
.isotope.iso-col-4.iso-gutter-6 .iso-height-2.itb-parent .iso-text-box-holder { padding-bottom: 119.2%; }

@media (max-width: 1600px) {
	.isotope.iso-col-3 .itb-parent { 
		width: 66.66666666% !important; 
	}

	/* if gutter-1 enabled */
	.isotope.iso-col-3.iso-gutter-1 .iso-height-1.itb-parent .iso-text-box-holder {  }
	.isotope.iso-col-3.iso-gutter-1 .iso-height-2.itb-parent .iso-text-box-holder { padding-bottom: 105.3%; }

	/* if gutter-2 enabled */
	.isotope.iso-col-3.iso-gutter-2 .iso-height-1.itb-parent .iso-text-box-holder { padding-bottom: 70.6%; }
	.isotope.iso-col-3.iso-gutter-2 .iso-height-2.itb-parent .iso-text-box-holder { padding-bottom: 107.1%; }

	/* if gutter-3 enabled */
	.isotope.iso-col-3.iso-gutter-3 .iso-height-1.itb-parent .iso-text-box-holder { padding-bottom: 71.1%; }
	.isotope.iso-col-3.iso-gutter-3 .iso-height-2.itb-parent .iso-text-box-holder { padding-bottom: 108.6%; }

	/* if gutter-4 enabled */
	.isotope.iso-col-3.iso-gutter-4 .iso-height-1.itb-parent .iso-text-box-holder { padding-bottom: 71.5%; }
	.isotope.iso-col-3.iso-gutter-4 .iso-height-2.itb-parent .iso-text-box-holder { padding-bottom: 110%; }

	/* if gutter-5 enabled */
	.isotope.iso-col-3.iso-gutter-5 .iso-height-1.itb-parent .iso-text-box-holder { padding-bottom: 71.8%; }
	.isotope.iso-col-3.iso-gutter-5 .iso-height-2.itb-parent .iso-text-box-holder { padding-bottom: 111.5%; }

	/* if gutter-6 enabled */
	.isotope.iso-col-3.iso-gutter-6 .iso-height-1.itb-parent .iso-text-box-holder { padding-bottom: 73%; }
	.isotope.iso-col-3.iso-gutter-6 .iso-height-2.itb-parent .iso-text-box-holder { padding-bottom: 115%; }
}
@media (max-width: 1200px) {
	.isotope.iso-col-2 .itb-parent,
	.isotope.iso-col-3 .itb-parent,
	.isotope.iso-col-4 .itb-parent,
	.isotope.iso-col-5 .itb-parent,
	.isotope.iso-col-6 .itb-parent {
		width: 100% !important;
	}
	.isotope-item.iso-height-1.itb-parent .iso-text-box-holder,
	.isotope-item.iso-height-2.itb-parent .iso-text-box-holder {
		padding-bottom: 0 !important;
	}
	.iso-text-box-wrap {
		position: relative !important;
		padding: 10% 0 !important;
	}
}
@media (max-width: 992px) {
	.iso-text-box-wrap {
		padding: 10% 0 !important;
	}
}
@media (max-width: 768px) {
	.iso-text-box-wrap {
		padding: 15% 0 !important;
	}
}

/* if iso-col-1 enabled */
.isotope.iso-col-1 .iso-text-box-holder {
	padding-bottom: 0 !important;
}
.isotope.iso-col-1 .iso-text-box-wrap {
	position: relative;
	padding: 160px 0 !important;
}
@media (max-width: 992px) {
	.isotope.iso-col-1 .iso-text-box-wrap {
		padding: 15% 0 !important;
	}
}
.isotope.iso-col-1 .iso-text-box-inner {
	display: block;
	width: 100%;
	height: auto;
	padding: 0 20%;
}
.isotope.iso-col-1 .iso-text-box-content {
	display: block;
	vertical-align: unset;
}


/* Isotope load more button (Note: "Load More" button is for design purposes only!) 
============================ */
.iso-load-more-wrap {
	padding-top: 70px;
	padding-bottom: 70px;
	text-align: center;
}

.isotope.iso-gutter-1 .iso-load-more-wrap {
	margin-left: 6px;
}
.isotope.iso-gutter-2 .iso-load-more-wrap {
	padding-top: 30px;
	margin-left: 1.5%;
}
.isotope.iso-gutter-3 .iso-load-more-wrap {
	padding-top: 25px;
	margin-left: 2.5%;
}
.isotope.iso-gutter-4 .iso-load-more-wrap {
	padding-top: 15px;
	margin-left: 3.5%;
}
.isotope.iso-gutter-5 .iso-load-more-wrap {
	padding-top: 10px;
	margin-left: 4.5%;
}
.isotope.iso-gutter-6 .iso-load-more-wrap {
	padding-top: 0;
	margin-left: 6.5%;
}

@media (max-width: 768px) {
	.iso-load-more-wrap,
	.isotope.iso-gutter-1 .iso-load-more-wrap,
	.isotope.iso-gutter-2 .iso-load-more-wrap,
	.isotope.iso-gutter-3 .iso-load-more-wrap,
	.isotope.iso-gutter-4 .iso-load-more-wrap,
	.isotope.iso-gutter-5 .iso-load-more-wrap,
	.isotope.iso-gutter-6 .iso-load-more-wrap {
		padding-top: 30px;
	}
}

.iso-load-more-button {
	position: relative;
	display: inline-block;
	padding: 15px 40px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	color: #111;
	letter-spacing: 2px;
	border: none;
	outline: none;
	cursor: pointer;
	z-index: 1;
	overflow: hidden;
	-webkit-box-shadow: inset 0 0 0 2px rgba(130, 130, 130, 0.18);
	-moz-box-shadow: inset 0 0 0 2px rgba(130, 130, 130, 0.18);
	box-shadow: inset 0 0 0 2px rgba(130, 130, 130, 0.18);

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;

	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.iso-load-more-button:hover {
	color: #111;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.iso-load-more-button::before {
	position: absolute;
	content: "";
	z-index: -1;
	height: 100%;
	background-color: #FF5F14;
	left: 0;
	right: 0px;
	bottom: 0px;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.iso-load-more-button:hover::before {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/* load more filled */
.iso-load-more-wrap.ilm-filled {
	background-color: #FF5F14;
	padding-top: 65px !important;
	padding-bottom: 65px !important;
}
.iso-load-more-wrap.ilm-filled .iso-load-more-button {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.iso-load-more-wrap.ilm-filled .iso-load-more-button:hover {
	color: #FFF;
}
.iso-load-more-wrap.ilm-filled .iso-load-more-button::before {
	background-color: #111;
}


.iso-load-more-wrap[class*="bg-dark"] .iso-load-more-button {
	color: #FFF;
}
.iso-load-more-wrap[class*="bg-dark"] .iso-load-more-button:hover {
	color: #111;
}
.iso-load-more-wrap[class*="bg-dark"] .iso-load-more-button::before {
	background-color: #FF5F14;
}

.iso-load-more-wrap[class*="bg-yellow"] .iso-load-more-button {
	color: #111;
}
.iso-load-more-wrap[class*="bg-yellow"] .iso-load-more-button:hover {
	color: #FFF;
}
.iso-load-more-wrap[class*="bg-yellow"] .iso-load-more-button::before {
	background-color: #111;
}


/* ------------------------------------------------------------- *
 * Portfolio grid
/* ------------------------------------------------------------- */

.portfolio-grid {
}


/* Portfolio grid item 
======================= */
.portfolio-grid-item {
	position: relative;
	display: block;
	overflow: hidden;
}

/* portfolio grid item cover */
.portfolio-grid-item::before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #FFF;
	opacity: 0;
	z-index: 2;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.portfolio-grid-item:hover::before {
	opacity: .94;
}

/* portfolio grid item image */
.pgi-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background-color: rgba(130, 130, 130, 0.1);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
img.pgi-image {
	position: relative;
}

/* portfolio grid item image zoom on hover */
.portfolio-grid.pgi-image-zoom .portfolio-grid-item:hover .pgi-image {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}


/* Portfolio grid item caption 
=============================== */
.pgi-caption-wrap {
	position: absolute;
	top: 50%;
	width: 100%;
	z-index: 2;
	text-align: center;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.pgi-caption {
	padding: 0 12%;
	visibility: hidden;
	opacity: 0;
	-moz-transform: scale(0.96);
	-ms-transform: scale(0.96);
	-webkit-transform: scale(0.96);
	transform: scale(0.96);

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
	.pgi-caption {
		padding: 0 10%;
	}
}
.portfolio-grid-item:hover .pgi-caption {
	visibility: visible;
	opacity: 1;
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);

	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/* portfolio grid item title */
.pgi-caption-title {
	margin: 0;
	padding: 0;
	font-family: 'Playfair Display',serif;
	font-size: 25px;
	font-weight: 700;
	color: #111;
	line-height: 1.4;
}
.isotope.iso-col-4 .pgi-caption-title {
	font-size: 21px;
}
@media (min-width: 1200px) {
	.isotope.iso-col-2 .pgi-caption-title {
		font-size: 28px;
	}
}

/* portfolio grid item divider */
.pgi-caption-divider {
	width: 0;
	height: 3px;
	margin: 15px auto 0 auto;
	background-color: #FF5F14;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.portfolio-grid-item:hover .pgi-caption-divider {
	width: 30px;
}

/* portfolio grid item category */
.pgi-caption-category {
	margin-top: 18px;
	letter-spacing: 1px;
	font-size: 15px;
	font-weight: normal;
	font-style: italic;
	color: #111;
}

.pgi-caption-category span {
}

.pgi-caption-category span ~ span:not(:empty)::before { /* separate categories with comma */
	content: ", ";
}


/* Portfolio grid item caption positions 
========================================= */
/* position top */
.pgi-caption-top .pgi-caption-wrap {
	top: 10%;
	left: 7%;
	max-width: 70%;
	text-align: left;
	-moz-transform: none;
	-ms-transform: none;
	-webkit-transform: none;
	transform: none;
}
.pgi-caption-top .pgi-caption {
	padding: 0;
}
.pgi-caption-top .pgi-caption-divider {
	margin-left: 0;
	margin-right: 0;
}

/* position bottom */
.pgi-caption-bottom .pgi-caption-wrap {
	top: auto;
	left: 7%;
	bottom: 10%;
	max-width: 70%;
	text-align: left;
	-moz-transform: none;
	-ms-transform: none;
	-webkit-transform: none;
	transform: none;
}
.pgi-caption-bottom .pgi-caption {
	padding: 0;
}
.pgi-caption-bottom .pgi-caption-divider {
	margin-left: 0;
	margin-right: 0;
}


/* Portfolio grid item styles 
============================== */
/* cover style color */
.portfolio-grid.pgi-cover-color .portfolio-grid-item::before {
	background-color: #FF5F14;
}
.portfolio-grid.pgi-cover-color .portfolio-grid-item:hover::before {
	opacity: .96;
}
.portfolio-grid.pgi-cover-color .pgi-caption-divider {
	background-color: #FFF;
}

/* cover style dark */
.portfolio-grid.pgi-cover-dark .portfolio-grid-item::before {
	background-color: #000;
}
.portfolio-grid.pgi-cover-dark .portfolio-grid-item:hover::before {
	opacity: .85;
}
.portfolio-grid.pgi-cover-dark .pgi-caption-title,
.portfolio-grid.pgi-cover-dark .pgi-caption-category span {
	color: #FFF;
}

/* if "iso-col-1" enabled */
@media (min-width: 992px) {
	.isotope.iso-col-1 .portfolio-grid-item::before {
		display: none;
	}

	.portfolio-grid.pgi-image-zoom .isotope.iso-col-1 .portfolio-grid-item:hover .pgi-image {
		-webkit-transform: scale(1.02);
		-moz-transform: scale(1.02);
		-o-transform: scale(1.02);
		-ms-transform: scale(1.02);
		transform: scale(1.02);
	}

	.pgi-caption-top .isotope.iso-col-1 .pgi-caption-wrap {
		top: 10%;
		left: 3%;
		max-width: 600px;
	}
	.pgi-caption-bottom .isotope.iso-col-1 .pgi-caption-wrap {
		left: 3%;
		bottom: 10%;
		max-width: 600px;
	}

	.isotope.iso-col-1 .portfolio-grid-item .pgi-caption {
		position: relative;
		bottom: -20px;
		display: inline-block;
		max-width: 600px;
		background-color: rgba(255, 255, 255, 0.8);
		padding: 3.5% 6%;
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);

		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
	}
	.isotope.iso-col-1 .portfolio-grid-item:hover .pgi-caption {
		bottom: 0;
	}
	.pgi-caption-top .isotope.iso-col-1 .portfolio-grid-item .pgi-caption,
	.pgi-caption-bottom .isotope.iso-col-1 .portfolio-grid-item .pgi-caption {
		max-width: 100%;
		padding: 8% 13%;
	}

	.pgi-cover-dark .isotope.iso-col-1 .portfolio-grid-item .pgi-caption {
		background-color: rgba(0, 0, 0, 0.8);
	}
	.pgi-cover-color .isotope.iso-col-1 .portfolio-grid-item .pgi-caption {
		background-color: rgba(15, 239, 215, 0.7);
	}

	.isotope.iso-col-1 .pgi-caption-title {
		font-size: 28px;
	}

	.isotope.iso-col-1 .pgi-caption-category {
		font-size: 15px;
	}
}


/* ------------------------------------------------------------- *
 * Portfolio carousel
/* ------------------------------------------------------------- */

.portfolio-carousel {
}


/* Portfolio carousel item 
=========================== */
.portfolio-carousel-item {
	position: relative;
	display: block;
	overflow: hidden;
}

/* portfolio carousel item image */
.pci-image-wrap {
	position: relative;
	overflow: hidden;
}
.pci-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background-color: rgba(130, 130, 130, 0.1);
}
img.pci-image {
	position: relative;
}
.portfolio-carousel-item:hover .pci-image {
}

/* portfolio carousel item cover */
.pci-image-wrap::before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #FFF;
	opacity: 0;
	z-index: 2;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.portfolio-carousel-item:hover .pci-image-wrap::before {
	opacity: .93;
}


/* Portfolio carousel item caption 
=================================== */
.pci-caption-wrap {
	position: absolute;
	top: 50%;
	width: 100%;
	z-index: 2;
	text-align: center;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.pci-caption {
	padding: 0 12%;
	visibility: hidden;
	opacity: 0;
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-webkit-transform: scale(0.9);
	transform: scale(0.9);

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
	.pci-caption {
		padding: 0 10%;
	}
}
.portfolio-carousel-item:hover .pci-caption {
	visibility: visible;
	opacity: 1;
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);

	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/* portfolio carousel item title */
.pci-caption-title {
	margin: 0;
	padding: 0;
	font-size: 21px;
	font-weight: 700;
	color: #111;
	line-height: 1.2;
}

/* portfolio carousel item divider */
.pci-caption-divider {
	width: 0;
	height: 3px;
	margin: 15px auto 0 auto;
	background-color: #FF5F14;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.portfolio-carousel-item:hover .pci-caption-divider {
	width: 30px;
}

/* portfolio carousel item category */
.pci-caption-category {
	margin-top: 15px;
	letter-spacing: 1px;
	font-size: 14px;
	font-weight: normal;
	font-style: italic;
	color: #111;
}

.pci-caption-category span {
}

.pci-caption-category span ~ span:not(:empty)::before { /* separate categories with comma */
	content: ", ";
}


/* Portfolio carousel item caption positions 
============================================= */
/* position top */
.pci-caption-top .pci-caption-wrap {
	top: 10%;
	left: 7%;
	max-width: 70%;
	text-align: left;
	-moz-transform: none;
	-ms-transform: none;
	-webkit-transform: none;
	transform: none;
}
.pci-caption-top .pci-caption {
	padding: 0;
}
.pci-caption-top .pci-caption-divider {
	margin-left: 0;
	margin-right: 0;
}

/* position bottom */
.pci-caption-bottom .pci-caption-wrap {
	top: auto;
	left: 7%;
	bottom: 10%;
	max-width: 70%;
	text-align: left;
	-moz-transform: none;
	-ms-transform: none;
	-webkit-transform: none;
	transform: none;
}
.pci-caption-bottom .pci-caption {
	padding: 0;
}
.pci-caption-bottom .pci-caption-divider {
	margin-left: 0;
	margin-right: 0;
}

/* position outside */
.pci-caption-outside .pci-image-wrap::before {
	display: none;
}

.pci-caption-outside .pci-caption-wrap {
	position: relative;
	top: unset;
	left: unset;
	width: 90%;
	-moz-transform: none;
	-ms-transform: none;
	-webkit-transform: none;
	transform: none;
}
.pci-caption-outside .pci-caption {
	padding: 20px 15px;
	text-align: left;
	visibility: visible;
	opacity: 1;
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
.pci-caption-outside .pci-caption-title {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-style: italic;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.pci-caption-outside .pci-caption-divider {
	width: 30px;
	margin: 15px 0 0 0;

	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.pci-caption-outside .portfolio-carousel-item:hover .pci-caption-divider {
	width: 40px;
}
.pci-caption-outside .pci-caption-category {
	font-style: normal;
}


/* Portfolio carousel item styles 
================================== */
/* cover style color */
.portfolio-carousel.pci-cover-color .pci-image-wrap::before {
	background-color: #FF5F14;
}
.portfolio-carousel.pci-cover-color .portfolio-carousel-item:hover .pci-image-wrap::before {
}
.portfolio-carousel.pci-cover-color:not(.pci-caption-outside) .pci-caption-divider {
	background-color: #FFF;
}

/* cover style dark */
.portfolio-carousel.pci-cover-dark .pci-image-wrap::before {
	background-color: #000;
}
.portfolio-carousel.pci-cover-dark .portfolio-carousel-item:hover .pci-image-wrap::before {
	opacity: .75;
}
.portfolio-carousel.pci-cover-dark:not(.pci-caption-outside) .pci-caption-title,
.portfolio-carousel.pci-cover-dark:not(.pci-caption-outside) .pci-caption-category span {
	color: #FFF;
}


/* ------------------------------------------------------------- *
 * tt-Gallery
/* ------------------------------------------------------------- */

.tt-gallery {
}


/* tt-Gallery item 
=================== */
.tt-gallery-item {
	position: relative;
	overflow: hidden;
}
.isotope .tt-gallery-item {
	margin-bottom: 0;
}

/* tt-gallery image link */
.tt-gallery-image-wrap {
	position: relative;
	display: block;
	overflow: hidden;
}

/* tt-gallery image */
.tt-gallery-image {
	position: relative;
	z-index: 1;
}
.tt-gallery-image img {
}

/* if tt-gallery image as a background image */
.tt-gallery-image.bg-image {
	background-color: rgba(130, 130, 130, 0.1);
}

.isotope-item.iso-height-1 .tt-gallery-item .tt-gallery-image-wrap, 
.isotope-item.iso-height-2 .tt-gallery-item .tt-gallery-image-wrap,
.isotope-item.iso-height-1 .tt-gallery-item .tt-gallery-image, 
.isotope-item.iso-height-2 .tt-gallery-item .tt-gallery-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0;
}


/* tt-Gallery image hover 
========================== */

/* tt-gallery image hover icon */
.tt-gallery-image-icon {
	position: absolute;
	top: -10px;
	right: 0;
	width: 45px;
	height: 45px;
	line-height: 45px;
	background-color: #FF5F14;
	opacity: 0;
	visibility: hidden;
	text-align: center;
	font-size: 18px;
	color: #000;
	z-index: 3;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-o-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);

	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
a.tt-gallery-image-wrap:hover .tt-gallery-image-icon {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);

	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

/* show icon only if "tt-gallery-image-wrap" is a link!  */
.tt-gallery-image-wrap .tt-gallery-image-icon {
	display: none;
}
a.tt-gallery-image-wrap .tt-gallery-image-icon {
	display: block;
}

/* tt-gallery image hover zoom */
.ttg-hover-zoom a.tt-gallery-image-wrap .tt-gallery-image {
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.ttg-hover-zoom a.tt-gallery-image-wrap:hover .tt-gallery-image {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

/* tt-gallery image hover cover */
a.tt-gallery-image-wrap::before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 2;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

/* tt-gallery image hover cover dark */
.ttg-hover-dark a.tt-gallery-image-wrap:hover::before {
	opacity: .6;
	visibility: visible;
	background-color: #000;
}
.ttg-hover-dark .tt-gallery-image-icon {
	background-color: #FF5F14;
	color: #111;
	border-radius: 50%;
	font-size: 19px !important;
}

/* tt-gallery image hover cover light */
.ttg-hover-light a.tt-gallery-image-wrap:hover::before {
	opacity: .85;
	visibility: visible;
	background-color: #FFF;
}
.ttg-hover-light .tt-gallery-image-icon {
	background-color: #FF5F14;
	color: #111;
	border-radius: 50%;
	font-size: 19px !important;
}

/* tt-gallery image hover cover color */
.ttg-hover-color a.tt-gallery-image-wrap:hover::before {
	opacity: .5;
	visibility: visible;
	background-color: #FF5F14;
}
.ttg-hover-color .tt-gallery-image-icon {
	background-color: white;
	color: #111;
	border-radius: 50%;
	font-size: 19px !important;
}

/* tt-gallery image hover icon position (center) */
.ttg-hover-dark a.tt-gallery-image-wrap .tt-gallery-image-icon,
.ttg-hover-light a.tt-gallery-image-wrap .tt-gallery-image-icon,
.ttg-hover-color a.tt-gallery-image-wrap .tt-gallery-image-icon  {
	top: 50%;
	right: 50%;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 31px;
	-moz-transform: translate(50%, -50%) scale(0.5);
	-ms-transform: translate(50%, -50%) scale(0.5);
	-webkit-transform: translate(50%, -50%) scale(0.5);
	transform: translate(50%, -50%) scale(0.5);
}

.ttg-hover-dark a.tt-gallery-image-wrap:hover .tt-gallery-image-icon,
.ttg-hover-light a.tt-gallery-image-wrap:hover .tt-gallery-image-icon,
.ttg-hover-color a.tt-gallery-image-wrap:hover .tt-gallery-image-icon {
	-moz-transform: translate(50%, -50%) scale(1);
	-ms-transform: translate(50%, -50%) scale(1);
	-webkit-transform: translate(50%, -50%) scale(1);
	transform: translate(50%, -50%) scale(1);

	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	transition-delay: 0.3s;
}


/* tt-Gallery isotope items
============================ */
@media (max-width: 768px) {
	.tt-gallery .isotope.iso-col-2 .grid-sizer, 
	.tt-gallery .isotope.iso-col-3 .grid-sizer, 
	.tt-gallery .isotope.iso-col-4 .grid-sizer,

	.tt-gallery .isotope.iso-col-2 .isotope-item, 
	.tt-gallery .isotope.iso-col-3 .isotope-item, 
	.tt-gallery .isotope.iso-col-4 .isotope-item {
		width: 50%;
	}
}

/* Gallery caption hover effect */
.tt-gallery-item {
    position: relative;
    overflow: hidden;
}

.tt-gallery-caption {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 15px;
    
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    transition: all 0.3s ease-in-out;
}

.tt-gallery-image-wrap:hover .tt-gallery-caption {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

/* Adjust icon position when caption is shown */
.ttg-hover-dark a.tt-gallery-image-wrap:hover .tt-gallery-image-icon {
    top: 40%;  /* Move icon up a bit to make room for caption */
}


/* ------------------------------------------------------------- *
 * Portfolio gallery carousel
/* ------------------------------------------------------------- */

.portfolio-gallery-carousel {
}


/* ------------------------------------------------------------- *
 * Content toggle
/* ------------------------------------------------------------- */

.tt-content-toggle {
	position: relative;
}

/* content toggle inner */
.tt-con-toggle-inner {
	position: relative;
	overflow: hidden;
}
.tt-con-toggle-hidden {
	display: none;
}

/* content toggle trigger */
.tt-con-toggle-trigger {
	display: inline-block;
}
.tt-con-toggle-trigger > span {
	position: relative;
	display: inline-block;
	padding: 3px 0;
	font-size: 15px;
	font-weight: normal;
	font-style: italic;
	color: rgba(0, 0, 0, 0.5);
	cursor: pointer;
}
.tt-con-toggle-trigger > span:hover, 
.tt-con-toggle-trigger > span:focus {
}
.tt-con-toggle-trigger > span::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 2px;
	background-color: #FF5F14;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.tt-con-toggle-trigger > span:hover::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.tt-content-toggle .tt-con-toggle-less, 
.tt-content-toggle.tt-con-toggle-open .tt-con-toggle-more {
	display: none;
}
.tt-content-toggle.tt-con-toggle-open .tt-con-toggle-less {
	display: inline-block;
}


/* ------------------------------------------------------------- *
 * Portfolio single info
/* ------------------------------------------------------------- */

.portfolio-single-info {
}

.portfolio-info-text {
}


/* Portfolio info list
======================= */
.portfolio-info-list {
}
@media (max-width: 991px) {
	.portfolio-info-list {
		margin-top: 40px;
	}
}
.portfolio-info-list > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.portfolio-info-list > ul > li {
	position: relative;
	max-width: 100%;
	margin-bottom: 10px;
}

.portfolio-info-list .pi-list-heading {
	font-family: 'Playfair Display', serif;
	font-size: 19px;
	font-weight: bold;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 1px;
}

.portfolio-info-list .pi-list-cont {
	font-size: 16px;
	color: #666;
}
.portfolio-info-list .pi-list-cont a {
	word-wrap: break-word;
	text-decoration: underline;
	color: #333;
}
.portfolio-info-list .pi-list-cont a:hover {
	opacity: .8;
}


/* Portfolio info list inline
============================== */
.portfolio-info-list.pi-list-inline > ul > li {
	display: inline-block;
	max-width: 100%;
	vertical-align: top;
	padding: 0px 45px 0 0;
	margin: 12px 40px 12px 0;
}
.portfolio-info-list.pi-list-inline > ul > li:last-child {
	padding-right: 0;
	margin-right: 0;
}
.portfolio-info-list.pi-list-inline > ul > li::before {
	position: absolute;
	display: block;
	content: "";
	top: 50%;
	right: 0;
	width: 1px;
	height: 35px;
	margin-top: -18px;
	background-color: #DDD;
}
.portfolio-info-list.pi-list-inline > ul > li:last-child::before {
	display: none;
}

@media (max-width: 768px) {
	.portfolio-info-list.pi-list-inline > ul > li {
		display: block;
		margin-right: 0;
		padding: 0;
		text-align: left;
	}
	.portfolio-info-list.pi-list-inline > ul > li::before {
		display: none;
	}
}

.portfolio-info-list.pi-list-inline .pi-list-heading {
}


/* ------------------------------------------------------------- *
 * Portfolio single nav (Next/Prev project)
/* ------------------------------------------------------------- */

.portfolio-single-nav {
}


/* portfolio single nav item 
============================= */
.ps-nav-item {
	display: block;
	overflow: hidden;
}

.ps-nav-item::before { /* hover overlay */
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.ps-nav-item-inner {
	position: relative;
	display: table;
	width: 100%;
}

/* portfolio single nav image */
.ps-nav-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.ps-nav-item:hover .ps-nav-image {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

/* portfolio single nav content */
.ps-nav-content {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 350px;
	padding-left: 5%;
	padding-right: 5%;
	text-align: center;
	overflow: hidden;
}
@media (max-width: 1200px) {
	.ps-nav-content {
		height: 280px;
	}
}
@media (max-width: 992px) {
	.ps-nav-content {
		height: 220px;
	}
}
@media (max-width: 768px) {
	.ps-nav-content {
		height: 180px;
	}
}

/* portfolio single nav next */
.ps-nav-next {
	position: relative;
	background-color: #111;
}
.ps-nav-next .ps-nav-item {
	color: #FFF;
}
.ps-nav-next .ps-nav-item::before {
	opacity: .9;
	background-color: #111;
}
.ps-nav-next .ps-nav-item:hover::before {
	opacity: .7;
}
.ps-nav-next .ps-nav-title::after {
	background-color: #FF5F14;
}

/* portfolio single nav prev */
.ps-nav-prev {
	position: relative;
	background-color: #111;
}
.ps-nav-prev .ps-nav-item {
	color: #FFF;
}
.ps-nav-prev .ps-nav-item::before {
	opacity: .9;
	background-color: #111;
}
.ps-nav-prev .ps-nav-item:hover::before {
	opacity: .7;
}
.ps-nav-prev .ps-nav-title::after {
	background-color: #FF5F14;
}


/* portfolio single nav all */
.ps-nav-all {
	background-color: #efefef;
}
.ps-nav-all .ps-nav-item {
	color: #000;
}
.ps-nav-all .ps-nav-item::before {
	display: none;
}
.ps-nav-all .ps-nav-title::after {
	background-color: #111;
}

/* portfolio single nav icon */
.ps-nav-icon {
	position: relative;
	margin-bottom: 5px;
	font-size: 21px;
	z-index: 3;
}

/* portfolio single nav title */
.ps-nav-title {
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	z-index: 3;
}
@media (max-width: 768px) {
	.ps-nav-title {
	}
}
.ps-nav-title::after {
	position: absolute;
	content: "";
	max-width: 100%;
	height: 2px;
	background-color: #FF5F14;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.ps-nav-item:hover .ps-nav-title::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}


/* ----------------------------------------------------------------------- *
 * Lightgallery (lightbox plugin)
 * More info: http://sachinchoolur.github.io/lightGallery)
/* ----------------------------------------------------------------------- */

body.lg-on {
   overflow: hidden !important;
}
.lg-backdrop {
	z-index: 99999;
}
.lg-outer {
	z-index: 99999;
}

/* Lightgallery sub html (image caption) */
.lg-sub-html {
	font-size: 16px;
}
@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: 2px solid #FFF;
	border-radius: 0;
}
.lg-outer .lg-thumb-item img {
	position: absolute;
	left: 50%;
	top: 50%;
	max-width: inherit;
	width: 150%;
	height: auto;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/* Lightgallery autoplay progress bar improvements */
.lg-progress-bar {
	background-color: #333;
	height: 3px;
}
.lg-progress-bar .lg-progress {
	background-color: #a90707;
	height: 3px;
}

/* hide next/prev buttons on small screens */
@media (max-width: 768px) {
	.lg-actions .lg-next, .lg-actions .lg-prev {
		display: none;
	}
}


/* ---------------------------------------------------------------------- *
 *  Content carousel - CC
 *  Based on OWL Carousel: http://owlcarousel2.github.io/OwlCarousel2/
/* ---------------------------------------------------------------------- */

.owl-carousel {
}

.owl-carousel .owl-item {
	z-index: 9;
	overflow: hidden;
	/* image flickering fix */
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/* Page swiping fix on mobile devices */
.owl-carousel.owl-drag .owl-item {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}


/* Prev/Next nav buttons 
========================= */
.owl-nav {
	margin: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* owl-nav buttons */
.owl-carousel .owl-nav button.owl-prev, 
.owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 70px;
	line-height: 60px;
	text-align: center;
	font-size: 22px;
	color: #FFF;
	overflow: hidden;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.owl-carousel .owl-nav button.owl-prev::before, 
.owl-carousel .owl-nav button.owl-next::before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #FF5F14;
	z-index: -1;
	opacity: .6;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.owl-carousel .owl-nav button.owl-prev:hover, 
.owl-carousel .owl-nav button.owl-next:hover {
	width: 50px;
}
.owl-carousel .owl-nav button.owl-prev:focus, 
.owl-carousel .owl-nav button.owl-next:focus {
	outline: none;
}
.owl-carousel .owl-nav button.owl-prev {
	left: 0;
	padding-right: 3px;
}
.owl-carousel .owl-nav button.owl-next {
	right: 0;
	padding-left: 3px;
}

.owl-carousel .owl-nav button.owl-prev::after,
.owl-carousel .owl-nav button.owl-next::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.owl-carousel .owl-nav button.owl-prev::after {
	content: "\f053";
}
.owl-carousel .owl-nav button.owl-next::after {
	content: "\f054";
}

.owl-carousel:hover .owl-nav button.owl-prev {
	left: 0;
}
.owl-carousel:hover .owl-nav button.owl-next {
	right: 0;
}

@media (max-width: 992px) {
	.owl-carousel .owl-nav button.owl-prev, 
	.owl-carousel .owl-nav button.owl-next {
		top: 50%;
		width: 30px;
		height: 50px;
		line-height: 50px;
		font-size: 21px;
	}
	.owl-carousel .owl-nav button.owl-prev:hover,
	.owl-carousel .owl-nav button.owl-next:hover {
		width: 35px;
	}
}

/* Prev/Next buttons disabled (no loop) */
.owl-carousel .owl-nav button.owl-prev.disabled,
.owl-carousel .owl-nav button.owl-next.disabled {
	opacity: .3;
	cursor: default;
}
.owl-carousel .owl-nav button.owl-prev.disabled::before,
.owl-carousel .owl-nav button.owl-next.disabled::before {
	opacity: .6 !important;
}


/* Prev/Next nav buttons styles 
================================ */
/* Prev/Next buttons - show on hover */

@media (min-width: 992px) {
	.owl-carousel.nav-hover .owl-nav {
		opacity: 0;
		visibility: hidden;
	}
	.owl-carousel.nav-hover:hover .owl-nav {
		opacity: 1;
		visibility: visible;
	}
}

.owl-carousel.nav-hover:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top) .owl-nav button.owl-prev {
	left: -5px;
}
.owl-carousel.nav-hover:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top) .owl-nav button.owl-next {
	right: -5px;
}
.owl-carousel.nav-hover:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top):hover .owl-nav button.owl-prev {
	left: 0;
}
.owl-carousel.nav-hover:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top):hover .owl-nav button.owl-next {
	right: 0;
}

.owl-carousel.nav-hover.nav-rounded:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top) .owl-nav button.owl-prev {
	left: -20px;
}
.owl-carousel.nav-hover.nav-rounded:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top) .owl-nav button.owl-next {
	right: -20px;
}
.owl-carousel.nav-hover.nav-rounded:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top):hover .owl-nav button.owl-prev {
	left: 20px;
}
.owl-carousel.nav-hover.nav-rounded:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top):hover .owl-nav button.owl-next {
	right: 20px;
}


/* Prev/Next buttons light */
.owl-carousel.nav-light .owl-nav button.owl-prev, 
.owl-carousel.nav-light .owl-nav button.owl-next {
	color: #222;
}
.owl-carousel.nav-light .owl-nav button.owl-prev::before, 
.owl-carousel.nav-light .owl-nav button.owl-next::before {
	background-color: #FFF;
	opacity: 1;
}
.owl-carousel.nav-light .owl-nav button.owl-prev:hover, 
.owl-carousel.nav-light .owl-nav button.owl-next:hover {
	color: #FF5F14;
}

/* Prev/Next buttons dark */
.owl-carousel.nav-dark .owl-nav button.owl-prev, 
.owl-carousel.nav-dark .owl-nav button.owl-next {
	color: #FFF;
}
.owl-carousel.nav-dark .owl-nav button.owl-prev::before, 
.owl-carousel.nav-dark .owl-nav button.owl-next::before {
	background-color: #111;
	opacity: .4;
}

/* Prev/Next buttons rounded */
.owl-carousel.nav-rounded .owl-nav button.owl-prev, 
.owl-carousel.nav-rounded .owl-nav button.owl-next {
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 100px;
}
.owl-carousel.nav-rounded:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top) .owl-nav button.owl-prev:hover, 
.owl-carousel.nav-rounded:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top) .owl-nav button.owl-next:hover {
	width: 55px;
	height: 55px;
	line-height: 55px;
}
.owl-carousel.nav-rounded:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top):not(.nav-minimal) .owl-nav button.owl-prev {
	left: 20px;
}
.owl-carousel.nav-rounded:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top):not(.nav-minimal) .owl-nav button.owl-next {
	right: 20px;
}
@media (max-width: 992px) {
	.owl-carousel.nav-rounded .owl-nav button.owl-prev, 
	.owl-carousel.nav-rounded .owl-nav button.owl-next {
		width: 35px;
		height: 35px;
		line-height: 35px;
		font-size: 16px;
	}
	.owl-carousel.nav-rounded .owl-nav button.owl-prev:hover, 
	.owl-carousel.nav-rounded .owl-nav button.owl-next:hover {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
}

/* Prev/Next buttons minimal */
.owl-carousel.nav-minimal .owl-nav button.owl-prev, 
.owl-carousel.nav-minimal .owl-nav button.owl-next {
	width: 100px;
	height: 100px;
	min-height: 60px;
	font-size: 26px;
	color: #222;
}
@media (max-width: 992px) {
	.owl-carousel.nav-minimal .owl-nav button.owl-prev, 
	.owl-carousel.nav-minimal .owl-nav button.owl-next {
		width: 50px;
		height: 50px;
	}
}
.owl-carousel.nav-minimal.nav-light .owl-nav button.owl-prev, 
.owl-carousel.nav-minimal.nav-light .owl-nav button.owl-next {
	color: #FFF;
}

.owl-carousel.nav-minimal:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top) .owl-nav button.owl-prev:hover, 
.owl-carousel.nav-minimal:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top) .owl-nav button.owl-next:hover {
	width: 90px;
}
@media (max-width: 992px) {
	.owl-carousel.nav-minimal:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top) .owl-nav button.owl-prev:hover, 
	.owl-carousel.nav-minimal:not(.nav-bottom-right):not(.nav-outside):not(.nav-outside-top) .owl-nav button.owl-next:hover {
		width: 40px;
	}
}

.owl-carousel.nav-minimal .owl-nav button.owl-prev::before, 
.owl-carousel.nav-minimal .owl-nav button.owl-next::before {
	background-color: transparent !important;
}


/* Prev/Next nav buttons positions 
=================================== */
/* Prev/Next buttons position outside (left/right) */
.owl-carousel.nav-outside .owl-nav button.owl-prev, 
.owl-carousel.nav-outside .owl-nav button.owl-next {
	width: 40px;
	height: 40px;
	line-height: 40px;
}

.owl-carousel.nav-outside .owl-nav button.owl-prev,
.owl-carousel.nav-outside:hover .owl-nav button.owl-prev {
	left: -50px;
}
.owl-carousel.nav-outside .owl-nav button.owl-next,
.owl-carousel.nav-outside:hover .owl-nav button.owl-next {
	right: -50px;
}

@media (max-width: 1540px) {
	.owl-carousel.nav-outside .owl-nav button.owl-prev, 
	.owl-carousel.nav-outside .owl-nav button.owl-next {
		width: 32px;
		height: 32px;
		line-height: 32px;
		font-size: 21px;
	}
	.owl-carousel.nav-outside .owl-nav button.owl-prev,
	.owl-carousel.nav-outside:hover .owl-nav button.owl-prev {
		left: 0px;
	}
	.owl-carousel.nav-outside .owl-nav button.owl-next,
	.owl-carousel.nav-outside:hover .owl-nav button.owl-next {
		right: 0px;
	}
}

/* Prev/Next nav buttons position outside top */
.owl-carousel.nav-outside-top .owl-nav {
	position: absolute;
	top: -65px;
	right: 30px;
	width: 60px;
}
@media (max-width: 992px) {
	.owl-carousel.nav-outside-top .owl-nav {
		right: 15px;
	}
}
.tt-wrap .owl-carousel.nav-outside-top .owl-nav {
	right: 0;
}

.owl-carousel.nav-outside-top .owl-nav button.owl-prev, 
.owl-carousel.nav-outside-top .owl-nav button.owl-next {
	width: 28px;
	height: 28px;
	line-height: 28px;
	font-size: 17px;
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.owl-carousel.nav-outside-top .owl-nav button.owl-prev:hover::before, 
.owl-carousel.nav-outside-top .owl-nav button.owl-next:hover::before {
	opacity: 1;
}

.owl-carousel.nav-outside-top:hover .owl-nav button.owl-prev {
	left: 0;
}
.owl-carousel.nav-outside-top:hover .owl-nav button.owl-next {
	right: 0;
}

/* Prev/Next nav buttons position bottom right */
.owl-carousel.nav-bottom-right .owl-nav {
	position: absolute;
	top: auto;
	bottom: 85px;
	right: 3%;
	width: 92px;
}

.owl-carousel.nav-bottom-right .owl-nav button.owl-prev, 
.owl-carousel.nav-bottom-right .owl-nav button.owl-next {
	width: 44px;
	height: 44px;
	line-height: 44px;
	font-size: 21px;
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.owl-carousel.nav-bottom-right .owl-nav button.owl-prev::before, 
.owl-carousel.nav-bottom-right .owl-nav button.owl-next::before {
	opacity: .6;
}
.owl-carousel.nav-bottom-right .owl-nav button.owl-prev:hover::before, 
.owl-carousel.nav-bottom-right .owl-nav button.owl-next:hover::before {
	opacity: 1;
}

.owl-carousel.nav-bottom-right:hover .owl-nav button.owl-prev,
.owl-carousel.nav-bottom-right:hover .owl-nav button.owl-prev {
	left: 0;
}
.owl-carousel.nav-bottom-right:hover .owl-nav button.owl-next,
.owl-carousel.nav-bottom-right:hover .owl-nav button.owl-next {
	right: 0;
}

.owl-carousel.nav-bottom-right.nav-light .owl-nav button.owl-prev::before, 
.owl-carousel.nav-bottom-right.nav-light .owl-nav button.owl-next::before {
	opacity: .85;
}
.owl-carousel.nav-bottom-right.nav-light .owl-nav button.owl-prev:hover::before, 
.owl-carousel.nav-bottom-right.nav-light .owl-nav button.owl-next:hover::before {
	opacity: 1;
}

.owl-carousel.nav-bottom-right.nav-light .owl-nav button.owl-prev.disabled::before,
.owl-carousel.nav-bottom-right.nav-light .owl-nav button.owl-next.disabled::before {
	opacity: 1 !important;
}

@media (min-width: 768px) {
	.owl-carousel.dots-right.nav-bottom-right .owl-nav {
		bottom: 110px;
	}
	.owl-carousel.dots-outside.nav-bottom-right .owl-nav {
		bottom: 85px;
	}
}
@media (max-width: 992px) {
	.owl-carousel.nav-bottom-right .owl-nav {
		bottom: 60px;
	}
}
@media (max-width: 768px) {
	.owl-carousel.nav-bottom-right .owl-nav {
		right: 5%;
		width: 84px;
	}
	.owl-carousel.nav-bottom-right .owl-nav button.owl-prev, 
	.owl-carousel.nav-bottom-right .owl-nav button.owl-next {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 18px;
	}
	.owl-carousel.dots-outside.nav-bottom-right .owl-nav {
		bottom: 55px;
	}
}


/* Dots 
======== */
.owl-dots, .owl-nav.disabled + .owl-dots {
	position: absolute;
	bottom: 20px;
	margin-top: 0px;
	left: 50%;
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.owl-dots button.owl-dot {
	display: inline-block;
}
.owl-dots button.owl-dot:focus {
	outline: none;
}

.owl-dots button.owl-dot span {
	display: inline-block;
	width: 13px;
	height: 13px;
	margin: 0px 3px;
	background-color: transparent;
	border: 3px solid #7d7d7d;
	border-radius: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.owl-dots button.owl-dot.active span, 
.owl-dots button.owl-dot:hover span {
	border-color: #FF5F14;
}
.owl-dots button.owl-dot.active span {
	width: 16px !important;
	height: 16px !important;
}

@media (max-width: 768px) {
	.owl-dots, .owl-nav.disabled + .owl-dots {
		bottom: 10px;
	}
}

/* dots rounded */
.dots-rounded .owl-dots button.owl-dot span {
	border-radius: 50px;
}

/* if background is main color */
.bg-main .owl-dots button.owl-dot span {
	border-color: #000;
}
.bg-main .owl-dots button.owl-dot.active span, 
.bg-main .owl-dots button.owl-dot:hover span {
	border-color: #000;
}


/* Dots positions
=================== */
/* Dots position outside */
.dots-outside {
	margin-bottom: 80px;
}
.dots-outside .owl-dots, .dots-outside .owl-nav.disabled + .owl-dots {
	bottom: -55px;
}

/* Dots position left */
.dots-left .owl-dots, .dots-left .owl-nav.disabled + .owl-dots {
	left: 3%;
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

/* Dots position right */
.dots-right .owl-dots, .dots-right .owl-nav.disabled + .owl-dots {
	left: inherit;
	right: 3%;
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

/* Dots position center right */
.dots-center-right .owl-dots {
	position: absolute;
	top: 50%;
	bottom: auto !important;
	left: auto !important;
	right: 15px;
	text-align: right;
	-moz-transform: translateY(-50%) !important;
	-ms-transform: translateY(-50%) !important;
	-webkit-transform: translateY(-50%) !important;
	transform: translateY(-50%) !important;
}
.dots-center-right .owl-dots button.owl-dot {
	display: block;
	line-height: 0;
}
.dots-center-right .owl-dots button.owl-dot span {
	margin: 5px 0;
}


/* CC item 
=========== */
.owl-carousel .cc-item {
	position: relative;
	display: block;
	overflow: hidden;
}


/* CC item image
================= */
.owl-carousel .owl-item .cc-image {
	position: relative;
	display: block;
	min-height: 300px;
	z-index: 1;
}
.owl-carousel .owl-item .cc-image.bg-image {
	background-color: rgba(130, 130, 130, 0.1);
}

.owl-carousel .owl-item img {
	display: block;
	width: auto;
	max-width: 100%;
	margin: 0 auto;
}


/* CC link 
=========== */
.cc-link {
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
}
.cc-link-icon {
	position: absolute;
	display: inline-block;
	top: -10px;
	right: 0;
	width: 45px;
	height: 45px;
	line-height: 45px;
	background-color: #FF5F14;
	text-align: center;
	font-size: 18px;
	color: #000;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-o-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.cc-link:hover .cc-link-icon {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}


/* CC item hover 
================= */
/* CC item hover zoom */
.owl-carousel.cc-hover-zoom .cc-item {
	overflow: hidden;
}
.owl-carousel.cc-hover-zoom .cc-item .cc-image,
.owl-carousel.cc-hover-zoom .cc-item img {
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.owl-carousel.cc-hover-zoom .cc-item:hover .cc-image,
.owl-carousel.cc-hover-zoom .cc-item:hover img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}


/* CC item size (for background images only!)
============================================== */
.owl-carousel.owl-size-1 .cc-item .cc-image.bg-image { padding-bottom: 10% }
.owl-carousel.owl-size-2 .cc-item .cc-image.bg-image { padding-bottom: 20% }
.owl-carousel.owl-size-3 .cc-item .cc-image.bg-image { padding-bottom: 30% }
.owl-carousel.owl-size-4 .cc-item .cc-image.bg-image { padding-bottom: 40% }
.owl-carousel.owl-size-5 .cc-item .cc-image.bg-image { padding-bottom: 50% }
.owl-carousel.owl-size-6 .cc-item .cc-image.bg-image { padding-bottom: 60% }
.owl-carousel.owl-size-7 .cc-item .cc-image.bg-image { padding-bottom: 70% }
.owl-carousel.owl-size-8 .cc-item .cc-image.bg-image { padding-bottom: 80% }
.owl-carousel.owl-size-9 .cc-item .cc-image.bg-image { padding-bottom: 90% }
.owl-carousel.owl-size-10 .cc-item .cc-image.bg-image { padding-bottom: 100% }
.owl-carousel.owl-size-11 .cc-item .cc-image.bg-image { padding-bottom: 110% }
.owl-carousel.owl-size-12 .cc-item .cc-image.bg-image { padding-bottom: 120% }
.owl-carousel.owl-size-13 .cc-item .cc-image.bg-image { padding-bottom: 130% }
.owl-carousel.owl-size-14 .cc-item .cc-image.bg-image { padding-bottom: 140% }
.owl-carousel.owl-size-15 .cc-item .cc-image.bg-image { padding-bottom: 150% }
.owl-carousel.owl-size-16 .cc-item .cc-image.bg-image { padding-bottom: 160% }
.owl-carousel.owl-size-17 .cc-item .cc-image.bg-image { padding-bottom: 170% }
.owl-carousel.owl-size-18 .cc-item .cc-image.bg-image { padding-bottom: 180% }
.owl-carousel.owl-size-19 .cc-item .cc-image.bg-image { padding-bottom: 190% }
.owl-carousel.owl-size-20 .cc-item .cc-image.bg-image { padding-bottom: 200% }

@media (max-width: 1024px) {
	.owl-carousel.owl-size-8 .cc-item .cc-image.bg-image,
	.owl-carousel.owl-size-9 .cc-item .cc-image.bg-image,
	.owl-carousel.owl-size-10 .cc-item .cc-image.bg-image,
	.owl-carousel.owl-size-11 .cc-item .cc-image.bg-image,
	.owl-carousel.owl-size-12 .cc-item .cc-image.bg-image,
	.owl-carousel.owl-size-13 .cc-item .cc-image.bg-image,
	.owl-carousel.owl-size-14 .cc-item .cc-image.bg-image,
	.owl-carousel.owl-size-15 .cc-item .cc-image.bg-image,
	.owl-carousel.owl-size-16 .cc-item .cc-image.bg-image,
	.owl-carousel.owl-size-17 .cc-item .cc-image.bg-image,
	.owl-carousel.owl-size-18 .cc-item .cc-image.bg-image,
	.owl-carousel.owl-size-19 .cc-item .cc-image.bg-image,
	.owl-carousel.owl-size-20 .cc-item .cc-image.bg-image { 
		padding-bottom: 70% 
	}
}

/* full height (for desktop only!) */
@media (min-width: 992px) {
	.owl-carousel.owl-size-full .cc-item .cc-image.bg-image { 
		height: calc(100vh - 80px); /* minus same as header height */
		min-height: calc(100vh - 80px); /* minus same as header height */
	}
	body.header-transparent-on .owl-carousel.owl-size-full .cc-item .cc-image.bg-image { 
		height: 100vh;
		min-height: 100vh;
	}
}

/* full height (for small screen only!) */
@media (max-width: 991px) {
	.owl-carousel.owl-size-full-m .cc-item .cc-image.bg-image { 
		height: calc(100vh - 64px); /* minus same as mobile header height */
		min-height: calc(100vh - 64px); /* minus same as mobile header height */
	}
}

/* almost full height (for desktop only!) */
@media (min-width: 992px) {
	.owl-carousel.owl-size-almost-full .cc-item .cc-image.bg-image { 
		height: calc(90vh - 80px); /* minus same as header height */
		min-height: calc(90vh - 80px); /* minus same as header height */
	}
	body.header-transparent-on .owl-carousel.owl-size-almost-full .cc-item .cc-image.bg-image { 
		height: 90vh;
		min-height: 90vh;
	}
}

/* almost full height (for small screen only!) */
@media (max-width: 991px) {
	.owl-carousel.owl-size-almost-full-m .cc-item .cc-image.bg-image { 
		height: calc(90vh - 64px); /* minus same as mobile header height */
		min-height: calc(90vh - 64px); /* minus same as mobile header height */
	}
}


/* owl elements 
================ */
/* owl video */
.owl-carousel .owl-video-wrapper {
	z-index: 2;
}

/* owl video play icon */
.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background-color: rgba(0, 0, 0, 0.7);
	background-position: center;
	cursor: pointer;
	z-index: 1;
	border-radius: 80px;
	-webkit-backface-visibility: hidden;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.owl-carousel .owl-video-play-icon:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

/* cursor grab icon */
.owl-carousel.cursor-grab .owl-stage {
	cursor: -webkit-grab;
	cursor: grab;
}
.owl-carousel.cursor-grab .owl-stage:active {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}


/* If owl lazy loading enabled 
=============================== */
.owl-lazy-wrap {
	position: relative;
	background-color: rgba(130, 130, 130, 0.1);
}
.owl-lazy {
}
.owl-lazy.bg-image {
}
.owl-lazy-loader {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
}
.owl-lazy-loader.owl-lazy-loading {
	background-image: url(../img/loader.gif);
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.owl-carousel .owl-item .owl-lazy:not([src]), 
.owl-carousel .owl-item .owl-lazy[src^=""] {
	max-height: inherit;
}


/* ------------------------------------------------------------- *
 * Counter Up
/* ------------------------------------------------------------- */

.tt-counter-up-wrap {
	position: relative;
	padding: 50px 0;
	text-align: center;
	z-index: 3;
}
@media (max-width: 992px) {
	.tt-counter-up-wrap {
		padding: 20px 0;
	}
}

/* counter up icon */
.tt-counter-up-icon {
	margin-bottom: 30px;
	font-size: 42px;
	line-height: 1;
}
@media (max-width: 992px) {
	.tt-counter-up-icon {
		font-size: 48px;
	}
}
.tt-counter-up-wrap:hover .tt-counter-up-icon {
}

/* counter up number */
.tt-counter-up {
	position: relative;
	display: inline-block;
	font-family: 'Playfair Display',serif;
	font-size: 64px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: 1px;
	z-index: 2;
}
@media (max-width: 992px) {
	.tt-counter-up {
		font-size: 48px;
	}
}

/* counter up extension */
.tt-counter-up-extension {
	display: inline-block;
	font-size: 42px;
	font-weight: bold;
	font-weight: 700;
}

/* counter up title */
.tt-counter-up-title {
	margin: 30px 0 20px 0;
	font-family: 'Playfair Display', serif;
	font-size: 21px;
}

/* counter up text */
.tt-counter-up-text {
}


/* Counter up styles 
===================== */
/* counter up shadow */
.tt-counter-up-wrap.tt-cup-shadow .tt-counter-up,
.tt-counter-up-wrap.tt-cup-shadow .tt-counter-up-extension {
	text-shadow: 5px -7px #FF5F14;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.tt-counter-up-wrap.tt-cup-shadow:hover .tt-counter-up,
.tt-counter-up-wrap.tt-cup-shadow:hover .tt-counter-up-extension {
	text-shadow: 11px -9px #FF5F14;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/* if background is dark (used class "bg-dark") */
.bg-dark .tt-counter-up {
	color: #FF5F14;
}
.bg-dark .tt-counter-up-extension {
	color: #FF5F14;
}
.bg-dark .tt-counter-up-wrap.tt-cup-shadow .tt-counter-up,
.bg-dark .tt-counter-up-wrap.tt-cup-shadow .tt-counter-up-extension {
	text-shadow: 5px -7px rgba(255, 255, 255, 0.07);
}
.bg-dark .tt-counter-up-wrap.tt-cup-shadow:hover .tt-counter-up,
.bg-dark .tt-counter-up-wrap.tt-cup-shadow:hover .tt-counter-up-extension {
	text-shadow: 11px -9px rgba(255, 255, 255, 0.07);
}

/* if background is main (used class "bg-main") */
.bg-main .tt-counter-up-wrap.tt-cup-shadow .tt-counter-up,
.bg-main .tt-counter-up-wrap.tt-cup-shadow .tt-counter-up-extension {
	text-shadow: 5px -7px #FFF;
}
.bg-main .tt-counter-up-wrap.tt-cup-shadow:hover .tt-counter-up,
.bg-main .tt-counter-up-wrap.tt-cup-shadow:hover .tt-counter-up-extension {
	text-shadow: 11px -9px #FFF;
}


/* ------------------------------------------------------------- *
 * Clients carousel
/* ------------------------------------------------------------- */

.clients-carousel {
}

.clients-carousel .owl-carousel.cc-hover-zoom .cc-item {
	padding: 15px 0;
}
.clients-carousel .owl-carousel .cc-item img {
	max-width: 65% !important;
}


/* ------------------------------------------------------------- *
 * Team member
/* ------------------------------------------------------------- */

/* team member social buttons */
.tt-team-member .social-buttons {
	position: absolute;
	top: 0%;
	right: 7%;
}


/* ------------------------------------------------------------- *
 * Thumbnail list
/* ------------------------------------------------------------- */

.tt-thumb-list {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}
.tt-thumb-list > li {
	float: left;
}

/* thumbnail list item */
.tt-thumb-list .tt-thumb-list-item {
	display: block;
	background-color: rgba(130, 130, 130, 0.1);
	padding-bottom: 100%;
	border: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.tt-thumb-list .tt-thumb-list-item:hover { 
	opacity: .8;
}

/* thumbnail list columns */
.tt-thumb-list.tl-col-2 > li { width: 50%; }
.tt-thumb-list.tl-col-3 > li { width: 33.33333333%; }
.tt-thumb-list.tl-col-4 > li { width: 25%; }
.tt-thumb-list.tl-col-5 > li { width: 20%; }
.tt-thumb-list.tl-col-6 > li { width: 16.66666666666667%; }

@media (max-width: 992px) {
	.tt-thumb-list.tl-col-5 > li,
	.tt-thumb-list.tl-col-6 > li { 
		width: 25%; 
	}
}
@media (max-width: 768px) {
	.tt-thumb-list.tl-col-3 > li,
	.tt-thumb-list.tl-col-4 > li,
	.tt-thumb-list.tl-col-5 > li,
	.tt-thumb-list.tl-col-6 > li { 
		width: 33.33333333%; 
	}
}
@media (max-width: 480px) {
	.tt-thumb-list.tl-col-4 > li,
	.tt-thumb-list.tl-col-5 > li,
	.tt-thumb-list.tl-col-6 > li { 
		width: 50%; 
	}
}

/* thumbnail list gutter (more space between items) */
.tt-thumb-list.tl-gutter-1 > li { padding: 1px; }
.tt-thumb-list.tl-gutter-2 > li { padding: 2px; }
.tt-thumb-list.tl-gutter-3 > li { padding: 3px; }
.tt-thumb-list.tl-gutter-4 > li {padding: 4px;}
.tt-thumb-list.tl-gutter-5 > li { padding: 5px; }


/* ------------------------------------------------------------- *
 * Blog list
/* ------------------------------------------------------------- */

#blog-list {
}


/* Blog list item
================== */
.blog-list-item {
}
@media (max-width: 768px) {
	.blog-list-item {
		margin-bottom: 30px;
	}
}

/* blog list item image */
.bli-image-wrap {
	position: relative;
	display: block;
	overflow: hidden;
}
.bli-image {
	display: block;
	background-color: rgba(130, 130, 130, 0.1);
}
.blog-list-item:hover .bli-image {
}

/* blog list item image height (for background images only!) */
.bli-image.bg-image {
	padding-bottom: 65%;
}
.isotope.iso-col-1 .bli-image.bg-image {
	padding-bottom: 55%;
}

.isotope-item.iso-height-1 .bli-image.bg-image {
	padding-bottom: 65%;
}
.isotope-item.iso-height-2 .bli-image.bg-image {
	padding-bottom: 120%;
}
#blog-list .isotope-item.iso-height-1 > div, 
#blog-list .isotope-item.iso-height-1 > a, 
#blog-list .isotope-item.iso-height-1 > article, 
#blog-list .isotope-item.iso-height-1 > figure,
#blog-list .isotope-item.iso-height-2 > div, 
#blog-list .isotope-item.iso-height-2 > a, 
#blog-list .isotope-item.iso-height-2 > article, 
#blog-list .isotope-item.iso-height-2 > figure {
	padding-bottom: 0;
}

/* blog list item image icon */
.bli-image-icon {
	position: absolute;
	display: inline-block;
	top: -10px;
	right: 0;
	width: 45px;
	height: 45px;
	line-height: 45px;
	background-color: #FF5F14;
	text-align: center;
	font-size: 18px;
	color: #000;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-o-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.bli-image-wrap:hover .bli-image-icon {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);

	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

/* blog list item info */
.bli-info {
	position: relative;
	padding: 2% 3% 3% 3%;
}
@media (min-width: 992px) {
	.bli-info {
		padding: 5% 7% 7% 7%;
	}
	.isotope.iso-gutter-2 .bli-info {
		padding: 3% 4% 4% 4%;
	}
	.isotope.iso-gutter-3 .bli-info,
	.isotope.iso-gutter-4 .bli-info,
	.isotope.iso-gutter-5 .bli-info,
	.isotope.iso-gutter-6 .bli-info {
		padding: 3% 0 0 0;
	}

	.isotope.iso-col-1 .bli-info {
		padding-left: 0;
		padding-right: 0;
	}
	.isotope.iso-col-1 .bli-image-wrap + .bli-info {
		padding-left: 7%;
		padding-right: 7%;
		padding-bottom: 0;
	}
}

.bli-category {
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: normal;
	font-style: italic;
	color: #888;
}
.bli-category span {
	position: relative;
	display: inline-block;
}
.bli-category span ~ span:not(:empty)::before {
	content: ", ";
}
.bli-category a {
	position: relative;
	display: inline-block;
	color: #08b396;
}
.bli-category a:hover {
}
.bli-category a::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 1px;
	background-color: #08b396;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.bli-category a:hover::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.bli-title {
	display: block;
}
.bli-title, 
.bli-title h2 {
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 28px;
	color: #333;
	line-height: 1.4;
}
.bli-title h2 {
	display: inline;
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(transparent calc(100% - 2px),currentColor 2px);
	background-image: linear-gradient(transparent calc(100% - 2px),currentColor 2px);
	background-image: -ms-linear-gradient(transparent 95%,currentColor 2px);
	-webkit-transition: 0.6s cubic-bezier(.215,.61,.355,1);
	-o-transition: 0.6s cubic-bezier(.215,.61,.355,1);
	transition: 0.6s cubic-bezier(.215,.61,.355,1);
	background-size: 0 96%;
}
.bli-title:hover h2 {
	background-size: 100% 96%;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.bli-title:hover, 
.bli-title:focus,
.bli-title h2:hover, 
.bli-title h2:focus {
	color: #000;
}
@media (min-width: 992px) {
	.isotope.iso-col-1 .bli-title, 
	.isotope.iso-col-1 .bli-title h2 {
		font-size: 40px;
	}
	body.tt-sidebar-on .isotope.iso-col-1 .bli-title, 
	body.tt-sidebar-on .isotope.iso-col-1 .bli-title h2 {
		font-size: 42px;
	}
}
@media (max-width: 991px) {
	.bli-title, 
	.bli-title h2 {
		font-size: 26px;
	}
}

.bli-meta {
	margin-top: 10px;
	font-size: 15px;
	font-weight: normal;
}
.bli-meta a {
	position: relative;
	padding-bottom: 2px;
	color: #333;
}
.bli-meta a:hover {
	color: #000;
}
.bli-meta a::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 1px;
	background-color: #333;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.bli-meta a:hover::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/* blog list item description */
.bli-desc {
	margin-top: 25px;
}

/* blog list item read more button */
.bli-read-more {
}

.bli-read-more.bli-read-more.btn.btn-dark {
	margin: 30px 0 0 0;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.bli-read-more.bli-read-more.btn.btn-dark:hover,
.bli-read-more.bli-read-more.btn.btn-dark:active {
	color: #222;
}
.bli-read-more.btn.btn-dark::before {
	background-color: #FF5F14;
}
.bli-read-more.bli-read-more.btn.btn-dark.btn-sm {
	padding: 13px 20px;
	font-size: 12px;
}


/* If isotope iso-col-1 enabled
================================ */
@media (min-width: 768px) {
	#blog-list .isotope.iso-col-1 .blog-list-item {
		margin-bottom: 80px;
	}
	#blog-list .isotope.iso-col-1 .isotope-item:last-child .blog-list-item {
		margin-bottom: 30px;
	}
	
	#blog-list.blog-list-archive .isotope.iso-col-1 .blog-list-item {
		margin-bottom: 50px;
	}

	#blog-list .isotope.iso-col-1 .isotope-item.iso-height-1 .bli-image.bg-image {
		padding-bottom: 50%;
	}
}


/* Blog list archive 
===================== */
@media (min-width: 768px) {
	.blog-list-archive .blog-list-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	.blog-list-archive .blog-list-item::after { /* clear fix */
		content: "";
		display: table;
		clear: both;
	}

	/* blog list archive item image */
	.blog-list-archive .isotope-item .bli-image-wrap {
		position: relative;
		float: left;
		display: block;
		width: 40%;
		margin-right: 40px;
		padding: 0;
	}
	body.tt-sidebar-on .blog-list-archive .isotope-item .bli-image-wrap {
		width: 35%;
		margin-right: 30px;
	}
	
	/* blog list archive item background image */
	.blog-list-archive .isotope-item .bli-image.bg-image {
		padding-bottom: 70%;
	}
	body.tt-sidebar-on .blog-list-archive .isotope-item .bli-image.bg-image {
		padding-bottom: 115%;
	}

	/* blog list archive item info */
	.blog-list-archive .isotope-item .bli-info {
		position: relative;
		display: table;
		max-width: 800px;
		padding: 0 !important;
	}

	/* blog list archive item title */
	.blog-list-archive .isotope-item .bli-title,
	.blog-list-archive .isotope-item .bli-title h2 {
		margin: 0;
		font-size: 34px;
	}
	body.tt-sidebar-on .blog-list-archive .isotope-item .bli-title,
	body.tt-sidebar-on .blog-list-archive .isotope-item .bli-title h2 {
		font-size: 30px;
	}

	/* blog list archive item meta */
	.blog-list-archive .isotope-item .bli-meta {
		margin-top: 10px;
	}

	/* blog list archive item description */
	.blog-list-archive .isotope-item .bli-desc {
		margin-top: 15px;
		margin-bottom: 0;
		font-size: 17px;
	}
}

/* blog list archive item background image */
@media (max-width: 1200px) {
	.blog-list-archive .isotope-item .bli-image.bg-image {
		padding-bottom: 100%;
	}
}
@media (max-width: 768px) {
	.blog-list-archive .isotope-item .bli-image.bg-image {
		padding-bottom: 55%;
	}
}


/* ------------------------------------------------------------- *
 * Blog list carousel
/* ------------------------------------------------------------- */

.blog-list-carousel {
}

/* carousel blog list item (no effect if data-margin enabled) */
.blog-list-carousel .owl-carousel:not([data-margin]) .blog-list-item {
	margin-bottom: 0;
}
.blog-list-carousel .owl-carousel:not([data-margin]) .owl-item:nth-child(even) .blog-list-item {
	background-color: #f9f8e5;
}
.blog-list-carousel .owl-carousel:not([data-margin]) .owl-item:nth-child(odd) .blog-list-item {
}

/* item image */
.blog-list-carousel .bli-image {
	padding-bottom: 70%;
}
.blog-list-carousel .owl-carousel:not([data-margin]) .bli-image-icon {
}

/* item info */
.blog-list-carousel .bli-info {
	z-index: 2;
}
.blog-list-carousel .bli-info {
	padding: 10% 7% 11% 7%;
}
.blog-list-carousel .owl-carousel[data-margin] .bli-info {
	padding: 4% 5% 10% 5%;
}

.blog-list-carousel .bli-category {
	font-size: 15px;
}
.blog-list-carousel .owl-carousel:not([data-margin]) .bli-category {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.blog-list-carousel .bli-title, 
.blog-list-carousel .bli-title h2 {
	font-size: 22px;
}
.blog-list-carousel .owl-carousel:not([data-margin]) .bli-title, 
.blog-list-carousel .owl-carousel:not([data-margin]) .bli-title h2 {
	font-size: 22px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.blog-list-carousel .owl-carousel:not([data-margin]) .bli-meta {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.blog-list-carousel .owl-carousel:not([data-margin]) .bli-info .bli-desc {
	display: none;
}

.blog-list-carousel .owl-carousel:not([data-margin]) .bli-read-more {
	display: none;
}

/* item hover (no effect if data-margin enabled) */
.blog-list-carousel .owl-carousel:not([data-margin]) .bli-info::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	background-color: #fff69e;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.blog-list-carousel .owl-carousel:not([data-margin]) .blog-list-item:hover .bli-info::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.blog-list-carousel .owl-carousel:not([data-margin]) .blog-list-item:hover .bli-category,
.blog-list-carousel .owl-carousel:not([data-margin]) .blog-list-item:hover .bli-category a,
.blog-list-carousel .owl-carousel:not([data-margin]) .blog-list-item:hover .bli-title, 
.blog-list-carousel .owl-carousel:not([data-margin]) .blog-list-item:hover .bli-title h2,
.blog-list-carousel .owl-carousel:not([data-margin]) .blog-list-item:hover .bli-meta,
.blog-list-carousel .owl-carousel:not([data-margin]) .blog-list-item:hover .bli-meta a {
	color: #000;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;

	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.blog-list-carousel .owl-carousel:not([data-margin]) .bli-category a::after {
	background-color: #000;
	z-index: 2;
}

/* blog list carousel nav position */
.blog-list-carousel .owl-carousel:not(.nav-outside-top):not(.nav-bottom-right) .owl-nav button.owl-prev, 
.blog-list-carousel .owl-carousel:not(.nav-outside-top):not(.nav-bottom-right) .owl-nav button.owl-next {
	top: 34%;
}
@media (max-width: 992px) {
	.blog-list-carousel .owl-carousel:not(.nav-outside-top):not(.nav-bottom-right) .owl-nav button.owl-prev, 
	.blog-list-carousel .owl-carousel:not(.nav-outside-top):not(.nav-bottom-right) .owl-nav button.owl-next {
		top: 34%;
	}
}


/* ------------------------------------------------------------- *
 * 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 
==================== */
.blog-single-post {
}
.blog-single-post-inner {
	position: relative;
}

/* blog single post featured image */
#blog-single-featured-image-holder {
}
.blog-single-featured-image-inner {
}

.blog-single-featured-image {
	display: block;
}

.blog-single-featured-image.bg-image { /* for background image height */
	padding-bottom: 50%;
}
@media (max-width: 992px) {
	.blog-single-featured-image.bg-image { /* for background image height */
		padding-bottom: 60%;
	}
}
@media (max-width: 768px) {
	.blog-single-featured-image.bg-image { /* for background image height */
		padding-bottom: 75%;
	}
}

/* blog single post heading */
.blog-single-post-heading {
	position: relative;
	padding: 0 0 5% 0;
	z-index: 1;
}
.blog-single-featured-image + .blog-single-post-heading {
	padding: 3% 0 1% 0;
}
.blog-single-post-title {
	margin: 0;
	font-family: 'Playfair Display',serif;
	font-size: 48px;
	font-weight: bold;
	color: #333;
}
@media (max-width: 992px) {
	.blog-single-post-title {
		font-size: 28px;
	}
}

.blog-single-post-category {
	margin-bottom: 15px;
	font-size: 17px;
	font-weight: normal;
	font-style: italic;
	color: #888;
}
.blog-single-post-category span {
	position: relative;
	display: inline-block;
	margin-bottom: 3px;
}
.blog-single-post-category span ~ span:not(:empty)::before {
	content: ", ";
}
.blog-single-post-category a {
	position: relative;
	display: inline-block;
	color: #08b396;
}
.blog-single-post-category a:hover {
}
.blog-single-post-category a::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 1px;
	background-color: #08b396;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.blog-single-post-category a:hover::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/* blog single post content */
.post-content {
}

/* blog single post image */
.single-post-image {
	margin: 0;
}
.sp-image-wrap {
	position: relative;
	display: block;
}
.sp-image {
	padding-bottom: 60%;
}
img.sp-image {
	padding-bottom: 0;
}
.single-post-image-caption {
}


/* Blog single slider 
====================== */
.blog-single-slider {
}

.post-content .owl-carousel {
	margin: 30px 0 30px 0;
}
.post-content .owl-carousel.dots-outside {
	margin-bottom: 60px;
}
.post-content .owl-carousel .cc-item {
	margin: 0;
	padding: 0;
}

.post-content .owl-carousel .single-post-image {
	margin: 0;
}


/* Blog single attributes 
========================== */
.blog-single-attributes {
	margin-bottom: 50px;
}

/* blog single meta */
.blog-single-meta-wrap {
	overflow: hidden;
}

.bs-meta-author-avatar {
	position: relative;
	display: block;
	float: left;
	width: 40px;
	height: 40px;
	background-color: rgba(130, 130, 130, 0.1);
	margin-top: 5px;
	margin-right: 12px;
	border-radius: 50%;
}

.blog-single-meta {
	float: left;
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-weight: normal;
	overflow: hidden;
	list-style: none;
}
.blog-single-meta > li {
}

.bs-meta-posted-by {
	font-weight: normal;
}
.bs-meta-posted-by a {
	position: relative;
	color: #333;
}
.bs-meta-posted-by a:hover {
}
.bs-meta-posted-by a::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 1px;
	background-color: #666;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.bs-meta-posted-by a:hover::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.bs-meta-published {
}

/* blog single links */
.blog-single-links {
	margin: 0;
	padding: 0;
	text-align: right;
	font-size: 15px;
	color: #333;
	line-height: 1.5;
	list-style: none;
}
.blog-single-links > li {
	display: inline-block;
	margin-left: 5px;
}
.blog-single-links a {
	display: inline-block;
	font-weight: bold;
	font-weight: 700;
	color: #333;
}
.blog-single-links a:hover {
}

/* blog single comment count */
.blog-single-comment-count {
}

.blog-single-comment-count .btn.btn-gray:hover, 
.blog-single-comment-count .btn.btn-gray:active {
	color: #FFF !important;
}
.blog-single-comment-count .btn.btn-gray {
	padding: 12px;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.blog-single-comment-count .btn.btn-gray::before {
	background-color: #222;
}

/* blog single tags */
.blog-single-tags {
	padding: 40px 0;
	font-size: 16px;
	font-weight: bold;
	font-weight: 700;
	overflow: hidden;
	margin-top: 60px;
	overflow: hidden;
	border-top: 1px solid rgba(150, 150, 150, 0.2);
}
.blog-single-tags span {
	color: #333;
}
.blog-single-tags > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.blog-single-tags > ul > li {
	float: left;
	margin: 3px;
}
.blog-single-tags a {
	position: relative;
	display: block;
	background-color: rgba(160, 160, 160, 0.14);
	padding: 2px 6px;
	font-size: 14px;
	font-weight: normal;
	color: #111;
	overflow: hidden;
	z-index: 1;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;

	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.blog-single-tags a:hover {
	color: #FFF;
}
.blog-single-tags a::before { 
	position: absolute;
	content: "";
	z-index: -1;
	height: 100%;
	background-color: #222;
	left: 0;
	right: 0px;
	bottom: 0px;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.blog-single-tags a:hover::before {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.blog-single-tags a:hover {
}


/* Blog single post share 
========================== */
.blog-single-share {
}
.blog-single-share > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.blog-single-share > ul > li {
	display: inline-block;
}
.bss-text {
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: bold;
	font-weight: 700;
}

/* blog single post share fixed bottom (effect only on small screens!!!) */
@media (max-width: 992px) {
	.blog-single-share.bss-fixed-bottom {
		position: fixed;
		top: auto;
		bottom: -1px;
		left: 0;
		right: 0;
		background-color: rgba(255, 255, 255, 0.85);
		padding: 0;
		text-align: center;
		z-index: 99991;
	}
	.blog-single-share.bss-fixed-bottom .bss-text {
		display: none !important;
	}

	.blog-single-share.bss-fixed-bottom > ul {
		width: 100%;
		display: table;
		table-layout: fixed;
	}
	.blog-single-share.bss-fixed-bottom > ul > li {
		margin: 0 1px;
		display: table-cell;
	}
	.blog-single-share.bss-fixed-bottom  > ul > li > .btn {
		margin: 0;
		width: 100%;
		height: 28px;
		line-height: 22px;
		padding: 0;
		font-size: 14px;
	}
}


/* Blog single nav 
=================== */
.blog-single-nav {
}

/* blog single nav item */
.bs-nav-item {
	display: block;
	overflow: hidden;
}

.bs-nav-item::before { /* hover overlay */
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.bs-nav-item-inner {
	position: relative;
	display: table;
	width: 100%;
}

/* blog single nav image */
.bs-nav-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.bs-nav-item:hover .bs-nav-image {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

/* blog single nav content */
.bs-nav-content {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 350px;
	padding-left: 5%;
	padding-right: 5%;
	text-align: center;
	overflow: hidden;
}
@media (max-width: 1200px) {
	.bs-nav-content {
		height: 280px;
	}
}
@media (max-width: 992px) {
	.bs-nav-content {
		height: 220px;
	}
}
@media (max-width: 768px) {
	.bs-nav-content {
		height: 180px;
	}
}

/* blog single nav next */
.bs-nav-next {
	position: relative;
	background-color: #111;
}
.bs-nav-next .bs-nav-item {
	color: #FFF;
}
.bs-nav-next .bs-nav-item::before {
	opacity: .9;
	background-color: #111;
}
.bs-nav-next .bs-nav-item:hover::before {
	opacity: .7;
}
.bs-nav-next .bs-nav-title::after {
	background-color: #FF5F14;
}

/* blog single nav prev */
.bs-nav-prev {
	position: relative;
	background-color: #FF5F14;
}
.bs-nav-prev .bs-nav-item {
	color: #000;
}
.bs-nav-prev .bs-nav-item::before {
	opacity: .9;
	background-color: #FF5F14;
}
.bs-nav-prev .bs-nav-item:hover::before {
	opacity: .7;
}
.bs-nav-prev .bs-nav-title::after {
	background-color: #111;
}

/* blog single nav all */
.bs-nav-all {
	background-color: #efefef;
}
.bs-nav-all .bs-nav-item {
	color: #000;
}
.bs-nav-all .bs-nav-item::before {
	display: none;
}
.bs-nav-all .bs-nav-title::after {
	background-color: #111;
}

/* blog single nav icon */
.bs-nav-icon {
	position: relative;
	margin-bottom: 5px;
	font-size: 21px;
	z-index: 3;
}

/* blog single nav title */
.bs-nav-title {
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	z-index: 3;
}
@media (max-width: 768px) {
	.bs-nav-title {
	}
}
.bs-nav-title::after {
	position: absolute;
	content: "";
	max-width: 100%;
	height: 2px;
	background-color: #FF5F14;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.bs-nav-item:hover .bs-nav-title::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}


/* Blog single related posts 
============================= */
.related-posts {
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid rgba(150, 150, 150, 0.2);
}
.related-posts-heading {
	font-family: 'Playfair Display',serif;
	font-size: 26px;
	margin: 0 0 30px 0;
}

/* related posts carousel */
.related-posts-carousel {
}

.related-posts-carousel .owl-carousel .cc-item {
	margin: 0;
	padding: 0;
}

.related-posts-item {
}
.related-posts-item .rp-item-image-wrap {
	position: relative;
	background-color: rgba(130, 130, 130, 0.1);
}
.related-posts-item .rp-item-image {
	display: block;
	padding-bottom: 70%;
	margin-bottom: 10px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.related-posts-item .rp-item-image:hover {
    opacity: .9;
}

.rp-item-info {
}

.related-posts-item .rp-item-title,
.related-posts-item .rp-item-title a {
	margin: 0;
	font-family: 'Playfair Display',serif;
	font-size: 20px;
	color: #333;
}
.related-posts-item .rp-item-title a {
	display: inline;
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(transparent calc(100% - 2px),currentColor 2px);
	background-image: linear-gradient(transparent calc(100% - 2px),currentColor 2px);
	background-image: -ms-linear-gradient(transparent 95%,currentColor 2px);
	-webkit-transition: 0.6s cubic-bezier(.215,.61,.355,1);
	-o-transition: 0.6s cubic-bezier(.215,.61,.355,1);
	transition: 0.6s cubic-bezier(.215,.61,.355,1);
	background-size: 0 96%;
}
.related-posts-item .rp-item-title a:hover {
	background-size: 100% 96%;
	color: #000;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
@media (max-width: 479px) {
	.related-posts-item .rp-item-title,
	.related-posts-item .rp-item-title a {
		font-size: 22px;
	}
}

.related-posts-item .rp-item-category {
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: normal;
	font-style: italic;
	color: #999;
}
.related-posts-item .rp-item-category span {
	position: relative;
	display: inline-block;
	margin: 0 0 2px 0;
}
.related-posts-item .rp-item-category span ~ span:not(:empty) { /* display only first category */
	display: none;
}
.related-posts-item .rp-item-category a {
	position: relative;
	display: inline-block;
	color: #08b396;
}
.related-posts-item .rp-item-category a:hover {
}
.related-posts-item .rp-item-category a::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 1px;
	background-color: #08b396;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.related-posts-item .rp-item-category a:hover::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}


/* Blog single post comments 
============================= */
#blog-post-comments {
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid rgba(150, 150, 150, 0.2);
}

.blog-post-comments-heading {
	margin: 0 0 30px 0;
	font-size: 24px;
}

/* tt comment list */
.tt-comment-list {
	padding: 0;
	margin: 0;
	list-style: none;
	overflow: hidden;
}
.tt-comment-list > li {
	margin-top: 40px;
}

/* tt comment */
.tt-comment {
}

/* tt comment avatar */
.tt-comment-avatar {
	position: relative;
	display: inline-block;
	float: left;
	width: 50px;
	height: 50px;
	margin-right: 20px;
	border-radius: 50%;
}
.tt-comment-avatar:hover {
}

/* tt comment pody */
.tt-comment-body {
	position: relative;
	display: table;
}
@media (max-width: 768px) {
	.tt-comment-body {
		display: block;
	}
}

/* tt comment meta */
.tt-comment-meta {
	margin-right: 70px;
}

.tt-comment-heading {
	margin: 0 0 5px 0;
	text-transform: none;
	letter-spacing: 0;
	font-size: 18px;
	color: #333;
}
.tt-comment-heading a {
	position: relative;
	color: #333;
}
.tt-comment-heading a:hover {
	color: #000;
}
.tt-comment-heading a::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 2px;
	background-color: #333;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.tt-comment-heading a:hover::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.tt-comment-time {
	display: block;
	margin-bottom: 15px;
	font-size: 14px;
	font-weight: normal;
}

/* tt comment text */
.tt-comment-text {
	clear: both;
}

/* tt comment 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: #888;
}
.tt-comment-reply a:hover {
	color: #000;
}
.tt-comment-reply a::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 1px;
	background-color: #666;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.tt-comment-reply a:hover::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/* blog single post comment form */
.post-comment-form-heading {
	margin-bottom: 50px;
	font-size: 24px;
}
#post-comment-form {
	margin-top: 80px;
	padding: 5%;
	border: 1px solid rgba(130, 130, 130, 0.2);
}
#post-comment-form .post-comment-reminder {
	margin-top: 20px;
}
#post-comment-form .post-comment-reminder label {
	font-size: 15px;
	font-weight: normal;
	color: #888;
	text-transform: unset;
	letter-spacing: 0;
}


/* ------------------------------------------------------------- *
 * Sidebar
/* ------------------------------------------------------------- */

.tt-sidebar {
}

.tt-sidebar.sidebar-left {
	padding-right: 34px;
	margin-right: 34px;
}
@media (max-width: 1600px) {
	.tt-sidebar.sidebar-left {
		padding-right: 15px;
		margin-right: 15px;
	}
}

.tt-sidebar.sidebar-right {
	padding-left: 34px;
	margin-left: 34px;
}
@media (max-width: 1600px) {
	.tt-sidebar.sidebar-right {
		padding-left: 15px;
		margin-left: 15px;
	}
}

@media (max-width: 991px) {
	.sidebar {
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		border-left: none !important;
		border-right: none !important;

		margin-top: 60px;
	}
}


/* ------------------------------------------------------------- *
 * Blog sidebar widgets
/* ------------------------------------------------------------- */

.sidebar-widget {
	margin-bottom: 60px;
	overflow: hidden;
}

/* Sidebar headings */
.sidebar-heading {
	position: relative;
	margin-bottom: 50px;
	font-family: 'Playfair Display',serif;
	font-size: 24px;
	font-weight: 700;
}
.sidebar-heading:after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	bottom: -15px;
	width: 35px;
	height: 3px;
	background-color: #FF5F14;
}

/* Blog author (about me) 
========================== */
.blog-author {
}

/* blog author image */
.blog-author-img {
	display: inline-block;
	width: 110px;
	height: 110px;
	background-color: rgba(130, 130, 130, 0.1);
	margin-bottom: 10px;
	border-radius: 50%;
}

a.blog-author-img {
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;

	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
a.blog-author-img:hover {
}

/* blog author info */
.blog-author-info {
}
.blog-author-name {
	text-transform: none;
	letter-spacing: 0;
	margin: 0;
	font-size: 20px;
}
.blog-author-name a {
	position: relative;
	color: #111;
}
.blog-author-name a:hover {
}
.blog-author-name a::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 1px;
	background-color: #666;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.blog-author-name a:hover::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.blog-author-sub {
	margin-top: 5px;
	margin-bottom: 10px;
	font-size: 17px;
	font-weight: bold;
	font-weight: 700;
}

/* blog author text */
.blog-author-text {
	margin: 0;
	font-size: 16px;
	color: #888;
}
.blog-author-more {
	display: block;
	margin-top: 15px;
	text-align: right;
	font-size: 17px;
	color: #BBB;
}


/* Blog sidebar search 
======================= */
.sidebar-search {
}
#blog-search-form {
}
#blog-search-form .form-control {
}
#blog-search-form button {
}


/* Blog sidebar social 
======================= */
.sidebar-social {
}
.sidebar-social .btn-social-min {
	width: 54px;
	height: 54px;
	line-height: 50px;
	font-size: 20px;
}


/* Blog sidebar subscribe 
========================== */
.sidebar-subscribe {
	background-color: #f1f1f1;
	padding: 24px;
}

#sidebar-subscribe-form {
	position: relative;
}


/* Blog 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: 700;
	color: #111;
	line-height: 1;
	padding: 14px 0;
	border-bottom: 1px solid rgba(136, 136, 136, 0.15);
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.sidebar-categories > ul > li > a:hover {
	opacity: .8;
}
.sidebar-categories > ul > li:first-child {
	padding-top: 0;
	border: 0;
}
.sidebar-categories > ul > li > a span {
	position: relative;
	float: right;
	top: -5px;
	background-color: #efefef;
	padding: 8px 9px 8px 9px;
	text-align: center;
	font-size: 13px;
	font-weight: normal;
	overflow: hidden;
	z-index: 1;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.sidebar-categories > ul > li > a:hover span {
	color: #000;
}

.sidebar-categories > ul > li > a span::before {
	position: absolute;
	content: "";
	z-index: -1;
	height: 100%;
	background-color: #FF5F14;
	left: 0;
	right: 0px;
	bottom: 0px;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.sidebar-categories > ul > li > a:hover span::before {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}


/* Blog 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-list .post-thumb {
	float: left;
	display: block;
	margin: 0 15px 0 0;
	width: 100px;
	height: 85px;
	background-color: rgba(130, 130, 130, 0.1);
	overflow: hidden;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.sidebar-post-list > ul > li:hover .post-thumb {
	opacity: .8;
}

.sidebar-post-list .post-data {
	display: table;
}
.sidebar-post-list .post-data .post-title {
	margin: 0 0 5px 0;
	font-family: 'Playfair Display',serif;
	font-size: 16px;
	font-weight: bold;
	font-weight: 700;
	line-height: 1.4;
}
.sidebar-post-list .post-data .post-title a {
	color: #111;
	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 95%,currentColor 1px);
	-webkit-transition: 0.6s cubic-bezier(.215,.61,.355,1);
	-o-transition: 0.6s cubic-bezier(.215,.61,.355,1);
	transition: 0.6s cubic-bezier(.215,.61,.355,1);
	background-size: 0 96%;
}
.sidebar-post-list .post-data .post-title a:hover {
	background-size: 100% 96%;
	color: #000;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.sidebar-post-list .post-data .author {
	display: block;
	font-size: 14px;
	line-height: 15px;
}
.sidebar-post-list .post-data .author a {
	color: #333;
}
.sidebar-post-list .post-data .author a:hover {
	color: #FF5F14;
}
.sidebar-post-list .post-data .date {
	display: block;
	font-size: 13px;
	color: #333;
}


/* Blog sidebar post comments list 
=================================== */
.sidebar-comments-list {
}
.sidebar-comments-list ul {
	margin: 0;
}

/* sidebar comment */
.sidebar-comment {
	padding-bottom: 15px;
	margin-bottom: 15px;
	/* border-bottom: 1px solid #e6e6e6; */
}
.sidebar-comment:last-child {
	margin: 0;
	padding: 0;
	border: none;
}

/* sidebar comment meta */
.sidebar-comment-meta {
	overflow: hidden;
}
.sidebar-comment-avatar {
	float: left;
	display: block;
	margin: 0 10px 0 0;
	overflow: hidden;
	width: 34px;
	height: 34px;
	background-color: rgba(130, 130, 130, 0.1);
	border-radius: 50%;
}
.sidebar-comment-avatar:hover {
}

/* sidebar comment data */
.sidebar-comment-data {
	float: left;
}
.sidebar-comment-data .author {
	display: block;
	font-size: 16px;
	font-weight: 700;
}
.sidebar-comment-data .author a {
	position: relative;
	color: #111;
}
.sidebar-comment-data .author a:hover {
}
.sidebar-comment-data .author a::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 1px;
	background-color: #666;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.sidebar-comment-data .author a:hover::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.sidebar-comment-data .date {
	display: block;
	font-size: 13px;
	color: #333;
}

/* sidebar comment text */
.sidebar-comment-text {
	margin-top: 10px;
	font-size: 16px;
	line-height: 1.4;
	font-style: italic;
	color: #333;
}
.sidebar-comment-text a {
	color: #333;
}
.sidebar-comment-text a:hover {
	opacity: .8;
}
.sidebar-comment-text p {
	margin-bottom: 0;
}


/* Blog sidebar tags 
===================== */
.sidebar-tags {
}
.sidebar-tags > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar-tags > ul > li {
	float: left;
	margin: 3px;
}
.sidebar-tags a {
	position: relative;
	display: block;
	background-color: rgba(160, 160, 160, 0.14);
	padding: 2px 6px;
	font-size: 14px;
	font-weight: normal;
	color: #111;
	overflow: hidden;
	z-index: 1;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;

	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.sidebar-tags a:hover {
	color: #FFF;
}
.sidebar-tags a::before {
	position: absolute;
	content: "";
	z-index: -1;
	height: 100%;
	background-color: #222;
	left: 0;
	right: 0px;
	bottom: 0px;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.sidebar-tags a:hover::before {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}


/* Blog sidebar photo stream 
============================= */
.sidebar-photo-stream {
}


/* Blog sidebar meta 
===================== */
.sidebar-meta {
}
.sidebar-meta ul > li > a {
	position: relative;
	display: inline-block;
	margin: 3px 0;
	font-size: 16px;
	color: #111;
}
.sidebar-meta ul > li > a:hover {
}
.sidebar-meta ul > li > a::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 1px;
	background-color: #666;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.sidebar-meta ul > li > a:hover::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}


/* ------------------------------------------------------------- *
 * YTP Player: https://github.com/pupunzi/jquery.mb.YTPlayer;
/* ------------------------------------------------------------- */

.youtube-bg-wrap {
	position: absolute;
	height: auto;  
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	max-width: 100%;
	background-attachment: scroll !important;
}
.youtube-bg {
}

/* YTPOverlay */
.YTPOverlay {
	background-color: transparent;
}
.YTPOverlay.raster {
	background: url("../vendor/ytplayer/images/raster_dot.png"); /* "raster.png" or "raster_dot.png" */
	background-color: transparent;
}
.youtube-bg.YTPFullscreen .YTPOverlay, 
.youtube-bg.YTPFullscreen .YTPOverlay.raster, 
.youtube-bg.YTPFullscreen .cover {
	display: none;
}

/* Video control bar */
.mb_YTPBar, .mb_YTPBar.visible {
	opacity: .2;
	z-index: 9;
}
.mb_YTPBar .buttonBar {
	top: -40px;
	height: 40px;
	padding: 10px 10px 0px 10px;
}
.mb_YTPBar, .mb_YTPBar .mb_YTPProgress, .mb_YTPBar .mb_YTPLoaded, .mb_YTPBar .mb_YTPseekbar {
	height: 4px;
	padding: 0;
}
.mb_YTPBar .mb_YTPProgress, .mb_YTPBar .mb_YTPLoaded {
	cursor: pointer;
}
.mb_YTPBar .mb_YTPseekbar {
	background: #F20000;
	cursor: pointer;
}

/* Video control elements */
.mb_YTPBar span.mb_OnlyYT {
	left: 250px;
	top: 10px;
	right: auto;
}
@media (min-width: 480px) {
	.mb_YTPBar span.mb_OnlyYT {
		left: 330px;
	}
}


/* ------------------------------------------------------------- *
 *  Accordion
/* ------------------------------------------------------------- */

.tt-accordion {
	position: relative;
}


/* tt-accordion item 
================== */
.tt-accordion-item {
	margin-bottom: 10px;
}

/* tt-accordion item header */
.tt-accordion-item-header {
	background-color: #EEE;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.tt-accordion-item-header:hover {
	background-color: #EAEAEA;
}

.tt-accordion-item-title {
	margin: 0;
	font-size: 19px;
	font-weight: 700;
}

.tt-accordion-item-title button {
	position: relative;
	width: 100%;
	padding: 22px 60px 22px 18px;
	background: transparent;
	cursor: pointer;
	text-align: left;
	font-weight: inherit;
	outline: none;
	border: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.tt-accordion-item-arrow {
	position: absolute;
	content: "";
	right: 20px;
	top: 50%;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	font-size: 16px;
	color: inherit;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.tt-accordion-item-title button.collapsed > .tt-accordion-item-arrow {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

/* tt-accordion item body */
.tt-accordion-item-body {
	padding: 30px 15px;
}


/* tt-accordion styles 
==================== */
/* tt-accordion boxed style */
.tt-accordion.accordion-boxed .tt-accordion-item-header {
	background-color: transparent;
	border: 2px solid #111;
}
.tt-accordion.accordion-boxed .tt-accordion-item-body {
	border: 2px solid #111;
	border-top: none;
}

/* tt-accordion minimal style */
.tt-accordion.accordion-minimal .tt-accordion-item-header {
	background-color: transparent;
	border-bottom: 2px solid #222;
}
.tt-accordion.accordion-minimal .tt-accordion-item-header .tt-accordion-item-title button {
	padding-left: 0;
}
.tt-accordion.accordion-minimal .tt-accordion-item-arrow {
	right: 0;
}

/* tt-accordion dark style */
.tt-accordion.accordion-dark .tt-accordion-item-header {
	background-color: #222;
	color: #FF5F14;
}
.tt-accordion.accordion-dark .tt-accordion-item-header .tt-accordion-item-title button {
	color: #FF5F14;
}

/* tt-accordion colored style */
.tt-accordion.accordion-colored .tt-accordion-item-header {
	background-color: #FF5F14;
	color: #111;
}
.tt-accordion.accordion-colored .tt-accordion-item-header .tt-accordion-item-title button {
	color: #111;
}


/* ------------------------------------------------------------- *
 * Buttons
/* ------------------------------------------------------------- */

.btn {
	position: relative;
	display: inline-block;
	padding: 15px 20px;
	margin: 0 10px 10px 0;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	z-index: 1;
	border: 0 solid transparent;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: hidden;

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.btn.focus, 
.btn:focus {
	outline: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

/* button border radius */
.btn,
.btn-group-lg > .btn,
.btn-group-sm > .btn {
	border-radius: 0;
}

/* button margin bottom */
.btn,
.btn-group-toggle > .btn, 
.btn-group-toggle > .btn-group > .btn {
	margin-bottom: 10px;
}

/* button link */
.btn-link {
}
.btn-link:hover {
	text-decoration: none;
}


/* Button global hover pseudo element 
====================================== */
.btn::before {
	position: absolute;
	content: "";
	z-index: -1;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
	left: 0;
	right: 0px;
	bottom: 0px;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.btn:hover::before {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/* button active */
.btn:not(:disabled):not(.disabled).active::before,
.btn:not(:disabled):not(.disabled):active::before,
.show > .btn.dropdown-toggle::before {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/* button disabled */
.btn.disabled::before, 
.btn:disabled::before {
	display: none;
}

/* button toggle */
.btn[data-bs-toggle="button"]::after {
	position: absolute;
	display: inline-block;
	content: "";
	top: 3px;
	right: 6px;
	width: 5px;
	height: 8px;
	border: solid #FFF;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .3s cubic-bezier(.645,.045,.355,1);
	-moz-transition: all .3s cubic-bezier(.645,.045,.355,1);
	-o-transition: all .3s cubic-bezier(.645,.045,.355,1);
	-ms-transition: all .3s cubic-bezier(.645,.045,.355,1);
	transition: all .3s cubic-bezier(.645,.045,.355,1);
}
.btn[data-bs-toggle="button"].active::after {
	opacity: 1;
	visibility: visible;
}
.btn.btn-light[data-bs-toggle="button"]::after, 
.btn.btn-outline-light[data-bs-toggle="button"]::after {
	border-color: #333;
}
.btn[class*="btn-outline-"][data-bs-toggle="button"]::after {
	top: 0;
	right: 3px;
}

/* button checkbox and radio */
.btn-group-toggle[data-bs-toggle="buttons"] .btn::before {
	background-color: rgba(0, 0, 0, 0.3);
}


/* Standard buttons 
==================== */

/* Button primary */
.btn-primary,

.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.show > .btn-primary.dropdown-toggle,

.btn-primary:hover,
.btn-primary.focus, 
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus, 
.btn-primary:not(:disabled):not(.disabled):active:focus, 
.show > .btn-primary.dropdown-toggle:focus {
	color: #222;
	background-color: #FF5F14;
	border-color: #FF5F14;
}
.btn-primary:not(:disabled):not(.disabled).active:focus, 
.btn-primary:not(:disabled):not(.disabled):active:focus, 
.show > .btn-primary.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-primary::before {
}
.btn-primary.disabled, 
.btn-primary:disabled {
	color: #222;
	background-color: #FF5F14;
	border-color: #FF5F14;
}

/* Button secondary */
.btn-secondary,

.btn-secondary:not(:disabled):not(.disabled).active, 
.btn-secondary:not(:disabled):not(.disabled):active, 
.show > .btn-secondary.dropdown-toggle,

.btn-secondary:hover,
.btn-secondary.focus, 
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus, 
.btn-secondary:not(:disabled):not(.disabled):active:focus, 
.show > .btn-secondary.dropdown-toggle:focus {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus, 
.btn-secondary:not(:disabled):not(.disabled):active:focus, 
.show > .btn-secondary.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-secondary::before {
}

/* Button success */
.btn-success,

.btn-success:not(:disabled):not(.disabled).active, 
.btn-success:not(:disabled):not(.disabled):active, 
.show > .btn-success.dropdown-toggle,

.btn-success:hover,
.btn-success.focus, 
.btn-success:focus,
.btn-success:not(:disabled):not(.disabled).active:focus, 
.btn-success:not(:disabled):not(.disabled):active:focus, 
.show > .btn-success.dropdown-toggle:focus {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled).active:focus, 
.btn-success:not(:disabled):not(.disabled):active:focus, 
.show > .btn-success.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-success::before {
}

/* Button danger */
.btn-danger,

.btn-danger:not(:disabled):not(.disabled).active, 
.btn-danger:not(:disabled):not(.disabled):active, 
.show > .btn-danger.dropdown-toggle,

.btn-danger:hover,
.btn-danger.focus, 
.btn-danger:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus, 
.btn-danger:not(:disabled):not(.disabled):active:focus, 
.show > .btn-danger.dropdown-toggle:focus {
	color: #fff;
	background-color: #e85045;
	border-color: #e85045;
}
.btn-danger:not(:disabled):not(.disabled).active:focus, 
.btn-danger:not(:disabled):not(.disabled):active:focus, 
.show > .btn-danger.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-danger::before {
}

/* Button warning */
.btn-warning,

.btn-warning:not(:disabled):not(.disabled).active, 
.btn-warning:not(:disabled):not(.disabled):active, 
.show > .btn-warning.dropdown-toggle,

.btn-warning:hover,
.btn-warning.focus, 
.btn-warning:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus, 
.btn-warning:not(:disabled):not(.disabled):active:focus, 
.show > .btn-warning.dropdown-toggle:focus {
	color: #333;
	background-color: #ffc107;
	border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled).active:focus, 
.btn-warning:not(:disabled):not(.disabled):active:focus, 
.show > .btn-warning.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-warning::before {
}

/* Button info */
.btn-info,

.btn-info:not(:disabled):not(.disabled).active, 
.btn-info:not(:disabled):not(.disabled):active, 
.show > .btn-info.dropdown-toggle,

.btn-info:hover,
.btn-info.focus, 
.btn-info:focus,
.btn-info:not(:disabled):not(.disabled).active:focus, 
.btn-info:not(:disabled):not(.disabled):active:focus, 
.show > .btn-info.dropdown-toggle:focus {
	color: #fff;
	background-color: #17a2b8;
	border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled).active:focus, 
.btn-info:not(:disabled):not(.disabled):active:focus, 
.show > .btn-info.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-info::before {
}

/* Button light */
.btn-light,

.btn-light:not(:disabled):not(.disabled).active, 
.btn-light:not(:disabled):not(.disabled):active, 
.show > .btn-light.dropdown-toggle,

.btn-light:hover,
.btn-light.focus, 
.btn-light:focus,
.btn-light:not(:disabled):not(.disabled).active:focus, 
.btn-light:not(:disabled):not(.disabled):active:focus, 
.show > .btn-light.dropdown-toggle:focus {
	color: #333;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled).active:focus, 
.btn-light:not(:disabled):not(.disabled):active:focus, 
.show > .btn-light.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-light::before {
	background-color: rgba(0, 0, 0, 0.1);
}

.btn-light.btn-link,
.btn-light.btn-social-min.btn-link {
	color: #FFF;
}

/* Button gray */
.btn-gray,

.btn-gray:not(:disabled):not(.disabled).active, 
.btn-gray:not(:disabled):not(.disabled):active, 
.show > .btn-gray.dropdown-toggle,

.btn-gray:hover,
.btn-gray.focus, 
.btn-gray:focus,
.btn-gray:not(:disabled):not(.disabled).active:focus, 
.btn-gray:not(:disabled):not(.disabled):active:focus, 
.show > .btn-gray.dropdown-toggle:focus {
	color: #333;
	background-color: rgba(160, 160, 160, 0.2);
	border-color: rgba(160, 160, 160, 0.2);
}
.btn-gray:not(:disabled):not(.disabled).active:focus, 
.btn-gray:not(:disabled):not(.disabled):active:focus, 
.show > .btn-gray.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-gray::before {
	background-color: rgba(0, 0, 0, 0.07);
}

/* Button dark */
.btn-dark,

.btn-dark:not(:disabled):not(.disabled).active, 
.btn-dark:not(:disabled):not(.disabled):active, 
.show > .btn-dark.dropdown-toggle,

.btn-dark:hover,
.btn-dark.focus, 
.btn-dark:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus, 
.btn-dark:not(:disabled):not(.disabled):active:focus, 
.show > .btn-dark.dropdown-toggle:focus {
	color: #fff;
	background-color: #212121;
	border-color: #212121;
}
.btn-dark:not(:disabled):not(.disabled).active:focus, 
.btn-dark:not(:disabled):not(.disabled):active:focus, 
.show > .btn-dark.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-dark::before {
	background-color: rgba(255, 255, 255, 0.1);
}

/* Button link */
.btn-link,

.btn-link:not(:disabled):not(.disabled).active, 
.btn-link:not(:disabled):not(.disabled):active, 
.show > .btn-link.dropdown-toggle,

.btn-link:hover,
.btn-link.focus, 
.btn-link:focus,
.btn-link:not(:disabled):not(.disabled).active:focus, 
.btn-link:not(:disabled):not(.disabled):active:focus, 
.show > .btn-link.dropdown-toggle:focus {
	color: #0bd0bb;
	background-color: transparent;
	border-color: transparent;
}
.btn-link:not(:disabled):not(.disabled).active:focus, 
.btn-link:not(:disabled):not(.disabled):active:focus, 
.show > .btn-link.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-link:before {
	display: none;
}

.text-light .btn-link,
.text-white .btn-link {
	color: #FFF !important;
}
.text-light .btn-link:hover,
.text-light .btn-link.focus, 
.text-light .btn-link:focus,
.text-light .btn-link:not(:disabled):not(.disabled).active:focus, 
.text-light .btn-link:not(:disabled):not(.disabled):active:focus, 
.text-light .show > .btn-link.dropdown-toggle:focus,
.text-white .btn-link:hover,
.text-white .btn-link.focus, 
.text-white .btn-link:focus,
.text-white .btn-link:not(:disabled):not(.disabled).active:focus, 
.text-white .btn-link:not(:disabled):not(.disabled):active:focus, 
.text-white .show > .btn-link.dropdown-toggle:focus {
	color: #FF5F14 !important;
	background-color: transparent;
	border-color: transparent;
}


/* Button outline 
================== */
.btn[class*="btn-outline-"] {
	background-color: transparent;
	background-image: none;
	padding: 12px 19px;
	border-width: 3px;

	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.btn[class*="btn-outline-"]:not(:disabled):not(.disabled).active:focus, 
.btn[class*="btn-outline-"]:not(:disabled):not(.disabled):active:focus, 
.show > .btn[class*="btn-outline-"].dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

/* Button outline primary */
.btn-outline-primary,
.btn-outline-primary:focus,
.btn-outline-primary:disabled, 
.btn-outline-primary.disabled,
.btn-outline-primary:disabled:hover, 
.btn-outline-primary.disabled:hover {
	color: #FF5F14;
	border-color: #FF5F14;
}
.btn-outline-primary:hover,
.btn-outline-primary:not(:disabled):not(.disabled).active, 
.btn-outline-primary:not(:disabled):not(.disabled):active, 
.show > .btn-outline-primary.dropdown-toggle {
	color: #222;
	border-color: #FF5F14;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.btn-outline-primary::before {
	background-color: #FF5F14;
}

/* Button outline secondary */
.btn-outline-secondary,
.btn-outline-secondary:focus,
.btn-outline-secondary:disabled, 
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled:hover, 
.btn-outline-secondary.disabled:hover {
	color: #6c757d;
	border-color: #6c757d;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:not(:disabled):not(.disabled).active, 
.btn-outline-secondary:not(:disabled):not(.disabled):active, 
.show > .btn-outline-secondary.dropdown-toggle {
	color: #fff;
	border-color: #6c757d;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.btn-outline-secondary::before {
	background-color: #6c757d;
}

/* Button outline success */
.btn-outline-success,
.btn-outline-success:focus,
.btn-outline-success:disabled, 
.btn-outline-success.disabled,
.btn-outline-success:disabled:hover, 
.btn-outline-success.disabled:hover {
	color: #28a745;
	border-color: #28a745;
}
.btn-outline-success:hover,
.btn-outline-success:not(:disabled):not(.disabled).active, 
.btn-outline-success:not(:disabled):not(.disabled):active, 
.show > .btn-outline-success.dropdown-toggle {
	color: #fff;
	border-color: #28a745;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.btn-outline-success::before {
	background-color: #28a745;
}

/* Button outline danger */
.btn-outline-danger,
.btn-outline-danger:focus,
.btn-outline-danger:disabled, 
.btn-outline-danger.disabled,
.btn-outline-danger:disabled:hover, 
.btn-outline-danger.disabled:hover {
	color: #e85045;
	border-color: #e85045;
}
.btn-outline-danger:hover,
.btn-outline-danger:not(:disabled):not(.disabled).active, 
.btn-outline-danger:not(:disabled):not(.disabled):active, 
.show > .btn-outline-danger.dropdown-toggle {
	color: #FFF;
	border-color: #e85045;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.btn-outline-danger::before {
	background-color: #e85045;
}

/* Button outline warning */
.btn-outline-warning,
.btn-outline-warning:focus,
.btn-outline-warning:disabled, 
.btn-outline-warning.disabled,
.btn-outline-warning:disabled:hover, 
.btn-outline-warning.disabled:hover {
	color: #ffc107;
	border-color: #ffc107;
}
.btn-outline-warning:hover,
.btn-outline-warning:not(:disabled):not(.disabled).active, 
.btn-outline-warning:not(:disabled):not(.disabled):active, 
.show > .btn-outline-warning.dropdown-toggle {
	color: #333;
	border-color: #ffc107;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.btn-outline-warning::before {
	background-color: #ffc107;
}

/* Button outline info */
.btn-outline-info,
.btn-outline-info:focus,
.btn-outline-info:disabled, 
.btn-outline-info.disabled,
.btn-outline-info:disabled:hover, 
.btn-outline-info.disabled:hover {
	color: #17a2b8;
	border-color: #17a2b8;
}
.btn-outline-info:hover,
.btn-outline-info:not(:disabled):not(.disabled).active, 
.btn-outline-info:not(:disabled):not(.disabled):active, 
.show > .btn-outline-info.dropdown-toggle {
	color: #fff;
	border-color: #17a2b8;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.btn-outline-info::before {
	background-color: #17a2b8;
}

/* Button outline light */
.btn-outline-light,
.btn-outline-light:focus,
.btn-outline-light:disabled, 
.btn-outline-light.disabled,
.btn-outline-light:disabled:hover, 
.btn-outline-light.disabled:hover {
	color: #f8f9fa;
	border-color: #f8f9fa;
}
.btn-outline-light:hover,
.btn-outline-light:not(:disabled):not(.disabled).active, 
.btn-outline-light:not(:disabled):not(.disabled):active, 
.show > .btn-outline-light.dropdown-toggle {
	color: #333;
	border-color: #f8f9fa;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.btn-outline-light::before {
	background-color: #f8f9fa;
}

/* Button outline gray */
.btn-outline-gray,
.btn-outline-gray:focus,
.btn-outline-gray:disabled, 
.btn-outline-gray.disabled,
.btn-outline-gray:disabled:hover, 
.btn-outline-gray.disabled:hover {
	color: rgba(160, 160, 160, 0.8);
	border-color: rgba(160, 160, 160, 0.5);
}
.btn-outline-gray:hover,
.btn-outline-gray:not(:disabled):not(.disabled).active, 
.btn-outline-gray:not(:disabled):not(.disabled):active, 
.show > .btn-outline-gray.dropdown-toggle {
	color: #333;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.btn-outline-gray::before {
	background-color: rgba(160, 160, 160, 0.5);
}

/* Button outline dark */
.btn-outline-dark,
.btn-outline-dark:focus,
.btn-outline-dark:disabled, 
.btn-outline-dark.disabled,
.btn-outline-dark:disabled:hover, 
.btn-outline-dark.disabled:hover {
	color: #111;
	border-color: #111;
}
.btn-outline-dark:hover,
.btn-outline-dark:not(:disabled):not(.disabled).active, 
.btn-outline-dark:not(:disabled):not(.disabled):active, 
.show > .btn-outline-dark.dropdown-toggle {
	color: #fff;
	border-color: #111;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.btn-outline-dark::before {
	background-color: #111;
}

/* Button outline link */
.btn-outline-link,

.btn-outline-link:not(:disabled):not(.disabled).active, 
.btn-outline-link:not(:disabled):not(.disabled):active, 
.show > .btn-outline-link.dropdown-toggle,

.btn-outline-link:hover,
.btn-outline-link.focus, 
.btn-outline-link:focus,
.btn-outline-link:not(:disabled):not(.disabled).active:focus, 
.btn-outline-link:not(:disabled):not(.disabled):active:focus, 
.show > .btn-outline-link.dropdown-toggle:focus {
	color: #0bd0bb;
	background-color: transparent;
	border-color: transparent;
}
.btn-outline-link:not(:disabled):not(.disabled).active:focus, 
.btn-outline-link:not(:disabled):not(.disabled):active:focus, 
.show > .btn-outline-link.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-outline-link:before {
	display: none;
}


/* Button block 
================ */
.btn-block {
	display: block;
	width: 100%;
}
.btn-block + .btn-block {
	margin-top: 0;
}
.d-grid .btn {
	margin-right: 0;
}


/* Extra shadow 
================ */
.btn-shadow:not(.btn-outline-link):not(.btn-link) {
	-webkit-box-shadow: 0px 6px 25px -5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 6px 25px -5px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 6px 25px -5px rgba(0, 0, 0, 0.3);
}


/* Button group 
================ */
.btn-group .btn {
}


/* Button dropdown 
=================== */
.dropdown-toggle::after {
	vertical-align: 0.155em;
}

/* button dropdown toggle split */
.btn[class*="btn-outline-"].dropdown-toggle-split {
	margin-left: -3px;
}

/* button dropdown menu */
.dropdown-menu {
	border-radius: 0;
}
.dropdown-item.active, 
.dropdown-item:active {
	color: #FFF;
	text-decoration: none;
	background-color: #FF5F14;
}
.dropdown-item:focus, 
.dropdown-item:hover {
	color: #000;
	text-decoration: none;
	background-color: #F1F1F1;
}


/* Button social 
================= */
.btn-social {
	position: relative;
	padding-left: 55px;
	text-align: left;
	color: #FFF;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.btn-social:hover, 
.btn-social:focus, 
.btn-social:active,
.btn-social.active {
	color: #FFF;
}

/* Button social icon */
.btn-social > .btn-social-icon {
	position: absolute;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	left: 0;
	top: 0;
	bottom: 0;
	width: 42px;
	font-size: 20px;
	border-right: 1px solid rgba(0,0,0,0.12);
}
.btn-social > .btn-social-icon > i {
}

/* Button social sizes */
.btn-social.btn-xs { padding-left: 55px; }
.btn-social.btn-sm { padding-left: 55px; }
.btn-social.btn-lg { padding-left: 60px; }
.btn-social.btn-xlg { padding-left: 65px; }


/* Button social min 
===================== */
.btn-social-min {
	position: relative;
	width: 46px;
	height: 46px;
	margin-right: 5px;
	padding: 0 !important;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 17px;
}

.btn-social-min.btn-link {
	width: 30px;
	height: 30px;
	font-size: 17px;
	color: #333;
}
.btn-social-min.btn-link:hover,
.btn-social-min.btn-link:focus {
	color: #FF5F14;
}

/* Button social min sizes */
.btn-social-min.btn-xs { 
	width: 28px;
	height: 28px;
	line-height: 22px;
	font-size: 12px;
}
.btn-social-min.btn-link.btn-xs {
	width: 22px;
	height: 22px;
	font-size: 12px;
}

.btn-social-min.btn-sm { 
	width: 34px;
	height: 34px;
	line-height: 28px;
	font-size: 13px;
}
.btn-social-min.btn-link.btn-sm {
	width: 26px;
	height: 26px;
	font-size: 15px;
}

@media (min-width: 991px) {
	.btn-social-min.btn-lg { 
		width: 54px;
		height: 54px;
		line-height: 48px;
		font-size: 18px;
	}
	.btn-social-min.btn-link.btn-lg {
		width: 32px;
		height: 32px;
		font-size: 19px;
	}

	.btn-social-min.btn-xlg { 
		width: 68px;
		height: 68px;
		line-height: 62px;
		font-size: 22px;
	}
	.btn-social-min.btn-link.btn-xlg {
		width: 40px;
		height: 40px;
		font-size: 24px;
	}
}


/* Button social types 
======================= */

/* Button facebook */
.btn-facebook { 
	background-color: #3b5998;
	color: #FFF;
}
.btn-facebook:hover,
.btn-facebook:focus{
	color: #FFF;
}

/* Button twitter */
.btn-twitter { 
	background-color: #55acee;
	color: #FFF;
}
.btn-twitter:hover,
.btn-twitter:focus{
	color: #FFF;
}

/* Button dropbox */
.btn-dropbox { 
	background-color: #1087dd;
	color: #FFF;
}
.btn-dropbox:hover,
.btn-dropbox:focus{
	color: #FFF;
}

/* Button linkedin */
.btn-linkedin { 
	background-color: #007bb6;
	color: #FFF;
}
.btn-linkedin:hover,
.btn-linkedin:focus{
	color: #FFF;
}

/* Button pinterest */
.btn-pinterest { 
	background-color: #cb2027;
	color: #FFF;
}
.btn-pinterest:hover,
.btn-pinterest:focus{
	color: #FFF;
}

/* Button google */
.btn-google { 
	background-color: #dd4b39;
	color: #FFF;
}
.btn-google:hover,
.btn-google:focus{
	color: #FFF;
}

/* Button instagram */
.btn-instagram {
	background-color: #3f729b;
	color: #FFF;
}
.btn-instagram:hover,
.btn-instagram:focus{
	color: #FFF;
}

/* Button tumblr */
.btn-tumblr { 
	background-color: #2c4762;
	color: #FFF;
}
.btn-tumblr:hover,
.btn-tumblr:focus{
	color: #FFF;
}

/* Button vk */
.btn-vk { 
	background-color: #587ea3;
	color: #FFF;
}
.btn-vk:hover,
.btn-vk:focus{
	color: #FFF;
}

/* Button flickr */
.btn-flickr { 
	background-color: #ff0084;
	color: #FFF;
}
.btn-flickr:hover,
.btn-flickr:focus{
	color: #FFF;
}

/* Button soundcloud */
.btn-soundcloud { 
	background-color: #f50;
	color: #FFF;
}
.btn-soundcloud:hover,
.btn-soundcloud:focus{
	color: #FFF;
}

/* Button yahoo */
.btn-yahoo { 
	background-color: #720e9e;
	color: #FFF;
}
.btn-yahoo:hover,
.btn-yahoo:focus{
	color: #FFF;
}

/* Button dribbble */
.btn-dribbble { 
	background-color: #222;
	color: #FFF;
}
.btn-dribbble:hover,
.btn-dribbble:focus{
	color: #FFF;
}

/* Button youtube */
.btn-youtube { 
	background-color: #cc181e;
	color: #FFF;
}
.btn-youtube:hover,
.btn-youtube:focus{
	color: #FFF;
}

/* Button behance */
.btn-behance { 
	background-color: #0057ff;
	color: #FFF;
}
.btn-behance:hover,
.btn-behance:focus{
	color: #FFF;
}


/* Button rounded 
================== */
.btn-rounded {
	border-radius: 4px;
}
.btn-rounded-2x {
	border-radius: 8px;
}
.btn-rounded-3x {
	border-radius: 12px;
}
.btn-rounded-4x {
	border-radius: 17px;
}
.btn-rounded-5x {
	border-radius: 50px;
}
.btn-rounded-full {
	border-radius: 50%;
}


/* Button sizes 
================ */
.btn-group-xs > .btn, .btn-xs { /* Extra size */
	padding: 5px 15px;
	font-size: 10px;
}
.btn-group-xs > .btn[class*="btn-outline-"],
.btn[class*="btn-outline-"].btn-xs {
	padding: 3px 10px;
	border-width: 2px;
}

.btn-group-sm > .btn, .btn-sm {
	padding: 10px 15px;
	font-size: 12px;
}
.btn-group-sm > .btn[class*="btn-outline-"],
.btn[class*="btn-outline-"].btn-sm {
	padding: 7px 12px;
}

.btn-group-lg > .btn, .btn-lg {
	padding: 20px 30px;
	font-size: 13px;
}
.btn-group-lg > .btn[class*="btn-outline-"],
.btn[class*="btn-outline-"].btn-lg {
	padding: 17px 24px;
}

.btn-group-xlg > .btn, .btn-xlg { /* Extra size */
	padding: 25px 35px;
	font-size: 14px;
}
.btn-group-xlg > .btn[class*="btn-outline-"],
.btn[class*="btn-outline-"].btn-xlg {
	padding: 22px 29px;
}


/* Play button 
=============== */
.btn-play-wrap {
	display: inline-block;
}
.btn.btn-play {
	position: relative;
	width: 46px;
	height: 46px;
	margin: 0;
	padding: 0 0 0 4px !important;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 14px;
	text-decoration: none;
}

.btn-play.btn-link {
	font-size: 31px;
}

/* button play sizes */
.btn-play.btn-xs { 
	width: 28px;
	height: 28px;
	line-height: 28px;
	font-size: 11px;
}
.btn-play.btn-link.btn-xs {
	font-size: 18px;
}

.btn-play.btn-sm { 
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-size: 13px;
}
.btn-play.btn-link.btn-sm {
	font-size: 22px;
}

.btn-play.btn-lg { 
	width: 62px;
	height: 62px;
	line-height: 48px;
	font-size: 22px;
}
.btn-play.btn-link.btn-lg {
	font-size: 46px;
}

.btn-play.btn-xlg { 
	width: 86px;
	height: 86px;
	line-height: 62px;
	font-size: 30px;
}
.btn-play.btn-link.btn-xlg {
	font-size: 62px;
}

/* play button animation */
.btn-play-wrap.btn-play-animate .btn.btn-play {
	-webkit-animation: vbbulse 2s infinite;
	animation: vbbulse 2s infinite;
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
}
@-webkit-keyframes vbbulse {
	0% { -webkit-box-shadow: 0 0 0 0 #FF5F14; }
	70% { -webkit-box-shadow: 0 0 0 25px rgba(0, 64, 216, 0); }
	100% { -webkit-box-shadow: 0 0 0 0 rgba(0, 64, 216, 0); }
}
@keyframes vbbulse {
	0% { -moz-box-shadow: 0 0 0 0 #FF5F14; box-shadow: 0 0 0 0 #FF5F14; }
	70% { -moz-box-shadow: 0 0 0 25px rgba(0, 64, 216, 0); box-shadow: 0 0 0 25px rgba(0, 64, 216, 0); }
	100% { -moz-box-shadow: 0 0 0 0 rgba(0, 64, 216, 0); box-shadow: 0 0 0 0 rgba(0, 64, 216, 0); }
}


/* Button close 
================= */
.tt-close-btn {
	position: relative;
	display: inline-block;
	top: 6px;
	width: 28px;
	height: 28px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.tt-close-btn:hover {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
}
.tt-close-btn::before, 
.tt-close-btn::after {
	content: '';
	position: absolute;
	background-color: #000;
}
.tt-close-btn::before {
	left: 0;
	top: 13px;
	width: 100%;
	height: 2px;
}
.tt-close-btn::after {
	left: 13px;
	top: 0;
	width: 2px;
	height: 100%;
}

/* Button close light color*/
.tt-close-btn.tt-close-light::before, 
.tt-close-btn.tt-close-light::after {
	background-color: #FFF;
}


/* ------------------------------------------------------------- *
 * Scroll to top button
/* ------------------------------------------------------------- */

.scrolltotop {
	position: fixed;
	bottom: 24px;
	right: 20px;
	width: 35px;
	height: 35px;
	line-height: 35px;
	background-color: #FFF;
	text-align: center;
	font-size: 18px;
	color: #000;
	text-decoration: none;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.scrolltotop::before {
	line-height: 35px;

	font-family: "Font Awesome 5 Free";
	content: "\f077";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

/* scrolltotop active */
.scrolltotop.scr-active {
	opacity: 1;
	visibility: visible;
}

/* scrolltotop hover */
.scrolltotop:hover {
	color: #000;
}

/* scrolltotop hover background */
.scrolltotop::after {
	position: absolute;
	content: "";
	z-index: -1;
	height: 100%;
	background-color: #FF5F14;
	left: 0;
	right: 0px;
	bottom: 0px;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.scrolltotop:hover::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/* scrolltotop if boxed layout enabled */
body.tt-boxed .scrolltotop {
	bottom: 16px;
}
body.tt-boxed.footer-simple-on .scrolltotop {
	bottom: 28px;
}
body.tt-boxed.footer-minimal-on .scrolltotop {
	bottom: 27px;
}

@media (max-width: 1560px) {
	body.tt-boxed .scrolltotop {
		bottom: 74px;
	}
	body.tt-boxed.footer-minimal-on .scrolltotop {
		bottom: 94px;
	}
}
@media (max-width: 991px) {
	.scrolltotop,
	body.tt-boxed .scrolltotop,
	body.footer-minimal-on .scrolltotop {
		bottom: 20px;
	}
}


/* ------------------------------------------------------------- *
 * Social buttons
/* ------------------------------------------------------------- */

.social-buttons {
}
.social-buttons ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.social-buttons ul > li {
	display: inline-block;
	margin: 0;
}
.social-buttons ul > li:first-child {
	margin-left: 0;
}
.social-buttons ul > li:last-child,
.social-buttons ul > li:last-child .btn {
	margin-right: 0;
}

.social-buttons .btn.btn-link {
	line-height: 1.4;
	margin-right: 10px;
	border: none !important;
	border-radius: 0;
	text-decoration: none;
	overflow: visible;
}
.social-buttons li:last-child .btn.btn-link {
	margin-right: 0;
}


/* ------------------------------------------------------------- *
 * Forms
/* ------------------------------------------------------------- */

.form-control,
.form-select {
	display: block;
	width: 100%;
	background-color: #FFF;
	padding: 5px 15px;
	font-size: 16px;
	font-weight: normal;
	color: #222;
	border: 1px solid rgba(148, 148, 148, 0.3);
	border-radius: 0 !important;
}
.form-control:focus,
.form-select:focus {
	color: #333;
	background-color: #FFF;
	border-color: #FF5F14;
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.form-control + .form-control {
	margin-top: 8px;
}

.form-text {
	margin-top: 5px;
	font-style: italic;
}

label {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 16px;
	font-weight: 700;
}

::-webkit-input-placeholder {
	color: #222 !important;
}
:-moz-placeholder {
	color: #222 !important;
}
::-moz-placeholder {
	color: #222 !important;
}
:-ms-input-placeholder {
	color: #222 !important;
}

/* form check/radio input */
.form-check-input,
.form-check-label {
	cursor: pointer;
}
.form-check-input:checked {
	background-color: #08ceb9;
	border-color: #08ceb9;
}
.form-check-input:focus {
	border-color: #08ceb9;
	outline: 0;
	box-shadow: none;
}

/* form with button inside */
.form-btn-inside {
	position: relative;
}
.form-btn-inside .form-control {
	padding-right: 65px;
}
.form-btn-inside button {
	position: absolute;
	top: 0;
	right: 0;
	width: auto;
	height: 46px;
	line-height: 46px;
	background-color: #FF5F14;
	padding: 0 15px;
	font-size: 18px;
	color: #111;
	border: none;
	cursor: pointer;
}
.form-btn-inside button:hover {
	opacity: .9;
}
.form-btn-inside button:focus {
	outline: none;
}

.form-btn-inside .form-control-sm + button {
	height: 34px;
	line-height: 34px;
	padding: 0 10px;
	font-size: 14px;
}
.form-btn-inside .form-control-lg + button {
	height: 56px;
	line-height: 56px;
	padding: 0 18px;
	font-size: 19px;
}


/* Form sizes 
============== */
/* default height */
.form-control,
select.form-control:not([size]):not([multiple]) {
	height: 46px;
}
select.form-control,
textarea.form-control {
	height: auto;
}

/* form control lg */
.form-control-lg {
	height: 56px;
	padding: 5px 18px;
	font-size: 16px;
}
.form-select-lg:not([size]) {
	height: 56px;
}

/* form control sm */
.form-control-sm {
	height: 34px;
	padding: 3px 10px;
	font-size: 14px;
}
.form-select-sm:not([size]) {
	height: 34px;
}


/* Form extra styles 
===================== */
/* form style filled */
.tt-form-filled label {
	display: inline-block;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 14px;
	font-weight: 700;
}
.tt-form-filled .form-control,
.tt-form-filled .form-select {
	background-color: #FF5F14;
	color: #222;
	border: none;
}
.tt-form-filled .form-control:focus,
.tt-form-filled .form-select:focus {
	color: #222;
	background-color: #FFF;
	outline: none;
	-webkit-box-shadow: inset 0 0 0 2px #FF5F14;
	-moz-box-shadow: inset 0 0 0 2px #FF5F14;
	box-shadow: inset 0 0 0 2px #FF5F14;
}

/* form style minimal */
.tt-form-minimal label:not(.form-check-label) {
	display: inline-block;
	margin-bottom: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	font-weight: bold;
	font-weight: 900;
}
.tt-form-minimal .form-control,
.tt-form-minimal .form-select {
	background-color: transparent;
	padding-left: 0;
	padding-right: 0;
	border: none;
	border-bottom: 1px solid rgba(148, 148, 148, 0.3);
}
.tt-form-minimal .form-control:focus,
.tt-form-minimal .form-select:focus {
	color: #222;
	border-bottom-color: #FF5F14;
}

.tt-form-minimal .form-select {
	color: #AAA;
	font-weight: normal;
}

.tt-form-minimal ::-webkit-input-placeholder {
	color: #AAA !important;
	font-weight: normal !important;
}
.tt-form-minimal :-moz-placeholder {
	color: #AAA !important;
	font-weight: normal !important;
}
.tt-form-minimal ::-moz-placeholder {
	color: #AAA !important;
	font-weight: normal !important;
}
.tt-form-minimal :-ms-input-placeholder {
	color: #AAA !important;
	font-weight: normal !important;
}

.tt-form-minimal.form-btn-inside button {
	background-color: transparent;
}


/* ------------------------------------------------------------- *
 *  Pagination (tt-pagination)
/* ------------------------------------------------------------- */

.tt-pagination-wrap {
	margin-top: 40px;
	padding: 40px 2.5%;
}

.tt-pagination {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tt-pagination > li {
	display: inline-block;
	margin: 0 5px;
}
.tt-pagination > li:first-child {
	margin-left: 0;
}
.tt-pagination > li:last-child {
	margin-right: 0;
}

.tt-pagination > li > a, 
.tt-pagination > li > span {
	position: relative;
	display: block;
	float: none;
	padding: 3px 6px;
	margin: 5px 0;
	font-size: 16px;
	font-weight: normal;
	color: #111;
	text-decoration: none;
	z-index: 1;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
	.tt-pagination > li > a, 
	.tt-pagination > li > span {
		font-size: 18px;
	}
}

.tt-pagination .tt-pagin-nav > a {
	padding-left: 0;
	padding-right: 0;
}
.tt-pagination .tt-pagin-prev > a,
.tt-pagination .tt-pagin-first > a {
	margin-right: 10px;
}
.tt-pagination .tt-pagin-next > a,
.tt-pagination .tt-pagin-last > a {
	margin-left: 10px;
}

.tt-pagination > li > a::before {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 2px;
	background-color: #FF5F14;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
.tt-pagination > li > a:hover::before {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.tt-pagination > li > span {
	background-color: transparent;
	border: none;
}
.tt-pagination > li:first-child > a {
	margin-left: 0;
}
.tt-pagination > li:last-child > a {
}

.tt-pagination > li.active > a::before, 
.tt-pagination > li.active > a:focus::before, 
.tt-pagination > li.active > a:hover::before {
	transform: none;
	transform-origin: left center;
}

/* if boxed layout enabled */
body.tt-boxed .tt-wrap .tt-pagination-wrap {
	padding-left: 0;
	padding-right: 0;
}


/* tt-pagination aligns 
======================== */
/* align center */
.tt-pagination-wrap.tt-pagin-center {
	text-align: center;
}

/* align right */
.tt-pagination-wrap.tt-pagin-right {
	text-align: right;
}


/* tt-pagination styles 
======================== */
/* filled */
.tt-pagination-wrap.tt-pagin-filled {
	background-color: #FF5F14;
	margin-top: 0 !important;
	padding-top: 70px !important;
	padding-bottom: 70px !important;
}

.tt-pagination-wrap.tt-pagin-filled .tt-pagination > li > a, 
.tt-pagination-wrap.tt-pagin-filled .tt-pagination > li > span {
}
.tt-pagination-wrap.tt-pagin-filled .tt-pagination > li > a::before {
	background-color: #222;
}


/* Show only "tt-pagin-prev" and "tt-pagin-next" on small screens
================================================================== */
@media (max-width: 768px) {
	.tt-pagin-page-num,
	.tt-pagin-page-sep,
	.tt-pagin-first,
	.tt-pagin-last {
		display: none !important;
	}
	.tt-pagin-prev,
	.tt-pagin-next
	{
		font-size: 17px;
	}
}


/* ------------------------------------------------------------- *
 * Blockquotes
/* ------------------------------------------------------------- */

blockquote,
.blockquote {
	margin-top: 10px;
	margin-bottom: 30px;
	margin-left: 30px;
	padding-left: 30px;
	text-align: left;
	font-size: 24px;
	font-style: italic;
	font-weight: 700;
	border-left: 5px solid #FF5F14;
}
@media (max-width: 992px) {
	blockquote,
	.blockquote {
		margin-left: 15px;
		padding-left: 15px;
		font-size: 18px;
	}
}

blockquote.text-center,
.blockquote.text-center {
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	border: none;
}
blockquote.text-right,
.blockquote.text-right {
	margin-left: auto;
	border-left: none;
	padding-right: 30px;
	border-right: 4px solid #FF5F14;
}

blockquote p,
.blockquote p {
	padding-left: 0;
	font-weight: 700;
	font-style: italic;
	margin: 0;
}

.blockquote-footer {
	display: block;
	margin-top: 20px;
	font-size: 17px;
	color: #111;
	font-weight: normal;
	font-style: normal;
}
.blockquote-footer::before {
	position: relative;
	display: inline-block;
	content: "";
	top: -4px;
	width: 24px;
	height: 2px;
	background-color: #111;
	margin-right: 10px;
}


/* ------------------------------------------------------------- *
 * Testimonial carousel
/* ------------------------------------------------------------- */

.testimonial-carousel {
}

.testimonial-carousel blockquote,
.testimonial-carousel .blockquote {
	font-size: 24px;
}

/* if dark background enabled */
[class*="bg-dark"] .testimonial-carousel blockquote,
[class*="bg-dark"] .testimonial-carousel .blockquote {
	color: #FFF;
}
[class*="bg-dark"] .testimonial-carousel .blockquote-footer {
	color: #AAA;
}
[class*="bg-dark"] .testimonial-carousel .blockquote-footer::before {
	background-color: #AAA;
}


/* ------------------------------------------------------------- *
 * Info box
/* ------------------------------------------------------------- */

.info-box-wrap {
}

.info-box {
	position: relative;
	margin-bottom: 50px;
	text-align: center;
}

/* info box icon */
.info-box-icon {
	display: inline-block;
	margin-bottom: 15px;
	font-size: 42px;
}

/* info box info */
.info-box-info {
}

.info-box-heading {
	margin: 0 0 26px 0;
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 700;
}
.info-box-heading a {
	position: relative;
	color: inherit;
}
.info-box-heading a:hover {
}

.info-box-divider {
	width: 35px;
	height: 3px;
	background-color: #FF5F14;
	margin-bottom: 24px;
	margin-left: auto;
	margin-right: auto;
}

.info-box-text {
	line-height: 1.5;
}


/* Info box icon styles 
======================== */

/* info box icon color */
.info-box-wrap.ib-icon-color .info-box-icon {
	color: #FF5F14;
}

/* info box icon rounded */
.info-box-wrap.ib-icon-bg-color.ib-icon-rounded .info-box-icon {
	width: 70px;
	height: 70px;
	line-height: 70px;
	font-size: 24px;
	border-radius: 50%;
}

/* info box icon with background color */
.info-box-wrap.ib-icon-bg-color .info-box-icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	background-color: #FF5F14;
	margin-bottom: 25px;
	text-align: center;
	font-size: 21px;
}

/* info box icon animation */
.info-box-wrap.ib-icon-animate .info-box:hover .info-box-icon {
	animation: ibpulse .25s ease-in-out 2 alternate;
	-webkit-animation: ibpulse .25s ease-in-out 2 alternate;
}
@-webkit-keyframes ibpulse { /* Chrome, Safari, Opera */
	0% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
	100% {
		transform: scale(1.2);
		-webkit-transform: scale(1.2);
	}
}
@keyframes ibpulse { /* Standard */
	0% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
	100% {
		transform: scale(1.2);
		-webkit-transform: scale(1.2);
	}
}

/* hide info box icon */
.info-box-wrap.ib-hide-icon .info-box-icon {
	display: none;
}


/* Info box styles 
=================== */

/* info box list (no effect on smaller screens!) */
.info-box-wrap.ib-list .info-box {
	text-align: left;
}

.info-box-wrap.ib-list .info-box-icon {
	float: left;
	margin-right: 20px;
	margin-bottom: 0;
	font-size: 32px;
}
@media (max-width: 992px) {
	.info-box-wrap.ib-list .info-box-icon {
		float: none;
	}
}
.info-box-wrap.ib-list.ib-icon-bg-color .info-box-icon {
	width: 52px;
	height: 52px;
	line-height: 52px;
	margin-bottom: 0;
	font-size: 24px;
}
.info-box-wrap.ib-list.ib-icon-bg-color.ib-icon-rounded .info-box-icon {
	width: 52px;
	height: 52px;
	line-height: 52px;
	font-size: 24px;
	border-radius: 50%;
}

.info-box-wrap.ib-list .info-box-info {
	display: table;
}
.info-box-wrap.ib-list .info-box-heading {
	margin: 10px 0 12px 0;
	font-weight: 700;
}
.info-box-wrap.ib-list .info-box-divider {
	width: 30px;
	margin-top: 20px;
	margin-left: 0;
}

/* info box text fixed height (shows only 3 lines) */
.info-box-wrap.ib-fixed-text .info-box-text {
	max-height: 4.5em;
	line-height: 1.5em;
	font-size: 19px;
	overflow: hidden;
}


/* Info box sizes
================== */

/* info box size lg */
.info-box-wrap.ib-lg .info-box-heading {
	font-size: 30px;
}
@media (max-width: 992px) {
	.info-box-wrap.ib-lg .info-box-heading {
		font-size: 28px;
	}
}

.info-box-wrap.ib-list.ib-lg .info-box-heading {
	margin-top: 3px;
}

/* info box size xlg */
.info-box-wrap.ib-xlg .info-box-heading {
	margin-top: 0;
	font-size: 40px;
}
@media (max-width: 992px) {
	.info-box-wrap.ib-xlg .info-box-heading {
		font-size: 28px;
	}
}

.info-box-wrap.ib-list.ib-xlg .info-box-heading {
	margin-top: 3px;
}
.info-box-wrap.ib-list.ib-xlg .info-box-icon {
	font-size: 38px;
}


/* Info box light (use class "ib-light" if the background is dark) 
=================================================================== */
.info-box-wrap.ib-light,
.bg-dark .info-box-wrap {
	color: #FFF;
}


/* ------------------------------------------------------------- *
 *  Search results
/* ------------------------------------------------------------- */

/* Big search box 
================== */
.big-search-box {
	position: relative;
	background-color: rgb(238, 238, 240);
	padding: 40px;
	margin-bottom: 100px;
}
@media (max-width: 768px) {
	.big-search-box  {
		padding: 30px 20px 20px 20px;
		margin-bottom: 10%;
	}
}

#big-search-form {
}
.big-search-input-wrap {
	position: relative;
}
#big-search-input {
	background-color: #FFF;
	border-color: #e2e2e2;
}
#big-search-input:focus {
}

.big-search-options-wrap {
	margin-top: 20px;
}
.bso-title {
	display: inline-block;
	margin-right: 15px;
	font-size: 16px;
	font-weight: 600;
}

.big-search-box .form-btn-inside button {
	background-color: transparent;
}


/* Search results 
================== */
.search-results {
}


/* Search results items wrap 
============================= */
.sr-items-wrap {
}

/* search results head */
.search-results-head {
	margin-bottom: 50px;
	padding-bottom: 20px;
	font-size: 16px;
	border-bottom: 1px solid rgba(132, 132, 132, 0.2);
}
.search-results-head .sr-count {
}
@media (max-width: 767px) {
	.search-results-head .sr-count  {
		margin-top: 20px;
		text-align: left;
	}
}
.search-results-head .sr-count span {
	font-weight: bold;
	font-weight: 600;
	color: #333;
}

.search-results-head .displaying-results {
}
.search-results-head .displaying-results span {
	font-weight: bold;
}
.search-results-head .displaying-results span ~ span:not(:empty)::before {
	content: ", ";
}


/* Search results item 
======================= */
.search-results-item {
	position: relative;
	margin-bottom: 50px;
	padding-bottom: 50px;
	overflow: hidden;
	border-bottom: 1px solid #ededed;
}
.search-results-item::after {
	content: "";
	display: table;
	clear: both;
}
.search-results-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

/* search results item image */
.sr-item-img-holder {
	position: relative;
	display: block;
	float: left;
	width: 320px;
	height: 260px;
	background-color: rgba(238, 238, 240, 1);
	margin-right: 30px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.sr-item-img-holder:hover {
	opacity: .85;
}
@media (max-width: 1200px) {
	.sr-item-img-holder  {
		width: 320px;
		height: 260px;
		margin-right: 20px;
	}
}
@media (max-width: 992px) {
	.sr-item-img-holder  {
		width: 200px;
		height: 200px;
		margin-right: 20px;
	}
}
@media (max-width: 768px) {
	.sr-item-img-holder  {
		float: none;
		width: 100%;
		height: auto;
		padding-bottom: 60%;
		margin-right: 0;
		margin-bottom: 20px;
	}
}
.sr-item-img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

/* search results item info */
.sr-item-info {
	position: relative;
	display: table;
}
@media (max-width: 768px) {
	.sr-item-info  {
		padding-left: 0;
	}
}

.sr-item-title {
	max-width: 600px;
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-size: 34px;
	color: #333;
}
.sr-item-title > a {
	color: #333;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.sr-item-title:hover,
.sr-item-title > a:hover {
	color: #000;
}

.search-results-item .sr-item-type {
	position: relative;
	display: inline-block;
	background-color: rgba(238, 238, 240, 1);
	margin-top: 10px;
	padding: 2px 6px;
	font-size: 14px;
	font-weight: 400;
	color: #111;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.sr-item-description {
	margin-top: 15px;
	font-size: 17px;
}


/* No search results found 
=========================== */
.no-search-results {
	padding-bottom: 20%;
}


/* ------------------------------------------------------------- *
 * Footer
/* ------------------------------------------------------------- */

#footer {
	position: relative;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 120px 0 0 0;
	/* border-top: 1px solid rgba(134, 134, 134, 0.15); */
}
@media (max-width: 767px) {
	#footer {
		padding-top: 70px;
	}
}

.footer-inner {
}

/* footer container */
.footer-container {
	padding-left: 3%;
	padding-right: 3%;
}

body.tt-boxed .footer-container.tt-wrap {
	padding-left: 15px;
	padding-right: 15px;
}


/* Footer blocks 
================= */
.footer-block {
	margin-bottom: 30px;
	font-size: 16px;
	overflow: hidden;
}

.footer-block-heading {
	margin: 0 0 25px 0;
	font-size: 20px;
	font-weight: bold;
	font-weight: 700;
}

.footer-block-content {
}

/* footer logo */
#footer .f-block-logo {
	margin-top: 20px;
	margin-bottom: 40px;
}
#footer .footer-logo {
	display: inline-block;
}
#footer .footer-logo img {
	max-height: 65px;
}

/* footer logo variations */
#footer .logo-light,
#footer .logo-light-m,
#footer .logo-dark-m {
	display: none;
}
@media (max-width: 991px) {
	#footer .logo-dark {
		display: none;
	}
	#footer .logo-dark-m {
		display: block;
	}
}

/* footer links */
ul.f-block-links {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.f-block-links > li {
	display: block;
}
ul.f-block-links > li > a {
	position: relative;
	display: inline-block;
	font-size: 15px;
	font-weight: normal;
	color: #111;
	line-height: 1.8;
	z-index: 1;
}
ul.f-block-links > li > a:hover {
}

ul.f-block-links > li > a::after {
	position: absolute;
	content: "";
	max-width: 100%;
	z-index: -1;
	height: 2px;
	background: #FF5F14;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: scaleX(0);
	transform-origin: right center;
	-webkit-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-moz-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-o-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	-ms-transition: transform .4s cubic-bezier(.645,.045,.355,1);
	transition: transform .4s cubic-bezier(.645,.045,.355,1);
}
ul.f-block-links > li > a:hover::after {
	transform: none;
	transform-origin: left center;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/* footer text */
.f-block-text {
}
.f-block-text p {
	margin-bottom: 7px;
}

/* footer social buttons */
#footer .social-buttons {
	margin-bottom: 20px;
}


/* Footer bottom bar
===================== */
.footer-bottom {
	margin-top: 60px;
	padding: 24px 0;
	font-size: 14px;
	color: #888;
	border-top: 1px solid rgba(128, 128, 128, 0.15);
}
@media (max-width: 768px) {
	.footer-bottom {
		margin-top: 40px;
		padding: 24px 0 44px 0;
	}
}

.footer-bottom p {
	margin-bottom: 5px;
}

/* footer bottom left */
.footer-bottom-left {
}

/* footer bottom col right */
.footer-bottom-right {
}
@media (min-width: 992px) {
	.footer-bottom-right {
		text-align: right;
	}
}


/* Footer medium
================= */
#footer.footer-medium {
	padding: 120px 0 0 0;
}
@media (max-width: 991px) {
	#footer.footer-medium {
		padding: 80px 0 0 0;
	}
}

/* footer medium bottom */
#footer.footer-medium .footer-bottom {
	margin-top: 40px;
	border-top: none;
}
@media (max-width: 991px) {
	#footer.footer-medium .footer-bottom {
		margin-top: 0;
	}
}
#footer.footer-medium .footer-bottom .footer-bottom-left {
}
#footer.footer-medium .footer-bottom .footer-bottom-right {
}


/* Footer simple
================= */
#footer.footer-simple {
	padding: 120px 0 80px 0;
	text-align: center;
}

/* footer simple logo */
#footer.footer-simple .f-block-logo {
	margin: 0 0 20px 0;
}
#footer.footer-simple .f-block-logo {
	display: inline-block;
}
#footer.footer-simple .footer-logo img {
	max-height: 65px;
	width: 50%;
}

/* footer simple f-block-links */
#footer.footer-simple ul.f-block-links > li {
	display: inline-block;
	margin: 0 10px;
}
@media (max-width: 768px) {
	#footer.footer-simple ul.f-block-links > li {
		margin-left: 5px;
		margin-right: 5px;
	}
}

/* footer simple social buttons */
#footer.footer-simple .social-buttons {
	text-align: center;
}
#footer.footer-simple .social-buttons .btn-link:hover {
	color: #FF5F14;
}

/* footer simple copyright */
#footer.footer-simple .footer-simple-copyright {
	font-size: 14px;
	text-align: center;
	color: #888;
}
#footer.footer-simple .footer-simple-copyright p {
	margin-bottom: 5px;
}


/* Footer minimal
================== */
#footer.footer-minimal {
	height: 83px;
	padding: 22px 0;
	border-top: 1px solid rgba(128, 128, 128, 0.05);
}
@media (max-width: 991px) {
	#footer.footer-minimal {
		height: auto;
		padding: 80px 0 60px 0;
	}
}

@media (min-width: 1282px) { /* boxed layout width */
	#footer.footer-minimal .footer-container {
		padding-left: 3%;
		padding-right: 3%;
	}
}
body.tt-boxed #footer.footer-minimal .footer-container.tt-wrap {
	padding-left: 15px;
	padding-right: 15px;
}

@media (min-width: 992px) {
	#footer.footer-minimal .footer-block {
		margin: 0;
	}
}

#footer.footer-minimal .social-buttons {
	margin-top: 8px;
	margin-bottom: 0;
	text-align: right;
}
@media (max-width: 991px) {
	#footer.footer-minimal .social-buttons {
		text-align: center;
	}
}

#footer.footer-minimal .footer-minimal-copyright {
	font-size: 14px;
	color: #888;
}
#footer.footer-minimal .footer-minimal-copyright p {
	margin-bottom: 0;
}
@media (max-width: 991px) {
	#footer.footer-minimal .footer-minimal-copyright {
		text-align: center;
	}
}


/* Footer dark
=============== */
#footer.footer-dark {
	background-color: #000;
	color: #BBB;
	border-top: none;
}

/* footer dark footer block */
#footer.footer-dark .footer-block-heading {
	color: #DDD;
}

#footer.footer-dark ul.f-block-links > li > a {
	color: #BBB;
}
#footer.footer-dark ul.f-block-links > li > a::after {
	opacity: 1;
}
#footer.footer-dark ul.f-block-links > li > a:hover {
	color: #FFF;
}

#footer.footer-dark .f-block-text a:hover {
	color: #FFF;
}

/* footer logo variations if "footer-dark" enabled */
#footer.footer-dark .logo-dark,
#footer.footer-dark .logo-dark-m {
	display: none;
}

#footer.footer-dark .logo-light {
	display: block;
}
@media (max-width: 991px) {
	#footer.footer-dark .logo-light {
		display: none;
	}
	#footer.footer-dark .logo-light-m {
		display: block;
	}
}

/* footer dark buttons */
#footer.footer-dark .btn-gray {
	color: #FFF;
}
#footer.footer-dark .btn-gray:hover {
	color: #FFF;
}
#footer.footer-dark .btn-gray::before {
	background-color: rgba(0, 0, 0, 0.25);
}

#footer.footer-dark .btn-link {
	color: #FFF;
}
#footer.footer-dark .btn-link:hover {
	color: #FF5F14;
}

/* footer dark forms */
#footer.footer-dark .form-control {
	background-color: #101010;
	color: #CCC;
}
#footer.footer-dark .form-btn-inside button {
	color: #CCC;
}

/* footer dark footer bottom */
#footer.footer-dark .footer-bottom {
	background-color: rgba(0, 0, 0, 0.2);
	color: #888;
	border-top-color: rgba(128, 128, 128, 0.16);
}
#footer.footer-dark .footer-bottom a {
	color: #DDD;
}
#footer.footer-dark .footer-bottom a:hover {
	color: #FF5F14;
}

#footer.footer-dark .footer-simple-copyright a {
}
#footer.footer-dark .footer-simple-copyright a:hover {
	color: #FF5F14;
}

#footer.footer-dark .footer-minimal-copyright a {
	color: #DDD;
}
#footer.footer-dark .footer-minimal-copyright a:hover {
	color: #FF5F14;
}


/* Footer gray
=============== */
#footer.footer-gray {
	background-color: #F1F1F1;
}


/* Fixed footer (no effect on small devices) 
============================================= */
@media (min-width: 992px) {
	#footer.footer-fixed {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		height: auto;
		margin-top: 0 !important;
		z-index: 1;
	}
}
