
/*--------------------------------------------------
	Content Row
---------------------------------------------------*/	

	.content-row-outer {
		position: relative;
		/*left: 50%;
		margin-left: calc(-50vw + var(--scroll-bar-w)/2) !important;
		max-width: 100vw;
		width: calc(100vw - var(--scroll-bar-w));
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;*/
	}
	
	.content-row-inner {
		position: relative;
		box-sizing: border-box;
		width: 100%;
		padding-top: 0;
		padding-bottom: 0;
		margin: 0 auto;		
	}

	.row-has-media {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		overflow: hidden;
		z-index: 0;
	}

	.row-has-media .row-image {
		position:absolute;
		width:100%;
		height: 100%;
		object-position: center; 
		object-fit: cover;
		z-index: 1;
	}

	.row-has-media .row-video {
		position:absolute;
		width:100%;
		height: 100%;
		object-position: center; 
		object-fit: cover;
		z-index: 2;
	}
	
	.content-row {
		position: relative;
		width: 100%;
		height: auto;
		min-height: 20px;
		display: flex;
		justify-content: flex-start;
		flex-direction: row;
		flex-wrap: wrap;		
		align-items: stretch;
		gap: var(--gap);
		row-gap: 0;
		box-sizing: border-box;
		z-index: 10;
	}

	.content-row.no-gap {
		--gap: 0px;
	}
	
	.small {
		max-width:820px;
		width:100%;
		margin:0 auto;
	}
	
	.large {
		max-width:1380px;
		width:100%;
		margin:0 auto;
	}
	
	.full {		
		position: relative;
		left: 50%;
		margin-left: calc(-50vw + var(--scroll-bar-w)/2) !important;
		max-width: 100vw;
		width: calc(100vw - var(--scroll-bar-w));
	}

	.row_full_height {
		height: calc(100 * var(--dvh, 1vh));
	}

	.row_full_height_desktop {
		height: calc(100 * var(--dvh, 1vh));
	}
	
	.content-row.clip-effects {
		overflow:hidden;
		clip-path: inset(4% 10% round 40px);
	}
	
	.row_padding_top {
		padding-top:120px;
	}
	
	.row_padding_bottom {
		padding-bottom:120px;
	}
	
	.row_padding_left {
		padding-left:80px;
	}
	
	.row_padding_right {
		padding-right:80px;
	}

	.outer-row-top-shadow::before {
		content: "";
		position: absolute;
		top: -50px;
		left: 0;
		width: 100%;
		height: 50px; 
		pointer-events: none;
		background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
		z-index: 2;
	}

	.outer-row-pin {
		position:sticky;
		top:0;
	}

	.pinned-row {
		opacity: 0;
	}

	.row-end-pin {
		position: absolute;
		bottom:0;
	}


/*-- Responsive Content Row --*/

@media only screen and (max-width: 1537px) {
	
}

@media only screen and (max-width: 1466px) {
	
	.row_padding_top {
		padding-top:100px;
	}
	
	.row_padding_bottom {
		padding-bottom:100px;
	}
	
	.row_padding_left {
		padding-left:60px;
	}
	
	.row_padding_right {
		padding-right:60px;
	}
	
}	
	
@media only screen and (max-width: 1024px) {
	
	.row_padding_left {
		padding-left: 0px;
	}
	
	.row_padding_right {
		padding-right: 0px;
	}
	
	.full.row_padding_left {
		padding-left: 40px;
	}
	
	.full.row_padding_right {
		padding-right: 40px;
	}
	
	.row_full_height_desktop {
		height: auto;
	}
	
	.outer-row-pin {
		opacity: 1;
	}
	
	.row-end-pin {
		position: absolute;
		top: 0;
		bottom:auto;
	}
	
}	
	
@media only screen and (max-width: 767px) {
	
	.content-row {
		flex-wrap: wrap;
		row-gap: var(--gap);
	}
	
	.row_padding_top {
		padding-top:80px;
	}
	
	.row_padding_bottom {
		padding-bottom:80px;
	}
	
	.full.row_padding_left {
		padding-left: 30px;
	}
	
	.full.row_padding_right {
		padding-right: 30px;
	}
	
}

@media only screen and (max-width: 479px) {
	
	.full.row_padding_left {
		padding-left: 20px;
	}
	
	.full.row_padding_right {
		padding-right: 20px;
	}
	
}


/*--------------------------------------------------
	Columns
---------------------------------------------------*/		
	
	.one_full, .one_half, .one_third, .one_fourth, .one_fifth, .two_third, .two_fourth, .two_fifth, .three_fourth, .three_fifth, .four_fifth {
		position: relative;
		display: inline-flex;
	}

	.one_full {
		width: 100%;		
	}

	.one_half {
    	width: calc(50% - var(--gap) / 2);		
	}

	.one_third {		
		width: calc(33.3333% - (2 * var(--gap)) / 3);
	}	

	.one_fourth {
		width: calc(25% - (3 * var(--gap)) / 4);
	}

	.one_fifth {		
	  	width: calc(20% - (4 * var(--gap)) / 5);
	}
	
	.two_fifth {
	  	width: calc(40% - (4 * var(--gap)) / 5);
	}

	.two_fourth {
	  	width: calc(50% - var(--gap) / 2);
	}

	.two_third {
	  	width: calc(66.6667% - (2 * var(--gap)) / 3);
	}

	.three_fifth {
	  	width: calc(60% - (4 * var(--gap)) / 5);
	}

	.three_fourth {
	  	width: calc(75% - (3 * var(--gap)) / 4);
	}

	.four_fifth {
	  	width: calc(80% - (4 * var(--gap)) / 5);
	}
	
	.col_align_start {
		align-self: flex-start;
	}

	.col_align_center {
		align-self: center;
	}

	.col_align_end {
		align-self: flex-end;
	}

	.col_align_stretch {
		align-self: stretch;
	}

	.col_strech {
		display: flex;
		align-self: flex-start;		
		flex-direction: column;
		justify-content: center;
	}

	.col_inner {
		display: block;
		width: 100%;
		height: auto;
	}

	.col-end-pin {
		position: absolute;
		bottom:0;
	}

	/*.pinned-col {
		position: sticky;
		top:0;
	}*/

	.pinned-col .col_inner1 {
		background-color: #FF0004;
	}

	.col_spacer {
		position: relative;
		display: block;
		width: 100%;
		height: 120px;
	}


/*-- Responsive Columns --*/

@media only screen and (max-width: 1537px) {	
	
}

@media only screen and (max-width: 1466px) {
	
	.col_spacer {
		height: 100px;
	}
	
}	
	
@media only screen and (max-width: 1024px) {

}	
	
@media only screen and (max-width: 767px) {
	
	.col-end-pin {
		top:0;
		bottom: auto;
	}
	
	.one_full:not(.dont_break), 
	.one_half:not(.dont_break), 
	.one_third:not(.dont_break), 
	.one_fourth:not(.dont_break), 
	.one_fifth:not(.dont_break), 
	.two_third:not(.dont_break), 
	.two_fourth:not(.dont_break), 
	.two_fifth:not(.dont_break), 
	.three_fourth:not(.dont_break), 
	.three_fifth:not(.dont_break), 
	.four_fifth:not(.dont_break) {
		width: 100%;
	}
	
	.col_spacer {
		height: 80px;
	}
	
}

@media only screen and (max-width: 479px) {
	
}


/*--------------------------------------------------
	Text Effects
---------------------------------------------------*/

 





	.has-underline {
		position: relative;
		display: inline-block;
		line-height: 1.2em;
	}

	.clone-text {
		position: relative;		
		display: inline-block;
		z-index: 10;
	}

	.clone-mask {
		position: absolute;
		width: 100%;
		height: 100%;
		z-index: 1;
		top: 0;
		left: 0;
	}

	.clone-mask::before {
		content: attr(data-hover);
		position: absolute;
		width: 100%;
		height: 100%;
		display: block;
	}

	.clone-underline {
		position: absolute;
		width: 100%;
		height: 100%;
		z-index: 0;
		top: 0;
		left: 0;
	}

	.clone-underline::before {
		content: '';
		position: absolute;
		bottom: 1px;
		left: 0;
		width: 100%;
		height: 5%;
		background: currentColor;
		transform: scaleX(1);
		transform-origin: left;
		transition: transform .735s cubic-bezier(.625,.05,0,1) 0.3s;
	}
	
	.has-underline:hover .clone-underline::before {
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .735s cubic-bezier(.625,.05,0,1) 0s;
	}

	.clone-underline::after {
		content: '';
		position: absolute;
		bottom: 1px;
		left: 0;
		width: 100%;
		height: 5%;
		background: currentColor;
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .735s cubic-bezier(.625,.05,0,1) 0s;
	}
	
	.has-underline:hover .clone-underline::after {
		transform: scaleX(1);
		transform-origin: left;
		transition: transform .735s cubic-bezier(.625,.05,0,1) 0.3s;
	}

	/*-- Responsive --*/

	@media only screen and (max-width: 1537px) {	

	}

	@media only screen and (max-width: 1466px) {
		
	}	

	@media only screen and (max-width: 1024px) {
		
		.has-underline {
			line-height: 1.25em;
		}
		
	}	

	@media only screen and (max-width: 767px) {
		
		.has-underline {
			line-height: 1.3em;
		}
		
	}

	@media only screen and (max-width: 479px) {
		
		.has-underline {
			line-height: 1.35em;
		}
		
	}


/*--------------------------------------------------
	Animated Counter
---------------------------------------------------*/
	
	.increment-counter {
		display: inline-flex;
		justify-content: flex-start;
		position: relative;
	}

	.increment-counter::after {
		content: attr(data-symbol);
		line-height: inherit;
		top: 0;
		position: relative;
	}

	.increment-counter .counter-number {
		overflow: hidden;
		position: relative;
		display: inline-block;
	}

	.increment-counter .digit-inner {
		display: flex;
		flex-direction: column;
	}

	.increment-counter .digit-inner span {
		position: absolute;
		width: 100%;
		display: block;
		text-align: center;
	}

	.increment-counter .digit-inner span:first-child {
		position: relative;
	}

	/* Mini Counter */

	.mini-counter {
		font-size: 14px;
		position: absolute;
		top: 0;
		right: auto;
		height: 20px;
		width: 20px;
		margin-left: 5px;
		color: currentColor;
		z-index: 10;
		line-height: 20px;
		letter-spacing: 0;
		opacity: 0.6;
	}

	.mini-counter::before {
		content: '(';
		position: absolute;
		display: block;
		width: 100%;
		height: 100%;
		left: -5px;
		top: 1px;		
		text-align: left;
		
	}

	.mini-counter::after {
		content: ')';
		position: absolute;
		display: block;
		width: 100%;
		height: 100%;
		right: -5px;
		top: 1px;		
		text-align: right;
		
	}


/*--------------------------------------------------
	Pinned List Rotator
---------------------------------------------------*/
	
	.pinned-lists-rotator-wrapper {
		position: relative;
		left: 50%;
		margin-left: calc(-50vw + var(--scroll-bar-w)/2) !important;
		max-width: 100vw;
		width: calc(100vw - var(--scroll-bar-w));
		overflow: hidden;
	}

	.pinned-lists-rotator {	
		position:relative;		
		display:block;
		width:100%;
		height:auto;
		padding: 0;
		margin: 0;
		box-sizing: border-box;		
		list-style: none;
		z-index: 10;
}

	.pin-ready .pinned-lists-rotator {
		position: absolute;		
		top: 0;
		height: calc(100 * var(--dvh, 1vh));
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}



	
	.list-rotator-slide {
		position: relative;
		width: 100%;
		height: calc(100 * var(--dvh, 1vh));		
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		padding: 0;
		margin: 0;
		box-sizing: border-box;		
		line-height: inherit;
	}

	.pin-ready .pinned-lists-rotator .list-rotator-slide {
		position: absolute;
		height: auto;
	}



	
	.pinned-lists-rotator-clone {	
		position:absolute;		
		display:block;
		width:100%;
		height:auto;
		padding: 0;
		margin: 0;
		box-sizing: border-box;		
		list-style: none;
		opacity: 0;
		pointer-events:none;
		z-index: 0;
	}

	.pin-ready .pinned-lists-rotator-clone {
		position: relative;
	}







	.pinned-lists-rotator-image {
		position: absolute;
		width: 100%;
		height: calc(100 * var(--dvh, 1vh));
		left: 0;
		top: 0;
		overflow: hidden;
	}

	.list-rotator-slide div {
		display: block;
		position: relative;
	}

	.list-rotator-slide div span {
		display: block;
		opacity: 1;
		transform: translate(0%, 0%);
	}

	.animation-progress {
		width: 100%;
		height: calc(100 * var(--dvh, 1vh));
		position: absolute;
		left: 0;
		top: 0;
		margin: 0;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		box-sizing: border-box;
		padding: 40px 80px;
	}
	
	.progress-line {
		position: relative;
		display:block;
		height:2px;
		width:50px;
		margin:0 10px;
		list-style:none;
		background-color:rgba(0,0,0,0.2);
	}
	
	.light-content .progress-line, .dark-section .progress-line {
		background-color:rgba(255,255,255,0.1);
	}
	
	.light-content .light-section .progress-line {
		background-color:rgba(0,0,0,0.2);
	}
	
	.progress-line span {
		position:absolute;
		display:block;
		height:100%;
		width:0;
		background-color:#000;
	}
	
	.light-content .progress-line span, .dark-section .progress-line span {
		background-color:#fff;
	}
	
	.light-content .light-section .progress-line span {
		background-color:#000;
	}

	.pinned-lists-rotator-end-pin {
		position: absolute;
		display: block;
		width: 100%;
		height: 0;
		bottom: 0;
	}

	.list-end-pin {
		position: absolute;
		display: block;
		width: 100%;
		height: 0;
		top: 0;
	}

	
	






	/*.pin-ready.responsive .pinned-lists-rotator {
		position: relative;		
		top: 0;
		height: auto;
		display: block;
	}

	.pin-ready.responsive .pinned-lists-rotator .list-rotator-slide {
		position: relative;
		height: auto;
		padding-top: 60px;
	}

	.pin-ready.responsive .pinned-lists-rotator .list-rotator-slide:last-child {
		padding-bottom: 60px;
	}

	.pin-ready.responsive .pinned-lists-rotator-clone {
		position: absolute;
		height: 100%;
		top:0;
		display: flex;
		flex-direction: column;
	}

	.pin-ready.responsive .list-rotator-slide div span {
		display: block;
		opacity: 1!important;
		transform: translate(0%, 0%)!important;
	}

	.pin-ready.responsive .animation-progress {
		display: none;
	}
	
	.responsive .pinned-lists-rotator-end-pin {
		top: 0;
		bottom: auto;
	}*/





/*-- Responsive --*/

@media only screen and (max-width: 1537px) {	
	
	

	
	
}

@media only screen and (max-width: 1466px) {
	
}	
	
@media only screen and (max-width: 1024px) {

	.pin-ready .pinned-lists-rotator {
		position: relative;		
		top: 0;
		height: auto;
		display: block;
	}

	.pin-ready .pinned-lists-rotator .list-rotator-slide {
		position: relative;
		height: auto;
		padding-top: 60px;
	}

	.pin-ready .pinned-lists-rotator .list-rotator-slide:last-child {
		padding-bottom: 60px;
	}

	.pin-ready .pinned-lists-rotator-clone {
		position: absolute;
		height: 100%;
		top:0;
		display: flex;
		flex-direction: column;
	}

	.pin-ready .list-rotator-slide div span {
		display: block;
		opacity: 1!important;
		transform: translate(0%, 0%)!important;
	}
	
	.pin-ready .pinned-lists-rotator-image {
		height: 100%;
	}

	.pin-ready .animation-progress {
		display: none;
	}
	
	.pinned-lists-rotator-end-pin {
		top: 0;
		bottom: auto;
	}
	
	.responsive-normalize-font .list-rotator-slide {
		font-size: inherit;
		line-height: inherit;
		font-weight: inherit;
		letter-spacing: inherit;		
	}
	
}	
	
@media only screen and (max-width: 767px) {
	
}

@media only screen and (max-width: 479px) {
	
}



/*--------------------------------------------------
	Linked Lists Gallery
---------------------------------------------------*/
	
	.linked-lists-gallery-wrapper {
		position: relative;
		width: 100%;
		height: auto;
		display: flex;
		flex-direction: row-reverse;
		overflow: hidden;
	}

	.linked-lists {	
		position:relative;		
		display:block;
		width: 80%;
		height:auto;
		padding: 0;
		margin: 0;
		box-sizing: border-box;		
		list-style: none;
	}

	.linked-lists li {
		display: table;
		width: auto;
		text-align: right;
		margin-right: 0;
		margin-left: auto;
		opacity: 0.3;
		-webkit-transition: opacity 0.05s ease-in-out;
		transition: opacity 0.05s ease-in-out;
	}
	
	.linked-lists li.active, .linked-lists li:hover {
		opacity: 1;
		cursor: pointer;
	}

	.fixed-viewport .linked-lists li {
		pointer-events: none;
	}

	.linked-gallery {	
		position:relative;		
		display:block;
		width: 20%;
		height:auto;
		padding: 0;
		margin: 0;
		align-self: flex-start;
		box-sizing: border-box;		
		list-style: none;
	}

	.linked-gallery li {
		position: absolute;
		top: 0;
  		left: 0;
		z-index: 0;
		border-radius: 3px;
  		overflow: hidden;
	}

	.linked-gallery li.active {
		position: relative;
		z-index: 10;
	}

	.linked-gallery li img {
		width:100%;
		height: 100%;
		left: 0;
		top: 0;
		object-position: center; 
		object-fit: cover;
	}

	.linked-lists-gallery-end-pin {
		position: absolute;
		display: block;
		width: 100%;
		height: 0;
		bottom: 0;
	}





