/**
 * Base CSS used by the builder's layout, including rows
 * and columns. Any module specific global CSS should be
 * included in fl-builder-layout-modules.css.
 */

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

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:not([data-accepts]):before,
.fl-module:not([data-accepts]):after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:not([data-accepts]):after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* Rows
------------------------------------------------------ */

.fl-row,
.fl-row-content {
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}
.fl-row-content-wrap {
	position: relative;
}

/* Photo Bg */
.fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {
	background-attachment: scroll;
}

/* Video and Embed Code Bg */
.fl-row-bg-video,
.fl-row-bg-video .fl-row-content,
.fl-row-bg-embed,
.fl-row-bg-embed .fl-row-content {
	position: relative;
}

.fl-row-bg-video .fl-bg-video,
.fl-row-bg-embed .fl-bg-embed-code {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.fl-row-bg-video .fl-bg-video video,
.fl-row-bg-embed .fl-bg-embed-code video {
	bottom: 0;
	left: 0px;
	max-width: none;
	position: absolute;
	right: 0;
	top: 0px;
}
.fl-row-bg-video .fl-bg-video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}
.fl-row-bg-video .fl-bg-video iframe,
.fl-row-bg-embed .fl-bg-embed-code iframe {
	pointer-events: none;
	width: 100vw;
  	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  	max-width: none;
  	min-height: 100vh;
  	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  	position: absolute;
  	top: 50%;
  	left: 50%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
  	transform: translate(-50%, -50%);
}
.fl-bg-video-fallback {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

/* Slideshow Bg */
.fl-row-bg-slideshow,
.fl-row-bg-slideshow .fl-row-content {
	position: relative;
}
.fl-row .fl-bg-slideshow {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.fl-builder-edit .fl-row .fl-bg-slideshow * {
	bottom: 0;
	height: auto !important;
	left: 0;
	position: absolute !important;
	right: 0;
	top: 0;
}

/* Row Bg Overlay */
.fl-row-bg-overlay .fl-row-content-wrap:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-row-bg-overlay .fl-row-content {
	position: relative;
	z-index: 1;
}

/* Full Height Rows */
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}
.fl-row-overlap-top .fl-row-content-wrap {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.fl-row-default-height .fl-row-content,
.fl-row-full-height .fl-row-content,
.fl-row-custom-height .fl-row-content {
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.fl-row-default-height .fl-row-full-width.fl-row-content,
.fl-row-full-height .fl-row-full-width.fl-row-content,
.fl-row-custom-height .fl-row-full-width.fl-row-content {
	max-width: 100%;
	width: 100%;
}

/* Full height align center */
.fl-row-default-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-center .fl-row-content-wrap {
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

/* Full height align bottom */
.fl-row-default-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	align-items: flex-end;
}

/* Column Groups
------------------------------------------------------ */
.fl-col-group-equal-height {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
	flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	display: flex;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content {
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	width: 100%;
}
.fl-col-group-equal-height:before,
.fl-col-group-equal-height .fl-col:before,
.fl-col-group-equal-height .fl-col-content:before,
.fl-col-group-equal-height:after,
.fl-col-group-equal-height .fl-col:after,
.fl-col-group-equal-height .fl-col-content:after{
	content: none;
}

/* Equal height align top */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {
	justify-content: flex-start;
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	justify-content: center;
}

/* Equal height align bottom */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
	justify-content: flex-end;
}

.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	width: 100%;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	float: left;
	min-height: 1px;
}

/* Column Bg Overlay */
.fl-col-bg-overlay .fl-col-content {
	position: relative;
}
.fl-col-bg-overlay .fl-col-content:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-col-bg-overlay .fl-module {
	position: relative;
	z-index: 2;
}

/* Templates
------------------------------------------------------ */

.single:not(.woocommerce).single-fl-builder-template .fl-content {
	width: 100%;
}

/* Shapes & Patterns
------------------------------------------------------- */
.fl-builder-layer {
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.fl-builder-shape-layer {
	z-index: 0;
}
.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 2;
}
.fl-row-has-layers .fl-row-content {
	z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
	z-index: 2;
}

.fl-builder-layer > * {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
}
.fl-builder-layer + .fl-row-content {
	position: relative;
}
.fl-builder-layer .fl-shape {
	fill: #aaa;
	stroke: none;
	stroke-width: 0;
	width:100%;
}
/**
Fix ipad parallax issue on safari
https://core.trac.wordpress.org/ticket/48802
https://core.trac.wordpress.org/ticket/49285
https://github.com/WordPress/gutenberg/issues/17718
*/
@supports (-webkit-touch-callout: inherit) {
  .fl-row.fl-row-bg-parallax .fl-row-content-wrap,
  .fl-row.fl-row-bg-fixed .fl-row-content-wrap {
    background-position: center !important;
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
/**
 * Base CSS used by all (or many) modules. This file should
 * not contain any generic layout CSS that doesn't apply to
 * modules. That belongs in fl-builder-layout.css.
 */

/* Utilities
------------------------------------------------------ */

.fl-clearfix:before,
.fl-clearfix:after {
	display: table;
	content: " ";
}
.fl-clearfix:after {
	clear: both;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

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

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	border-radius: 4px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 12px 24px;
	text-decoration: none;
	text-shadow: none;
}
.fl-builder-content .fl-button:hover {
	text-decoration: none;
}
.fl-builder-content .fl-button:active {
	position: relative;
	top: 1px;
}
.fl-builder-content .fl-button-width-full .fl-button {
	width: 100%;
	display: block;
	text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.fl-builder-content .fl-button-left {
	text-align: left;
}
.fl-builder-content .fl-button-center {
	text-align: center;
}
.fl-builder-content .fl-button-right {
	text-align: right;
}
.fl-builder-content .fl-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
	vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.fl-icon-wrap {
	display: inline-block;
}
.fl-icon {
	display: table-cell;
	vertical-align: middle;
}
.fl-icon a {
	text-decoration: none;
}
.fl-icon i {
	float: right;
	height: auto;
	width: auto;
}
.fl-icon i:before {
	border: none !important;
	height: auto;
	width: auto;
}
.fl-icon-text {
	display: table-cell;
	text-align: left;
	padding-left: 15px;
	vertical-align: middle;
}
.fl-icon-text-empty {
	display: none;
}
.fl-icon-text *:last-child {
	margin: 0 !important;
	padding: 0 !important;
}
.fl-icon-text a {
	text-decoration: none;
}
.fl-icon-text span {
	display: block;
}
.fl-icon-text span.mce-edit-focus {
	min-width: 1px;
}

/* Photos
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}
.fl-photo {
	line-height: 0;
	position: relative;
}
.fl-photo-align-left {
	text-align: left;
}
.fl-photo-align-center {
	text-align: center;
}
.fl-photo-align-right {
	text-align: right;
}
.fl-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.fl-photo-img-svg {
	width: 100%;
}
.fl-photo-content img {
	display: inline;
	height: auto;
	max-width: 100%;
}
.fl-photo-crop-circle img {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.fl-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fl-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.fl-photo-caption-hover {
	background: rgba(0,0,0,0.7);
	bottom: 0;
	color: #fff;
	left: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
	padding: 10px 15px;
	position: absolute;
	right: 0;
	-webkit-transition:opacity 0.3s ease-in;
	-moz-transition:opacity 0.3s ease-in;
	transition:opacity 0.3s ease-in;
}
.fl-photo-content:hover .fl-photo-caption-hover {
	opacity: 100;
	filter: alpha(opacity = 100);
}

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

.fl-builder-pagination,
.fl-builder-pagination-load-more {
	padding: 40px 0;
}
.fl-builder-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.fl-builder-pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.fl-builder-pagination li a.page-numbers,
.fl-builder-pagination li span.page-numbers {
	border: 1px solid #e6e6e6;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 5px;
}
.fl-builder-pagination li a.page-numbers:hover,
.fl-builder-pagination li span.current {
	background: #f5f5f5;
	text-decoration: none;
}

/* Slideshows
------------------------------------------------------ */

.fl-slideshow,
.fl-slideshow * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

}
.fl-slideshow .fl-slideshow-image img {
	max-width: none !important;
}
.fl-slideshow-social {
	line-height: 0 !important;
}
.fl-slideshow-social * {
	margin: 0 !important;
}

/* Sliders
------------------------------------------------------ */

.fl-builder-content .bx-wrapper .bx-viewport {
	background: transparent;
	border: none;
	box-shadow: none;
	left: 0;
}

/* Lightbox
------------------------------------------------------ */

.mfp-wrap button.mfp-arrow,
.mfp-wrap button.mfp-arrow:active,
.mfp-wrap button.mfp-arrow:hover,
.mfp-wrap button.mfp-arrow:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 50%;
	box-shadow: none !important;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 0;
	box-shadow: none !important;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
	top: 32px!important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

.mfp-wrap .mfp-preloader.fa {
	font-size: 30px;
}

/* Form Fields
------------------------------------------------------ */

.fl-form-field {
	margin-bottom: 15px;
}
.fl-form-field input.fl-form-error {
	border-color: #DD6420;
}
.fl-form-error-message {
	clear: both;
	color: #DD6420;
	display: none;
	padding-top: 8px;
	font-size: 12px;
	font-weight: lighter;
}
.fl-form-button-disabled {
	opacity: 0.5;
}

/* Animations
------------------------------------------------------ */

.fl-animation {
	opacity: 0;
}
body.fl-no-js .fl-animation {
	opacity: 1;
}
.fl-builder-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}
.fl-animated {
	animation-fill-mode: both;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
  margin-left: -10px;
}

/* Default button colors for non Beaver Builder themes.
------------------------------------------------------ */

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	background: #fafafa;
	border: 1px solid #ccc;
	color: #333;
}
.fl-builder-content .fl-button:is(a, button) *,
.fl-builder-content a.fl-button:visited * {
	color: #333;
}@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-medium-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
 }@media (max-width: 768px) { /* Rows
------------------------------------------------------ */

.fl-row-content-wrap {
	background-attachment: scroll !important;
}
.fl-row-bg-parallax .fl-row-content-wrap {
	background-attachment: scroll !important;
	background-position: center center !important;
}

/* Column Groups
------------------------------------------------------ */

/* Equal Heights */
.fl-col-group.fl-col-group-equal-height {
	display: block;
}
.fl-col-group.fl-col-group-equal-height.fl-col-group-custom-width {
	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col:not(.fl-col-small-custom-width) {
	flex-basis: 100%;
	width: 100% !important;
}
.fl-col-group.fl-col-group-medium-reversed:not(.fl-col-group-responsive-reversed) {
	display: unset;
	display: unset;
	-webkit-flex-wrap: unset;
	flex-wrap: unset;
	flex-direction: unset;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	clear: both;
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: auto !important;
}
.fl-col-small:not(.fl-col-small-full-width) {
	max-width: 400px;
}
.fl-block-col-resize {
	display:none;
}
/* Rows
------------------------------------------------------ */

.fl-row[data-node] .fl-row-content-wrap {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
.fl-row[data-node] .fl-bg-video,
.fl-row[data-node] .fl-bg-slideshow {
	left: 0;
	right: 0;
}

/* Columns
------------------------------------------------------ */

.fl-col[data-node] .fl-col-content {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
 }@media (min-width: 1201px) {
	html .fl-visible-large:not(.fl-visible-desktop),
	html .fl-visible-medium:not(.fl-visible-desktop),
	html .fl-visible-mobile:not(.fl-visible-desktop) {
		display: none;
	}
}

@media (min-width: 993px) and (max-width: 1200px) {
	html .fl-visible-desktop:not(.fl-visible-large),
	html .fl-visible-medium:not(.fl-visible-large),
	html .fl-visible-mobile:not(.fl-visible-large) {
		display: none;
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	html .fl-visible-desktop:not(.fl-visible-medium),
	html .fl-visible-large:not(.fl-visible-medium),
	html .fl-visible-mobile:not(.fl-visible-medium) {
		display: none;
	}
}

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
}
.fl-row-fixed-width {
	max-width: 1100px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }











.fl-node-z7ishkvp16w5 > .fl-row-content-wrap {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #000a03;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}






















.fl-node-6kzu8ra1idnh {
	width: 100%;
}




.fl-node-apm081xtnbcz {
	width: 100%;
}




.fl-node-7k60a138ngsc {
	width: 25%;
}




.fl-node-7t0cd21iuylz {
	width: 100%;
}




.fl-node-olhraf3isc64 {
	width: 100%;
}




.fl-node-rlsm38v96d5n {
	width: 25%;
}




.fl-node-cjhi8lv23nd7 {
	width: 25%;
}




.fl-node-dwlo6fpsn9um {
	width: 25%;
}
img.mfp-img {
    padding-bottom: 40px !important;
}

/* Support for object-fit */
.fl-builder-edit .fl-fill-container img {
	transition: object-position .5s;
}

.fl-fill-container :is(.fl-module-content, .fl-photo, .fl-photo-content, img) {
	height: 100% !important;
	width: 100% !important;
}

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-4an2f8zgvopb, .fl-node-4an2f8zgvopb .fl-photo {
	text-align: center;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
.fl-button:is(a, button) {
    cursor: pointer;
}








.fl-node-7choxjd3narb.fl-button-wrap, .fl-node-7choxjd3narb .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-7choxjd3narb .fl-button:is(a, button), .fl-builder-content .fl-node-7choxjd3narb a.fl-button:visited, .fl-page .fl-builder-content .fl-node-7choxjd3narb .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-7choxjd3narb a.fl-button:visited {
	border: 1px solid #f3cb00;
	background-color: #ffd700;
}
.fl-builder-content .fl-node-7choxjd3narb .fl-button:is(a, button):hover, .fl-builder-content .fl-node-7choxjd3narb .fl-button:is(a, button):focus, .fl-page .fl-builder-content .fl-node-7choxjd3narb .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-7choxjd3narb .fl-button:is(a, button):focus {
	border: 1px solid #f3cb00;
}
.fl-builder-content .fl-node-7choxjd3narb .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-7choxjd3narb .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-7choxjd3narb .fl-button:is(a, button):hover, .fl-page .fl-page .fl-builder-content .fl-node-7choxjd3narb .fl-button:is(a, button):hover {
	background-color: #ffd700;
}
:where(.fl-builder-content .fl-node-7choxjd3narb .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-7choxjd3narb .fl-button:is(a, button) *) {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}









.fl-node-wtlhx5q6bgim.fl-button-wrap, .fl-node-wtlhx5q6bgim .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-wtlhx5q6bgim .fl-button:is(a, button), .fl-builder-content .fl-node-wtlhx5q6bgim a.fl-button:visited, .fl-page .fl-builder-content .fl-node-wtlhx5q6bgim .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-wtlhx5q6bgim a.fl-button:visited {
	border: 1px solid #f3cb00;
	background-color: #ffd700;
}
.fl-builder-content .fl-node-wtlhx5q6bgim .fl-button:is(a, button):hover, .fl-builder-content .fl-node-wtlhx5q6bgim .fl-button:is(a, button):focus, .fl-page .fl-builder-content .fl-node-wtlhx5q6bgim .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-wtlhx5q6bgim .fl-button:is(a, button):focus {
	border: 1px solid #f3cb00;
}
.fl-builder-content .fl-node-wtlhx5q6bgim .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-wtlhx5q6bgim .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-wtlhx5q6bgim .fl-button:is(a, button):hover, .fl-page .fl-page .fl-builder-content .fl-node-wtlhx5q6bgim .fl-button:is(a, button):hover {
	background-color: #ffd700;
}
:where(.fl-builder-content .fl-node-wtlhx5q6bgim .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-wtlhx5q6bgim .fl-button:is(a, button) *) {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}









.fl-node-25bkhup8qm3y.fl-button-wrap, .fl-node-25bkhup8qm3y .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-25bkhup8qm3y .fl-button:is(a, button), .fl-builder-content .fl-node-25bkhup8qm3y a.fl-button:visited, .fl-page .fl-builder-content .fl-node-25bkhup8qm3y .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-25bkhup8qm3y a.fl-button:visited {
	border: 1px solid #f3cb00;
	background-color: #ffd700;
}
.fl-builder-content .fl-node-25bkhup8qm3y .fl-button:is(a, button):hover, .fl-builder-content .fl-node-25bkhup8qm3y .fl-button:is(a, button):focus, .fl-page .fl-builder-content .fl-node-25bkhup8qm3y .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-25bkhup8qm3y .fl-button:is(a, button):focus {
	border: 1px solid #f3cb00;
}
.fl-builder-content .fl-node-25bkhup8qm3y .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-25bkhup8qm3y .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-25bkhup8qm3y .fl-button:is(a, button):hover, .fl-page .fl-page .fl-builder-content .fl-node-25bkhup8qm3y .fl-button:is(a, button):hover {
	background-color: #ffd700;
}
:where(.fl-builder-content .fl-node-25bkhup8qm3y .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-25bkhup8qm3y .fl-button:is(a, button) *) {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}









.fl-node-7ag30dc4tmof.fl-button-wrap, .fl-node-7ag30dc4tmof .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-7ag30dc4tmof .fl-button:is(a, button), .fl-builder-content .fl-node-7ag30dc4tmof a.fl-button:visited, .fl-page .fl-builder-content .fl-node-7ag30dc4tmof .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-7ag30dc4tmof a.fl-button:visited {
	border: 1px solid #f3cb00;
	background-color: #ffd700;
}
.fl-builder-content .fl-node-7ag30dc4tmof .fl-button:is(a, button):hover, .fl-builder-content .fl-node-7ag30dc4tmof .fl-button:is(a, button):focus, .fl-page .fl-builder-content .fl-node-7ag30dc4tmof .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-7ag30dc4tmof .fl-button:is(a, button):focus {
	border: 1px solid #f3cb00;
}
.fl-builder-content .fl-node-7ag30dc4tmof .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-7ag30dc4tmof .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-7ag30dc4tmof .fl-button:is(a, button):hover, .fl-page .fl-page .fl-builder-content .fl-node-7ag30dc4tmof .fl-button:is(a, button):hover {
	background-color: #ffd700;
}
:where(.fl-builder-content .fl-node-7ag30dc4tmof .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-7ag30dc4tmof .fl-button:is(a, button) *) {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}

/* transition none */
.no-transition * {
    transition-timing-function: initial;
    -moz-transition-timing-function: initial;
    -webkit-transition-timing-function: initial;
    -o-transition-timing-function: initial;
    -ms-transition-timing-function: initial;
    transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    -ms-transition-duration: 0s;
}

a:focus{
    outline: none !important;
}

.fl-builder-tnit-gallery-settings option[value^="disable"] {
    color: #cdcdcd !important;
    pointer-events: none;
}

.gallery_limit_info, .mosaic_grid_info {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid rgb(255, 238, 186);
    border-radius: 0.25rem;
    color: rgb(133, 100, 4);
    background-color: rgb(255, 243, 205);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 4px 0px;
    line-height: 1.4 !important;
}

.gallery_limit_info a, .mosaic_grid_info a {
    font-weight: 700;
    text-decoration: underline !important;
}


/* ===================================
    Filter Default
====================================== */

.tnit-gallery-filter-layout{
    margin-bottom: 3rem;
    text-align: center;
}

.tnit-gallery-filter-layout .cbp-l-filters-button .cbp-filter-item{
    font: inherit;
    font-weight: 500;
    color: #2b2b2b;
    border:1px solid transparent;
    margin: 0 5px;
    font-size: 16px;
    padding: 5px 20px;
    transition: all .3s ease-in-out;
}

.tnit-gallery-filter-layout .cbp-filter-item.cbp-filter-item-active {
    background-color: #875A34;
    color: #fff;
    border:1px solid #875A34;
    cursor: default;
}
.tnit-gallery-filter-layout .cbp-filter-item:not(.cbp-filter-item-active):hover{
    color: #875A34;
    transition: all .3s ease-in-out;
}

.tnit-gallery-filter-layout .cbp-l-filters-button{
    margin: 0;
}

.tnit-gallery-filter-layout .select-option{
    display: none;
}

.tnit-filter-cat option{
    display: none;
}


/*Filter Style 02*/

.tnit-gallery-filter-layout.style-2 .cbp-filter-item.cbp-filter-item-active {
    color: #875A34;
    border-color: transparent;
    background-color: transparent;
    border-bottom: 1px solid #875A34;
}

/*Filter Style 03*/

.tnit-gallery-filter-layout.style-3 .cbp-filter-item {
    border-radius: 50px;
}

.tnit-gallery-filter-layout.style-4 .cbp-filter-item{
    border-radius: 50px;
}

.tnit-gallery-filter-layout.style-4 .cbp-filter-item.cbp-filter-item-active {
    background-color: transparent;
    color:#875A34;
}

/* ===================================
    Mobile Filter
====================================== */

.tnit-gallery-dropdown .select-option{
    width: 100%;
    position: relative;
    background-color: #875a34;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    text-align: left;
    display: block;
    margin-bottom: 1px;
}

.tnit-gallery-dropdown.right .select-option{
    text-align: right;
}

.tnit-gallery-dropdown .select-content{
    pointer-events: none;
}

.tnit-gallery-dropdown .select-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    line-height: 35px;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
    text-align: center;
}

.tnit-gallery-dropdown.right .select-icon{
    right: auto;
    left: 15px;
}

.tnit-gallery-dropdown.active .select-icon {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.tnit-gallery-dropdown .cbp-l-filters-button .cbp-filter-item {
    position: relative;
    font: inherit;
    border: 1px solid #875a34;
    background-color: #875a34;
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    margin: 0;
    font-size: 16px;
    width: 100%;

    text-align: left;
    -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.tnit-gallery-dropdown .cbp-l-filters-button{
    width: 100%;
    position: absolute;
    padding: 0;
    list-style: none;
    display:none;
    border-top: 1px solid #fff;
    z-index: 9;
    margin: 0;
    -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tnit-gallery-dropdown .cbp-l-filters-button .cbp-filter-item:hover{
    background-color: #fff;
    color: #2b2b2b;
    border-color: transparent;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


.tnit-gallery-dropdown.active .cbp-l-filters-button{
    display:block;
}

.tnit-gallery-dropdown .cbp-filter-item.cbp-filter-item-active{
    display: none;
}

/* ===================================
    Gallery Default
====================================== */

[class*=tnit-gallery-layout]{
    position: relative;
    width: 100%;
    display: block;
}

[class*=tnit-gallery-layout] .cbp {
    position: relative;
    z-index: 1;
    height: 400px;
    /*margin: 0 2px;*/
    margin: 0;
}

.tnit-gallery-layout-carousel{
    display: none;
}

.tnit-gallery-layout-carousel.owl-loaded{
    display: block;
}

.tnit-gallery-layout-grid.cbp-caption-active .cbp-caption,
.tnit-gallery-layout-grid.cbp-caption-active .cbp-caption-defaultWrap,
.tnit-gallery-layout-grid.cbp-caption-active .cbp-caption-activeWrap{
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    min-width: 100%;
    height: 100%;
    width: 100%;
}
.tnit-gallery-layout-grid .tnit-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.tnit-gallery-layout-mosaic .cbp-caption{
    height: 100%;
    overflow: hidden;
}

.tnit-gallery-layout-mosaic .cbp-caption-defaultWrap{
    height: 100%;
}

.tnit-gallery-layout-mosaic .tnit-image{
    height: 100% !important;
    object-fit: cover;
}

.cbp-l-caption-alignCenter{
    position: relative;
}

.tnit-gallery-layout-grid .cbp-item{
    height: 250px;
}

.tnit-overlay-icon{
    position: relative;
    display: block;
}

.tnit-overlay-icon a .dashicons,.tnit-overlay-icon a .dashicons:before{
    font-size: inherit;
    height: inherit;
    width: inherit;
}

.tnit-overlay-icon a {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    height: 45px;
    width: 45px;
    /*line-height: 45px;*/
    border: 1px solid transparent;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 15px 5px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.tnit-overlay-icon a:hover,.tnit-overlay-icon a:focus{
    color: #fff;
}

.tnit-gallery .tnit-overlay-content {
    padding: 0px 5px;
}
.tnit-overlay-content .title{
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0;
}

.tnit-overlay-content .desc {
    color: #fff;
    font-size: 16px;
    margin-top: 2px;
}


/*Zoom-center-bottom*/
.cbp-caption-zoom-center-bottom .cbp-caption:hover .cbp-caption-defaultWrap {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}

.cbp-caption-zoom-center-bottom .cbp-caption-defaultWrap {
    -webkit-transition: -webkit-transform .35s ease-out;
    transition: -webkit-transform .35s ease-out;
    -o-transition: transform .35s ease-out;
    transition: transform .35s ease-out;
    transition: transform .35s ease-out, -webkit-transform .35s ease-out;
}

.cbp-caption-zoom-center-bottom .cbp-caption-activeWrap {
    opacity: 0;
    top: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
}

.cbp-caption-zoom-center-bottom .cbp-caption:hover .cbp-caption-activeWrap {
    opacity: 1;
}

.cbp-caption-zoom-center-bottom .tnit-overlay-content {
    position: absolute;
    bottom: -100px;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.cbp-caption-zoom-center-bottom .cbp-caption:hover .tnit-overlay-content {
    bottom: 25px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.cbp-caption-zoom-center-bottom .tnit-overlay-icon{
    margin-top: -100px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.cbp-caption-zoom-center-bottom .cbp-caption:hover .tnit-overlay-icon {
    margin: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/*Zoom-top-bottom*/
.cbp-caption-zoom-top-bottom .cbp-caption .cbp-caption-defaultWrap {
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: translate3d(-10px,0,0);
    transform: translate3d(-10px,0,0);
}


.cbp-caption-zoom-top-bottom .cbp-caption:hover .cbp-caption-defaultWrap {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.cbp-caption-zoom-top-bottom .cbp-caption-defaultWrap {
    -webkit-transition: -webkit-transform .35s ease-out;
    transition: -webkit-transform .35s ease-out;
    -o-transition: transform .35s ease-out;
    transition: transform .35s ease-out;
    transition: transform .35s ease-out, -webkit-transform .35s ease-out;
}

.cbp-caption-zoom-top-bottom .cbp-caption-activeWrap {
    opacity: 0;
    top: 0;
    padding: 15px 30px;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
}

.cbp-caption-zoom-top-bottom .cbp-caption:hover .cbp-caption-activeWrap {
    opacity: 1;
}

.cbp-caption-zoom-top-bottom .tnit-overlay-content {
    position: absolute;
    text-align: left;
    bottom: -100px;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.cbp-caption-zoom-top-bottom .cbp-caption:hover .tnit-overlay-content {
    bottom: 15px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.cbp-caption-zoom-top-bottom .tnit-overlay-icon{
    position: absolute;
    text-align: right;
    width: 100%;
    top: 0;
    left: 0;
    margin-top: -100px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


.cbp-caption-zoom-top-bottom .cbp-caption:hover .tnit-overlay-icon {
    margin: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


.cbp-caption-zoom-top-bottom .tnit-overlay-icon a{
    font-size: 18px;
    color: #020202;
    background-color: #fff;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.cbp-caption-zoom-top-bottom .tnit-overlay-icon a:hover{
    background-color:transparent;
    border-color: #fff;
    color: #fff;
}

.cbp-caption-zoom-top-bottom .tnit-overlay-icon a:hover i{
    /*color: #fff;*/
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/*rotate*/
.cbp-caption-rotate .cbp-caption:hover .cbp-caption-defaultWrap {
    -webkit-transform: scale(1.25) rotate(3deg);
    -ms-transform: scale(1.25) rotate(3deg);
    transform: scale(1.25) rotate(3deg);
}

.cbp-caption-rotate .cbp-caption-defaultWrap {
    -webkit-transition: -webkit-transform .35s ease-out;
    transition: -webkit-transform .35s ease-out;
    -o-transition: transform .35s ease-out;
    transition: transform .35s ease-out;
    transition: transform .35s ease-out, -webkit-transform .35s ease-out;
}

.cbp-caption-rotate .cbp-caption-activeWrap {
    opacity: 0;
    top: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
}


.cbp-caption-rotate .cbp-caption:hover .cbp-caption-activeWrap {
    opacity: 1;
}

/*zoom-box-out*/
.cbp-caption-zoom-box-out .cbp-caption:hover .cbp-caption-defaultWrap {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}

.cbp-caption-zoom-box-out .cbp-caption-defaultWrap {
    -webkit-transition: -webkit-transform .35s ease-out;
    transition: -webkit-transform .35s ease-out;
    -o-transition: transform .35s ease-out;
    transition: transform .35s ease-out;
    transition: transform .35s ease-out, -webkit-transform .35s ease-out;
}

.cbp-caption-zoom-box-out .cbp-caption-activeWrap {
    opacity: 0;
    top: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
}


.cbp-caption-zoom-box-out .cbp-caption:hover .cbp-caption-activeWrap {
    opacity: 1;
}


.cbp-caption-zoom-box-out .cbp-caption-activeWrap:before {
    content: "";
    position: absolute;
    top: 10%;
    left: 7%;
    height: 79%;
    width: 86%;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    pointer-events: none;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
}

.tnit-gallery .cbp-caption-rotate{
    overflow: hidden;
}

.cbp-caption-zoom-box-out .cbp-caption-activeWrap:after {
    content: "";
    top: 6%;
    position: absolute;
    height: 88%;
    width: 80%;
    left: 10%;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    pointer-events: none;
    -webkit-transform: scale3d(1, 0, 1);
    transform: scale3d(1, 0, 1);
}
.cbp-caption-zoom-box-out .cbp-caption:hover .cbp-caption-activeWrap:before,.cbp-caption-zoom-box-out .cbp-caption:hover .cbp-caption-activeWrap:after{
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition: -webkit-transform 600ms;
    transition: -webkit-transform 600ms;
    -o-transition: transform 600ms;
    transition: transform 600ms;
    transition: transform 600ms, -webkit-transform 600ms;
}


/*zoom-box*/
.cbp-caption-zoom-box .cbp-caption:hover .cbp-caption-defaultWrap {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}

.cbp-caption-zoom-box .cbp-caption-defaultWrap {
    -webkit-transition: -webkit-transform .35s ease-out;
    transition: -webkit-transform .35s ease-out;
    -o-transition: transform .35s ease-out;
    transition: transform .35s ease-out;
    transition: transform .35s ease-out, -webkit-transform .35s ease-out;
}

.cbp-caption-zoom-box .cbp-caption-activeWrap {
    opacity: 0;
    top: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
}


.cbp-caption-zoom-box .cbp-caption:hover .cbp-caption-activeWrap {
    opacity: 1;
}


.cbp-caption-zoom-box .cbp-caption-activeWrap:before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    content: '';
    opacity: 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0,1);
    -ms-transform: scale(0,1);
    transform: scale(0,1);
    pointer-events: none;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.5s;
    transition: opacity 0.35s, -webkit-transform 0.5s;
    -o-transition: opacity 0.35s, transform 0.5s;
    transition: opacity 0.35s, transform 0.5s;
    transition: opacity 0.35s, transform 0.5s, -webkit-transform 0.5s;
}

.cbp-caption-zoom-box .cbp-caption-activeWrap:after {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    content: '';
    opacity: 0;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1,0);
    -ms-transform: scale(1,0);
    transform: scale(1,0);
    pointer-events: none;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.5s;
    transition: opacity 0.35s, -webkit-transform 0.5s;
    -o-transition: opacity 0.35s, transform 0.5s;
    transition: opacity 0.35s, transform 0.5s;
    transition: opacity 0.35s, transform 0.5s, -webkit-transform 0.5s;
}

.cbp-caption-zoom-box .cbp-caption:hover .cbp-caption-activeWrap:before,.cbp-caption-zoom-box .cbp-caption:hover .cbp-caption-activeWrap:after{
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.cbp-caption-zoom-box .tnit-overlay-content {
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.cbp-caption-zoom-box .cbp-caption:hover .tnit-overlay-content {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.cbp-caption-zoom-box .tnit-overlay-icon{
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.cbp-caption-zoom-box .cbp-caption:hover .tnit-overlay-icon {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


[class*=tnit-gallery-layout] .cbp-caption-activeWrap {
    background-color: rgba(135, 90, 52, 0.8);
}

/*Crazy Layout*/
.cbp.crazy .cbp-item:nth-child(1),.cbp.crazy .cbp-item:nth-child(3){
    padding-top: 100px;
    box-sizing: content-box;
}

/* ===================================
    Slide 1
====================================== */

.tnit-slide-owl{
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.tnit-slide-owl .owl-stage-outer{
    padding: 20px 0;
}

.tnit-slide-owl .item-img{
    position: relative;
    overflow: hidden;
    height: 250px;
}

.tnit-slide-owl .item-img > img{
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.tnit-slide-owl .slide-caption{
    display: table;
    width: 100%;
    height: 100%;
}

.tnit-slide-owl .slide-caption-body{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    max-width: 100%;
    width: 100%;
}

.tnit-slide-owl.slide-fade-bottom .tnit-overlay-icon {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tnit-slide-owl.slide-fade-bottom .item-img:hover .tnit-overlay-icon{
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tnit-slide-owl.slide-fade-bottom .tnit-overlay-icon a{
    font-size: 22px;
    color: #020202;
    background-color: #fff;
    height: 55px;
    width: 55px;
    line-height: 55px;
    -ms-transform: rotate(50deg) scale(1.5);
    -webkit-transform: rotate(50deg) scale(1.5);
    transform: rotate(50deg) scale(1.5);
}

.tnit-slide-owl.slide-fade-bottom .item-img:hover .tnit-overlay-icon a{
    -ms-transform: rotate(0) scale(1);
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
}

.tnit-slide-owl.slide-fade-bottom .tnit-overlay-icon a:hover {
    background-color: transparent;
    border-color: #fff;
    color:#fff;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tnit-slide-owl.slide-fade-bottom .tnit-overlay-content {
    padding: 30px 0;
    position: absolute;
    bottom: -100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tnit-slide-owl.slide-fade-bottom .item-img:hover .tnit-overlay-content{
    bottom:0;
    visibility: visible;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/*Slider fade box*/
.tnit-slide-owl.slide-zoom-box .slide-caption {
    width: 100%;
    position: absolute;
    z-index: 2;
    height: 100%;
    opacity: 0;
    top: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
    padding: 30px;
}

.tnit-slide-owl.slide-zoom-box .item-img:hover .slide-caption {
    opacity: 1;
}

.tnit-slide-owl.slide-zoom-box .slide-caption:before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    content: '';
    opacity: 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0,1);
    -ms-transform: scale(0,1);
    transform: scale(0,1);
    pointer-events: none;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.5s;
    transition: opacity 0.35s, -webkit-transform 0.5s;
    -o-transition: opacity 0.35s, transform 0.5s;
    transition: opacity 0.35s, transform 0.5s;
    transition: opacity 0.35s, transform 0.5s, -webkit-transform 0.5s;
}

.tnit-slide-owl.slide-zoom-box .slide-caption:after {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    content: '';
    opacity: 0;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1,0);
    -ms-transform: scale(1,0);
    transform: scale(1,0);
    pointer-events: none;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.5s;
    transition: opacity 0.35s, -webkit-transform 0.5s;
    -o-transition: opacity 0.35s, transform 0.5s;
    transition: opacity 0.35s, transform 0.5s;
    transition: opacity 0.35s, transform 0.5s, -webkit-transform 0.5s;
}

.tnit-slide-owl.slide-zoom-box .item-img:hover .slide-caption:before,.tnit-slide-owl.slide-zoom-box .item-img:hover .slide-caption:after{
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.tnit-slide-owl.slide-zoom-box .tnit-overlay-content {
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tnit-slide-owl.slide-zoom-box .item-img:hover .tnit-overlay-content {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tnit-slide-owl.slide-zoom-box .tnit-overlay-icon{
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tnit-slide-owl.slide-zoom-box .item-img:hover .tnit-overlay-icon {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


/*Slide Zoom*/
.tnit-slide-owl.slide-zoom .slide-caption {
    width: 100%;
    position: absolute;
    z-index: 2;
    height: 100%;
    opacity: 0;
    top: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
    padding: 15px;
}

.tnit-slide-owl.slide-zoom .item-img img{
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tnit-slide-owl.slide-zoom .item-img:hover img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tnit-slide-owl.slide-zoom .item-img:hover .slide-caption {
    opacity: 1;
}

/*Slide rotate*/
.tnit-slide-owl.slide-rotate .slide-caption {
    width: 100%;
    position: absolute;
    z-index: 2;
    height: 100%;
    opacity: 0;
    top: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
    padding: 15px;
}

.tnit-slide-owl.slide-rotate .item-img img{
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tnit-slide-owl.slide-rotate .item-img:hover img{
    -webkit-transform: scale(1.25) rotate(3deg);
    -ms-transform: scale(1.25) rotate(3deg);
    transform: scale(1.25) rotate(3deg);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tnit-slide-owl.slide-rotate .item-img:hover .slide-caption {
    opacity: 1;
}

.tnit-slide-owl.slide-rotate .tnit-overlay-content {
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tnit-slide-owl.slide-rotate .item-img:hover .tnit-overlay-content {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tnit-slide-owl.slide-rotate .tnit-overlay-icon{
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tnit-slide-owl.slide-rotate .item-img:hover .tnit-overlay-icon {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/*slide right*/

.tnit-slide-owl.slide-right .slide-caption {
    width: 100%;
    max-width: 100%;
    position: absolute;
    z-index: 2;
    height: 100%;
    opacity: 1;
    left: -100%;
    top: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    padding: 15px;
}

.tnit-slide-owl.slide-right .item-img:hover .slide-caption {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

/*slide left*/
.tnit-slide-owl.slide-left .slide-caption {
    width: 100%;
    max-width: 100%;
    position: absolute;
    z-index: 2;
    height: 100%;
    opacity: 1;
    right: -100%;
    top: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    padding: 15px;
}

.tnit-slide-owl.slide-left .item-img:hover .slide-caption {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}


.tnit-slide-owl .slide-caption {
    background-color: rgba(135, 90, 52, 0.8);
}

/* ===================================
    Owl Nav Styles
====================================== */

.tnit-slide-owl .owl-nav {
    height: 0;
    width: 100%;
    overflow: hidden;
}

.tnit-slide-next, .tnit-slide-prev{
    display: none;
}

.tnit-gallery-nav-arrows .owl-nav button.owl-prev,
.tnit-gallery-nav-arrows .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 50px;
    width: 50px;
    line-height: 50px;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
}
.tnit-gallery-nav-arrows .owl-nav button.owl-prev {
    left: -100px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.tnit-gallery-nav-arrows:hover .owl-nav button.owl-prev {
    left: 20px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.tnit-gallery-nav-arrows .owl-nav button.owl-next {
    right: -100px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.tnit-gallery-nav-arrows:hover .owl-nav button.owl-next {
    right: 20px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.tnit-gallery-nav-arrows .owl-nav span {
    line-height: 1;
    /*    margin-top: 3px;*/
    display: block;
    color: #fff;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    font-size: 25px;
}

/*Arrows custom*/
.tnit-gallery-nav-arrows-custom .owl-nav button.owl-prev,
.tnit-gallery-nav-arrows-custom .owl-nav button.owl-next {
    border: 1px solid #fff;
    border-radius: 50%;
}
.tnit-gallery-nav-arrows-custom .owl-nav button.owl-prev:hover,
.tnit-gallery-nav-arrows-custom .owl-nav button.owl-next:hover {
    background-color: #fff;
}
.tnit-gallery-nav-arrows-custom .owl-nav button:hover span {
    color: #000;
}

/* Arrows simple*/
.tnit-gallery-nav-arrows-simple .owl-nav button.owl-prev,
.tnit-gallery-nav-arrows-simple .owl-nav button.owl-next {
    border: none;
    color: #fff;
    height: 25px;
    width: 25px;
    line-height: 25px;
}

/*Arrows circle*/
.tnit-gallery-nav-arrows-circle .owl-nav button.owl-prev,
.tnit-gallery-nav-arrows-circle .owl-nav button.owl-next {
    background-color: #fff;
    border-radius: 50%;
}
.tnit-gallery-nav-arrows-circle .owl-nav button span {
    color: #000;
}

/* Arrows Square*/
.tnit-gallery-nav-arrows-square .owl-nav button.owl-prev,
.tnit-gallery-nav-arrows-square .owl-nav button.owl-next{
    background-color: #fff;
    border-radius: 0;
}
.tnit-gallery-nav-arrows-square .owl-nav button span {
    color: #000;
}


/* ===================================
    Owl Dots
====================================== */

.tnit-slide-owl .owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}
.tnit-slide-owl .owl-dots{
    margin-top: 2rem;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.tnit-slide-owl .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}

.tnit-slide-owl .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 3px;
    background-color: transparent;
    border: 1px solid #875a34;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.tnit-slide-owl .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #875a34;
}

.tnit-slide-owl button:active, .tnit-slide-owl button.active{
    top: initial;
}

/* ===================================
    POPUP Style 1
====================================== */

.lg-backdrop{
    background-color: #0e0e0e;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition: background .3s ease-in-out !important;
}

.tnit-popup-blur:before{
    content: "";
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(15px); /* apply the blur */
    backdrop-filter: blur(15px);         /* apply the blur */
    pointer-events: none; /* make the pseudo class click-through */
}

[class*=tnit-popup-style] .lg-actions .lg-next, [class*=tnit-popup-style] .lg-actions .lg-prev{
    background-color: transparent;
}

[class*=tnit-popup-style] .lg-actions .lg-next, [class*=tnit-popup-style] .lg-actions .lg-prev{
    color: #ebe7e2;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

[class*=tnit-popup-style] .lg-actions .lg-prev:after {
    content: "\f053";
    font-family:"Font Awesome 5 Free";
    font-weight:bold;
}

[class*=tnit-popup-style] .lg-actions .lg-next:before {
    content: "\f054";
    font-family:"Font Awesome 5 Free";
    font-weight:bold;
}

.tnit-popup-style-1.lg-outer .lg-thumb-outer{
    max-width: 720px;
    margin: 0 auto;
    left: 50%;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    overflow: hidden;
    padding: 15px 0;
    background-color: transparent;
}

.tnit-popup-style-1.lg-outer .lg-thumb-outer:before{
    content: '';
    position: absolute;
    height: 150px;
    width: 100%;
}

.tnit-popup-style-1.lg-outer .lg-thumb{
    margin: 0 auto;
}

.tnit-popup-style-1.lg-outer .lg-sub-html{
    top: 0;
    max-width: 700px;
    bottom: auto !important;
    left: 80px;
    text-align: left;
    background-color: transparent;
    padding: 0;
    margin-top: 10px;
    z-index: 9999;
}

.tnit-popup-style-1 .lg-sub-html > p{
    font-size: 20px;
    color: #fff;
    font-weight: lighter;
    margin: 0;
    line-height: 35px;
}

.tnit-popup-style-1.lg-outer .lg-pager-outer{
    display: none;
}

.tnit-popup-style-1 #lg-counter {
    color: #fff;
    font-size: 20px;
    padding-top: 9px;
}

.tnit-popup-style-1.lg-outer .lg-thumb-item{
    position: relative;
    border-radius: 0;
    border: 3px solid transparent;
}

.tnit-popup-style-1.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #fff;
}

.tnit-popup-style-1.lg-outer .lg-thumb-item:before{
    content: '';
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    left:0;
    top: 0;
    background-color: #000;
    opacity: 0.5;
    -webkit-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

.tnit-popup-style-1.lg-outer .lg-thumb-item.active:before, .lg-outer .lg-thumb-item:hover:before{
    opacity: 0;
}

.tnit-popup-style-1 .lg-progress-bar .lg-progress{
    background-color: #fff;
}

/* ===================================
    POPUP Style 2
====================================== */

.tnit-popup-style-2.lg-outer.lg-outer .lg-thumb {
    padding: 20px 0;
    height: 100%;
    margin: 0 auto;
}

.tnit-popup-style-2.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
    bottom: 150px;
}

.tnit-popup-style-2.lg-outer .lg-sub-html{
    padding: 8px 40px;
}

.tnit-popup-style-2 .lg-sub-html > p{
    font-size: 20px;
    color: #fff;
    font-weight: lighter;
    margin: 0;
}

.tnit-popup-style-2.lg-outer .lg-pager-outer{
    display: none;
}

.tnit-popup-style-2 #lg-counter {
    color: #fff;
    font-size: 20px;
    padding-top: 9px;
}

.tnit-popup-style-2.lg-outer .lg-thumb-item{
    position: relative;
    border-radius: 0;
    border: 3px solid transparent;
}

.tnit-popup-style-2.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #fff;
}

.tnit-popup-style-2.lg-outer .lg-thumb-item:before{
    content: '';
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    left:0;
    top: 0;
    background-color: #000;
    opacity: 0.5;
    -webkit-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

.tnit-popup-style-2.lg-outer .lg-thumb-item.active:before, .lg-outer .lg-thumb-item:hover:before{
    opacity: 0;
}

.tnit-popup-style-2 .lg-progress-bar .lg-progress{
    background-color: #fff;
}

/* ===================================
    POPUP Style 3
====================================== */

.tnit-popup-style-3.lg-outer {
    max-width: 1000px;
    height: 800px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-box-shadow: 0px 0px 21px -4px rgba(0,0,0,0.54);
    box-shadow: 0px 0px 21px -4px rgba(0,0,0,0.54);
}

.tnit-popup-style-3.lg-outer .lg-img-wrap{
    padding: 0;
}

.tnit-popup-style-3.lg-outer .lg-image{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.tnit-popup-style-3 .lg-actions .lg-next, .tnit-popup-style-3 .lg-actions .lg-prev{
    top: auto;
    bottom: 54px;
}

.tnit-popup-style-3.lg-outer .lg-thumb-outer{
    max-width: 720px;
    margin: 0 auto;
    left: 50%;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    overflow: hidden;
    padding: 15px 0;
    background-color: transparent;
}

.tnit-popup-style-3 .lg-toolbar{
    background-color: transparent;
    margin-top: 50px;
}

.tnit-popup-style-3.lg-outer .lg-thumb-outer:before{
    content: '';
    position: absolute;
    height: 150px;
    width: 100%;
}

.tnit-popup-style-3.lg-outer .lg-thumb{
    margin: 0 auto;
}

.tnit-popup-style-3.lg-outer .lg-sub-html {
    top: 50px;
    max-width: 500px;
    bottom: auto !important;
    left: 20px;
    text-align: left;
    background-color: transparent;
    padding: 0;
    margin-top: 0;
    z-index: 9999;
    padding-left: 60px;
}

.tnit-popup-style-3 .lg-sub-html > p{
    font-size: 18px;
    color: #fff;
    font-weight: lighter;
    margin: 0;
    display: inline-block;
    border-bottom: 1px solid #fff;
    text-shadow: 1px 1px #565656;
}

.tnit-popup-style-3.lg-outer .lg-pager-outer{
    display: none;
}

.tnit-popup-style-3.lg-outer .lg-toolbar > .lg-icon {
    color: #ececec;
}

.tnit-popup-style-3.lg-outer .lg-toolbar > .lg-icon {
    cursor: pointer;
    float: none;
    display: block;
    margin-left: auto;
    margin-right: 50px;
    background-color: #000;
}

.tnit-popup-style-3.lg-outer #lg-zoom-out{
    opacity: 1;
}

.tnit-popup-style-3 #lg-counter {
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 0;
    padding-top: 0;
    text-shadow: 1px 1px #565656;
}

.tnit-popup-style-3.lg-outer .lg-thumb-item{
    position: relative;
    border-radius: 0;
    border: 3px solid transparent;
}

.tnit-popup-style-3.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #fff;
}

.tnit-popup-style-3.lg-outer .lg-thumb-item:before{
    content: '';
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    left:0;
    top: 0;
    background-color: #000;
    opacity: 0.5;
    -webkit-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

.tnit-popup-style-3.lg-outer .lg-thumb-item.active:before, .lg-outer .lg-thumb-item:hover:before{
    opacity: 0;
}

.tnit-popup-style-3 .lg-progress-bar .lg-progress{
    background-color: #fff;
}

/* ===================================
    Popup Style 4
====================================== */


.tnit-popup-style-4.lg-outer .lg-thumb-outer{
    max-width: 720px;
    margin: 0 auto;
    left: 50%;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    overflow: hidden;
    padding: 15px 0;
    background-color: transparent;
}

.tnit-popup-style-4.lg-outer .lg-thumb-outer:before{
    content: '';
    position: absolute;
    height: 150px;
    width: 100%;
}

.tnit-popup-style-4.lg-outer .lg-thumb{
    margin: 0 auto;
}

.tnit-popup-style-4.lg-outer .lg-sub-html{
    top: 0;
    max-width: 700px;
    bottom: auto !important;
    left: 80px;
    text-align: left;
    background-color: transparent;
    padding: 0;
    margin-top: 10px;
    z-index: 9999;
}

.tnit-popup-style-4 .lg-sub-html > p{
    font-size: 20px;
    color: #fff;
    font-weight: lighter;
    margin: 0;
}

.tnit-popup-style-4.lg-outer .lg-pager-outer{
    display: none;
}

.tnit-popup-style-4 #lg-counter {
    color: #fff;
    font-size: 20px;
    padding-top: 9px;
}

.tnit-popup-style-4.lg-outer .lg-thumb-item{
    position: relative;
    border-radius: 0;
    border: 3px solid transparent;
}

.tnit-popup-style-4.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #fff;
}

.tnit-popup-style-4.lg-outer .lg-thumb-item:before{
    content: '';
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    left:0;
    top: 0;
    background-color: #000;
    opacity: 0.5;
    -webkit-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

.tnit-popup-style-4.lg-outer .lg-thumb-item.active:before, .lg-outer .lg-thumb-item:hover:before{
    opacity: 0;
}

.tnit-popup-style-4 .lg-progress-bar .lg-progress{
    background-color: #fff;
}


/* ===================================
    Media Queries
====================================== */


@media screen and (max-width: 991px) {

    .tnit-popup-style-1.lg-outer .lg-sub-html {
        max-width: 500px;
    }

    .tnit-popup-style-1 .lg-sub-html > p {
        font-size: 16px;
    }

    .tnit-popup-style-1 #lg-counter {
        font-size: 16px;
    }

    .tnit-popup-style-3.lg-outer {
        max-width: 800px;
        height: 600px;
    }

    .tnit-popup-style-3.lg-outer .lg-image{
        height: 100% !important;
    }

    .tnit-popup-style-3.lg-outer .lg-thumb-outer {
        max-width: 580px;
    }

    .cbp.crazy .cbp-item:nth-child(1), .cbp.crazy .cbp-item:nth-child(3){
        padding-top: 0 !important;
    }

}


@media screen and (max-width: 567px) {
    .tnit-popup-style-3.lg-outer .lg-sub-html {
        top: auto;
        bottom: 150px !important;
        left: 0;
        text-align: center;
        padding: 5px 15px;
        max-width: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.45);
    }

    .tnit-popup-style-3 .lg-actions .lg-next, .tnit-popup-style-3 .lg-actions .lg-prev{
        display: none;
    }

    .tnit-popup-style-3 .lg-sub-html > p{
        border: none;
    }

    .tnit-popup-style-3 .lg-toolbar {
        margin-top: 0;
    }
    .tnit-popup-style-3.lg-outer .lg-toolbar .lg-icon{
        margin-right: 0;
    }
}

@media screen and (min-width: 1993px) {
    .lg-outer .lg-image{
        min-width: 1400px;
    }
}


/* ===================================
    Backend Developer Css
====================================== */
.admin-bar .lg-outer:not(.tnit-popup-style-3),
.admin-bar .tnit-popup-style-1.lg-outer .lg-sub-html,
.admin-bar .tnit-popup-style-4.lg-outer .lg-sub-html {
    padding-top: 32px;
}

.admin-bar.fl-builder-edit .lg-outer:not(.tnit-popup-style-3),
.admin-bar.fl-builder-edit .tnit-popup-style-1.lg-outer .lg-sub-html,
.admin-bar.fl-builder-edit .tnit-popup-style-4.lg-outer .lg-sub-html {
    padding-top: 45px;
}

.tnit-gallery-filter-layout .cbp-l-filters-button .cbp-filter-item:first-child {
    margin-left: 0 !important;
}
.tnit-gallery-filter-layout .cbp-l-filters-button .cbp-filter-item:last-child {
    margin-right: 0 !important;
}

.tnit-gallery .cbp-wrapper-outer,
.tnit-gallery .cbp-item {
    overflow: visible;
}

.tnit-gallery .cbp.cbp-animation-moveLeft .cbp-wrapper-outer,
.tnit-gallery .cbp.cbp-animation-moveLeft .cbp-item {
    overflow: hidden;
}

.tnit-gallery .cbp.cbp-animation-slideLeft .cbp-wrapper-outer,
.tnit-gallery .cbp.cbp-animation-slideLeft .cbp-item {
    overflow: hidden;
}

.tnit-gallery .cbp.cbp-animation-bounceLeft .cbp-wrapper-outer,
.tnit-gallery .cbp.cbp-animation-bounceLeft .cbp-item {
    overflow: hidden;
}

.tnit-gallery .cbp-item-off{
    display: none;
}

.tnit-gallery .cbp-item-wrapper {
    overflow: hidden;
}

.tnit-slide-owl .owl-dots .owl-dot:first-child span {
    margin-left: 0 !important;
}
.tnit-slide-owl .owl-dots .owl-dot:last-child span {
    margin-right: 0 !important;
}

.tnit-gallery .cbp-caption-zoom-box .cbp-l-caption-alignCenter .cbp-l-caption-body,
.tnit-gallery .cbp-caption-zoom-box-out .cbp-l-caption-alignCenter .cbp-l-caption-body{
    padding: 30px;
}

.tnit-filter-cat > option{
    display: none;
}
@media (max-width: 768px) { /*Responsive Css*/

.tnit-popup-style-1.lg-outer .lg-sub-html {
    max-width: 100%;
    text-align: center;
    left: 0;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.45);
    top: auto;
    bottom: 130px !important;
}

.tnit-popup-style-1 .lg-sub-html > p{
    font-size: 16px;
}

.tnit-popup-style-1.lg-outer .lg-thumb-outer{
    max-width: 415px;
}

.tnit-popup-style-3.lg-outer .lg-thumb-outer{
    max-width: 415px;
}

.tnit-popup-style-4.lg-outer .lg-sub-html {
    max-width: 100%;
    text-align: center;
    left: 0;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.45);
    top: auto;
    bottom: 130px !important;
}

.tnit-popup-style-4.lg-outer .lg-thumb-outer{
    max-width: 400px;
}

.tnit-popup-style-4 .lg-sub-html > p{
    font-size: 16px;
}

.tnit-popup-style-2 .lg-sub-html > p{
    font-size: 16px;
}

.tnit-popup-style-2.lg-outer.lg-outer .lg-thumb-outer{
    padding-left: 15px;
    padding-right: 15px;
}

.lg-toolbar .lg-icon {
    font-size: 20px;
    height: 40px;
    padding: 5px 0;
    width: 35px;
}

.tnit-popup-style-1 #lg-counter {
    padding: 4px 10px;
}

.lg-outer .lg-thumb-item{
    margin-right: 9px !important;
}

.gallery.masonry .items {
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}



/* adminbar Css */
.admin-bar .lg-outer:not(.tnit-popup-style-3) {
    padding-top: 46px;
}
.admin-bar .tnit-popup-style-1.lg-outer .lg-sub-html, .admin-bar .tnit-popup-style-4.lg-outer .lg-sub-html {
    padding-top: 10px;
} }.fl-node-xcdz9mah3p82 .tnit-gallery-filter-layout ul {
	text-align: center;
}
.fl-node-xcdz9mah3p82 .tnit-gallery-filter-layout:not(.tnit-gallery-dropdown) .cbp-l-filters-button .cbp-filter-item {
	color: #2b2b2b;
	background-color: #ffffff;
}
.fl-node-xcdz9mah3p82 .tnit-gallery-filter-layout:not(.tnit-gallery-dropdown) .cbp-filter-item:not(.cbp-filter-item-active):hover {
	color: #875a34;
	background-color: #ffffff;
}
.fl-node-xcdz9mah3p82 .tnit-gallery-filter-layout:not(.tnit-gallery-dropdown) .cbp-filter-item.cbp-filter-item-active {
	color: #ffffff;
	background-color: #875a34;
}
.fl-node-xcdz9mah3p82 .tnit-gallery-dropdown .cbp-l-filters-button .cbp-filter-item {
	color: #ffffff;
	background-color: #875A34;
	border: none;
	border-radius: 0;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: #eeeeee;
}
.fl-node-xcdz9mah3p82 .tnit-gallery-dropdown .cbp-filter-item:not(.cbp-filter-item-active):hover {
	color: #2b2b2b;
	background-color: #ffffff;
}
.fl-node-xcdz9mah3p82 .tnit-gallery-dropdown .select-option {
	color: #ffffff;
	background-color: #875A34;
}
.fl-node-xcdz9mah3p82 .tnit-overlay-content .title {
	color: #ffffff;
}
.fl-node-xcdz9mah3p82 [class*=tnit-gallery-layout] .cbp-caption-activeWrap, 
						.fl-node-xcdz9mah3p82 .tnit-slide-owl .slide-caption,
						.fl-node-xcdz9mah3p82 .tnit-slide-owl.slide-fade-bottom .tnit-overlay-content {
	background-color: rgba(135, 90, 52, 0.8);
}
.fl-node-xcdz9mah3p82 .cbp-caption-zoom-box .cbp-caption-activeWrap:before,
						.fl-node-xcdz9mah3p82 .cbp-caption-zoom-box-out .cbp-caption-activeWrap:before,
						.fl-node-xcdz9mah3p82 .tnit-slide-owl.slide-zoom-box .slide-caption:before {
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #ffffff;
	border-bottom-color: #ffffff;
}
.fl-node-xcdz9mah3p82 .cbp-caption-zoom-box .cbp-caption-activeWrap:after,
						.fl-node-xcdz9mah3p82 .cbp-caption-zoom-box-out .cbp-caption-activeWrap:after,
						.fl-node-xcdz9mah3p82 .tnit-slide-owl.slide-zoom-box .slide-caption:after {
	border-left-style: solid;
	border-right-style: solid;
	border-left-color: #ffffff;
	border-right-color: #ffffff;
}
.fl-node-xcdz9mah3p82 .tnit-gallery-nav-arrows .owl-nav button span {
	color: #000000;
}
.fl-node-xcdz9mah3p82 .tnit-gallery-nav-arrows-square .owl-nav button.owl-prev,
						.fl-node-xcdz9mah3p82 .tnit-gallery-nav-arrows-square .owl-nav button.owl-next,
						.fl-node-xcdz9mah3p82 .tnit-gallery-nav-arrows-circle .owl-nav button.owl-prev,
						.fl-node-xcdz9mah3p82 .tnit-gallery-nav-arrows-circle .owl-nav button.owl-next,
						.fl-node-xcdz9mah3p82 .tnit-gallery-nav-arrows-custom .owl-nav button.owl-prev,
						.fl-node-xcdz9mah3p82 .tnit-gallery-nav-arrows-custom .owl-nav button.owl-next {
	background-color: #ffffff;
}
.fl-node-xcdz9mah3p82 .tnit-gallery-nav-arrows:hover .owl-nav button.owl-prev {
	left: 0px;
}
.fl-node-xcdz9mah3p82 .tnit-gallery-nav-arrows:hover .owl-nav button.owl-next {
	right: 0px;
}
.fl-node-xcdz9mah3p82 .tnit-slide-owl .owl-dots .owl-dot.active span {
	background-color: #875A34;
}
.fl-node-xcdz9mah3p82 .tnit-slide-owl .owl-dots .owl-dot span {
	border-color: #875A34;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