/*-- Responsive --*/

@media only screen and (max-width: 1537px) {
	
}

@media only screen and (max-width: 1466px) {
	
}	
	
@media only screen and (max-width: 1024px) {
	
	.linked-lists-gallery-end-pin {
		top: 0;
		bottom: auto;
	}
	
}	
	
@media only screen and (max-width: 767px) {
	
}

@media only screen and (max-width: 479px) {
	
}


/*--------------------------------------------------
	Flip Hero Element
---------------------------------------------------*/
	
	.flip-hero-wrapper {
		position: absolute;
		width: 50%;
		height: 100%;
		left: 0;
		top: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 100;
	}

	.flip-element-wrapper.flip-completed {
		overflow: hidden;
	}

	.flip-hero-wrapper .flip-hero-inner {
		width: 100px;
		height: 100px;		
	}

	.flip-hero-wrapper.active1, .flip-hero-wrapper.active .parallax-wrap, .flip-hero-wrapper.active .parallax-element {
		pointer-events: none
	}

	.flip-hero-wrapper .flip-element {
		width: inherit;
		height: inherit;
		pointer-events: none;
	}

	.flip-element-wrapper .flip-element {
		pointer-events: none;
	}

	

	.flip-element-wrapper.flip-completed .flip-element {
		pointer-events: initial;
	}

	.flip-element-wrapper:not(.flip-completed) .flip-element.flip-created .item-media-wrapper {
		opacity: 0;
		-webkit-transform: scale(0.75);
		transform:  scale(0.75);
		-webkit-transition: all 0.7s cubic-bezier(.625,.05,0,1) 0s;
		transition: all 0.7s cubic-bezier(.625,.05,0,1) 0s;
	}

	.flip-element-wrapper:not(.flip-completed) .flip-element.flip-created.flip-element-init .item-media-wrapper {
		opacity: 1;
		-webkit-transform: scale(1);
		transform:  scale(1);
	}

	.flip-element.flip-created .item-media-wrapper::after {
		content:'';
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		right: 0;
		background-color: #000;
		transform-origin: left;
		-webkit-transition: all 0.7s cubic-bezier(.625,.05,0,1) 0.2s;
		transition: all 0.7s cubic-bezier(.625,.05,0,1) 0.2s;
	}

	.flip-element.flip-created.flip-element-init .item-media-wrapper::after {
		width: 0%;
	}

	.flip-element-wrapper {
		overflow: visible;
	}

	/*-- Responsive --*/

	@media only screen and (max-width: 1537px) {

	}

	@media only screen and (max-width: 1466px) {
		
		.flip-hero-wrapper .flip-hero-inner {
			width: 80px;
			height: 80px;
		}
		
	}	

	@media only screen and (max-width: 1024px) {
		
		.flip-hero-wrapper .flip-hero-inner {
			width: 60px;
			height: 60px;
		}

	}	

	@media only screen and (max-width: 767px) {
		
		.flip-hero-wrapper {
			display: none;
			pointer-events: none;
		}
		
		.flip-element-wrapper .flip-element {
  			pointer-events: initial;
		}
		
	}

	@media only screen and (max-width: 479px) {

	}

/*--------------------------------------------------
	Overlapping Gallery
---------------------------------------------------*/
	
	.overlapping-gallery {	
		position:relative;		
		display:block;
		width:100%;
		height:auto;
		padding: 0;
		margin: 0;
		box-sizing: border-box;		
		list-style: none;
		z-index: 10;
	}

	.pin-ready .overlapping-gallery {
		position: absolute;
		top: 0;
	}
	
	.overlapping-slide {
		position: relative;
		width:100%;
		height: auto;
		padding: 0;
		margin: 0;
		box-sizing: border-box;
		display: flex;
		justify-content: space-between;
		align-items: center;
		pointer-events: none;
	}

	.overlapping-slide::before {
		float: left;
		padding-top: calc(60% + 240px);
		content: "";
	}

	.overlapping-slide > img {
		height: calc(100 * var(--dvh, 1vh) - 240px);
	}
	
	.overlapping-gallery-clone {	
		position:absolute;		
		display:block;
		width:100%;
		height:auto;
		padding: 0;
		margin: 0;
		box-sizing: border-box;		
		list-style: none;
		opacity: 0;
		pointer-events:none;
		z-index: 0;
	}

	.pin-ready .overlapping-gallery-clone {
		position: relative;
	}

	.overlapping-gallery-end-pin {
		position: absolute;
		display: block;
		width: 100%;
		height: 0;
		bottom: 0;
	}

	/* Overlapping Gallery Portfolio Shortcode */
	
	.overlapping-gallery > .pin-spacer {
		pointer-events: none;
	}

	.overlapping-slide > .item-content {
		height: auto;
		pointer-events: initial;
	}

	.overlapping-slide > .item-content::before {
		float: left;
		padding-top: calc(60%);
		content: "";
	}

	.overlapping-slide .item-caption {
		z-index: 10;
		position: absolute;
		left: 0px;
		top: 0;
		height: 100%;
		width: 100%;
		box-sizing: border-box;
		padding: 80px 30px;
		cursor: default;
		pointer-events: none;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		opacity:0;
		transform: translate3d(0px, 50px, 0px);
		color: #fff;
		
	}

	.overlapping-slide .item-caption .item-title {
		overflow: hidden;
		margin-bottom: 15px;		
	}

	.overlapping-slide .item-caption .item-cat {
		overflow: hidden;
		text-align: center;
	}

	.overlapping-slide .item-caption .item-cat span {
		position: relative;
		width: auto;
		min-width: 100px;
		display: block;		
		-webkit-transition: transform 0.2s;
		transition: transform 0.2s;
	}

	.overlapping-slide .item-caption span::before {
		position: absolute;		
		width: 100%;
		height: 100%;
		top: 100%;
		right: 0;
		content: attr(data-hover);
	}

	.overlapping-slide:hover .item-caption .item-cat span {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

/*-- Responsive --*/

@media only screen and (max-width: 1537px) {
	
}

@media only screen and (max-width: 1466px) {
	
}	
	
@media only screen and (max-width: 1024px) {
	
	.overlapping-gallery {
		padding-top: 80px;
		padding-bottom: 80px
	}
	
	.pin-ready .overlapping-gallery {
		position: relative;
	}
	
	.pin-ready .overlapping-gallery-clone {
		position: absolute;
	}
	
	.overlapping-slide::before {
		padding-top: calc(60% + 40px);
	}
	
	.overlapping-slide .item-media-wrapper {
		-webkit-transition:none!important;
		transform:none!important;
	}
	
	.overlapping-gallery-end-pin {
		top: 0;
		bottom: auto;
	}
	
}	
	
@media only screen and (max-width: 767px) {
	
	.overlapping-gallery {
		padding-top: 55px;
		padding-bottom: 55px
	}
	
	.overlapping-slide::before {
		padding-top: calc(60% + 30px);
	}
	
	.overlapping-slide .item-caption {
		opacity:1!important;
		transform: none!important;
	}
	
}

@media only screen and (max-width: 479px) {
	
	.overlapping-gallery {
		padding-top: 30px;
	}
	
	.overlapping-slide::before {
		padding-top: calc(60% + 20px);
	}
	
}
	
	

/*--------------------------------------------------
	Pinned Section
---------------------------------------------------*/
	
	
	
/*--------------------------------------------------
	Content Text Effects
---------------------------------------------------*/	
	
	.title-moving-outer {
		margin-left: calc(50% - 50vw)!important;
		margin-right: calc(50% - 50vw)!important;
		max-width: 1000%!important;
		width: 100vw!important;
	}
	
	.title-moving-forward, .title-moving-backward {
		clear: both;
		display: inline-block;
		overflow: hidden;
		white-space: nowrap;
		padding:0 6vw;
		box-sizing:border-box;
	}

/*--------------------------------------------------
	Marquee
---------------------------------------------------*/	

	.marquee-wrapper {
		max-width: 100%;
		overflow: hidden;
	}

	.marquee {
		position: relative;
		display: flex;
		width: max-content;
		webkit-translate: calc(-100% + 100vw) !important;
		translate: calc(-100% + 100vw) !important;
		will-change: transform;
	}

	.marquee-line {
		position: relative;
		display: flex;
		gap: 0.4em;
		padding-left: 0.2em;
		padding-right: 0.2em;
		color: currentColor;
	}

	.small-image.marquee-line {
		gap: 0.2em;
		padding-left: 0.1em;
		padding-right: 0.1em;
	}

	.marquee-image {
		flex-shrink: 0;
		width: 1.25em;
		height: 1.25em;
		border-radius: 50%;
		overflow: hidden;
	}

	.marquee-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		vertical-align: unset;
	}

	.small-image .marquee-image img {
		width: 50%;
		height: 50%;
	}

/*--------------------------------------------------
	Cylinder Lists
---------------------------------------------------*/

	.cylinder-lists-wrapper {
		position: relative;
		display: flex;
		justify-content: space-between;
		overflow: hidden;
		padding-top: calc(50 * var(--dvh, 1vh));
		padding-bottom: calc(50 * var(--dvh, 1vh));
	}

	.cylinder-lists-mask {
		position: absolute;
		width: 100%;
		height: calc(100 * var(--dvh, 1vh));
		top: 0;
		left: 0;
		z-index: 10;		
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-size: 100% 100%;
		mask-repeat: no-repeat;
		mask-size: 100% 100%;
		pointer-events: none;
	}

	.cylinder-lists-title {
		position: relative;
		width: 50%;
		height: 84px;
		display: flex;
  		justify-content: center;
		align-items: center;
		align-self: flex-start;
		font-size: 18px;
		font-weight: 400;
  		letter-spacing: 0;
		gap: 0.25em;
		z-index: 15;
		padding-right: 20px;
  		box-sizing: border-box;
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}

	.cylinder-lists-title .square {
		height: 25px;
		width: 25px;
		background-color: #000;
	}

	.cylinder-lists-content {
		position: relative;
		display: flex;
		width: calc(50% - var(--gap) / 2);
		z-index: 0;
		text-align: left;
	}
	
	.text-align-center .cylinder-lists-content {
		width: 100%;
		text-align: center;
		justify-content: center;
		left: -0.4vw;
	}

	.cylinder-lists-wrapper ul {
		list-style-type:none;
		padding: 0;
		margin:0;
	}

	.cylinder-lists-wrapper ul li {
		scroll-snap-align: center;
		font-size: inherit;
		line-height: inherit;
		font-weight: inherit;
		padding: 0;
		margin-bottom: 0px;
		opacity: 0.15;		
	}
	
	.cylinder-lists li:first-child {
		opacity: 1;	
	}

	.cylinder-lists li:last-child {
		position: absolute;	
	}

	.text-align-center .cylinder-lists li:last-child {
		width: 100%;
		left: 0;
	}

	.cylinder-lists-clone {		
		position: absolute;	
		top:0;	
		list-style-type:none;
	}

	.cylinder-lists-clone.before {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	.cylinder-lists-clone.after {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
	
	.cylinder-lists-end-pin {
		position: absolute;
		display: block;
		width: 100%;
		height: auto;
		bottom: 0;
		line-height: inherit;
		font-size: inherit;
		color: transparent;
		pointer-events: none;
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}

	@media only screen and (max-width: 1024px) {
		
		.cylinder-lists-wrapper {
			padding-top: 2em;
			padding-bottom: 3em;
		}
		
		.cylinder-lists-mask {
			display: none;
		}
		
		.cylinder-lists-title {
			display: none;			
		}
		
		.cylinder-lists-content {
			width: 100%;
			justify-content: flex-start;
		}
		
		.cylinder-lists-wrapper ul {
			text-align: left;
		}
		
		.cylinder-lists-wrapper ul li {
			-webkit-transform-origin: center center;
			transform-origin: center center;
		}
		
		.cylinder-lists li:last-child {
  			position: relative;
		}
		
		.cylinder-lists-clone {
			display: none;
		}
		
		.cylinder-lists-end-pin {
			top: 0;
			bottom: auto;
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}

	}

	/* Custom */

	.cylinder-lists-title span {
		position: relative;
		line-height: 1.4em;
	}

	


/*--------------------------------------------------
	Overlapping Lists
---------------------------------------------------*/

	.overlapping-lists-wrapper {
		position:relative;		
		width:100%;
		height:auto;
		display:block;
		padding-bottom: calc(50 * var(--dvh, 1vh));
		pointer-events: none;
	}

	.overlapping-lists-wrapper.overflow-fade-out {
		padding-bottom: 0;
	}
	
	.overlapping-lists {		
		position: relative;
		width:100%;
		height:auto;
		display: block;
		margin:0;
		visibility: hidden;
		pointer-events: none;
	}
	
	.overlapping-lists li {
		position:relative;
		width: 100%;  		
		height:calc(100 * var(--dvh, 1vh));
		margin:0;		
		list-style:none;
	}


	.overlapping-lists-large {
		position: absolute;
		width:100%;
		height:calc(100 * var(--dvh, 1vh));
		display:flex;
		justify-content: center;
  		align-items: center;
		top:0;
		margin:0;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.text-align-center .overlapping-lists-large {
		justify-content: center;
	}
	
	.overlapping-lists-large li {
		position:absolute;
		list-style:none;
		color:currentColor;
		margin:0;
	}

	.overlapping-lists-large li div {
		position: relative;
		display: block;
		overflow: hidden;
		/*margin: -3% 0;*/
	}
	
	.overlapping-lists-large li div span {
		position: relative;
		display: block;
		opacity: 0;
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}

	.overlapping-lists-small {
		position: absolute;
		width:100%;
		height:calc(100 * var(--dvh, 1vh));
		display:flex;
		justify-content: center;
  		align-items: center;
		top:0;
		margin:0;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.text-align-center .overlapping-lists-small {
		justify-content: center;
	}
	
	.overlapping-lists-small li {
		position:absolute;
		display: flex;
		flex-direction: row;
  		gap: 0.25em;
		color:currentColor;
		font-size: 20px;
		line-height: 40px;
		font-weight: 400;
		margin:0;
		list-style:none;
	}

	.overlapping-lists-small li div {
		position: relative;
		display: block;
		overflow: hidden;		
	}
	
	.overlapping-lists-small li div span {
		position: relative;
		display: block;
		opacity: 0;
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}

	@media only screen and (max-width: 1024px) {
		
		.overlapping-lists-wrapper {
			padding-bottom: 0;
		}
		
		.overlapping-lists li {
			height:auto;
			opacity: 0;
		}
		
		.overlapping-lists-large {
			height: 100%;
			-webkit-transform: translateY(0%);
			transform: translateY(0%);
		}
		
		.overlapping-lists-small {
			height: 100%;
			-webkit-transform: translateY(0%);
			transform: translateY(0%);
		}

	}

/*--------------------------------------------------
	Pinned Lists
---------------------------------------------------*/		
	
	.pinned-lists-wrapper {
		position:relative;		
		width:100%;
		height:auto;
		padding-bottom:calc(100 * var(--dvh, 1vh));	
	}
	
	.pinned-lists {
		position: relative;
		margin:0;
		display:block;
		width:100%;
	}
	
	.pinned-lists li {
		list-style:none;
		width: auto;
  		display: table;
		position:relative;
		font-size: inherit;
		line-height: inherit;
		font-weight: inherit;
		letter-spacing: inherit;
		margin:0;
	}

	.text-align-center .pinned-lists li {
		margin: 0 auto;
	}
	
	.pinned-lists-start-pin {
		position: absolute;
		display: block;
		width: 100%;
		height: 0;
		bottom: 0;
	}

	.pinned-lists-end-pin {
		position: absolute;
		display: block;
		width: 100%;
		height: 0;
		bottom: 0;
	}

	@media only screen and (max-width: 1024px) {
		
		.pinned-lists-wrapper {
			padding-bottom: 0;
		}
		
		.pinned-lists-start-pin {
			top: 0;
		}

		.pinned-lists-end-pin {
			bottom: 0;
		}

	}
	
/*--------------------------------------------------
	Hover Reveal Image
---------------------------------------------------*/	
	
	.hover-reveal {
		position: fixed;
		width: 10vw;
		height: 14vw;
		pointer-events: none;
		opacity: 0;
		top:0;
		left:0;
		margin:auto;
		z-index:1000;
	}
	
	.content-row > .hover-reveal {
		z-index:1000;
	}
	
	.rounded-borders .hover-reveal {
		border-radius:4px;
		overflow:hidden;
	}
	
	.hover-reveal__inner, .hover-reveal__img {
		width: 100%;
		height: 100%;
		position: absolute;
	}
	
	.hover-reveal__img {
		background-size:cover;
		background-position:center center;
		background-repeat:no-repeat;
		width:100%;
		height: 100%;
		position:relative;
		display:block;
	}

	/* Custom */

	.flex-list .hover-reveal {
		left: calc(7.5% + 80px)!important;
	}

/*--------------------------------------------------
	Image Trail
---------------------------------------------------*/

	.images-trail-wrapper {
		width: 100%;
		height: 100%;
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: center;
		left: 0;
		top: 0;
	}

	.trail-img {
		width: 300px;
		height: 300px;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		will-change: transform;
		object-position: center; 
		object-fit: cover;
		pointer-events: none;
	}

	
/*--------------------------------------------------
	Carousel
---------------------------------------------------*/
	
	.clapat-slider-wrapper.content-slider  {
		width:100%;
		height: auto;
		position:relative;	
	}
	
	.content-slider .clapat-slider-viewport {
		display: flex;
		position: relative;
		margin: 0 auto;
	}
	
	.content-slider.looped-carousel .clapat-slider-viewport {
		max-width:1280px;
	}
	
	.content-slider.small-looped-carousel .clapat-slider-viewport {
		max-width:500px;
	}
	
	.content-slider .clapat-slider {
		padding: 0 0 0 0;
		height: auto;
		position:relative;	
	}
	
	.content-slider .clapat-slide {
		width: 100%;
	}
	
	.content-slider.looped-carousel .clapat-slide {
		padding:0 60px;		
		overflow: visible;
	}
	
	.content-slider.small-looped-carousel .clapat-slide {
		padding:0 20px;		
		overflow: visible;
	}
	
	.rounded-borders .content-slider {
		border-radius:8px;
		overflow:hidden;
	}
	
	.rounded-borders .content-slider.looped-carousel img, .rounded-borders .content-slider.small-looped-carousel img {
		border-radius:8px;
	}
	
	.content-slider.looped-carousel .clapat-button-prev, .content-slider.looped-carousel .clapat-button-next {
		display:none;
	}
	
	.disable-cursor .content-slider.looped-carousel .clapat-button-prev, .disable-cursor .content-slider.looped-carousel .clapat-button-next {
		display:block;
	}
	
	.content-slider.small-looped-carousel .clapat-button-prev, .content-slider.small-looped-carousel .clapat-button-next {
		display:none;
	}
	
	.disable-cursor .content-slider.small-looped-carousel .clapat-button-prev, .disable-cursor .content-slider.small-looped-carousel .clapat-button-next {
		display:block;
	}
	
	.content-slider .clapat-pagination {
		width: 100%;
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		left:0;
		right:0;
		bottom:20px;
		margin:auto;
		z-index: 20;
		text-align: center;
		opacity:1;
		pointer-events:none;
	}
	
	.content-slider .slider-button-prev {
		position:absolute;
		top:0;
		left:0;
		margin:0;
		width:50%;
		height:100%;
		z-index:10;
		cursor:pointer;	
	}
	
	.content-slider .slider-button-next {
		position:absolute;
		top:0;
		right:0;
		margin:0;
		width:50%;
		height:100%;
		z-index:10;
		cursor:pointer;		
	}
	
	.content-slider .clapat-pagination-bullet .parallax-wrap {
		width: 40px;
		height: 40px;
		display: inline-flex;
		position: relative;
		justify-content: center;
		align-items: center;
		pointer-events: initial;
	}
	
	.content-slider .clapat-pagination-bullet .parallax-element {
		height: 40px;
		width: 40px;
		text-align: center;
		line-height: 50px;
	}
	
	.clapat-pagination-bullet-active .path {
		display: inline-block !important;
		stroke-dasharray: 1000;
		stroke-dashoffset: 0;
		animation: dash ease-in 3s;
		animation-iteration-count: unset;
	}
	
	.dark-cursor .clapat-pagination {
		color:#000;
	}
	
	.light-cursor .clapat-pagination {
		color:#fff;
	}
	
	.clapat-pagination-bullet .path, .light-content.light-content-slider .clapat-pagination-bullet .path {
		stroke:currentColor;
	}
	
	.light-content .clapat-pagination-bullet .path, .dark-section .clapat-pagination-bullet .path, .light-content-slider .clapat-pagination-bullet .path {
		stroke:currentColor;
	}
	
	.light-content .light-section .clapat-pagination-bullet .path {
		stroke:currentColor;
	}
	
	.clapat-pagination-bullet .solid-fill, .light-content.light-content-slider .clapat-pagination-bullet .solid-fill {
		fill:currentColor;
	}
	
	.light-content .clapat-pagination-bullet .solid-fill, .dark-section .clapat-pagination-bullet .solid-fill, .light-content-slider .clapat-pagination-bullet .solid-fill {
		 fill:currentColor;
	}
	 
	 .light-content .light-section .clapat-pagination-bullet .solid-fill, .light-content .dark-section .dark-cursor .clapat-pagination-bullet .solid-fill {
		 fill:currentColor;
	}
	 
	.light-cursor .clapat-pagination-bullet .path {
		stroke:currentColor;
	}
	
	.dark-cursor .clapat-pagination-bullet .path {
		stroke:currentColor;
	}
	
	.light-cursor .clapat-pagination-bullet .solid-fill {
		fill:currentColor;
	}
	
	.dark-cursor .clapat-pagination-bullet .solid-fill {
		fill:currentColor;
	}
	
	.path {
		display: none;
	}

	@keyframes dash {
	  from {
		stroke-dashoffset: 1000;
	  }
	
	  to {
		stroke-dashoffset: 0;
	  }
	}
	
	.disable-cursor .full .looped-carousel .clapat-controls, .disable-cursor .full_elementor .looped-carousel .clapat-controls {
		position: absolute;
		width: calc(100% - 60px);
		height: 100%;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	
	.disable-cursor .full .small-looped-carousel .clapat-controls, .disable-cursor .full_elementor .small-looped-carousel .clapat-controls {
		position: absolute;
		width: calc(100% - 60px);
		max-width:540px;
		height: 100%;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	
	.disable-cursor .slider-button-prev {
		position: absolute;
		top: calc(50% - 30px);
		left: 0px;
		margin: 0;
		width: 60px;
		height: 60px;
		z-index: 10;
		cursor: pointer;
		opacity:0.7;
		-webkit-transition: opacity 0.15s ease-out;
		transition: opacity 0.15s ease-out;
	}
	
	.disable-cursor .slider-button-prev:hover {
		opacity:1;
	}
	
	.disable-cursor .slider-button-prev::after {
		font: var(--fa-font-solid);
		content: "\f104";
		font-size: 24px;
		width:60px;
		height:60px;
		line-height:60px;
		text-align:center;
		position: absolute;
		left: 0;
		top:0;
		color:#fff;
	}
	
	.disable-cursor .light-cursor .slider-button-prev::after, .disable-cursor .light-cursor .slider-button-next::after {
		color:#fff;
	}
	
	.disable-cursor .dark-cursor .slider-button-prev::after, .disable-cursor .dark-cursor .slider-button-next::after {
		color:#000;
	}
	
	.disable-cursor .slider-button-next {
		position: absolute;
		top: calc(50% - 30px);
		left:auto;
		right: 0px;
		margin: 0;
		width: 60px;
		height: 60px;
		z-index: 10;
		cursor: pointer;
		opacity:0.7;
		-webkit-transition: opacity 0.15s ease-out;
		transition: opacity 0.15s ease-out;
	}
	
	.disable-cursor .slider-button-next:hover {
		opacity:1;
	}
	
	.disable-cursor .slider-button-next::after {
		font: var(--fa-font-solid);
		content: "\f105";
		font-size: 24px;
		width:60px;
		height:60px;
		line-height:60px;
		text-align:center;
		position: absolute;
		left: 0;
		top:0;
		color:#fff;
	}

	.content-slider .slide-caption {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		color: #fff;
		box-sizing: border-box;
		padding: 25px 50px 30px 50px;
		display: flex;
		justify-content: flex-end;
		flex-direction: column;
		gap: 10px;
	}
	
	
/*--------------------------------------------------
	Light Box
---------------------------------------------------*/	

	.image-link, .video-link {
		display: block;
		width: auto;
		
	}
	
	.rounded-borders .image-link img, .rounded-borders .video-link img {
		border-radius:8px;
	}
	
	.disable-cursor .image-link::after {
		font: var(--fa-font-solid);
		content: "\f002";
		font-size: 18px;
		width:60px;
		height:60px;
		line-height:60px;
		text-align:center;
		position: absolute;
		right:10px;
		top:10px;
		color:#fff;
		opacity:0;
		-webkit-transition: opacity 0.15s ease-out;
		transition: opacity 0.15s ease-out;
	}
	
	.disable-cursor .image-link:hover::after {
		opacity:1;
	}
	
	.disable-cursor .video-link::after {
		font: var(--fa-font-solid);
		content: "\f04b";
		font-size: 18px;
		width:60px;
		height:60px;
		line-height:60px;
		text-align:center;
		position: absolute;
		right:10px;
		top:10px;
		color:#fff;
		opacity:0;
		-webkit-transition: opacity 0.15s ease-out;
		transition: opacity 0.15s ease-out;
	}
	
	.disable-cursor .video-link:hover::after {
		opacity:1;
	}
	
	
/*--------------------------------------------------
	Video Player
---------------------------------------------------*/	
	
	.item-video-wrapper {
		position: absolute;
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		overflow: hidden;
		pointer-events: none;
	}

	.item-video-wrapper video {
		position: absolute;		 
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}


	.hero-video-wrapper {
		position: absolute;
    	box-sizing: border-box;
		width: 100%;
		height: 100%;
		padding:0;
		overflow:hidden!important;
		opacity:1;		
	}
	
	.item .hero-video-wrapper, .clapat-item .hero-video-wrapper, .hover-reveal__img .hero-video-wrapper, .clapat-slider .hero-video-wrapper, .open-thumbnail .hero-video-wrapper, .slider-zoom-wrapper .hero-video-wrapper, .overlapping-image .hero-video-wrapper, .section-image .hero-video-wrapper {
		position: absolute;
		box-sizing: border-box;
		min-width: 100%;
		min-height: 100%;
		width: 100%;
		height: auto;
		background-size: cover;
		padding: 0;
		overflow: hidden !important;
		opacity: 1;
		top: 0;
		z-index: 120;
		pointer-events: none;
	}
	
	.content-video-wrapper {
		position: absolute;
    	box-sizing: border-box;
		width: 100%;
		height: 100%;
		left:0;
		top:0;
		padding:0;
		overflow:hidden!important;
		z-index: 1;
	}
	
	.hero-video-wrapper video.bgvid, .content-video-wrapper video.bgvid {
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: -1;
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
	
	.video-wrapper {
		position: relative;
    	box-sizing: border-box;
		min-width: 100%;
		max-height: 100vh;
		width: 100%;
		height: auto;
		background-size: cover;
		padding:0;
		overflow:hidden!important;
		opacity:1;
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	
	.rounded-borders .video-wrapper {
		border-radius: 8px;
	}
	
	.video-cover {
		position:absolute;
		width:100%;
		height:100%;
		top:0;
		left:0;
		z-index:100;
		cursor:pointer;
		background-size:cover;
		background-position:center center;
		background-repeat:no-repeat;
		background-color: #000;
	}
	
	.video-cover.hidden {
		opacity:0;
		height: calc(100% - 50px);
		-webkit-transition: opacity 0.3s ease-out, height 0s ease-out 0.3s;
		transition: opacity 0.3s ease-out, height 0s ease-out 0.3s;
	}
	
	video.bgvid { 
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		object-position: center; 
		object-fit: cover;
		z-index: -100;
	}
	
	.video-wrapper video.bgvid {
		position: relative;
	}

	.control {
		bottom: 25px;
		color: #ccc;
		display: none;
		left: 0;
		position: absolute;
		width: calc(100% - 40px);
		z-index: 5;
		background-color: #eee;
		padding: 0;
		box-sizing: border-box;
		right: 0;
		margin: 0 auto;
	}
	
	.full .control, .full_elementor .control {
		bottom: 10px;
		width: calc(100% - 160px);
	}

	.btmControl{
		clear:both;
	}
	
	.control .sound{
		width: 30px;
		height: 50px;
		float:left;
		cursor:pointer;
		text-align:center;
		line-height:50px;
		color:#fff;
		opacity:0.4;
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	
	.control .sound:hover {
		opacity:1;
	}
	
	.control .sound i {
		line-height:50px;
	}
	
	.control .sound.muted i:first-child {
		display:none;
	}
	
	.control .sound.muted i:last-child {
		display:block;
	}
	
	.control .sound i:last-child {
		display:none;
	}
	
	.control .btnFS{
		width: 50px;
		height: 50px;
		float:left;
		cursor:pointer;
		text-align:center;
		line-height:50px;
		color:#fff;
		opacity:0.4;
		-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;
	}
	
	.control .btnFS:hover{
		opacity:1;
	}

	.progress-bar {
		background: rgba(255,255,255,0.5);
		box-sizing: border-box;
		float: left;
		height: auto;
		width: calc(100% - 123px);
		cursor: pointer;
		bottom: 23px;
		position: absolute;
		left: 23px;
		opacity:0;
		-webkit-transition: opacity 0.2s ease-in-out;
		-moz-transition: opacity 0.2s ease-in-out;
		-o-transition: opacity 0.2s ease-in-out;
		-ms-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}
	
	.video-wrapper:hover .progress-bar {
		opacity:1;
	}
	
	.progress {
		height: 2px;
		max-width: 100%;
		position: relative;
		width: 100%;
	}
	
	.progress span {
		height:100%;
		position:absolute;
		top:0;
		left:0;
		display:block;
	}
	
	.timeBar{
		z-index:10;
		width:0;
		background: #fff;
	}
	
	.bufferBar{
		z-index:5;
		width:0;
		background: rgba(255,255,255,0.2);
	}
	
	.video-btns {
		position: absolute;
		right: 3px;
		bottom: 0px;
		opacity:0;
		-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;
	}
	
	.video-wrapper:hover .video-btns {
		opacity:1;
	}
	
	.volume {
		position:relative;
		cursor:pointer;
		width:70px;
		height:10px;
		float:right;
		margin-top:10px;
		margin-right:10px;
	}
	
	.volumeBar {
		display:block;
		height:100%;
		position:absolute;
		top:0;
		left:0;
	}

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

	.button-box {
		line-height:16px;
		cursor:pointer;
		border:none;
		box-sizing:border-box;
		text-align:center;
		display:inline-block;
		position:relative;
		z-index: 100;
	}
	
	.button-box.has-animation {
		opacity: 0;
		-webkit-transition: translateY(0px);
		transform: translateY(0px);
	}
	
	.text-align-center .button-box, .text-align-center.button-box {
		margin-left:10px;
		margin-right:10px;
		text-align:center;
	}
	
	.text-align-center.button-box {
		display: flex;
		margin:auto
	}
	
	.button-content .submit-box {
		color:#fff;
	}
	
	.clapat-button-wrap {
		display: flex;
		position: relative;
		justify-content: center;
		align-items: center;
		left:0;
		right:0;
		min-width:50px;
		height:60px;
		color:#000;		
	}
	
	.light-content .clapat-button-wrap, .dark-section .clapat-button-wrap {
		color:#fff;	
	}
	
	.light-content .light-section .clapat-button-wrap {
		color:#000;	
	}
	
	.clapat-button-wrap.circle {
		min-width:104px;
		height:104px;	
	}
	
	.text-align-center .clapat-button-wrap {
		margin:0 auto;
	}
	
	.clapat-button {		
		opacity:1;		
	}
	
	.button-border {
		height: 50px;
		width: auto;
		border: solid 2px currentColor;
		background-color:#000;
		border-radius: 5px;
		cursor:pointer;
		font-size: 16px;
		font-weight: 400;
		line-height:50px;
		overflow: hidden;
		color:currentColor;
		text-align:center;
		box-sizing:initial;
	}
	
	.button-box.has-animation .button-border {
		width: 50px;
	}
	
	.disable-cursor .button-border {
		-webkit-transition : border 0.2s ease-out;
		transition : border 0.2s ease-out;
	}
	
	.light-content .button-border, .dark-section .button-border {
		border: solid 2px currentColor;
		background-color:currentColor;
	}
	
	.light-content .light-section .button-border {
		border: solid 2px currentColor;
		background-color:currentColor;
	}
	
	.light-content .button-border a, .dark-section .button-border a {
		color:#000;
	}
	
	.light-content .light-section .button-border a {
		color:#fff;
	}
	
	.button-border:not(.outline) a {
		color:#fff!important;
	}
	
	.light-content .button-border:not(.outline) a, .dark-section .button-border:not(.outline) a {
		color:#000!important;
	}
	
	.light-content .light-section .button-border:not(.outline) a {
		color:#fff!important;
	}
	
	.button-border.rounded {
		border-radius: 30px;
	}
	
	.button-border.outline {
		border: solid 2px currentColor;
		color:currentColor;
		background-color:transparent;
	}
	
	.light-content .button-border.outline, .dark-section .button-border.outline {
		border: solid 2px currentColor;
		color:currentColor;		
		background-color:transparent;
	}
	
	.light-content .light-section .button-border.outline {
		border: solid 2px currentColor;		
		background-color:transparent;
	}
	
	.clapat-button a {
		position: relative;
		display: block;
		height: 100%;
	}
	
	.button-box.has-animation .clapat-button a {
		opacity:0;
		white-space: nowrap;	
		transition: opacity 0.5s ease 0.5s;
		-webkit-transition: opacity 0.5s ease 0.5s;
	}
	
	.button-box.has-animation .clapat-button .animated a {
		opacity:1;
	}
	
	.light-content .button-border.outline a, .dark-section .button-border.outline a {
		color:#fff;
	}
	
	.light-content .light-section .button-border.outline a {
		color:#000;
	}
	
	.dark-content .light-section .button-border a {
		color:#fff;
	}
	
	.dark-content .light-section .button-border.outline a {
		color:#000;
	}
	
	.circle .button-border {
		border-radius: 100px;
		height: 100px;
		width: 100px;
	}
	
	.button-border span {
		position: relative;
		display: inline-block;
		-webkit-transition: -webkit-transform 0.2s;
		transition: transform 0.2s;
		width: auto;
		text-align: center;
		transform-origin: 100% 0%;
		padding: 0 40px;
	}
	
	.button-border span::before {
		position: absolute;
		width: 100%;
		top: 100%;
		left: 0;
		content: attr(data-hover);
		text-align: center;
	}
	
	.clapat-button:hover .button-border span {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		transform-origin: 0% 0%;
	}
	
	.clapat-button-wrap.circle:hover .button-border {
		border: solid 2px transparent;	
	}
	
	.clapat-button-wrap.circle .button-border input, .clapat-button-wrap.circle .button-border a {
		height: 100px;
		width: 100px;
		line-height: 100px;
		text-align: center;
		padding: 0;
		font-size: 12px;
		cursor:pointer;	
	}
	
	

/*--------------------------------------------------
	Appearing Items
---------------------------------------------------*/	
	
	.has-animation1 {
		opacity:0;
		-webkit-transition:translateY(10px);
		transform: translateY(10px);
	}
	
	.has-animation.has-scale {
		opacity: 0;
		-webkit-transition:translateY(0px) scale(1.05);
		transform: translateY(0px) scale(1.05);
		transform-origin: 50% 0;
		will-change:transform;
	}
	
	.has-animation.has-scale-vertical {
		opacity: 0;
		-webkit-transition:translateY(0px) scaleY(1.1);
		transform: translateY(0px) scaleY(1.1);
		transform-origin: 50% 0;
		will-change:transform;
	}
	
	.has-animation.has-cover {
		opacity: 1;
		-webkit-transition:translateY(0px);
		transform: translateY(0px);
		overflow:hidden;
	}
	
	.has-animation.has-cover::after {
		content: "";
		width: 100%;
		height: 100%;
		background-color:inherit;
		position:absolute;
		top:0;
		right:0;
		z-index:10;
		-webkit-transition: all .6s cubic-bezier(0.54, 0.49, 0.2, 1.01);
		-o-transition: all .6s cubic-bezier(0.54, 0.49, 0.2, 1.01);
		transition: all .6s cubic-bezier(0.54, 0.49, 0.2, 1.01);	
	}
	
	.has-animation.has-cover.animated::after {
		width:0;
	}
	
	.has-animation.has-cover img {
		opacity: 1;
		-webkit-transition:scale(1.05);
		transform:scale(1.05);
		-webkit-transition: all .6s cubic-bezier(0.54, 0.49, 0.2, 1.01);
		-o-transition: all .6s cubic-bezier(0.54, 0.49, 0.2, 1.01);
		transition: all .6s cubic-bezier(0.54, 0.49, 0.2, 1.01);	
	}
	
	.has-animation.has-cover.animated img {
		opacity: 1;
		-webkit-transition:scale(1);
		transform:scale(1);
	}
	
	
	
	.has-indent {
		text-indent: calc(25% - (3 * var(--gap)) / 4);
	}

	.has-indent span {
		text-indent: 0;
	}
	
	.has-span-indent {
		margin-right: 30px;
		display: inline-block;
		vertical-align: top;
		line-height: inherit;
		font-family: 'Poppins', sans-serif;
		font-weight: 400;
		font-size: 16px;
		text-transform: initial;
		opacity:1;
		letter-spacing: 0;
		min-width: calc(50vw - 690px - var(--scroll-bar-w)/2);
  		width: auto;
	}
	
	.has-hover-image {
		cursor:pointer;
		display:inline-block;
		position:relative;
	}
	
	span.has-hover-image::before {
		content: '';
		position: absolute;
		bottom: 1px;
		left: 0;
		width: 100%;
		height: 2px;
		background: currentColor;
		transform: scaleX(1);
		transform-origin: left;
		transition: transform .2s ease-out;
	}
	
	.light-content span.has-hover-image::before, .dark-section span.has-hover-image::before {
		background: rgba(255,255,255,1);
	}
	
	.light-content .light-section span.has-hover-image::before {
		background: rgba(0,0,0,1);
	}
  
    span.has-hover-image:hover::before {
		transform: scaleX(0);
		transform-origin: right;
	}
	
	span.has-hover-image .hover-reveal {
		left:0;
		width: 400px;
		height: 250px;
		overflow:hidden;
	}
	
	span.has-hover-image.vertical .hover-reveal {
		width: 300px;
		height: 400px;
	}
	
	h1 > span.has-scale-image {
		position: relative;
		display: inline-block;
		background-color: currentColor;
		width: calc(1rem + 2.4vw);
		height: calc(1rem + 2.4vw);
		line-height: inherit;
		border-radius:6px;
		cursor:pointer;
		overflow:hidden;
		opacity:0;
		transform:scale(0.5);
		-webkit-transform:scale(0.5);		
	}
	
	.hidden-image {
		position:absolute;
		width:100%;
		height:100%;
		background-size: cover;
		opacity:0;
		transition: all 0.4s ease-out;
		-webkit-transition: all 0.4s ease-out;
	}
	
	h1 > span.has-scale-image:hover .hidden-image {
		opacity:1;
	}
	
	
	
	.number-counter {
		position: relative;
		display:table;
	}
	
	.text-align-center .number-counter {
		margin:0 auto;
		left: -5%;		
	}
	
	.number-counter::after {
		content: attr(data-symbol);
		line-height: inherit;
		top: 0;
		position: absolute;
		left: calc(100% + 5px);
	}


/*--------------------------------------------------
	Underline Link
---------------------------------------------------*/			
	
	a.link {
		display:inline-block;
		position:relative;
		color: currentColor;
	}
	
	a.link:not(.has-underline)::before {
		content: '';
		position: absolute;
		bottom: 1px;
		left: 0;
		width: 100%;
		height: 2px;
		background: currentColor;
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .2s ease-out;
	}
	
	h1 a.link:not(.has-underline)::before {
		bottom: 0px;
		height: 3px;
	}
  
    a.link:not(.has-underline):hover::before {
		transform: scaleX(1);
		transform-origin: left;
	}


/*--------------------------------------------------
	Icon Boxes
---------------------------------------------------*/

	.box-icon-wrapper {
		display: table;
		position: relative;
		box-sizing: border-box;
		height: auto;
		width:100%;
	}
	
	.box-icon {
		color: #000;
		position: relative;
		margin-top: 0px;
		margin-bottom: 10px;
		width: 35px;
		height: 35px;
		line-height: 35px;
	}
	
	.text-align-center .box-icon {
		margin:auto;
	}
	
	.inline-boxes .box-icon {
		position:absolute;
	}
	
	.box-icon i {
		position:relative;
		margin-bottom:0px;
		font-size:24px;
	}
	
	.light-content .box-icon {
		color:#fff;
	}
	
	.light-content .light-section .box-icon {
		color:#000;
	}
	
	.box-icon:after {
	  content: "";
	  clear: both;
	  display: table;
	}
	
	.box-icon-content {
		position:relative;
		width:100%;
		box-sizing:border-box;
	}
	
	.inline-boxes .box-icon-content {
		padding-left:45px;
	}
	
	.box-icon h5 {
		margin-bottom:5px;
	}
	
	
/*--------------------------------------------------
	Parallax Image
---------------------------------------------------*/	
	
	.parallax-image-content {
		position: relative;
		margin:0 auto;
		z-index: 10;
		height: 100%;
		width: 100%;
		box-sizing: border-box;
	}
	
	.parallax-image-content .outer {
		width: 100%;
		margin: 0 auto;
		padding-top: 20px;
		padding-bottom: 20px;
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
	}
	
	.parallax-image-content img {
		width:100%;
		max-width:100%;
		height:auto;
		display:block;
	}
	
	.rounded-borders .parallax-image-content img {
  		border-radius: 8px;
	}
	
/*--------------------------------------------------
	Clients Table
---------------------------------------------------*/	
	
	.clients-table {
		position:relative;
		margin:0;
		display:flex;
		justify-content:space-between;
		flex-wrap: wrap;
		background-image:url("../images/clients-middle.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
	}
	
	.light-content .clients-table, .dark-section .clients-table {
		background-image:url("../images/clients-middle-white.png");
	}
	
	.light-content .light-section .clients-table {
		background-image:url("../images/clients-middle.png");
	}
	
	.clients-table::before {
	  	content: "";
		position: absolute;
		width: 100%;
		height: 20px;
		top: 0;
		left: 0;
		background-image:url("../images/clients-top.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
	}
	
	.light-content .clients-table::before, .dark-section .clients-table::before {
		background-image:url("../images/clients-top-white.png");
	}
	
	.light-content .light-section .clients-table::before {
		background-image:url("../images/clients-top.png");
	}

	.clients-table::after {
	  	content: "";
		position: absolute;
		width: 100%;
		height: 20px;
		bottom: 0;
		left: 0;
		background-image:url("../images/clients-bottom.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
	}
	
	.light-content .clients-table::after, .dark-section .clients-table::after {
		background-image:url("../images/clients-bottom-white.png");
	}
	
	.light-content .light-section .clients-table::after {
		background-image:url("../images/clients-bottom.png");
	}
	
	.clients-table li {
		position:relative;
		display: block;
		width:calc(100% / 4 - 40px);
		height: auto;
		aspect-ratio: 13/10;
		box-sizing: border-box;
		text-align: center;
		margin: 20px;
		overflow:hidden;
		padding:30px;
	}
	
	.clients-table li img {
		width:100%;
		height: 100%;
		margin:0 auto;
		opacity:0.6;
		position:relative;
		display:block;
		object-position: center; 
		object-fit: cover;
		transition: all 0.2s ease 0s;
		-webkit-transition: all 0.2s ease 0s;
	}
	
	.clients-table li:hover img {
		opacity:1;
	}
	
	.clients-table.no-borders li {
		border:none;
	}
	
	.overlay {
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 00;
		left: 0;
		color: #FFF;
		background-color: rgba(0,0,0,0.1);
		z-index: 10;
		transform:scale(0.85);
		-webkit-transform:scale(0.85);
		opacity:0;
		transition: all 0.4s ease 0s;
		-webkit-transition: all 0.4s ease 0s;
		pointer-events:none;
	}
	
	.light-content .clients-table .overlay, .dark-section .clients-table .overlay {
		background-color: rgba(255,255,255,0.05);
	}
	
	.light-content .light-section .clients-table .overlay {
		background-color: rgba(0,0,0,0.1);
	}
	
	.clients-table li:hover .overlay {
		transform:scale(0.95);
		-webkit-transform:scale(0.95);
		opacity:1;
	}
	
	
	
	
/*--------------------------------------------------
	Accordion
---------------------------------------------------*/
	
	.accordion {
		padding:20px 0;
		padding-top:0;
		margin:0;
	}
	
	.accordion.bigger-acc, .light-content .accordion.bigger-acc, .dark-section .accordion.bigger-acc, .light-content .light-section .accordion.bigger-acc {
		border-top: none;
		border-bottom: none;
		padding:0px 0;
	}
	
	.accordion dt {
		position:relative;
		display:flex;
		align-items: center;
		cursor: pointer;
		padding: 0px;
		margin-bottom:0px;
		margin-top: 20px;
		padding-top: 20px;
		line-height:30px;
		-webkit-transition:all 0.2s ease 0s;
    	transition:all 0.2s ease 0s;
		z-index:10;
		border-top: 1px solid rgba(0,0,0,0.1);
	}
	
	.accordion.bigger-acc dt {
		font-size: calc(1rem + 1vw);
		line-height: calc(1rem + 1.5vw);
		margin-top: 40px;
		padding-top: 40px;
	}
	
	.uppercase-titles .accordion.bigger-acc dt {
		text-transform:uppercase;
	}
	
	.light-content .accordion dt, .dark-section .accordion dt {
		border-top: 1px solid rgba(255,255,255,0.2);
	}
	
	.light-content .light-section .accordion dt {
		border-top: 1px solid rgba(0,0,0,0.1);
	}
	
	.accordion dt:first-child {
		margin-top: 0px;
		border-top: none;
	}
	
	.accordion dt span {
		width: calc(100% - 30px);
		position: relative;
		overflow: hidden;
		display: block;
		padding: 0px;
		color:#000;		
		font-family:inherit;
	}
	
	.accordion:not(.bigger-acc) dt span em {
		font-family:inherit;
	}
	
	.accordion.bigger-acc dt span {
		font-family:inherit;
	}
	
	.accordion.bigger-acc dt span > div {
		position: relative;
		display:table;
		float:left;
		width:auto;
		-webkit-text-fill-color: rgba(0,0,0,0.1);
		-webkit-background-clip: text;
		background-repeat: no-repeat;
		background-image: linear-gradient(#000, #000);
  		background-size: 100% 100%;
		transition: all 0.3s ease 0s;
		-webkit-transition: all 0.3s ease 0s;
	}
	
	.accordion.bigger-acc:hover dt span > div {
		transition: all 0.15s ease 0s;
		-webkit-transition: all 0.15s ease 0s;
		background-size: 0% 100%;
	}
	
	.accordion.bigger-acc:hover dt:hover span > div, .accordion.bigger-acc:hover dt.accordion-active span > div {
		background-size: 100% 100%;
		transition: all 0.3s ease 0s;
		-webkit-transition: all 0.3s ease 0s;
	}
	
	.light-content .accordion.bigger-acc dt span > div, .dark-section .accordion.bigger-acc dt span > div {
		-webkit-text-fill-color: rgba(255,255,255,0.1);
		background-image: linear-gradient(#fff, #fff);;
	}
	
	.light-content .light-section .accordion.bigger-acc dt span > div {
		-webkit-text-fill-color: rgba(0,0,0,0.1);
		-webkit-background-clip: text;
		background-repeat: no-repeat;
		background-image: linear-gradient(#000, #000);
	}
	
	.light-content .accordion dt span, .dark-section .accordion dt span {
		color:#fff;
	}
	
	.light-content .light-section .accordion dt span {
		color:#000;
	}
	
	.accordion .accordion-content {
		margin-bottom: 0;
		font-size:16px;
		color:#777;
		line-height: 28px;
		padding-left: 0;
		padding-right: 80px;
		padding-top:10px;
		padding-bottom:5px;
		z-index: 0;
		position: relative;
	}
	
	.light-content .accordion .accordion-content, .dark-section .accordion .accordion-content {
		color:#999;
	}
	
	.light-content .light-section .accordion .accordion-content {
		color:#777;
	}
	
	.accordion.bigger-acc .accordion-content {
		font-size:18px;
		line-height: 30px;
	}
	
	.light-content .accordion .accordion-content, .dark-section .accordion .accordion-content {
		color:#ccc;
	}
	
	.light-content .light-section .accordion .accordion-content {
		color:#444;
	}
	
	.acc-icon-wrap {
		width: 30px;
		height: 30px;
		display: flex;
		position: relative;
		justify-content: center;
		align-items: center;
		float: none;
		opacity:1;
		-webkit-transition:opacity 0.2s ease 0s;
    	transition:opacity 0.2s ease 0s;
	}
	
	.accordion.bigger-acc .acc-icon-wrap {
		height: 50px;
		width: 50px;
	}
	
	
	.accordion dt:hover .acc-icon-wrap, .accordion dt.accordion-active .acc-icon-wrap {
		opacity:1;
	}
	
	.acc-button-icon {
		height: 30px;
		width: 30px;
		color: #000;
		text-align: center;
		line-height: 30px;
		font-size: 12px;
		background: rgba(0,0,0,0.1);
		border-radius: 50px;
		-webkit-transition:background 0.2s ease 0s, color 0.2s ease 0s;
    	transition:background 0.2s ease 0s, color 0.2s ease 0s;
	}
	
	.accordion.bigger-acc .acc-button-icon {
		height: 50px;
		width: 50px;
		line-height: 50px;
		font-size: 16px;
		background: rgba(0,0,0,0.1);
		border-radius: 50px;
		
	}
	
	.accordion dt:hover .acc-button-icon, .accordion dt.accordion-active .acc-button-icon {
		background: rgba(0,0,0,1);
		color: #fff;
	}
	
	.light-content accordion .acc-button-icon, .dark-section .accordion .acc-button-icon {
		background: rgba(255,255,255,0.1);
	}
	
	.light-content .accordion dt:hover .acc-button-icon, .dark-section .accordion dt.accordion-active .acc-button-icon {
		background: rgba(255,255,255,1);
		color: #000;
	}
	
	.light-content .light-section accordion .acc-button-icon {
		background: rgba(0,0,0,0.1);
	}
	
	.light-content .light-section dt:hover .acc-button-icon, .light-content .light-section .accordion dt.accordion-active .acc-button-icon {
		background: rgba(0,0,0,1);
		color: #fff;
	}
	
	.light-content .accordion .acc-button-icon, .dark-section .accordion .acc-button-icon {
		color: #fff;
	}
	
	.light-content .light-section .accordion .acc-button-icon {
		color:#000;
	}
	
	.acc-button-icon i {
		height: 30px;
		line-height: 30px;
		width: 30px;
		text-align: center;
		-webkit-transition:transform 0.2s ease 0s;
    	transition:transform 0.2s ease 0s;
	}
	
	dt.accordion-active .acc-button-icon i {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	


/*--------------------------------------------------
	Justified Gallery
---------------------------------------------------*/	
	
	.justified-gallery {
		box-sizing: border-box;
		padding: 0 0px;
		 width: calc(100% + 20px) !important;
  		margin-left: -10px;
	}
	
	.collage-thumb {
		position:relative;
		overflow:hidden;
		cursor:pointer;
	}
	
	.collage-thumb:hover .thumb-info {
		opacity:1;
		bottom:-5px;
	}
	
	.thumb-info {
		position:absolute;
		bottom:-10px;
		left:0;
		width:100%;
		opacity:0;
		color: #fff!important;
		padding: 50px 20px 20px;
		box-sizing:border-box;
		font-size:12px;
		font-weight: 500;
		transition:all 0.2s ease-in-out 0s;
    	-webkit-transition:all 0.2s ease-in-out 0s;
		background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.55))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.55) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.55) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.55) 100%); /* IE10+ */
		background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.55) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
	}
	
/*--------------------------------------------------
	Team Members List
---------------------------------------------------*/	
	
	
	.team-members-list  {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		box-sizing:border-box;
		margin: 0 auto;
		padding: 0px;
		overflow:hidden;
		pointer-events: none;
	}
	
	.team-members-list li {
		list-style:none;
		position: relative;
		margin:0;
		width:100%;
		cursor:pointer;
		pointer-events: initial;
		padding:40px 0px 40px 0px;
		box-sizing:border-box;
		border-bottom:1px solid;
		border-color:rgba(0,0,0,0.1);
	}
	
	.team-members-list li:last-child {
		border-bottom:0px solid;
	}
	
	.light-content .team-members-list li, .dark-section .team-members-list li {
		border-color:rgba(255,255,255,0.15);
	}
	
	.light-content .light-section .team-members-list li {
		border-color:rgba(0,0,0,0.1);
	}
	
	.full > .team-members-list li, .full_elementor .team-members-list li {
		padding:40px 80px 40px 80px;
	}
	
	.team-member {
		position: relative;
		display:table;
		margin-bottom:0px;
		vertical-align: top;
		width:100%;	
		z-index:10;
		line-height: calc(1rem + 3.5vw);
	}
	
	.team-member > div {
		font-size: calc(1rem + 3vw);
		font-weight: 500;
  		letter-spacing: -0.1vw;
		position: relative;
		display:table;
		margin:0 auto;		
		width:auto;
		-webkit-text-fill-color: rgba(0,0,0,0.1);
		-webkit-background-clip: text;
		background-repeat: no-repeat;
		background-image: linear-gradient(#000, #000);
  		background-size: 100% 100%;
		transition: all 0.3s ease 0s;
		-webkit-transition: all 0.3s ease 0s;
	}
	
	.uppercase-titles .team-member > div {
		text-transform:uppercase;
	}
	
	.team-members-list:hover li .team-member > div {
		transition: all 0.15s ease 0s;
		-webkit-transition: all 0.15s ease 0s;
		background-size: 0% 100%;
	}
	
	.team-members-list:hover li:hover .team-member > div {
		background-size: 100% 100%;
		transition: all 0.3s ease 0s;
		-webkit-transition: all 0.3s ease 0s;
	}
	
	.light-content .team-member > div, .dark-section .team-member > div {
		-webkit-text-fill-color: rgba(255,255,255,0.1);
		background-image: linear-gradient(#fff, #fff);;
	}
	
	.light-content .light-section .team-member > div {
		-webkit-text-fill-color: rgba(0,0,0,0.1);
		-webkit-background-clip: text;
		background-repeat: no-repeat;
		background-image: linear-gradient(#000, #000);
	}
	
	.light-section .team-member {
		color:#000;
	}
	
	.dark-section .team-member {
		color:#fff;
	}
	
	.team-members-list:hover li .team-member {
		opacity:0.3;
	}
	
	.team-members-list li:hover .team-member {
		opacity:1;
	}
	
	.team-member span {
		line-height: inherit;
		position: absolute;
		left:0;
		top:0;
		color: #000;
		display: block;
		transition: all 0.3s ease 0s;
		-webkit-transition: all 0.3s ease 0s;
	}
	
	.team-member span:last-child {
		left:auto;
		right:0;
	}
	
	.team-members-list:hover li .team-member > span {
		opacity:0.3;
	}
	
	.team-members-list:hover li:hover .team-member > span {
		opacity:1;
	}
	
	.light-section .team-member span {
		color:#000;
	}
	
	.dark-section .team-member span {
		color:#fff;
	}
	
	.team-members-list .hover-reveal {
		position: fixed;
		width: 300px;
		height: 400px;
		pointer-events: none;
		opacity: 0;
	}
	
	.swiper-container.team-looped-carousel {		
		cursor:grab;
    }
	
	.drag-cursor .swiper-container.team-looped-carousel {
		cursor:grabbing;
    }
	
	.team-looped-carousel .swiper-slide {        
		text-align:left;
    }
	
	.team-caption {
		position:absolute;
		bottom:0;
		left:0;
		width:100%;
		height:auto;
		box-sizing:border-box;
		padding:10px 30px 30px 30px;
	}
	
	.team-caption h5, .team-caption p {
		margin-bottom:0;
	}
	
/*--------------------------------------------------
	Team Members Grid
---------------------------------------------------*/
	
	.team-wrapper-grid {
		display:block;
		position:relative;
	}
	
	.team-intro-grid {
		display: flex;
  		justify-content: center;
  		align-items: center;
		width:100%;
		height:auto;
		box-sizing:border-box;
		padding:35vh 0;
		position:absolute;
		top:0;
	}
	
	.team-members-grid  {
		position: relative;
		width: 100%;
		height:auto;
		box-sizing:border-box;
		margin: 0 auto;
		padding: 0px;
		overflow:hidden;
	}
	
	.team-members-grid li {
		list-style:none;
		position: relative;
		margin:0;
		width:100%;
		box-sizing:border-box;
		display:flex;
		flex-direction: column;
	}
	
	.team-member-inner {
		display: block;
		width: 20%;
		height: 100%;
		overflow:hidden;
		cursor:pointer;
	}
	
	.team-members-grid li:nth-child(4n+1) .team-member-inner {
		transform: translateX(0%);
		-webkit-transform: translateX(0%);
	}
	
	.team-members-grid li:nth-child(4n+2)  .team-member-inner {
		transform: translateX(400%);
		-webkit-transform: translateX(400%);
	}
	
	.team-members-grid li:nth-child(4n+3) .team-member-inner {
		transform: translateX(100%);
		-webkit-transform: translateX(100%);
	}
	
	.team-members-grid li:nth-child(4n+4) .team-member-inner {
		transform: translateX(300%);
		-webkit-transform: translateX(300%);
	}
	
	.team-member-image {
		width: 100%;
		height: auto;
		display: block;
		position: relative;
		overflow:hidden;
	}
	
	.rounded-borders .team-member-image {
		border-radius:8px;
	}
	
	.team-member-image::before {
		content: "";
		padding-top: 100%;
		position: relative;
		display: block;
		box-sizing: border-box;
	}
	
	.team-member-image img {
		width:100%;
		height: 100%;
		position:absolute;
		top:0;
		left:0;
		display:block;
		object-position: center; 
		object-fit: cover;
		-webkit-transform:scale(1.05);
		transform: scale(1.05);
		-webkit-transition: transform 0.3s ease-out 0s;
		transition: transform 0.3s ease-out 0s;
	}
	
	.team-member-inner:hover .team-member-image img {	
		-webkit-transform:scale(1);
		transform: scale(1);			
	}
	
	.team-member-caption {
		position: relative;
		display: flex;
		justify-content: space-between;
		box-sizing: border-box;
		padding: 10px 0;
	}
	
	.team-member-caption span {
		color:#000;
	}
	
	.light-section .team-member-caption span {
		color:#000;
	}
	
	.dark-section .team-member-caption span {
		color:#fff;
	}
	
/*--------------------------------------------------
	Contact Formular
---------------------------------------------------*/	
	
	.text-align-center #contact-formular {
		margin:0 auto;
		max-width:800px;
	}
	
	#contact-formular::after {
		clear: both;
		content: " ";
		display: table;
	}
	
	#contactform {
		position:relative;
	}
	
	.name-box, .email-box, .message-box {
		position:relative;
		display:block;
		color:#000;
	}
	
	.light-content .name-box, .dark-section .name-box, light-content .email-box, .dark-section .email-box, light-content .message-box, .dark-section .message-box {
		color:#fff;
	}
	
	.light-content .light-section .name-box, .light-content .light-section .email-box, .light-content .light-section .message-box {
		color:#000;
	}
	
	.name-box, .email-box  {
		width: 47%;
		float: left;
		margin-bottom: 20px;
		margin-right: 6%;
		position: relative;
	}
	
	.name-box::after, .email-box::after {
		clear: both;
		content: " ";
		display: table;
	}

	.email-box {
		margin-right:0px;
	}
	
	.message-box {
		float:left;
		width:100%;		
		margin-top:60px;
	}
	
	.verify-box {
		float:left;
		width:100%;		
		margin-bottom:60px;
	}
	
	.text-align-center .verify-box {
		float: none;
		width: auto;
		text-align: center;
		display: table;
		margin: 0 auto;
		margin-bottom: 60px;
	}
	
	.verify-sum {
		margin:0;
		padding:0;
		float:left;
	}
	
	.verify-sum li {
		list-style:none;
		display:block;
		float:left;
		color:#fff;
		width:34px;
		height:34px;
		line-height:34px;
		text-align:center;
		border-radius:3px;
		background-color:#000;
		margin-bottom:0;
	}
	
	.light-content .verify-sum li, .dark-section .verify-sum li {
		color:#000;
		background-color:#fff;
	}
	
	.light-content .light-section .verify-sum li {
		color:#fff;
		background-color:#000;
	}
	
	.verify-sum li:nth-child(2), .verify-sum li:nth-child(4) {
		width:30px;
		color:#444;
		background-color:transparent!important;
	}
	
	.light-content .verify-sum li:nth-child(2), .light-content .verify-sum li:nth-child(4), .dark-section .verify-sum li:nth-child(2), .dark-section .verify-sum li:nth-child(4) {
		color:#fff;
		background-color:transparent!important;
	}
	
	.light-content .light-section .verify-sum li:nth-child(2), .light-content .light-section .verify-sum li:nth-child(4) {
		color:#444;
		background-color:transparent!important;
	}
	
	input#verify {
		float: left;
		width: 34px;
		padding: 0;
		height: 34px;
		text-align: center;
		line-height: 34px;
		border: none;
		border-radius:3px;
		background-color:#000;
		color:#fff;
	}
	
	.light-content input#verify, .dark-section  input#verify {
		background-color:#fff;
		color:#000;
	}
	
	.light-content .light-section  input#verify {
		background-color:#000;
		color:#fff;
	}
	
	#contact-formular .required {
		float:left;
		width:auto;
		font-size: 14px;
		line-height:34px;
		margin-left:20px;
		margin-bottom:0;
	}
	
	#contact-formular .text-align-center .required {
		float: left;
		margin-left: 0;
		display: block;
		clear: both;
		text-align: center;
		width: 100%;
		padding-top: 10px;
	}
	
	input, textarea {
		color: rgba(0,0,0,1);
		font-family:inherit;
		font-size: 16px;
		font-weight: inherit;
		height: 50px;
		padding: 12px 20px 12px 20px;
		padding-left:0;
		width: 100%;
		border-radius:0px;
		margin-bottom:0px;
		border:none;		
		-webkit-transition: all 0.2s linear;
		transition: all 0.2s linear;
		box-sizing: border-box;
		background-color:transparent;
		outline:none;
		border-bottom:1px solid rgba(0,0,0,0.3);
	}
	
	.bigger-form input, .bigger-form textarea {
		font-size: 48px;
		font-weight: 500;
		height: 100px;
		padding: 0;
	}
	
	input[type="search"] {
		padding-left:0px;
	}
	
	.light-content input, .light-content textarea, .dark-section input, .dark-section textarea {
		color:rgba(255,255,255,1);
		border-bottom:1px solid rgba(255,255,255,0.3);
	}
	
	.light-content .light-section input, .light-content .light-section textarea {
		color:rgba(0,0,0,1);
		border-bottom:1px solid rgba(0,0,0,0.3);
	}
	
	::placeholder, .light-content .light-section ::placeholder { 
	  color: currentColor;
	  opacity: 1; 
	}
	
	.light-content ::placeholder, .dark-section ::placeholder { 
	  color: currentColor;
	  opacity: 1; 
	}
	
	.light-content :-ms-input-placeholder, .dark-section :-ms-input-placeholder { 
	  color: currentColor;
	}
	
	.light-content .light-section :-ms-input-placeholder { 
	  color: currentColor;
	  opacity: 1; 
	}
	
	.light-content ::-ms-input-placeholder { 
	  color: currentColor;
	}
	
	:-ms-input-placeholder { 
	  color: currentColor;
	}
	
	.input_label {
		background-color: currentColor;
		height: 2px;
		left: 0;
		position: absolute;
		top: 49px;
		width: 0;
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	
	.bigger-form .input_label {
		top: 99px;
	}
	
	.light-content .input_label, .dark-section .input_label {
		background-color: currentColor;
	}
	
	.light-content .light-section .input_label {
		background-color: currentColor;
	}
	
	.input_label.slow {
		-webkit-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
	}
	
	input:focus + .input_label, textarea:focus + .input_label {
		width:100%;		
	}
	
	input:focus, textarea:focus {
		color:#000;
	}
	
	.light-content input:focus, .light-content textarea:focus, .dark-section input:focus, .dark-section textarea:focus {
		color:#fff;
	}
	
	.light-content .light-section input:focus, .light-content .light-section textarea:focus {
		color:#000;
	}
	
	textarea {
		resize:none;
		height:50px;
		box-sizing: border-box;
		padding: 14px 20px 6px 20px;
		padding-left:0;
		margin-bottom:40px;
	}
	
	textarea:after {
		background-color: #000;
		content: "";
		height: 2px;
		left: 0px;
		position: absolute;
		top: 20px;
		width: 100%;
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	
	input[type="submit"] {
		margin:0;
		background:transparent;
		border:none;
		color:#fff;
		font-family: inherit;
		font-size: inherit;
		font-weight: inherit;
		padding-left:50px;
		padding-right:50px;
		height:100%;
	}
	
	.light-content input[type="submit"], .dark-section input[type="submit"] {
		color:#000;
	}
	
	.light-content .light-section input[type="submit"] {
		color:#fff;
	}
	
	.outline input[type="submit"] {
		color:#000;
	}
	
	.light-content .outline input[type="submit"], .dark-section .outline input[type="submit"] {
		color:#fff;
	}
	
	.light-content .light-section .outline input[type="submit"] {
		color:#000;
	}
	
	.error_message {				
		line-height: 60px;
		font-size:16px;		
		color:#e93735;	
	}
	
	#success_page p, #success_page p strong {		
		color:#fff;		
		margin-top:20px;		
	}
	
	#message fieldset {		
		border:none;		
	}
	
	
/*--------------------------------------------------
	Google Map
---------------------------------------------------*/	
	
	#map_canvas {
		display: block;
		height:100vh;
		position:relative;
		width: 100%;
	}
	
	.rounded-borders #map_canvas {
		border-radius:8px;
		overflow:hidden;
	}
	
	#hero-image.bgrelative #map_canvas {
		position:relative!important;
	}
	
	.gmnoprint a, .gmnoprint span, .gm-style-cc {
		display:none;
	}
	
	.gmnoprint div {
		background:none !important;
	}
	
	.gm-style button {
		display:none!important;
	}
	
	
	.services-icon i {
		font-size:24px;
		margin-bottom:20px;
	}
	
	.service-info-text {
		margin-bottom:40px;
	}
	
/*--------------------------------------------------
	Flex Lists
---------------------------------------------------*/		
	
	.flex-lists-wrapper {
		position:relative;
		display:block;
		left: 50%;
		margin-left: calc(-50vw + var(--scroll-bar-w)/2) !important;
		max-width: 100vw;
		width: calc(100vw - var(--scroll-bar-w));
		color:#000;
		margin: 0;
	}
	
	.light-content .flex-lists-wrapper , .dark-section .flex-lists-wrapper {
		color:#fff;
	}
	
	.light-content .light-section .flex-lists-wrapper {
		color:#000;
	}
	
	.flex-list {
		position: relative;
		padding: 5px 80px;
		margin: 0px;
		display: flex;
		justify-content: space-between;
		gap: var(--gap);
		cursor: pointer;
	}
	
	.flex-list::before {
		content:"";
		position: absolute;
		width: 100%;
		height:1px;
		left:0;
		top: 0;
		z-index: 0;
		background-color: transparent;
		opacity:0.2;
	}
	
	.flex-list::after {
		content:"";
		position: absolute;
		width: 100%;
		height:0;
		left:0;
		bottom: 0;
		z-index: 0;
		background-color: currentColor;
		-webkit-transition: all 0.2s ease-out 0s;	
		transition: all 0.2s ease-out 0s;
	}
	
	.flex-list:hover::after {
		height: 100%;
	}
	
	.flex-list {
		color: currentColor;
		background: transparent;
	}
	
	.flex-list > span {
		z-index: 10;		
		color: currentColor;
		-webkit-transition: all 0.2s ease-out 0s;	
		transition: all 0.2s ease-out 0s;
	}
	
	.flex-list:hover > span {
		color: #fff;
	}
	
	.flex-list-left {
		width:25%;
		text-align:left;
	}
	
	.flex-list-center {
		width:35%;
		text-align:left;
	}
	
	.flex-list-right {
		width:15%;
		text-align:right;
	}

	/*-- Responsive --*/

	@media only screen and (max-width: 1537px) {

	}

	@media only screen and (max-width: 1466px) {
		
		.flex-list {
			padding: 5px 60px;
		}
		
	}	

	@media only screen and (max-width: 1024px) {
		
		.flex-list {
			padding: 5px 40px;
		}
		
		.flex-list .hover-reveal {
			display: none;
		}
		
	}	

	@media only screen and (max-width: 767px) {
		
		.flex-list {
			padding: 15px 30px;
			flex-direction: column;
		}
		
		.flex-list::before {
			content: "";
			position: absolute;
			width: 100%;
			height: 1px;
			left: 0;
			top: 0;
			z-index: 0;
			background-color: #777;
			opacity: 0.2;
		}
		
		.flex-list-left, .flex-list-center, .flex-list-right {
			width: 100%;
			text-align: left;
		}
		
	}

	@media only screen and (max-width: 479px) {
		
		.flex-list {
			padding: 15px 20px;
		}
		
	}
	
	
/*--------------------------------------------------
	Moving Gallery
---------------------------------------------------*/	
	
	
	
	.fw-gallery .wrapper-gallery {
		display: inline-flex;
		align-items: flex-end;
		margin:0;
		padding:0;
		clear:both;
	}
	
	.bw-gallery .wrapper-gallery {
		display: inline-flex;
		align-items: flex-start;
		margin:0;
		padding:0;
	}
	
	.moving-gallery li {
		position:relative;
		width: 25vw;
		padding-left: 10px;
		padding-right: 10px;
		box-sizing:border-box;
		margin:10px 0;
		list-style:none;
	}
	
	.fw-gallery.random-sizes li:first-child, .bw-gallery.random-sizes li:first-child {
		padding-left: 0px;
	}
	
	.fw-gallery.random-sizes li:last-child, .bw-gallery.random-sizes li:last-child {
		padding-right: 0px;
	}
	
	.fw-gallery.random-sizes li:nth-child(1) {
		width: 25vw;
	}
	
	.fw-gallery.random-sizes li:nth-child(2) {
		width: 30vw;
	}
	
	.fw-gallery.random-sizes li:nth-child(3) {
		width: 45vw;
	}
	
	.fw-gallery.random-sizes li:nth-child(4) {
		width: 25vw;
	}
	
	.bw-gallery.random-sizes li:nth-child(1) {
		width: 25vw;
	}
	
	.bw-gallery.random-sizes li:nth-child(2) {
		width: 45vw;
	}
	
	.bw-gallery.random-sizes li:nth-child(3) {
		width:30vw;
	}
	
	.bw-gallery.random-sizes li:nth-child(4) {
		width: 25vw;
	}
	
	.moving-gallery li img {
		height:auto;
		margin:0px;
	}
	
	.moving-gallery li img {
  		border: 1px solid rgba(255,255,255,0.15);
	}
	
	.rounded-borders .moving-gallery li img {
		border-radius:12px;
	}
	
	.moving-gallery-caption {
		position: absolute;
		height: auto;
		padding: 30px;
		box-sizing: border-box;
		text-align: center;
		bottom: 0;
		left: 0;
		right: 0;
		opacity:0;
		-webkit-transition: all 0.2s ease-in-out 0s;
		transition: all 0.2s ease-in-out 0s;
	}
	
	.moving-gallery li:hover .moving-gallery-caption {
		opacity:0.4;
	}
	
	
	
/*--------------------------------------------------
	Zoom Gallery
---------------------------------------------------*/		
	
	
	.zoom-gallery {
		position:relative;
		margin:0;
		padding:0;
		clear:both;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		max-width: 1000%;
		width: calc(100vw);
		height: auto;
	}
	
	.zoom-wrapper-gallery {
		position:relative;
		border-right: 0px solid #f00;
		box-sizing:border-box;
		margin:0;		
		padding:0 70px;
		clear:both;
		width:100%;
		height: auto;
		display: flex;
		justify-content: center;
	}
	
	.zoom-wrapper-gallery li {
		position:relative;
		display: block;
		box-sizing:border-box;
		padding:0 10px;
		margin:0;
		list-style:none;
		z-index:0;	
		width: 50%;
		max-width: 50%;
		height:100%;
		float:left;
		display:flex;
		align-items:center;
		
	}
	
	.zoom-wrapper-gallery li.zoom-center {
		z-index:1;
	}
	
	.zoom-wrapper-gallery li .zoom-img-wrapper {
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		min-height:100%;
		position: relative;
		overflow: hidden;		
		background-color:rgb(102, 102, 102);
	}
	
	.rounded-borders .zoom-wrapper-gallery li .zoom-img-wrapper {
		border-radius: 8px;
	}
	
	.zoom-wrapper-gallery.end-state  li.zoom-center .zoom-img-wrapper {
		
	}
	
	.zoom-wrapper-gallery li .zoom-img-wrapper img {
		width:100%;
		height: 100%;
		position:relative;
		display:block;
		z-index:100;	
		object-position: center; 
		object-fit: cover;
	}
	
	.zoom-thumb {
		width:100%;
		height: calc(100 * var(--dvh, 1vh));
		position:relative;
		display:block;
	}

	.zoom-wrapper-thumb {
		width:100%;
		height: calc(100 * var(--dvh, 1vh) + 120px);
		position:absolute;
		top:-120px;
		display:block;
		/*background-color: rgba(255,255,255,0.3)*/
	}
	
	.zoom-thumb .zoom-img-wrapper {
		width:100%;
		height: 100%;
		position:absolute;
		overflow:hidden;
	}
	
	.rounded-borders .zoom-thumb .zoom-img-wrapper {
		border-radius: 8px;
	}
	
	.zoom-thumb .zoom-img-wrapper img {
		width:100%;
		height: 100%;
		position:relative;
		display:block;
		z-index:100;	
		object-position: center; 
		object-fit: cover;
	}

	@media only screen and (max-width: 1466px) {
		
		.zoom-wrapper-thumb {
			height: calc(100 * var(--dvh, 1vh) + 100px);
			top:-100px;
		}

	}

	@media only screen and (max-width: 1024px) {	
		
		.zoom-thumb, .zoom-wrapper-thumb {
			display:none;
			pointer-events:none;
			visibility: hidden;
		}

	}

	
/*--------------------------------------------------
	Slowed Pin
---------------------------------------------------*/	
	
	.slowed-pin {
		position:relative;
		overflow: hidden;
	}
	
	.slowed-pin > .pin-spacer {
		pointer-events:none;
	}
	
	.slowed-text {
		position:absolute;
		height:auto;
		min-height:100vh;
		width:100%;
		max-width:980px;		
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		box-sizing:border-box;
		padding:8vw 20px;
		z-index:1;
		pointer-events:none;
		margin:auto;
		left:0;
		right:0;
	}
	
	.slowed-text-wrapper {
		position:relative;
		display:block;
	}
	
	.slowed-images {
		position: relative;
		top: 0;
		width: 100%;
		height:auto;
		box-sizing:border-box;
		overflow: hidden;
		z-index:0;
		margin:auto;
	}
	
	.slowed-image {
		position: relative;
		width: 100%;
		height: auto;
		box-sizing: border-box;
		padding:0 0px;
		margin:150px 0;
		display: flex;
		align-items: flex-start;
		flex-direction: column;
	}
	
	.slowed-image:nth-of-type(2n+2) {
  		align-items: flex-end;
	}
	
	.slowed-image img {
		width: auto;
		max-width: 40%!important;
		height: auto!important;
		display: block;
		cursor:pointer;
		margin-bottom:10px;
		-webkit-transform:scale(0.95) translateY(30%);
		transform: scale(0.95) translateY(30%);
	}
	
	.rounded-borders .slowed-image img {
		border-radius: 8px;
	}
	
/*--------------------------------------------------
	Horizontal Panels
---------------------------------------------------*/		
	
	.panels {
		position:relative;
		margin-left: calc(50% - 50vw)!important;
		margin-right: calc(50% - 50vw)!important;
		max-width: 1000%!important;
		width: calc(100vw)!important;		
	}
	
	.panels-container {
		position:relative;
		height: 100vh;
		display: -webkit-box;
		display: -ms-flexbox;
		justify-content: flex-start;
		align-items: center;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		padding: 0;
		overflow: hidden;
		box-sizing:border-box;
	}
	
	.panels-container > .panel {
		position: relative;
		width: auto;
		height: 100%;
		margin:0 10px;
		overflow: hidden;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		box-sizing:border-box;
		flex-direction: column;
	}
	
	.panels-container > .panel:first-child {
		margin-left:80px;
	}
	
	.panels-container > .panel:last-child {
		margin-right:80px;
	}
	
	.panels-container .panel img {
		width:100%;
		height: 100%;
		position:relative;
		display:block;
		object-position: center; 
		object-fit: cover;		
	}
	
	.rounded-borders .panels-container .panel img {
		border-radius:8px;
	}
	
	.panels-container .panel:first-child img {
		margin-left:0px;
	}
	
	.panels-container .panel:last-child img {
		margin-right:0px;
	}
	
/*--------------------------------------------------
	Team Panels
---------------------------------------------------*/
	
	#team-panels .panel-content-wrapper {
		position: relative;
		width: auto;
		height: 60%;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		box-sizing:border-box;
		flex-direction: column;
		padding-left:30px;
		padding-right:30px;
	}
	
	#team-panels .panels-container .panel:first-child .panel-content-wrapper {
		padding-left:80px;
	}
	
	#team-panels .panels-container .panel:last-child .panel-content-wrapper {
		padding-right:80px;
	}
	
	#team-panels .panel-content {
		position: absolute;
		width: 100%;
		height: auto;
		display: block;
		box-sizing:border-box;
		padding:10px 30px;
		bottom:-50px;
		left:0;		
		pointer-events: none;
	}
	
	#team-panels .panels-container .panel:first-child .panel-content-wrapper .panel-content {
		padding-left:80px;
	}
	
	#team-panels .panels-container .panel:last-child .panel-content-wrapper .panel-content {
		padding-right:80px;
	}
	
	.team-name-panel, .team-cat-panel {
		font-size:18px;
		line-height: 24px;
		display:table;
		width:auto;
		float:left;
	}
	
	.team-cat-panel {
		font-size:14px;
		opacity:0.6;
		float:right;
	}
	
	#team-panels .panels-container .panel .panel-image {
		width: auto;
		height: 100%;
		position:relative;
		overflow:hidden;
	}
	
	#team-panels .panels-container .panel img {
		height: 100%;
		margin:0;
	}
	
	.rounded-borders #team-panels .panels-container .panel img {
		border-radius:8px;
	}
	
	
/*--------------------------------------------------
	Pinned Gallery
---------------------------------------------------*/	
	
	.pinned-gallery {
		overflow:hidden;
	}
	
	.pinned-image {
		box-sizing:border-box;
		padding-bottom:300px;		
		position:relative;
	}
	
	.pinned-image:first-child {
		padding-top:0;
	}
	
	.pinned-image:last-child {
		z-index:10;
		padding-bottom:0px;		
	}

	.pinned-image img {
		pointer-events: none;
	}
	
	.rounded-borders .pinned-image img {
		border-radius:8px;
	}
	
/*--------------------------------------------------
	Reveal Gallery
---------------------------------------------------*/		
	
	.reveal-gallery {
		position:relative;
		width:100%;
		height:auto;
		display:block;
		margin:0 auto;
	}
	
	.reveal-img {
		width:auto;
		height:auto;
		position:absolute;
		display: block;
		top:0;
		left: auto;
		right: auto;
		margin: auto;
		z-index:0;
		opacity: 0.95;
	}
	
	.reveal-img-fixed {
		width:50%;
		max-width:600px;		
		position:relative;
		margin: 0 auto;
		z-index:10;
	}
	
	.reveal-img:first-child {
		left:0;
		transform:rotate(-4deg)
	}
	
	.reveal-img:last-child {
		right:0;
		transform:rotate(4deg)
	}
	
	.reveal-gallery img {
		width:auto;
		height: auto;
		max-width: 100%;
		max-height: 100%;
		position:relative;
		display:block;
		object-position: center; 
		object-fit: contain;
		margin: auto;
	}
	
	.rounded-borders .reveal-gallery img {
		border-radius:8px;
	}
	
	
/*--------------------------------------------------
	Clipped Immaged
---------------------------------------------------*/			
	
	.clipped-image-wrapper {
		position:relative;
		margin-left: calc(50% - 50vw)!important;
		margin-right: calc(50% - 50vw)!important;
		max-width: 1000%!important;
		width: 100vw!important;
		overflow:hidden;
	}
	
	.clipped-image-pin {
		position:relative;
		display:block;
	}
	
	.clipped-image-size {
		width:100%;
		height:100%;
		position:relative;
		display:block;
	}
	
	.clipped-image {
		position:relative;
		z-index:0;
		width:calc(100vw - 160px);
		height:100vh;
		display:block;
		overflow:hidden;
		clip-path: inset(10% 22% round 10px);
		-webkit-transform: scale(0.7) translateY(0%);
		transform: scale(0.7) translateY(0%);
		transform-origin: center center;
		margin:0 auto;
		filter:grayscale(1);	
	}
	
	.clipped-image img {
		width:100%;
		height: 100%!important;
		position:relative;
		display:block;
		z-index:0;	
		object-position: center; 
		object-fit: cover;		
	}
	
	.clipped-image-gradient {
		position:absolute;
		height:30%;
		width:100%;
		bottom:0;
		opacity:0;
		background-color:#000;
		z-index:10;
		-webkit-mask-image: linear-gradient(transparent, black 85%);
		mask-image: linear-gradient(transparent, black 85%);
		transform: translateY(200px);
		-webkit-transform: translateY(200px);
		display:none;
	}
	
	.clipped-image-content {
		position:relative;
		width:100%;
		margin:0 auto;
		z-index:10;
	}
	
/*--------------------------------------------------
	Carousel Shortcode
---------------------------------------------------*/		
	
	.carousel-shortcode-wrapper {
		position:relative;
		display:inline-block;
		margin-left: calc(50% - 50vw)!important;
		margin-right: calc(50% - 50vw)!important;
		max-width: 1000%!important;
		width: 100vw!important;
		height:auto;
		
	}
	
	.carousel-shortcode-pin {
		position:relative;
		height:100%;
		width:100%;
		top:0;
		left:0;
		display:block;
		
	}
	
	.carousel-shortcode-thumbs {
		position:relative;
		height:100vh;
		width:100%;
		padding:20px 40px;
		margin:0 auto;
		display:flex;
		text-align: center;
		align-items: center;
		justify-content: center;
		box-sizing:border-box;
		z-index:10;
		mask-image: linear-gradient(#0000, black 15%, black 85%, #0000 100%);
  		-webkit-mask-image: linear-gradient(#0000, black 15%, black 85%, #0000 100%);
		pointer-events:none;
	}
	
	.carousel-shortcode-thumbs .clapat-item {
		width: calc(20% - 80px);
		margin:60px 40px;
	}
	
	.carousel-shortcode-thumbs.is_active .clapat-item {
		pointer-events:initial;
	}
	
	.carousel-shortcode-thumbs .clapat-item .slide-inner {
		padding-top: 0;
		width: 100%;
		height: auto;
		margin:0;
		overflow:visible;
		aspect-ratio: 10/14;
	}
	
	.carousel-shortcode-caption {
		position:absolute;
		height:100%;
		width:100%;
		top:0;
		left:0;
		display:flex;
		flex-direction: column;
		text-align: center;
		align-items: center;
		justify-content: center;
		z-index:0;
	}
	
	.carousel-shortcode-title-hide, .carousel-shortcode-title-show {
		position:absolute;		
		font-size: calc(1rem + 4.15vw);
		line-height: calc(1rem + 4.5vw);
		font-weight:500;
		display:block;
		width:auto;		
	}
	
	.uppercase-titles .carousel-shortcode-title-hide, .uppercase-titles .carousel-shortcode-title-show {
		text-transform:uppercase;
	}
	
	.carousel-shortcode-title-show {
		position:relative;
		font-size: calc(1rem + 1.15vw);
		line-height: calc(1rem + 1.5vw);
	}
	
	.light-content .carousel-shortcode-title-hide, .dark-section .carousel-shortcode-title-hide, .light-content .carousel-shortcode-title-show, .dark-section .carousel-shortcode-title-show {
		color:#fff;
	}
	
	.light-content .light-section .carousel-shortcode-title-hide, .light-content .light-section .carousel-shortcode-title-show {
		color:#000;
	}
	
	.carousel-shortcode-title-hide div, .carousel-shortcode-title-show div {
		position:relative;
		display:block;overflow:hidden;
	}
	
	.carousel-shortcode-title-hide span {
		position:relative;
		display:block;
		opacity:1;
		transform: translateY(0px);
		-webkit-transform: translateY(0px);
	}
	
	.carousel-shortcode-title-show span {
		position:relative;
		display:block;
		opacity:0;
		transform: translateY(200px);
		-webkit-transform: translateY(200px);
	}
	
	.carousel-shortcode-cta {
		position:relative;
		display:block;
		opacity:0;
		transform: scale(1) translateY(50px);
		-webkit-transform:  scale(1) translateY(50px);
	}
	
	
/*--------------------------------------------------
	List Rotator
---------------------------------------------------*/

	.list-rotator-wrapper {
		position:relative;
		display:block;
		margin-left: calc(50% - 50vw)!important;
		margin-right: calc(50% - 50vw)!important;
		max-width: 1000%!important;
		width: 100vw!important;
		overflow:hidden;
	}
	
	.list-rotator-title {
		position:absolute;
		margin:0 auto;
		display:table;
		top:45px;
		left:0;
		right:0;
		padding-top:45px;
		z-index: 100;
		line-height: 20px;
		font-size: 14px;
		font-weight:500;
		color: #fff;
		padding:4px 16px;
		box-sizing:border-box;
		border-radius:30px;
		opacity:0;
	}
	
	.list-rotator-height {
		display: flex;
		justify-content: center;
		pointer-events: none;
		position:relative;
	}
	
	.list-rotator-pin {
		position: relative;
		height: 100vh;
		width: 100%;
		mask-image: linear-gradient(#0000 0%, #0000 5%, #0000 5%, black 20%, black 85%, #0000 99%, #0000 99%, #0000 100%);
  		-webkit-mask-image: linear-gradient(#0000 0%, #0000 5%, #0000 5%, black 20%, black 85%, #0000 99%, #0000 99%, #0000 100%);
	}

	
	.list-rotator {
		position: relative;
		display:block;
		width: 100%;
		height: auto;
		box-sizing:border-box;
		padding-top:20vh;
		padding-bottom:15vh;
		margin: 0;
	}

	.list-rotator li {
		color: #000;
		list-style: none;
		position: relative;
		width: 100%;
		text-align: center;
		font-size: calc(1rem + 8vw);
  		line-height: calc(1rem + 7.5vw);
		margin: 0;
		opacity:1;
	}
	
	.list-rotator li.in-view {
		opacity:1;
	}
	
	.light-content .list-rotator li , .dark-section .list-rotator li {
		color: #fff;
	}
	
	.light-content .light-section .list-rotator li {
		color: #000;
	}
	
	
	



	


/*--------------------------------------------------
	Copy Email
---------------------------------------------------*/	
	
	#copy-email {
		cursor:pointer;
		position: relative;
		display: inline-block;
		width: auto;
		color: currentColor;
	}
	
/*--------------------------------------------------
	Parallax Image Slider
---------------------------------------------------*/	
	
	
	
	span.text-rotator-wrapper {
		display: inline-flex;
		overflow: hidden;
		width: auto;
		position:relative;
	}
	
	span.text-rotator {
		display: flex;
		width: auto;
		flex-direction: column;
		align-items: flex-start;
		position:relative;
		white-space: nowrap;
	}
	
	span.text-rotator > span {
		position:relative;
		display:inline-block;
		color:currentColor;
		left:0;
		margin:0;
		padding:0;
		line-height:inherit;
		font-size:inherit;
	}
	
	span.text-rotator > span:first-child {
		position:relative;
	}

/*--------------------------------------------------
	Parallax Buttons and Links
---------------------------------------------------*/

	.button-wrap {
		position: relative;		
		width: auto;
		display: inline-flex;
		flex-direction: row;
  		justify-content: flex-start;
		align-items: center;
		pointer-events: initial;
		cursor: pointer;
		color: currentColor;
	}

	.button-wrap.right {
		flex-direction: row-reverse;
		justify-content: flex-end;
	}

	.button-wrap:after {
		content: "";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden;
	}

	.button-wrap.left {		
		left: -32px;
	}

	#main .button-wrap.left {		
		left: -24px;
	}

	.icon-wrap {
		position: relative;
		display: flex;
		width: 80px;
		height: 80px;
		justify-content: center;
		align-items: center;
	}

	#main .icon-wrap {
		width: 60px;
		height: 60px;
	}

	.button-icon {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 40px;
		width: 40px;
		text-align: center;
		line-height: 40px;
		font-size: 14px;
		color: currentColor;
	}

	.button-icon i.fa-solid.fa-sort {
		font-size: 14px;
		line-height: 38px;
	}

	.button-icon i {
		display: block;
		width: 40px;
		height: 40px;
		text-align: center;
		line-height: 40px;
	}

	#main .button-icon i {
		line-height: 40px;
	}

	#main .button-icon i.fa.fa-arrow-right {
		font-size: 14px;
	}

	.button-text {
		width: auto;
		margin: 25px 0;
		padding: 0 10px;
		overflow: hidden;
		line-height: 30px;
		color: currentColor;
	}

	#main #hero-footer .button-text span::after {
		content: none;
	}

	#main .button-text {
		margin: 15px 0;
		-webkit-transition: transform 0.2s ease-out;
		transition: transform 0.2s ease-out;
	}

	#main .large-btn .button-text {
		font-size: 24px;
		line-height: 40px;
		font-weight: 400;
		margin: 10px 0;
		-webkit-transition: transform 0.2s ease-out;
		transition: transform 0.2s ease-out;
	}

	.button-wrap.left a {
		float: left;
		text-align: left;
	}

	.button-wrap.right a {
		float: right;
		text-align: right;
	}

	.button-wrap.right .button-text {
		padding-left: 0px;
	}

	.button-link .button-text, #main .button-link .button-text {
		overflow: visible;
		-webkit-transition: padding 0.3s ease-out;
		transition: padding 0.3s ease-out;
	}

	.button-link.left .button-text {
		padding-left: 0px;
	}

	.button-link.left:hover .button-text {
		padding-left: 10px;
	}

	.button-text span {
		position: relative;
		display: inline-block;
		width: auto;
		text-align: center;
		-webkit-transition: transform 0.8s cubic-bezier(0.2, 1.33, 0.25, 1);
		transition: transform 0.8s cubic-bezier(0.2, 1.33, 0.25, 1);
	}

	.button-text span::before {
		position: absolute;
		top: 0;
		left: 0;
		width: auto;
		content: attr(data-hover);
		-webkit-transform: translateY(150%);
		transform: translateY(150%);
		-webkit-transition: transform 0.8s cubic-bezier(0.2, 1.33, 0.25, 1);
		transition: transform 0.8s cubic-bezier(0.2, 1.33, 0.25, 1);
	}

	.button-wrap:hover .button-text span {
		-webkit-transform: translateY(-150%);
		transform: translateY(-150%);
	}

	.button-wrap:hover .button-text span::before {
		-webkit-transform: translateY(150%);
		transform: translateY(150%);
	}

	.button-link .button-text span::before {
		content: '';
		position: absolute;
		bottom: 1px;
		left: 0;
		width: 100%;
		height: 1px;
		background: transparent;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
		-webkit-transform-origin: right;

		transform-origin: right;
		-webkit-transition: transform 0.3s ease-out;
		transition: transform 0.3s ease-out;
	}

	.button-link.left .button-text span::before {
		-webkit-transform-origin: left;
		transform-origin: left;
	}

	.button-wrap.button-link:hover .button-text span {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	.button-link:hover .button-text span::before {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		-webkit-transform-origin: left;
		transform-origin: left;
	}

	.button-link.left:hover .button-text span::before {
		-webkit-transform-origin: right;
		transform-origin: right;
	}

	.button-link .button-icon i {
		background-color: #000;
		color: transparent;
		font-size: 14px;
		border-radius: 10px;
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
		box-sizing: border-box;
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
		text-indent: -100px;
		overflow: hidden;
		opacity: 1;
	}

	.button-link:hover .button-icon i {
		background-color: #000;
		color: currentColor;
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
		border-radius: 100%;
		text-indent: 0px;
		opacity: 1;
	}

	.button-link .button-icon i::before {
		-webkit-filter: invert(1);
		filter: invert(1);
	}

	.light-content .button-link .button-icon i,
	.dark-section .button-link .button-icon i {
		-webkit-filter: invert(1);
		filter: invert(1);
	}

	.light-content .button-link .button-icon i::before,
	.dark-section .button-link .button-icon i::before {
		-webkit-filter: invert(0);
		filter: invert(0);
	}

	.button-link.right .button-icon i {
		-webkit-transform: scale(0.3) translateX(-65px) translateY(2px);
		transform: scale(0.3) translateX(-65px) translateY(2px);
	}

	.button-link.right:hover .button-icon i {
		-webkit-transform: scale(1.2) translateX(0px);
		transform: scale(1.2) translateX(0px);
		border-radius: 100%;
	}

	.button-wrap.left .button-text span {
		text-align: left;
	}

	.button-wrap.right .button-text span {
		text-align: right;
	}


/*--------------------------------------------------
	Image Popup
---------------------------------------------------*/
	
	.clapat-img-popup, .clapat-video-popup {
		position:fixed;
		height:100%;
		width:100%;
		z-index:10000;
		left:0;
		top:0;
		right:0;
		bottom:0;
		display:flex;
		justify-content: center;	
  		align-items: center;
	}
	
	.clapat-img-popup-viewport {
		position: absolute;
		display: flex;
		box-sizing: border-box;
		padding: 80px 40px;
		margin: 0 auto;
		text-align: left;
		z-index: 100;
		height: auto;
		width: auto;
		align-items: center;
		justify-content: center;
		pointer-events: none;
	}
	
	.clapat-video-popup-viewport {
		position: absolute;
		display: flex;
		box-sizing: border-box;
		padding: 0;
		margin: 0 auto;
		text-align: left;
		z-index: 100;
		height: auto;
		width: calc(100% - 80px);
		max-width: 900px;
		align-items: center;
		justify-content: center;
		pointer-events: none;
	}
	
	.clapat-video-popup-viewport::before {
		float: left;
		padding-top: 56.25%;
		content: "";
	}
	
	.clapat-img-popup-preloader, .clapat-video-popup-preloader {
		display: block;
		position: absolute;
		margin: 0 auto;
		width: 80px;
		height: 80px;
	}
	
	.clapat-img-popup-preloader div, .clapat-video-popup-preloader div {
		position: absolute;
		top: 33px;
		width: 13px;
		height: 13px;
		border-radius: 50%;
		background: #fff;
		animation-timing-function: cubic-bezier(0, 1, 1, 0);
	}
	
	.clapat-img-popup-preloader div:nth-child(1), .clapat-video-popup-preloader div:nth-child(1) {
		left: 8px;
		animation: clapat-img-popup-preloader1 0.6s infinite;
	}
	
	.clapat-img-popup-preloader div:nth-child(2), .clapat-video-popup-preloader div:nth-child(2) {
		left: 8px;
		animation: clapat-img-popup-preloader2 0.6s infinite;
	}
	
	.clapat-img-popup-preloader div:nth-child(3), .clapat-video-popup-preloader div:nth-child(3) {
		left: 32px;
		animation: clapat-img-popup-preloader2 0.6s infinite;
	}
	
	.clapat-img-popup-preloader div:nth-child(4), .clapat-video-popup-preloader div:nth-child(4) {
		left: 56px;
		animation: clapat-img-popup-preloader3 0.6s infinite;
	}
	
	@keyframes clapat-img-popup-preloader1 {
		0% {
			transform: scale(0);
		}
		100% {
			transform: scale(1);
		}
	}
	
	@keyframes clapat-img-popup-preloader3 {
		0% {
			transform: scale(1);
		}
		100% {
			transform: scale(0);
		}
	}
	
	@keyframes clapat-img-popup-preloader2 {
		0% {
			transform: translate(0, 0);
		}
		100% {
			transform: translate(24px, 0);
		}
	}

	
	.clapat-img-popup img {
		position: relative;
		max-width: 100%;
		max-height: calc(100vh - 160px);
		width: auto;
		height: auto;
		margin: 0 auto;
		z-index: 10;
		pointer-events: initial;
	}
	
	.clapat-video-popup iframe {
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 10;
		pointer-events: initial;
	}
	
	.rounded-borders .clapat-img-popup img {
		border-radius:8px;
	}
	
	.clapat-img-popup-bg-close, .clapat-video-popup-bg-close {
		position:absolute;
		display:block;
		height:100%;
		width:100%;
		left:0;
		top:0;
		right:0;
		bottom:0;
	}
	
	.clapat-img-popup-close {
		position:absolute;
		width:40px;
		height:40px;
		right:20px;
		top:60px;
		background-color:rgba(0,0,0,1);
		color:#fff;
		opacity:0;
		border-radius:20px;
		z-index: 100;
		cursor:pointer;
		pointer-events: initial;
		-webkit-transition: background-color 0.2s ease-in-out;
		transition: background-color 0.2s ease-in-out;
	}
	
	.clapat-video-popup-close {
		position:absolute;
		width:40px;
		height:40px;
		right:-20px;
		top:-20px;
		background-color:rgba(0,0,0,1);
		color:#fff;
		opacity:0;
		border-radius:20px;
		z-index: 100;
		cursor:pointer;
		pointer-events: initial;
		-webkit-transition: background-color 0.2s ease-in-out;
		transition: background-color 0.2s ease-in-out;
	}
	
	.clapat-img-popup-close:hover, .clapat-video-popup-close:hover {
		background-color:rgba(0,0,0,1);
	}
	
	.clapat-img-popup-close::after, .clapat-video-popup-close::after {
		font: var(--fa-font-solid);
		content: "\f00d";
		font-size: 16px;
		line-height: 40px;
		text-align: center;
		position: absolute;
		left: 0;
		width: 100%;
		height: 100%;
	}
	
	.clapat-img-popup-prev, .clapat-video-popup-prev {
		position:absolute;
		width: 26px;
		height: 50px;
		left:60px;
		background-color:rgba(0,0,0,1);
		color:#fff;
		opacity:0;
		border-radius:4px;
		z-index: 100;
		cursor:pointer;
		-webkit-transition: background-color 0.2s ease-in-out;
		transition: background-color 0.2s ease-in-out;
	}
	
	.clapat-img-popup-prev:hover, .clapat-video-popup-prev:hover {
		background-color:rgba(0,0,0,1);
	}
	
	.clapat-img-popup-prev::after, .clapat-video-popup-prev::after {
		font: var(--fa-font-solid);
		content: "\f104";
		font-size: 16px;
		line-height: 50px;
		text-align: center;
		position: absolute;
		left: 0;
		width: 100%;
		height: 100%;
	}
	
	.clapat-img-popup-next, .clapat-video-popup-next {
		position:absolute;
		width: 26px;
		height: 50px;
		right:60px;
		background-color:rgba(0,0,0,1);
		color:#fff;
		opacity:0;
		border-radius:4px;
		z-index: 100;
		cursor:pointer;
		-webkit-transition: background-color 0.2s ease-in-out;
		transition: background-color 0.2s ease-in-out;
	}
	
	.clapat-img-popup-next:hover, .clapat-video-popup-next:hover {
		background-color:rgba(0,0,0,1);
	}
	
	.clapat-img-popup-next::after, .clapat-video-popup-next::after {
		font: var(--fa-font-solid);
		content: "\f105";
		font-size: 16px;
		line-height: 50px;
		text-align: center;
		position: absolute;
		left: 0;
		width: 100%;
		height: 100%;
	}
	
	
@media only screen and (max-width: 1466px) {
	
		
}	
	
	
@media only screen and (max-width: 1024px) {	


}
	
	
@media only screen and (max-width: 767px) {


}

@media only screen and (max-width: 479px) {
	
	.clapat-img-popup-viewport {
		padding: 60px 23px;
	}
	
	.clapat-video-popup-viewport {
  		width: calc(100% - 60px);
	}
	
	.clapat-img-popup img {
		max-height: calc(100vh - 120px);
	}
	
	.clapat-img-popup-close {
		right: 3px;
    	top: 40px
	}
	
	.clapat-img-popup-prev {
		left:10px;
	}
	
	.clapat-img-popup-next {
		right:10px;
	}
	
}	

/*--------------------------------------------------
	Custom
---------------------------------------------------*/


	.moz-lists {
		margin: 0;
	}

	.moz-lists li {
		margin-bottom: 5px;
		list-style: none;
		cursor: pointer;
		position: relative;
		transition: opacity 0.3s cubic-bezier(.625,.05,0,1);
	}

	 .moz-lists li::after {
		content: '';
		position: absolute;
		bottom: calc(50% - 3px);
		left: -20px;
		width: 7px;
		height: 7px;
		background: currentColor;
		transform: scale(0);
		transition: transform 0.3s cubic-bezier(.625,.05,0,1);
	  }

	.moz-lists li:hover {		
		color: #000;
	}

	.moz-lists li:hover::after {
		transform: scale(1);
	}

	.has-span-indent {
		-webkit-text-fill-color: rgb(0, 0, 0);
	}

	.has-blur .span-text .span-word .span-char {
		text-shadow: #000 0px 0px 2vw;
		transform: translateX(20%);
		color: transparent;
		opacity: 0;
		display: inline-block;
		position: relative;
	}

	.light-content .has-blur .span-text .span-word .span-char, .dark-section .has-blur .span-text .span-word .span-char {
		text-shadow: #fff 0px 0px 2vw;
	}
	
	.light-content .light-section .has-blur .span-text .span-word .span-char {
		text-shadow: #000 0px 0px 2vw;
	}

	.has-slide > span > span {				
		position: relative;
		display: inline-flex;
		overflow: hidden;
	}
	.has-slide span.span-char {
		display: inline-flex;
	}

	.has-slide span.span-char > span {
		display: inline-block;
		position: relative;
	}

	.has-slide span.span-char > span.char-second-clone {
		position: absolute;
		top: 100%;
		left: 0;
	}
	

	.has-mask .span-word {				
		position: relative;
		display: inline-flex;
		overflow: hidden;
	}
	
	
	
	
/*--------------------------------------------------
	Responsive
---------------------------------------------------*/			
			


@media only screen and (max-width: 1466px) {
	
	
	/.button-border span {
		padding: 0 26px;
	}
	
	.clients-table li {
		width: calc(100% / 4 - 40px);
		margin: 20px;
		padding: 0;
	}
	
	.accordion.bigger-acc dt {
		margin-top: 30px;
		padding-top: 30px;
	}
	
	.accordion.bigger-acc dt:first-child {
		padding-top: 30px;
	}
	
	.full > .team-members-list li, .full_elementor .team-members-list li {
		padding:40px 60px;
	}
	
	.team-members-list .hover-reveal {
		width: 250px;
		height: 333px;
	}
	
	span.has-hover-image .hover-reveal {
		width: 300px;
		height: 188px;
	}
	
	span.has-hover-image.vertical .hover-reveal {
		width: 250px;
		height: 333px;
	}
	
	.panels-container > .panel:first-child {
		margin-left:60px;
	}
	
	.panels-container > .panel:last-child {
		margin-right:60px;
	}
	
	.zoom-wrapper-gallery {
		padding: 0 50px;
	}
	
	/*.start-thumbs-wrapper {
		padding: 0 30px;
	}
	
	.start-move-thumb {
		width: calc(25% - 60px);
 		height:calc(25vw - 30px);
		margin:0 30px;
		margin-bottom:30px;
	}
	
	.start-move-thumb:nth-of-type(3n + 2) {		
		width: calc(15% - 60px);
		height:calc(15vw - 30px);
		margin-top: 50vh;
	}
	
	.start-move-thumb:nth-of-type(3n + 3) {		
		width: calc(35% - 60px);
		height:calc(35vw - 30px);
		margin-top: 25vh;
	}
	
	.end-thumbs-wrapper {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.end-move-thumb {
		width: calc(33.33% - 60px);
		height: calc(33.33vw - 60px);
		margin: 30px;
	}*/
	
	.clipped-image {
  		width: calc(100vw - 120px);
	}
	
	.team-member-inner {
		width: 25%;
	}
	
	.team-members-grid li:nth-child(4n+1) .team-member-inner {
		transform: translateX(0%);
		-webkit-transform: translateX(0%);
	}
	
	.team-members-grid li:nth-child(4n+2)  .team-member-inner {
		transform: translateX(300%);
		-webkit-transform: translateX(300%);
	}
	
	.team-members-grid li:nth-child(4n+3) .team-member-inner {
		transform: translateX(75%);
		-webkit-transform: translateX(75%);
	}
	
	.team-members-grid li:nth-child(4n+4) .team-member-inner {
		transform: translateX(225%);
		-webkit-transform: translateX(225%);
	}
	
	/* Team List Member Sticky Image */
	
	.team-list-images {
		width: 20%;
  		left: 60px;
	}
	
	.team-list-images::before {		
		padding-top: calc(100% + 60px);
	}
	
	.team-list-images > li {
  		height: calc(100% - 60px);
	}
	
	.pinned-lists li.has-info-even::after, .pinned-lists li.has-info-odd::after {
		font-size: 14px;
		padding: 10px 20px;
	}
	
}


@media only screen and (max-width: 1024px) {
	
	.content-slider.looped-carousel .clapat-slide {
		padding:0 40px;
	}
	
	.content-slider.small-looped-carousel .clapat-slide {
		padding:0 40px;
	}
	
	.disable-cursor .full .looped-carousel .clapat-controls, .disable-cursor .full_elementor .looped-carousel .clapat-controls {
		width: calc(100% - 80px);
	}
	
	.disable-cursor .full .small-looped-carousel .clapat-controls, .disable-cursor .full_elementor .small-looped-carousel .clapat-controls {
		width: calc(100% - 80px);
		max-width:520px;
	}		
		
	textarea {
		margin-bottom: 30px;
	}
	
	.full .video-wrapper video.bgvid, .full_elementor .video-wrapper video.bgvid {
		position: relative;
		margin-top: 0;
		left: 0;
		transform: translateX(0) translateY(0);
	}
	
	.full .control, .full_elementor .control {
		bottom: 10px;
		width: calc(100% - 100px);
	}
	
	.clients-table li {
		width: calc(100% / 4);
		margin: 0px;
		padding: 0;
	}
	
	.clients-table li:hover .overlay {
		transform:scale(0.85);
		-webkit-transform:scale(0.85);
		opacity:1;
	}
	
	.accordion dt span {
		max-width: none;
	}
	
	.accordion .accordion-content {
		padding-right: 0;
	}
	
	.accordion.bigger-acc dt {
		margin-top: 30px;
		padding-top: 30px;
	}
	
	.accordion.bigger-acc dt:first-child {
		padding-top: 30px;
	}
	
	.full > .team-members-list li, .full_elementor .team-members-list li {
		padding:40px 40px;
	}
	
	.team-members-list .hover-reveal {
		width: 200px;
		height: 266px;
	}
	
	span.has-hover-image .hover-reveal {
		width: 250px;
		height: 156px;
	}
	
	span.has-hover-image.vertical .hover-reveal {
		width: 200px;
		height: 266px;
	}
	
	.has-animation.has-cover img {
		-webkit-transition:scale(1);
		transform:scale(1);
	}
	
	.panels-container > .panel:first-child {
		margin-left:40px;
	}
	
	.panels-container > .panel:last-child {
		margin-right:40px;
	}
	
	.zoom-wrapper-gallery {
		padding: 0 30px;
	}
	
	.list-rotator-pin {
  		height: auto;
	}
	
	/*.start-thumbs-wrapper {
    	padding: 0 20px;
  	}
	
	.start-move-thumb, .start-move-thumb:nth-of-type(3n+2), .start-move-thumb:nth-of-type(3n+3) {
		width: calc(33.33% - 40px);
		height: calc(33.33vw - 40px);
		margin: 25px 20px;
  	}
	
	.end-thumbs-wrapper {
    	display: none;
  	}*/
	
	.clipped-image {
  		width: calc(100vw - 80px);
	}
	
	.team-member-inner {
		width: 33.333%;
	}
	
	.team-members-grid li:nth-child(4n+1) .team-member-inner {
		transform: translateX(0%);
		-webkit-transform: translateX(0%);
	}
	
	.team-members-grid li:nth-child(4n+2)  .team-member-inner {
		transform: translateX(200%);
		-webkit-transform: translateX(200%);
	}
	
	.team-members-grid li:nth-child(4n+3) .team-member-inner {
		transform: translateX(50%);
		-webkit-transform: translateX(50%);
	}
	
	.team-members-grid li:nth-child(4n+4) .team-member-inner {
		transform: translateX(150%);
		-webkit-transform: translateX(150%);
	}
	
	#copy-email {
		margin-bottom: 1vw;
	}
	
	.pinned-lists-wrapper {
		padding-bottom: 0;
	}
	
	.pinned-lists li.has-info-even::after, .pinned-lists li.has-info-odd::after {
		display:none;
	}
	
}


@media only screen and (max-width: 767px) {
	
	.content-slider.looped-carousel .clapat-slide {
		padding:0 30px;
	}
	
	.content-slider.small-looped-carousel .clapat-slide {
		padding:0 30px;
	}
	
	.disable-cursor .full .looped-carousel .clapat-controls, .disable-cursor .full_elementor .looped-carousel .clapat-controls {
		width: calc(100% - 60px);
	}
	
	.disable-cursor .full .small-looped-carousel .clapat-controls, .disable-cursor .full_elementor .small-looped-carousel .clapat-controls {
		width: calc(100% - 60px);
		max-width:540px;
	}
	
	.content-slider .clapat-pagination-bullet .parallax-wrap {
		width: 20px;
		height: 20px;
	}
	
	.content-slider .clapat-pagination-bullet .parallax-wrap {
		width: 20px;
		height: 20px;
	}
		
	.video-wrapper {
    	max-height: 50vh;
	}
	
	.control {
		display:none;
	}
	
	.name-box, .email-box {
		width: 100%;
		margin-right: 0;
	}
	
	.clients-table li {
    	width: 50%;
	}
	
	.clients-table::before, .clients-table::after {
  		height: 10px;
	}
	
	.empty-space, .empty-space.tx { 
		height:60px;
	}
	
	input[type="text"], textarea {
    	font-size: 14px;
	}
	
	.accordion dt {
    	font-size: 18px;
	}
	
	.accordion.bigger-acc dt {
		margin-top: 25px;
		padding-top: 25px;
	}
	
	.accordion.bigger-acc dt:first-child {
		padding-top: 25px;
	}
	
	.accordion.bigger-acc .acc-button-icon {
		height: 30px;
		width: 30px;
		line-height: 30px;
		font-size: 12px;
		border-radius: 30px;
	}
	
	.acc-button-icon i {
		height: 30px;
		line-height: 30px;
		width: 30px;
	}
	
	.full > .team-members-list li, .full_elementor .team-members-list li {
		padding:30px 30px;
	}
	
	.team-member > div {
		float: none;
		margin: 0px;
		margin-top: 10px;
		margin-bottom: 4px;
	}
	
	.team-member span {
		position:relative;
		float: none;
		line-height: 24px;
	}
	
	.team-member > div {
		font-size: calc(1rem + 5vw);
		line-height: calc(1rem + 5vw);
	}
	
	.team-members-list .hover-reveal {
		width: 150px;
		height: 200px;
	}
	
	span.has-hover-image .hover-reveal {
		width: 200px;
		height: 125px;
	}
	
	span.has-hover-image.vertical .hover-reveal {
		width: 150px;
		height: 200px;
	}
	
	.slowed-image {
  		margin: 100px 0;
	}
	
	.slowed-image img {
		max-width: 50%!important;
	}
	
	.moving-gallery li {
		width: 50vw;
	}
	
	.panels-container > .panel:first-child {
		margin-left:30px;
	}
	
	.panels-container > .panel:last-child {
		margin-right:30px;
	}
	
	.zoom-wrapper-gallery {
		padding: 0 20px;
	}
	
	/*.start-thumbs-wrapper {
    	padding: 0 15px;
  	}
	
	 .start-move-thumb, .start-move-thumb:nth-of-type(3n+2), .start-move-thumb:nth-of-type(3n+3) {
		width: calc(50% - 30px);
		height: calc(50vw - 30px);
		margin: 10px 15px;
  	}*/
	
	.pinned-lists li {
		font-size: calc(1rem + 5vw);
		line-height: calc(1rem + 5vw);
	}
	
	.clipped-image {
  		width: calc(100vw - 60px);
	}
	
	.team-member-inner {
		width: 50%;
		margin-bottom: 30px;
	}
	
	.team-members-grid li:nth-child(4n+1) .team-member-inner {
		transform: translateX(0%);
		-webkit-transform: translateX(0%);
	}
	
	.team-members-grid li:nth-child(4n+2)  .team-member-inner {
		transform: translateX(100%);
		-webkit-transform: translateX(100%);
	}
	
	.team-members-grid li:nth-child(4n+3) .team-member-inner {
		transform: translateX(0%);
		-webkit-transform: translateX(0%);
	}
	
	.team-members-grid li:nth-child(4n+4) .team-member-inner {
		transform: translateX(100%);
		-webkit-transform: translateX(100%);
	}
	
	#copy-email {
		margin-bottom: 3vw;
	}
	
	.team-list-wrapper {
		position: relative;
		box-sizing: border-box;
		width: calc(100% - 60px);
    	margin: 0 auto;
		overflow:hidden;
	}
	
	.team-list-captions {
		padding-left: 0;
		padding-bottom: 30px;
	}
	
	.team-list-captions > li {
		font-size: calc(1rem + 2vw);
		line-height: calc(1rem + 3vw);
		letter-spacing: -0.15vw;
		font-weight: 500;
		display: flex;
		height: auto;
		opacity: 1;
		padding:0;
		margin-bottom:30px;
		transform: translateX(35%);
		-webkit-transform: translateX(35%);
	}
	
	.team-list-captions > li::before {
		float: left;
		padding-top: 30%;
		content: "";
	}
	
	.team-list-captions li span:nth-child(2) {
  		opacity: 1;
	}
	
	.tml-title {
		position:absolute;
		bottom: 40px;
	}
	
	.team-list-captions li .tml-cat {		
		position: absolute;
		bottom: 10px;
		opacity: 0.6;
	}
	
	.team-list-images {
		width: 30%;
		left: auto;
  	}
	
	.team-list-images::before {
		display:none;
	}
	
	.team-list-images > li {
		position: relative;
		width: 100%;
		height: auto;
		margin-bottom:30px;
	}
	
	.team-list-images > li::before {
		float: left;
		padding-top: 100%;
		content: "";
	}
	
	.team-list-images > li.pixels-cover {
  		display: none;
	}
	
}


@media only screen and (max-width: 479px) {
	
	.throw-box {
		position: relative;
		width: 100px;
		height: 100px;
		text-align: center;
		line-height: 100px;
		font-size: 60px;
		font-weight: 600;		
		-webkit-transform: translateY(200%);
		transform: translateY(200%);
	}
	
	.pinned-section .pin-spacer {
		width:100%!important;
	}
	
	.pinned-element {
		float:none;
		width:100%;
		margin:0;
	}
	
	.pinned-element.left {
		padding-right:0px;
		margin-bottom:40px;
	}
	
	.pinned-element.right {
		padding-left:0px;
	}
	
	.scrolling-element {
		position:relative;
		float:none;
		width:100%;
		margin:0;
	}
	
	.scrolling-element.left {
		padding-right:0px;
		margin-bottom:40px;
	}
	
	.scrolling-element.right {
		padding-left:0px;
	}
	
	.content-slider.looped-carousel .clapat-slide {
		padding:0 20px;
	}
	
	.content-slider.small-looped-carousel .clapat-slide {
		padding:0 20px;
	}
	
	.disable-cursor .full .looped-carousel .clapat-controls, .disable-cursor .full_elementor .looped-carousel .clapat-controls {
		width: calc(100% - 40px);
	}
	
	.disable-cursor .full .small-looped-carousel .clapat-controls, .disable-cursor .full_elementor .small-looped-carousel .clapat-controls {
		width: calc(100% - 40px);
		max-width:560px;
	}		
			
	.clapat-button {
    	margin-bottom: 20px;
	}
	
	.full > .team-members-list li, .full_elementor .team-members-list li {
		padding:30px 20px;
	}
	
	.team-members-list .hover-reveal {
		width: 100px;
		height: 133px;
	}
	
	.accordion.bigger-acc dt {
		margin-top: 20px;
		padding-top: 20px;
	}
	
	.accordion.bigger-acc dt:first-child {
		padding-top: 20px;
	}
	
	span.has-hover-image .hover-reveal {
		width: 150px;
		height: 94px;
	}
	
	span.has-hover-image.vertical .hover-reveal {
		width: 100px;
		height: 133px;
	}
	
	.moving-gallery li {
		width: 60vw;
	}
	
	.panels-container > .panel:first-child {
		margin-left:20px;
	}
	
	.panels-container > .panel:last-child {
		margin-right:20px;
	}
	
	.zoom-wrapper-gallery {
		padding: 0 10px;
	}
	
	/*.start-thumbs-wrapper {
    	padding: 0 10px;
  	}
	
	.start-move-thumb, .start-move-thumb:nth-of-type(3n+2), .start-move-thumb:nth-of-type(3n+3) {
		width: calc(50% - 20px);
		height: calc(50vw - 20px);
		margin: 5px 10px;
  	}*/
	
	.clipped-image {
  		width: calc(100vw - 40px);
	}
	
	.team-intro-grid {
		position: relative;
  		padding: 0;
		margin-top:30px;
	}
	
	.team-member-inner {
		width: 100%;
		margin-bottom: 50px;
	}
	
	.team-members-grid li:nth-child(4n+1) .team-member-inner {
		transform: translateX(0%);
		-webkit-transform: translateX(0%);
	}
	
	.team-members-grid li:nth-child(4n+2)  .team-member-inner {
		transform: translateX(0%);
		-webkit-transform: translateX(0%);
	}
	
	.team-members-grid li:nth-child(4n+3) .team-member-inner {
		transform: translateX(0%);
		-webkit-transform: translateX(0%);
	}
	
	.team-members-grid li:nth-child(4n+4) .team-member-inner {
		transform: translateX(0%);
		-webkit-transform: translateX(0%);
	}
	
	#copy-email {
		margin-bottom: 5vw;
	}
	
	.team-list-wrapper {
		width: calc(100% - 40px);
	}
	
	.team-list-captions {
		padding-bottom: 20px;
	}
		
}