
.cl-scroll-indicator {
	position: absolute;
	top: 50%;
	height: 80px;
	width: 36px;
	opacity: 1;
	z-index: 9999;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.cl-scroll-indicator.hide-scroll {
	opacity: 0;
}

.cl-scroll-indicator span {
	position: absolute;
	text-align: center;
}

.cl-scroll-indicator svg {
	position: absolute;
	bottom: -4px;
	right: 10px;
}

.cl-scroll-indicator.style-left_side_light {
	left: 10px;
}

@media (min-width: 1024px) {
	.cl-scroll-indicator.style-left_side_light {
		left: 25px;
	}
}

.cl-scroll-indicator.style-left_side_light span {
	color: #fff;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.cl-scroll-indicator.style-left_side_light svg path {
	fill: #fff;
}

.cl-scroll-indicator.style-left_side_dark {
	left: 10px;
}

@media (min-width: 1024px) {
	.cl-scroll-indicator.style-left_side_dark {
		left: 25px;
	}
}

.cl-scroll-indicator.style-left_side_dark span {
	color: #000;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.cl-scroll-indicator.style-left_side_dark svg path {
	fill: #000;
}

.cl-scroll-indicator.style-right_side_light {
	right: 10px;
}

@media (min-width: 1024px) {
	.cl-scroll-indicator.style-right_side_light {
		right: 25px;
	}
}

.cl-scroll-indicator.style-right_side_light span {
	color: #fff;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.cl-scroll-indicator.style-right_side_light svg path {
	fill: #fff;
}

.cl-scroll-indicator.style-right_side_dark {
	right: 10px;
}

@media (min-width: 1024px) {
	.cl-scroll-indicator.style-right_side_dark {
		right: 25px;
	}
}

.cl-scroll-indicator.style-right_side_dark span {
	color: #fff;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.cl-scroll-indicator.style-right_side_dark svg path {
	fill: #fff;
}

html:not(.no-cssanimations) .ce-animation:not(.ce-animation--reveal-right):not(.ce-animation--reveal-left):not(.ce-animation--reveal-top):not(.ce-animation--reveal-bottom):not(.ce-animation-start) {
	opacity: 0;
	-webkit-animation-duration: .6s;
	-moz-animation-duration: .6s;
	-o-animation-duration: .6s;
	animation-duration: .6s;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

html:not(.no-cssanimations) .ce-animation.ce-animation-start:not(.ce-animation--zoom-reverse).ce-animation--top-t-bottom {
	-webkit-animation-name: anim_ttb;
	-moz-animation-name: anim_ttb;
	-o-animation-name: anim_ttb;
	animation-name: anim_ttb;
	opacity: 1;
}

html:not(.no-cssanimations) .ce-animation.ce-animation-start:not(.ce-animation--zoom-reverse).ce-animation--bottom-t-top {
	-webkit-animation-name: anim_btt;
	-moz-animation-name: anim_btt;
	-o-animation-name: anim_btt;
	animation-name: anim_btt;
	opacity: 1;
}

html:not(.no-cssanimations) .ce-animation.ce-animation-start:not(.ce-animation--zoom-reverse).ce-animation--left-t-right {
	-webkit-animation-name: anim_ltr;
	-moz-animation-name: anim_ltr;
	-o-animation-name: anim_ltr;
	animation-name: anim_ltr;
	opacity: 1;
}

html:not(.no-cssanimations) .ce-animation.ce-animation-start:not(.ce-animation--zoom-reverse).ce-animation--right-t-left {
	-webkit-animation-name: anim_rtl;
	-moz-animation-name: anim_rtl;
	-o-animation-name: anim_rtl;
	animation-name: anim_rtl;
	opacity: 1;
}

html:not(.no-cssanimations) .ce-animation.ce-animation-start:not(.ce-animation--zoom-reverse).ce-animation--zoom-in {
	-webkit-animation-name: zoom-in;
	-moz-animation-name: zoom-in;
	-o-animation-name: zoom-in;
	animation-name: zoom-in;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

html:not(.no-cssanimations) .ce-animation.ce-animation-start:not(.ce-animation--zoom-reverse).ce-animation--zoom-out {
	-webkit-animation-name: zoom-out;
	-moz-animation-name: zoom-out;
	-o-animation-name: zoom-out;
	animation-name: zoom-out;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

html:not(.no-cssanimations) .ce-animation.ce-animation--zoom-reverse {
	-webkit-animation-name: zoom-reverse;
	-moz-animation-name: zoom-reverse;
	-o-animation-name: zoom-reverse;
	animation-name: zoom-reverse;
	-webkit-animation-duration: .3s;
	-moz-animation-duration: .3s;
	-o-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-transform: scale(.5);
	-moz-transform: scale(.5);
	-o-transform: scale(.5);
	-ms-transform: scale(.5);
	transform: scale(.5);
	opacity: 0;
}

html:not(.no-cssanimations) .ce-animation.ce-animation-start:not(.ce-animation--zoom-reverse).ce-animation--alpha-anim {
	-webkit-animation-name: alpha-in;
	-moz-animation-name: alpha-in;
	-o-animation-name: alpha-in;
	animation-name: alpha-in;
	opacity: 1;
}

html:not(.no-cssanimations) .ce-animation.ce-animation-start:not(.ce-animation--zoom-reverse).ce-animation--flip-in {
	-webkit-animation-name: flip-in;
	-moz-animation-name: flip-in;
	-o-animation-name: flip-in;
	animation-name: flip-in;
	opacity: 1;
}

html:not(.no-cssanimations) .ce-animation.ce-animation--reveal-left {
	overflow: hidden;
	-webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
	clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
	opacity: 0;
	transition: opacity 1.3s ease 167ms, -webkit-clip-path 1.1s cubic-bezier(.778, .128, .15, .84);
	transition: clip-path 1.1s cubic-bezier(.778, .128, .15, .84), opacity 1.3s ease 167ms;
	transition: clip-path 1.1s cubic-bezier(.778, .128, .15, .84), opacity 1.3s ease 167ms, -webkit-clip-path 1.1s cubic-bezier(.778, .128, .15, .84);
}

html:not(.no-cssanimations) .ce-animation.ce-animation--reveal-left.ce-animation-start {
	opacity: 1;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

html:not(.no-cssanimations) .ce-animation.ce-animation--reveal-right {
	overflow: hidden;
	-webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
	clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
	opacity: 0;
	transition: opacity 1.1s ease 167ms, -webkit-clip-path 1.1s cubic-bezier(.778, .128, .15, .84);
	transition: clip-path 1.1s cubic-bezier(.778, .128, .15, .84), opacity 1.1s ease 167ms;
	transition: clip-path 1.1s cubic-bezier(.778, .128, .15, .84), opacity 1.1s ease 167ms, -webkit-clip-path 1.1s cubic-bezier(.778, .128, .15, .84);
}

html:not(.no-cssanimations) .ce-animation.ce-animation-start.ce-animation--reveal-right {
	opacity: 1;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

html:not(.no-cssanimations) .ce-animation.ce-animation--reveal-top {
	overflow: hidden;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	opacity: 0;
	transition: opacity 1.1s ease 167ms, -webkit-clip-path 1.1s cubic-bezier(.778, .128, .15, .84);
	transition: clip-path 1.1s cubic-bezier(.778, .128, .15, .84), opacity 1.1s ease 167ms;
	transition: clip-path 1.1s cubic-bezier(.778, .128, .15, .84), opacity 1.1s ease 167ms, -webkit-clip-path 1.1s cubic-bezier(.778, .128, .15, .84);
}

html:not(.no-cssanimations) .ce-animation.ce-animation-start.ce-animation--reveal-top {
	opacity: 1;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

html:not(.no-cssanimations) .ce-animation.ce-animation--reveal-bottom {
	overflow: hidden;
	-webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
	clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
	opacity: 0;
	transition: opacity 1.1s ease 167ms, -webkit-clip-path 1.1s cubic-bezier(.165, .84, .44, 1);
	transition: clip-path 1.1s cubic-bezier(.165, .84, .44, 1), opacity 1.1s ease 167ms;
	transition: clip-path 1.1s cubic-bezier(.165, .84, .44, 1), opacity 1.1s ease 167ms, -webkit-clip-path 1.1s cubic-bezier(.165, .84, .44, 1);
}

html:not(.no-cssanimations) .ce-animation.ce-animation-start.ce-animation--reveal-bottom {
	opacity: 1;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

html:not(.no-cssanimations) .ce-animation[data-speed="100"] {
	-webkit-animation-duration: .1s;
	-moz-animation-duration: .1s;
	-o-animation-duration: .1s;
	animation-duration: .1s;
}

html:not(.no-cssanimations) .ce-animation[data-speed="200"] {
	-webkit-animation-duration: .2s;
	-moz-animation-duration: .2s;
	-o-animation-duration: .2s;
	animation-duration: .2s;
}

html:not(.no-cssanimations) .ce-animation[data-speed="300"], html:not(.no-cssanimations) .ce-animation[data-speed="400"] {
	-webkit-animation-duration: .3s;
	-moz-animation-duration: .3s;
	-o-animation-duration: .3s;
	animation-duration: .3s;
}

html:not(.no-cssanimations) .ce-animation[data-speed="500"] {
	-webkit-animation-duration: .5s;
	-moz-animation-duration: .5s;
	-o-animation-duration: .5s;
	animation-duration: .5s;
}

html:not(.no-cssanimations) .ce-animation[data-speed="600"] {
	-webkit-animation-duration: .6s;
	-moz-animation-duration: .6s;
	-o-animation-duration: .6s;
	animation-duration: .6s;
}

html:not(.no-cssanimations) .ce-animation[data-speed="700"] {
	-webkit-animation-duration: .7s;
	-moz-animation-duration: .7s;
	-o-animation-duration: .7s;
	animation-duration: .7s;
}

html:not(.no-cssanimations) .ce-animation[data-speed="800"] {
	-webkit-animation-duration: .8s;
	-moz-animation-duration: .8s;
	-o-animation-duration: .8s;
	animation-duration: .8s;
}

html:not(.no-cssanimations) .ce-animation[data-speed="900"] {
	-webkit-animation-duration: .9s;
	-moz-animation-duration: .9s;
	-o-animation-duration: .9s;
	animation-duration: .9s;
}

html:not(.no-cssanimations) .ce-animation[data-speed="1000"] {
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
}

@-webkit-keyframes anim_ttb {
	0% {
		-webkit-transform: translate3d(0, -100px, 0);
		opacity: 0;
	}
	
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@-moz-keyframes anim_ttb {
	0% {
		-moz-transform: translate3d(0, -100px, 0);
		opacity: 0;
	}
	
	100% {
		-moz-transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@-o-keyframes anim_ttb {
	0% {
		-o-transform: translate3d(0, -100px, 0);
		opacity: 0;
	}
	
	100% {
		-o-transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes anim_ttb {
	0% {
		transform: translate3d(0, -100px, 0);
		opacity: 0;
	}
	
	100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@-webkit-keyframes anim_btt {
	0% {
		-webkit-transform: translate3d(0, 100px, 0);
		opacity: 0;
	}
	
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@-moz-keyframes anim_btt {
	0% {
		-moz-transform: translate3d(0, 100px, 0);
		opacity: 0;
	}
	
	100% {
		-moz-transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@-o-keyframes anim_btt {
	0% {
		-o-transform: translate3d(0, 100px, 0);
		opacity: 0;
	}
	
	100% {
		-o-transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes anim_btt {
	0% {
		transform: translate3d(0, 100px, 0);
		opacity: 0;
	}
	
	100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@-webkit-keyframes anim_ltr {
	0% {
		-webkit-transform: translate3d(-100px, 0, 0);
		opacity: 0;
	}
	
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@-moz-keyframes anim_ltr {
	0% {
		-moz-transform: translate3d(-100px, 0, 0);
		opacity: 0;
	}
	
	100% {
		-moz-transform: translate3d(0, 0);
		opacity: 1;
	}
}

@-o-keyframes anim_ltr {
	0% {
		-o-transform: translate3d(-100px, 0);
		opacity: 0;
	}
	
	100% {
		-o-transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes anim_ltr {
	0% {
		transform: translate3d(-100px, 0, 0);
		opacity: 0;
	}
	
	100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@-webkit-keyframes anim_rtl {
	0% {
		-webkit-transform: translate3d(100px, 0, 0);
		opacity: 0;
	}
	
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@-moz-keyframes anim_rtl {
	0% {
		-moz-transform: translate3d(100px, 0, 0);
		opacity: 0;
	}
	
	100% {
		-moz-transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@-o-keyframes anim_rtl {
	0% {
		-o-transform: translate3d(100px, 0, 0);
		opacity: 0;
	}
	
	100% {
		-o-transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes anim_rtl {
	0% {
		transform: translate3d(100px, 0, 0);
		opacity: 0;
	}
	
	100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@-webkit-keyframes zoom-in {
	0% {
		-webkit-transform: scale(.5);
		opacity: .1;
	}
	
	100% {
		-webkit-transform: scale(1);
		opacity: 1;
	}
}

@-moz-keyframes zoom-in {
	0% {
		-moz-transform: scale(.5);
		opacity: .1;
	}
	
	100% {
		-moz-transform: scale(1);
		opacity: 1;
	}
}

@-o-keyframes zoom-in {
	0% {
		-o-transform: scale(.5);
		opacity: .1;
	}
	
	100% {
		-o-transform: scale(1);
		opacity: 1;
	}
}

@keyframes zoom-in {
	0% {
		transform: scale(.5);
		opacity: .1;
	}
	
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@-webkit-keyframes zoom-out {
	0% {
		-webkit-transform: scale(1.5);
		opacity: .1;
	}
	
	100% {
		-webkit-transform: scale(1);
		opacity: 1;
	}
}

@-moz-keyframes zoom-out {
	0% {
		-moz-transform: scale(1.5);
		opacity: .1;
	}
	
	100% {
		-moz-transform: scale(1);
		opacity: 1;
	}
}

@-o-keyframes zoom-out {
	0% {
		-o-transform: scale(1.5);
		opacity: .1;
	}
	
	100% {
		-o-transform: scale(1);
		opacity: 1;
	}
}

@keyframes zoom-out {
	0% {
		transform: scale(1.5);
		opacity: .1;
	}
	
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@-webkit-keyframes zoom-reverse {
	0% {
		-webkit-transform: scale(1);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: scale(.5);
		opacity: 0;
	}
}

@-moz-keyframes zoom-reverse {
	0% {
		-moz-transform: scale(1);
		opacity: 1;
	}
	
	100% {
		-moz-transform: scale(.5);
		opacity: 0;
	}
}

@-o-keyframes zoom-reverse {
	0% {
		-o-transform: scale(1);
		opacity: 1;
	}
	
	100% {
		-o-transform: scale(.5);
		opacity: 0;
	}
}

@keyframes zoom-reverse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	
	100% {
		transform: scale(.5);
		opacity: 0;
	}
}

@-webkit-keyframes alpha-in {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@-moz-keyframes alpha-in {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@-o-keyframes alpha-in {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@keyframes alpha-in {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes flip-in {
	0% {
		opacity: 0;
		-webkit-transform: rotateX(-45deg) translateY(120px);
	}
	
	100% {
		-webkit-transform: rotateX(0deg) translate(0px, 0px);
		opacity: 1;
	}
}

@-moz-keyframes flip-in {
	0% {
		opacity: 0;
		-moz-webkit-transform: rotateX(-45deg) translateY(120px);
	}
	
	100% {
		-moz-transform: rotateX(0deg) translate(0px, 0px);
		opacity: 1;
	}
}

@-o-keyframes flip-in {
	0% {
		opacity: 0;
		-o-transform: rotateX(-45deg) translateY(120px);
	}
	
	100% {
		-o-transform: rotateX(0deg) translate(0px, 0px);
		opacity: 1;
	}
}

@keyframes flip-in {
	0% {
		opacity: 0;
		transform: rotateX(-45deg) translateY(120px);
	}
	
	100% {
		transform: rotateX(0deg) translate(0px, 0px);
		opacity: 1;
	}
}

@-webkit-keyframes reveal-right {
	0% {
		-webkit-transform: translateX(-90%);
	}
	
	100% {
		-webkit-transform: translate(0px, 0px);
	}
}

@-moz-keyframes reveal-right {
	0% {
		-moz-transform: translateX(-90%);
	}
	
	100% {
		-moz-transform: translate(0px, 0px);
	}
}

@-o-keyframes reveal-right {
	0% {
		-o-transform: translateX(-90%);
	}
	
	100% {
		-o-transform: translate(0px, 0px);
	}
}

@keyframes reveal-right {
	0% {
		transform: translateX(-90%);
	}
	
	100% {
		transform: translate(0px, 0px);
	}
}

.elementor-widget-container>p:first-child {
	margin-top: 0px;
}

.elementor-widget-container>p:last-child {
	margin-bottom: 0px;
}

.animated {
	-webkit-animation-duration: .6s;
	-moz-animation-duration: .6s;
	-o-animation-duration: .6s;
	animation-duration: .6s;
}

.animated.animated-fast {
	-webkit-animation-duration: .3s;
	-moz-animation-duration: .3s;
	-o-animation-duration: .3s;
	animation-duration: .3s;
}

.fadeInUp {
	-webkit-animation-name: anim_btt;
	-moz-animation-name: anim_btt;
	-o-animation-name: anim_btt;
	animation-name: anim_btt;
}

.heading_small_border .elementor-widget-container:before {
	content: "";
	width: 30px;
	height: 2px;
	background: #e5e5e5;
	position: absolute;
	top: 50%;
	margin-top: -1px;
}

.heading_small_border .elementor-heading-title {
	padding-left: 45px;
}

.hide_widget_title h5 {
	display: none;
}

footer#colophon .custom_input_white .mc4wp-form .mc4wp-form-fields input[type="email"] {
	background: #fff;
}

.more_space_portfolio_items .ce-portfolio-item {
	padding-left: 60px !important;
	padding-right: 60px !important;
}

.hide_entry_content .entry-wrapper-content {
	display: none;
}

@media (min-width: 1024px) {
	.ce-horizontal-scroll-page .swiper-wrapper>.elementor-section {
		height: 100vh;
	}
	
	.ce-horizontal-scroll-page .swiper-wrapper>.elementor-section>.elementor-container {
		height: 100%;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.ce-nav-menu *:focus {
	outline: none;
}

.ce-nav-menu__toggle:focus {
	outline: none;
}

.ce-flyout-close:focus {
	outline: none;
}

ul.ce-nav-menu {
	list-style: none !important;
	margin: 0;
	padding: 0;
}

.ce-nav-menu li, .ce-nav-menu ul {
	list-style: none !important;
	margin: 0;
	padding: 0;
}

.ce-nav-menu li.menu-item {
	position: relative;
}

.ce-flyout-container .ce-nav-menu li.menu-item {
	position: relative;
	background: unset;
}

.ce-nav-menu .sub-menu li.menu-item {
	position: relative;
	background: inherit;
}

div.ce-nav-menu, .elementor-widget-ce-nav-menu .elementor-widget-container {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.ce-nav-menu__layout-horizontal {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.ce-nav-menu__layout-horizontal .ce-nav-menu {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.ce-nav-menu .parent-has-no-child .ce-menu-toggle {
	display: none;
}

.ce-nav-menu__layout-horizontal .ce-nav-menu .ce-has-no-megamenu .ce-has-submenu .sub-menu, .ce-submenu-action-hover .ce-layout-vertical .ce-nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 16;
	visibility: hidden;
	opacity: 0;
	text-align: left;
	-webkit-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
}

.ce-nav-menu__layout-horizontal .ce-nav-menu .menu-item-has-children:hover>.sub-menu, .ce-nav-menu__layout-horizontal .ce-nav-menu .menu-item-has-children:focus>.sub-menu {
	visibility: visible;
	opacity: 1;
}

.ce-submenu-action-click .ce-nav-menu .menu-item-has-children:hover>.sub-menu, .ce-submenu-action-click .ce-nav-menu .menu-item-has-children:focus>.sub-menu {
	visibility: hidden;
	opacity: 0;
}

.ce-nav-menu .menu-item-has-children.ce-has-no-megamenu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-flyout-container .ce-nav-menu .menu-item-has-children.ce-has-no-megamenu .menu-item-has-children .sub-menu {
	top: 0;
	left: 0;
}

.ce-nav-menu .menu-item-has-children.ce-has-no-megamenu .menu-item-has-children .sub-menu {
	top: 0;
	left: 100%;
}

.ce-nav-menu__layout-horizontal .ce-nav-menu .menu-item-has-children:hover>.sub-menu, .ce-nav-menu__layout-horizontal .ce-nav-menu .menu-item-has-children.focus>.sub-menu {
	visibility: visible;
	opacity: 1;
	-webkit-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}

.ce-nav-menu:before, .ce-nav-menu:after {
	content: "";
	display: table;
	clear: both;
}

.ce-nav-menu__align-right .ce-nav-menu {
	margin-left: auto;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	justify-content: flex-end;
}

.ce-nav-menu__align-right .ce-nav-menu__layout-vertical li a.ce-menu-item, .ce-nav-menu__align-right .ce-nav-menu__layout-vertical li a.ce-sub-menu-item {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	justify-content: flex-end;
}

.ce-nav-menu__align-right .ce-nav-menu__layout-vertical li.elementor-button-wrapper {
	text-align: right;
}

.ce-nav-menu__align-left .ce-nav-menu__layout-vertical li.elementor-button-wrapper {
	text-align: left;
}

.ce-nav-menu__align-center .ce-nav-menu__layout-vertical li.elementor-button-wrapper {
	text-align: center;
}

.ce-nav-menu__align-left .ce-nav-menu {
	margin-right: auto;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	-moz-box-pack: start;
	justify-content: flex-start;
}

.ce-nav-menu__align-left .ce-nav-menu__layout-vertical li a.ce-menu-item, .ce-nav-menu__align-left .ce-nav-menu__layout-vertical li a.ce-sub-menu-item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	-moz-box-pack: start;
	justify-content: flex-start;
}

.ce-nav-menu__align-center .ce-nav-menu {
	margin-left: auto;
	margin-right: auto;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	justify-content: center;
}

.ce-nav-menu__align-center .ce-nav-menu__layout-vertical li a.ce-menu-item, .ce-nav-menu__align-center .ce-nav-menu__layout-vertical li a.ce-sub-menu-item {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	justify-content: center;
}

.ce-nav-menu__layout-horizontal .ce-nav-menu {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.ce-nav-menu__align-justify .ce-nav-menu__layout-horizontal .ce-nav-menu {
	width: 100%;
}

.ce-nav-menu__align-justify .ce-nav-menu__layout-horizontal .ce-nav-menu li.menu-item {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	-webkit-flex-grow: 1;
	-moz-box-flex: 1;
	flex-grow: 1;
}

.ce-nav-menu__align-justify .ce-nav-menu__layout-horizontal .ce-nav-menu li a.ce-menu-item {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	justify-content: center;
}

.ce-active-menu+nav li:not(:last-child) a.ce-menu-item, .ce-active-menu+nav li:not(:last-child) a.ce-sub-menu-item {
	border-bottom-width: 0;
}

.ce-nav-menu a.ce-menu-item, .ce-nav-menu a.ce-sub-menu-item {
	line-height: 1;
	text-decoration: none;
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.ce-nav-menu a.ce-menu-item:hover, .ce-nav-menu a.ce-sub-menu-item:hover {
	text-decoration: none;
}

.ce-nav-menu .sub-menu {
	min-width: 220px;
	margin: 0;
	z-index: 9999;
}

.ce-nav-menu__layout-horizontal {
	font-size: 0;
}

.ce-nav-menu__layout-horizontal li.menu-item, .ce-nav-menu__layout-horizontal>li.menu-item {
	font-size: medium;
}

.ce-submenu-icon-arrow .ce-nav-menu .parent-has-child .sub-arrow i:before {
	content: "";
}

.ce-submenu-icon-classic .ce-nav-menu .parent-has-child .sub-arrow i:before {
	content: "";
}

.ce-submenu-icon-plus .ce-nav-menu .parent-has-child .sub-arrow i:before {
	content: "+";
}

.ce-submenu-icon-none .ce-nav-menu .parent-has-child .sub-arrow {
	display: none;
}

.ce-submenu-icon-arrow .ce-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before {
	content: "";
}

.ce-submenu-icon-plus .ce-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before {
	content: "-";
}

.ce-submenu-icon-classic .ce-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before {
	content: "";
}

.rtl .ce-submenu-icon-arrow .ce-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
	content: "";
}

.rtl .ce-submenu-icon-classic .ce-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
	content: "";
}

.ce-submenu-icon-arrow .ce-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
	content: "";
}

.ce-submenu-icon-classic .ce-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
	content: "";
}

.ce-nav-menu-icon {
	padding: .35em;
	border: 0 solid;
}

.ce-nav-menu-icon i:focus {
	outline: 0;
}

.ce-has-submenu-container a.ce-menu-item:focus, .ce-has-submenu-container a.ce-sub-menu-item:focus {
	outline: 0;
}

.ce-nav-menu .menu-item-has-children:focus, .ce-nav-menu .menu-item-has-children .sub-menu:focus {
	outline: 0;
}

.ce-nav-menu .menu-item-has-children-container {
	position: relative;
}

.ce-nav-menu .menu-item-has-children-container:focus {
	outline: 0;
}

.ce-nav-menu__layout-vertical .sub-menu, .ce-flyout-wrapper .ce-has-no-megamenu .sub-menu, .ce-flyout-wrapper .ce-megamenu-wrapper, .ce-flyout-wrapper .ce-has-megamenu .ce-megamenu-wrapper li .sub-menu {
	position: relative;
	height: 0;
	visibility: hidden;
	opacity: 0;
}

.ce-nav-menu__submenu-arrow .ce-menu-toggle:before, .ce-nav-menu__submenu-plus .ce-menu-toggle:before, .ce-nav-menu__submenu-classic .ce-menu-toggle:before {
	font-family: "Font Awesome 5 Free";
	z-index: 1;
	font-size: inherit;
	font-weight: inherit;
	line-height: 0;
}

.ce-menu-item-center .ce-nav-menu li a.ce-menu-item, .ce-menu-item-center .ce-nav-menu li a.ce-sub-menu-item {
	margin-right: 0px;
}

.ce-nav-menu__submenu-none .ce-nav-menu li a.ce-menu-item, .ce-nav-menu__submenu-none .ce-nav-menu li a.ce-sub-menu-item {
	margin-right: 0px;
}

.ce-nav-menu__toggle-icon:before {
	content: "";
	font-family: "fontAwesome";
	z-index: 1;
	font-size: 24px;
	font-weight: inherit;
	font-style: normal;
	line-height: 0;
}

.ce-active-menu .ce-nav-menu__toggle-icon:before {
	content: "";
}

.ce-active-menu.ce-active-menu-full-width+.ce-nav-menu__layout-horizontal, .ce-active-menu.ce-active-menu-full-width+.ce-nav-menu__layout-vertical {
	position: absolute;
	top: 100%;
}

.ce-nav-menu__layout-vertical .menu-item-has-children .menu-item-has-children .sub-menu {
	top: 0;
	left: 0;
}

.ce-nav-sub-menu-icon, .ce-nav-menu__icon {
	display: inline-block;
	line-height: 1;
}

.ce-nav-menu__toggle {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 22px;
	cursor: pointer;
	border: 0 solid;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #494c4f;
	position: relative;
	line-height: 1;
}

.ce-nav-menu__toggle i[data-for="dropdown-icon-close-svg"]:not(.show-close-icon) {
	display: none;
}

.ce-nav-menu__toggle i[data-for="dropdown-icon-svg"].show-close-icon {
	display: none;
}

.ce-nav-menu__toggle-icon {
	display: inline-block;
	font-size: inherit;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ce-nav-menu__layout-horizontal .ce-nav-menu .sub-arrow {
	margin-left: 10px;
}

.ce-nav-menu__layout-vertical .ce-nav-menu .sub-arrow, .ce-flyout-wrapper .sub-arrow {
	padding: 0px;
}

.ce-nav-menu .child-item, .ce-nav-menu__layout-vertical .ce-nav-menu .child-item {
	font-size: 14px;
	line-height: 1;
	padding: 10px 0 10px 10px;
	margin-top: -10px;
	margin-bottom: -10px;
	position: absolute;
	right: 0;
	margin-right: 20px;
}

.ce-layout-horizontal .ce-nav-menu__toggle, .ce-layout-vertical .ce-nav-menu__toggle {
	visibility: hidden;
	opacity: 0;
	display: none;
}

.ce-nav-menu-icon {
	display: inline-block;
	line-height: 1;
	text-align: center;
}

.ce-nav-menu__layout-vertical .saved-content, .ce-nav-menu__layout-vertical .sub-menu, .ce-nav-menu__layout-vertical .child {
	left: 0 !important;
	width: 100% !important;
}

.ce-flyout-container .saved-content, .ce-flyout-container .sub-menu, .ce-flyout-container .child {
	left: 0 !important;
	width: 100% !important;
}

.ce-flyout-container .ce-nav-menu .sub-menu, .ce-flyout-container .ce-nav-menu .ce-megamenu-wrapper {
	background: unset;
}

.ce-nav-menu .menu-item a:before, .ce-nav-menu .menu-item a:after {
	display: block;
	position: absolute;
	-webkit-transition: .3s;
	transition: .3s;
	-webkit-transition-timing-function: cubic-bezier(.58, .3, .005, 1);
	transition-timing-function: cubic-bezier(.58, .3, .005, 1);
}

.ce-nav-menu .menu-item a.ce-menu-item:not(:hover):not(:focus):not(.highlighted):before, .ce-nav-menu .menu-item a.ce-menu-item:not(:hover):not(:focus):not(.highlighted):after {
	opacity: 0;
}

.ce-nav-menu .menu-item a.ce-menu-item:hover:before, .ce-nav-menu .menu-item a.ce-menu-item:hover:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.ce-nav-menu .menu-item a.ce-menu-item:focus:before, .ce-nav-menu .menu-item a.ce-menu-item:focus:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.ce-nav-menu .menu-item a.ce-menu-item.highlighted:before, .ce-nav-menu .menu-item a.ce-menu-item.highlighted:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.ce-nav-menu .menu-item.current-menu-item>a.ce-menu-item:before, .ce-nav-menu .menu-item.current-menu-item>a.ce-menu-item:after {
	opacity: 1 !important;
}

.ce-nav-menu .current-menu-item:before, .ce-nav-menu .current-menu-item:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.ce-pointer__double-line .menu-item.parent a.ce-menu-item:before, .ce-pointer__double-line .menu-item.parent a.ce-menu-item:after {
	height: 3px;
	width: 100%;
	left: 0;
	background-color: #55595c;
	z-index: 2;
}

.ce-pointer__underline .menu-item.parent a.ce-menu-item:before, .ce-pointer__underline .menu-item.parent a.ce-menu-item:after {
	height: 3px;
	width: 100%;
	left: 0;
	background-color: #55595c;
	z-index: 2;
}

.ce-pointer__overline .menu-item.parent a.ce-menu-item:before, .ce-pointer__overline .menu-item.parent a.ce-menu-item:after {
	height: 3px;
	width: 100%;
	left: 0;
	background-color: #55595c;
	z-index: 2;
}

.ce-pointer__small_point .menu-item.parent a.ce-menu-item:before, .ce-pointer__small_point .menu-item.parent a.ce-menu-item:after {
	height: 10px;
	width: 10px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	background-color: #55595c;
	z-index: 2;
}

.ce-pointer__double-line.ce-animation__grow .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .ce-pointer__double-line.ce-animation__grow .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	height: 0;
	width: 0;
	left: 50%;
}

.ce-pointer__underline.ce-animation__grow .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .ce-pointer__underline.ce-animation__grow .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	height: 0;
	width: 0;
	left: 50%;
}

.ce-pointer__overline.ce-animation__grow .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .ce-pointer__overline.ce-animation__grow .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	height: 0;
	width: 0;
	left: 50%;
}

.ce-pointer__small_point.ce-animation__grow .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .ce-pointer__small_point.ce-animation__grow .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	height: 0;
	width: 0;
	left: 50%;
}

.ce-pointer__double-line.ce-animation__drop-out .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .ce-pointer__underline.ce-animation__drop-out .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .ce-pointer__overline.ce-animation__drop-out .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .ce-pointer__small_point.ce-animation__drop-out .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	top: 10px;
}

.ce-pointer__double-line.ce-animation__drop-out .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .ce-pointer__underline.ce-animation__drop-out .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .ce-pointer__overline.ce-animation__drop-out .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .ce-pointer__small_point.ce-animation__drop-out .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	bottom: 10px;
}

.ce-pointer__double-line.ce-animation__drop-in .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .ce-pointer__underline.ce-animation__drop-in .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .ce-pointer__overline.ce-animation__drop-in .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .ce-pointer__small_point.ce-animation__drop-in .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	top: -10px;
}

.ce-pointer__double-line.ce-animation__drop-in .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .ce-pointer__underline.ce-animation__drop-in .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .ce-pointer__overline.ce-animation__drop-in .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .ce-pointer__small_point.ce-animation__drop-in .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	bottom: -10px;
}

.ce-pointer__double-line.ce-animation__none, .ce-pointer__underline.ce-animation__none, .ce-pointer__overline.ce-animation__none {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__double-line.ce-animation__none .menu-item.parent a.ce-menu-item, .ce-pointer__underline.ce-animation__none .menu-item.parent a.ce-menu-item, .ce-pointer__overline.ce-animation__none .menu-item.parent a.ce-menu-item {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__double-line.ce-animation__none:before, .ce-pointer__double-line.ce-animation__none:after, .ce-pointer__double-line.ce-animation__none:hover, .ce-pointer__double-line.ce-animation__none:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__double-line.ce-animation__none .menu-item.parent a.ce-menu-item:before, .ce-pointer__double-line.ce-animation__none .menu-item.parent a.ce-menu-item:after, .ce-pointer__double-line.ce-animation__none .menu-item.parent a.ce-menu-item:hover, .ce-pointer__double-line.ce-animation__none .menu-item.parent a.ce-menu-item:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__underline.ce-animation__none:before, .ce-pointer__underline.ce-animation__none:after, .ce-pointer__underline.ce-animation__none:hover, .ce-pointer__underline.ce-animation__none:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__underline.ce-animation__none .menu-item.parent a.ce-menu-item:before, .ce-pointer__underline.ce-animation__none .menu-item.parent a.ce-menu-item:after, .ce-pointer__underline.ce-animation__none .menu-item.parent a.ce-menu-item:hover, .ce-pointer__underline.ce-animation__none .menu-item.parent a.ce-menu-item:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__overline.ce-animation__none:before, .ce-pointer__overline.ce-animation__none:after, .ce-pointer__overline.ce-animation__none:hover, .ce-pointer__overline.ce-animation__none:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__overline.ce-animation__none .menu-item.parent a.ce-menu-item:before, .ce-pointer__overline.ce-animation__none .menu-item.parent a.ce-menu-item:after, .ce-pointer__overline.ce-animation__none .menu-item.parent a.ce-menu-item:hover, .ce-pointer__overline.ce-animation__none .menu-item.parent a.ce-menu-item:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__small_point.ce-animation__none:before, .ce-pointer__small_point.ce-animation__none:after, .ce-pointer__small_point.ce-animation__none:hover, .ce-pointer__small_point.ce-animation__none:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__small_point.ce-animation__none .menu-item.parent a.ce-menu-item:before, .ce-pointer__small_point.ce-animation__none .menu-item.parent a.ce-menu-item:after, .ce-pointer__small_point.ce-animation__none .menu-item.parent a.ce-menu-item:hover, .ce-pointer__small_point.ce-animation__none .menu-item.parent a.ce-menu-item:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__double-line .menu-item.parent a.ce-menu-item:before, .ce-pointer__overline .menu-item.parent a.ce-menu-item:before {
	content: "";
	top: 0;
}

.ce-pointer__small_point .menu-item.parent a.ce-menu-item:before {
	content: "";
	top: 0;
}

.ce-pointer__double-line.ce-animation__slide .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .ce-pointer__overline.ce-animation__slide .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	width: 10px;
	left: -20px;
}

.ce-pointer__double-line .menu-item.parent a.ce-menu-item:after, .ce-pointer__underline .menu-item.parent a.ce-menu-item:after {
	content: "";
	bottom: 0;
}

.ce-pointer__double-line.ce-animation__slide .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .ce-pointer__underline.ce-animation__slide .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	width: 10px;
	left: -webkit-calc(100% + 20px);
	left: calc(100% + 20px);
}

.ce-pointer__framed .menu-item.parent a.ce-menu-item:before, .ce-pointer__framed .menu-item.parent a.ce-menu-item:after {
	background: transparent;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	border: 3px solid #55595c;
}

.ce-pointer__framed .menu-item.parent a.ce-menu-item:before {
	content: "";
}

.ce-pointer__framed.ce-animation__grow .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	-webkit-transform: scale(.75);
	-ms-transform: scale(.75);
	transform: scale(.75);
}

.ce-pointer__framed.ce-animation__shrink .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	-webkit-transform: scale(1.25);
	-ms-transform: scale(1.25);
	transform: scale(1.25);
}

.ce-pointer__framed.ce-animation__grow .menu-item.parent a.ce-menu-item:before, .ce-pointer__framed.ce-animation__shrink .menu-item.parent a.ce-menu-item:before {
	-webkit-transition: opacity .2s, -webkit-transform .4s;
	transition: opacity .2s, -webkit-transform .4s;
	transition: opacity .2s, transform .4s;
	transition: opacity .2s, transform .4s, -webkit-transform .4s;
}

.ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item:before, .ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item:after {
	width: 3px;
	height: 3px;
}

.ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item:before {
	border-width: 0 0 3px 3px;
	-webkit-transition: width .1s .2s, height .1s .3s, opacity .12s .22s;
	transition: width .1s .2s, height .1s .3s, opacity .12s .22s;
}

.ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item:after {
	content: "";
	top: initial;
	bottom: 0;
	left: initial;
	right: 0;
	border-width: 3px 3px 0 0;
	-webkit-transition: width .1s, height .1s .1s, opacity .02s .18s;
	transition: width .1s, height .1s .1s, opacity .02s .18s;
}

.ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item:hover:before, .ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item:hover:after {
	width: 100%;
	height: 100%;
}

.ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item:focus:before, .ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item:focus:after {
	width: 100%;
	height: 100%;
}

.ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item.highlighted:before, .ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item.highlighted:after {
	width: 100%;
	height: 100%;
}

.ce-pointer__framed.ce-animation__draw .current-menu-item:before, .ce-pointer__framed.ce-animation__draw .current-menu-item:after {
	width: 100%;
	height: 100%;
}

.ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item:hover:before, .ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item:focus:before, .ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item.highlighted:before {
	-webkit-transition: opacity .02s, height .1s, width .1s .1s;
	transition: opacity .02s, height .1s, width .1s .1s;
}

.ce-pointer__framed.ce-animation__draw .current-menu-item:before {
	-webkit-transition: opacity .02s, height .1s, width .1s .1s;
	transition: opacity .02s, height .1s, width .1s .1s;
}

.ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item:hover:after, .ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item:focus:after, .ce-pointer__framed.ce-animation__draw .menu-item.parent a.ce-menu-item.highlighted:after {
	-webkit-transition: opacity .02s .2s, height .1s .2s, width .1s .3s;
	transition: opacity .02s .2s, height .1s .2s, width .1s .3s;
}

.ce-pointer__framed.ce-animation__draw .current-menu-item:after {
	-webkit-transition: opacity .02s .2s, height .1s .2s, width .1s .3s;
	transition: opacity .02s .2s, height .1s .2s, width .1s .3s;
}

.ce-pointer__framed.ce-animation__corners .menu-item.parent a.ce-menu-item:before, .ce-pointer__framed.ce-animation__corners .menu-item.parent a.ce-menu-item:after {
	width: 3px;
	height: 3px;
}

.ce-pointer__framed.ce-animation__corners .menu-item.parent a.ce-menu-item:before {
	border-width: 3px 0 0 3px;
}

.ce-pointer__framed.ce-animation__corners .menu-item.parent a.ce-menu-item:after {
	content: "";
	top: initial;
	bottom: 0;
	left: initial;
	right: 0;
	border-width: 0 3px 3px 0;
}

.ce-pointer__framed.ce-animation__corners .menu-item.parent a.ce-menu-item:hover:before, .ce-pointer__framed.ce-animation__corners .menu-item.parent a.ce-menu-item:hover:after {
	width: 100%;
	height: 100%;
	-webkit-transition: opacity .002s, width .4s, height .4s;
	transition: opacity .002s, width .4s, height .4s;
}

.ce-pointer__framed.ce-animation__corners .menu-item.parent a.ce-menu-item:focus:before, .ce-pointer__framed.ce-animation__corners .menu-item.parent a.ce-menu-item:focus:after {
	width: 100%;
	height: 100%;
	-webkit-transition: opacity .002s, width .4s, height .4s;
	transition: opacity .002s, width .4s, height .4s;
}

.ce-pointer__framed.ce-animation__corners .menu-item.parent a.ce-menu-item.highlighted:before, .ce-pointer__framed.ce-animation__corners .menu-item.parent a.ce-menu-item.highlighted:after {
	width: 100%;
	height: 100%;
	-webkit-transition: opacity .002s, width .4s, height .4s;
	transition: opacity .002s, width .4s, height .4s;
}

.ce-pointer__framed.ce-animation__corners .current-menu-item:before, .ce-pointer__framed.ce-animation__corners .current-menu-item:after {
	width: 100%;
	height: 100%;
	-webkit-transition: opacity .002s, width .4s, height .4s;
	transition: opacity .002s, width .4s, height .4s;
}

.ce-pointer__framed.ce-animation__none {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__framed.ce-animation__none .menu-item.parent a.ce-menu-item, .ce-pointer__framed.ce-animation__none:before, .ce-pointer__framed.ce-animation__none:after, .ce-pointer__framed.ce-animation__none:hover, .ce-pointer__framed.ce-animation__none:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__framed.ce-animation__none .menu-item.parent a.ce-menu-item:before, .ce-pointer__framed.ce-animation__none .menu-item.parent a.ce-menu-item:after, .ce-pointer__framed.ce-animation__none .menu-item.parent a.ce-menu-item:hover, .ce-pointer__framed.ce-animation__none .menu-item.parent a.ce-menu-item:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__background .menu-item.parent a.ce-menu-item:before, .ce-pointer__background .menu-item.parent a.ce-menu-item:after {
	content: "";
	-webkit-transition: .3s;
	transition: .3s;
}

.ce-pointer__background .menu-item.parent a.ce-menu-item:before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #55595c;
	z-index: -1;
}

.ce-pointer__background .menu-item.parent a.ce-menu-item:hover, .ce-pointer__background .menu-item.parent a.ce-menu-item:focus, .ce-pointer__background .menu-item.parent a.ce-menu-item.highlighted {
	color: #fff;
}

.ce-pointer__background .current-menu-item {
	color: #fff;
}

.ce-pointer__background.ce-animation__grow .menu-item.parent a.ce-menu-item:before {
	-webkit-transform: scale(.5);
	-ms-transform: scale(.5);
	transform: scale(.5);
}

.ce-pointer__background.ce-animation__grow .menu-item.parent a.ce-menu-item:hover:before, .ce-pointer__background.ce-animation__grow .menu-item.parent a.ce-menu-item:focus:before, .ce-pointer__background.ce-animation__grow .menu-item.parent a.ce-menu-item.highlighted:before {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.ce-pointer__background.ce-animation__grow .current-menu-item:before {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.ce-pointer__background.ce-animation__shrink .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: .3s;
	transition: .3s;
}

.ce-pointer__background.ce-animation__shrink .menu-item.parent a.ce-menu-item:hover:before, .ce-pointer__background.ce-animation__shrink .menu-item.parent a.ce-menu-item:focus:before, .ce-pointer__background.ce-animation__shrink .menu-item.parent a.ce-menu-item.highlighted:before {
	-webkit-transition: opacity .15s, -webkit-transform .4s;
	transition: opacity .15s, -webkit-transform .4s;
	transition: opacity .15s, transform .4s;
	transition: opacity .15s, transform .4s, -webkit-transform .4s;
}

.ce-pointer__background.ce-animation__shrink .current-menu-item:before {
	-webkit-transition: opacity .15s, -webkit-transform .4s;
	transition: opacity .15s, -webkit-transform .4s;
	transition: opacity .15s, transform .4s;
	transition: opacity .15s, transform .4s, -webkit-transform .4s;
}

.ce-pointer__background.ce-animation__sweep-left .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	left: 100%;
}

.ce-pointer__background.ce-animation__sweep-right .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	right: 100%;
}

.ce-pointer__background.ce-animation__sweep-up .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	top: 100%;
}

.ce-pointer__background.ce-animation__sweep-down .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	bottom: 100%;
}

.ce-pointer__background.ce-animation__shutter-out-vertical .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	bottom: 50%;
	top: 50%;
}

.ce-pointer__background.ce-animation__shutter-out-horizontal .menu-item.parent a.ce-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	right: 50%;
	left: 50%;
}

.ce-pointer__background.ce-animation__shutter-in-vertical .menu-item.parent a.ce-menu-item:after, .ce-pointer__background.ce-animation__shutter-in-horizontal .menu-item.parent a.ce-menu-item:after {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #55595c;
	z-index: -1;
}

.ce-pointer__background.ce-animation__shutter-in-vertical .menu-item.parent a.ce-menu-item:before {
	top: 0;
	bottom: 100%;
}

.ce-pointer__background.ce-animation__shutter-in-vertical .menu-item.parent a.ce-menu-item:after {
	top: 100%;
	bottom: 0;
}

.ce-pointer__background.ce-animation__shutter-in-vertical .menu-item.parent a.ce-menu-item:hover:before, .ce-pointer__background.ce-animation__shutter-in-vertical .menu-item.parent a.ce-menu-item:focus:before, .ce-pointer__background.ce-animation__shutter-in-vertical .menu-item.parent a.ce-menu-item.highlighted:before {
	bottom: 50%;
}

.ce-pointer__background.ce-animation__shutter-in-vertical .current-menu-item:before {
	bottom: 50%;
}

.ce-pointer__background.ce-animation__shutter-in-vertical .menu-item.parent a.ce-menu-item:hover:after, .ce-pointer__background.ce-animation__shutter-in-vertical .menu-item.parent a.ce-menu-item:focus:after, .ce-pointer__background.ce-animation__shutter-in-vertical .menu-item.parent a.ce-menu-item.highlighted:after {
	top: 50%;
}

.ce-pointer__background.ce-animation__shutter-in-vertical .current-menu-item:after {
	top: 50%;
}

.ce-pointer__background.ce-animation__shutter-in-horizontal .menu-item.parent a.ce-menu-item:before {
	right: 0;
	left: 100%;
}

.ce-pointer__background.ce-animation__shutter-in-horizontal .menu-item.parent a.ce-menu-item:after {
	right: 100%;
	left: 0;
}

.ce-pointer__background.ce-animation__shutter-in-horizontal .menu-item.parent a.ce-menu-item:hover:before, .ce-pointer__background.ce-animation__shutter-in-horizontal .menu-item.parent a.ce-menu-item:focus:before, .ce-pointer__background.ce-animation__shutter-in-horizontal .menu-item.parent a.ce-menu-item.highlighted:before {
	left: 50%;
}

.ce-pointer__background.ce-animation__shutter-in-horizontal .current-menu-item:before {
	left: 50%;
}

.ce-pointer__background.ce-animation__shutter-in-horizontal .menu-item.parent a.ce-menu-item:hover:after, .ce-pointer__background.ce-animation__shutter-in-horizontal .menu-item.parent a.ce-menu-item:focus:after, .ce-pointer__background.ce-animation__shutter-in-horizontal .menu-item.parent a.ce-menu-item.highlighted:after {
	right: 50%;
}

.ce-pointer__background.ce-animation__shutter-in-horizontal .current-menu-item:after {
	right: 50%;
}

.ce-pointer__background.ce-animation__none {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__background.ce-animation__none .menu-item.parent a.ce-menu-item, .ce-pointer__background.ce-animation__none:before, .ce-pointer__background.ce-animation__none:after, .ce-pointer__background.ce-animation__none:hover, .ce-pointer__background.ce-animation__none:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__background.ce-animation__none .menu-item.parent a.ce-menu-item:before, .ce-pointer__background.ce-animation__none .menu-item.parent a.ce-menu-item:after, .ce-pointer__background.ce-animation__none .menu-item.parent a.ce-menu-item:hover, .ce-pointer__background.ce-animation__none .menu-item.parent a.ce-menu-item:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__text.ce-animation__skew .menu-item.parent a.ce-menu-item:hover, .ce-pointer__text.ce-animation__skew .menu-item.parent a.ce-menu-item:focus {
	-webkit-transform: skew(-8deg);
	-ms-transform: skew(-8deg);
	transform: skew(-8deg);
}

.ce-pointer__text.ce-animation__grow .menu-item.parent a.ce-menu-item:hover, .ce-pointer__text.ce-animation__grow .menu-item.parent a.ce-menu-item:focus {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.ce-pointer__text.ce-animation__shrink .menu-item.parent a.ce-menu-item:hover, .ce-pointer__text.ce-animation__shrink .menu-item.parent a.ce-menu-item:focus {
	-webkit-transform: scale(.8);
	-ms-transform: scale(.8);
	transform: scale(.8);
}

.ce-pointer__text.ce-animation__float .menu-item.parent a.ce-menu-item:hover, .ce-pointer__text.ce-animation__float .menu-item.parent a.ce-menu-item:focus {
	-webkit-transform: translateY(-8px);
	-ms-transform: translateY(-8px);
	transform: translateY(-8px);
}

.ce-pointer__text.ce-animation__sink .menu-item.parent a.ce-menu-item:hover, .ce-pointer__text.ce-animation__sink .menu-item.parent a.ce-menu-item:focus {
	-webkit-transform: translateY(8px);
	-ms-transform: translateY(8px);
	transform: translateY(8px);
}

.ce-pointer__text.ce-animation__rotate .menu-item.parent a.ce-menu-item:hover, .ce-pointer__text.ce-animation__rotate .menu-item.parent a.ce-menu-item:focus {
	-webkit-transform: rotate(6deg);
	-ms-transform: rotate(6deg);
	transform: rotate(6deg);
}

.ce-pointer__text.ce-animation__none {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__text.ce-animation__none .menu-item.parent a.ce-menu-item, .ce-pointer__text.ce-animation__none:before, .ce-pointer__text.ce-animation__none:after, .ce-pointer__text.ce-animation__none:hover, .ce-pointer__text.ce-animation__none:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-pointer__text.ce-animation__none .menu-item.parent a.ce-menu-item:before, .ce-pointer__text.ce-animation__none .menu-item.parent a.ce-menu-item:after, .ce-pointer__text.ce-animation__none .menu-item.parent a.ce-menu-item:hover, .ce-pointer__text.ce-animation__none .menu-item.parent a.ce-menu-item:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.ce-flyout-overlay {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999998;
	background: url("https://cdn-khiaj.nitrocdn.com/FoIzgCwKZxaQHRPhrTjcNqPevNavAGnJ/assets/images/optimized/rev-697e7e6/saniex.com/wp-content/plugins/cowidgets-elementor-addons/inc/images/shade.png") repeat;
	background: rgba(0, 0, 0, .5);
	cursor: pointer;
	-webkit-backface-visibility: hidden;
}

.ce-flyout-overlay.nitro-lazy {
	background-image: none !important;
}

.ce-pointer__underline .menu-item.parent a.ce-menu-item.elementor-button:after, .ce-pointer__overline .menu-item.parent a.ce-menu-item.elementor-button:before {
	height: 0px;
}

.ce-pointer__double-line .menu-item.parent a.ce-menu-item.elementor-button:after, .ce-pointer__double-line .menu-item.parent a.ce-menu-item.elementor-button:before {
	height: 0px;
}

.ce-pointer__framed .menu-item.parent a.ce-menu-item.elementor-button:before, .ce-pointer__framed .menu-item.parent a.ce-menu-item.elementor-button:after {
	border-width: 0px;
}

.ce-pointer__text.ce-animation__grow .menu-item.parent a.ce-menu-item.elementor-button:hover, .ce-pointer__text.ce-animation__grow .menu-item.parent a.ce-menu-item.elementor-button:focus {
	-webkit-transform: none;
	transform: none;
}

.ce-flyout-close {
	position: absolute;
	top: 0;
	right: 0;
	margin: 5px;
	width: 23px;
	height: 23px;
	line-height: 23px;
	font-size: 23px;
	display: block;
	cursor: pointer;
}

.ce-flyout-wrapper .ce-side {
	-webkit-transition: all .4s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .4s cubic-bezier(.785, .135, .15, .86);
	transition: all .4s cubic-bezier(.785, .135, .15, .86);
	display: block;
	position: fixed;
	z-index: 999999;
	padding: 0;
	margin: 0;
	-webkit-overflow-scrolling: touch;
	-webkit-backface-visibility: hidden;
}

.ce-flyout-wrapper .ce-side.ce-flyout-left {
	top: 0;
	bottom: 0;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	right: auto;
	height: 100%;
	width: 300px;
	max-width: 100%;
	max-width: 100vw;
}

.ce-flyout-wrapper .ce-side.ce-flyout-left.ce-flyout-active {
	-webkit-transform: translateX(0px);
	-ms-transform: translateX(0px);
	transform: translateX(0px);
}

.ce-flyout-wrapper .ce-side.ce-flyout-right.ce-flyout-active {
	-webkit-transform: translateX(0px);
	-ms-transform: translateX(0px);
	transform: translateX(0px);
}

.ce-flyout-content.push, .ce-flyout-content ul li {
	color: #fff;
}

.ce-flyout-wrapper .ce-side {
	display: block;
	position: fixed;
	z-index: 999999;
	padding: 0;
	margin: 0;
	-webkit-overflow-scrolling: touch;
	-webkit-backface-visibility: hidden;
}

.ce-flyout-wrapper .ce-side.ce-flyout-right {
	top: 0;
	bottom: 0;
	left: auto;
	right: 0px;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	height: 100%;
	width: 300px;
	max-width: 100%;
}

.ce-flyout-wrapper .ce-side.ce-flyout-left {
	top: 0;
	bottom: 0;
	left: 0px;
	right: auto;
	height: 100%;
	width: 300px;
	max-width: 100%;
	max-width: 100vw;
}

.ce-flyout-wrapper .ce-side.top {
	top: -100%;
	bottom: auto;
	left: 0;
	right: 0;
	width: 100%;
	width: 100vw;
	height: 300px;
	max-height: 100%;
}

.ce-flyout-wrapper .ce-side.bottom {
	top: auto;
	bottom: -100%;
	left: 0;
	right: 0;
	width: 100%;
	width: 100vw;
	height: 300px;
	max-height: 100%;
}

.ce-flyout-content {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	line-height: 1.4em;
	color: #fff;
}

.ce-flyout-content::-webkit-scrollbar {
	display: none;
}

@media (max-width: 1024px) {
	.ce-flyout-content {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.admin-bar .ce-side {
	margin-top: 32px;
}

.ce-submenu-animation-slide_up .ce-layout-horizontal .ce-has-no-megamenu.menu-item-has-children>ul.sub-menu {
	-webkit-transform: translateY(20%);
	-ms-transform: translateY(20%);
	transform: translateY(20%);
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-submenu-animation-slide_up .ce-layout-horizontal .ce-has-no-megamenu.menu-item-has-children:hover>ul.sub-menu {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.ce-submenu-animation-slide_down .ce-layout-horizontal .menu-item-has-children>ul.sub-menu {
	-webkit-transform: translateY(-20%);
	-ms-transform: translateY(-20%);
	transform: translateY(-20%);
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-submenu-animation-slide_down .ce-layout-horizontal .menu-item-has-children:hover>ul.sub-menu {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

a.ce-menu-item.elementor-button {
	display: inline-flex;
}

.ce-nav-menu li.elementor-button-wrapper {
	align-self: center;
}

@media only screen and (max-width: 1023px) {
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu__layout-horizontal li, .ce-nav-menu__breakpoint-tablet .ce-nav-menu {
		width: 100%;
		margin-right: 0px;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-layout-horizontal .ce-nav-menu__toggle, .ce-nav-menu__breakpoint-tablet .ce-layout-vertical .ce-nav-menu__toggle {
		display: block;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu__layout-horizontal .ce-nav-menu {
		visibility: hidden;
		opacity: 0;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-active-menu+.ce-nav-menu__layout-horizontal .ce-nav-menu {
		visibility: visible;
		opacity: 1;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu__layout-horizontal, .ce-nav-menu__breakpoint-tablet .ce-nav-menu__layout-vertical {
		visibility: hidden;
		opacity: 0;
		height: 0;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-active-menu+.ce-nav-menu__layout-horizontal, .ce-nav-menu__breakpoint-tablet .ce-active-menu+.ce-nav-menu__layout-vertical {
		visibility: visible;
		opacity: 1;
		height: auto;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-active-menu.ce-active-menu-full-width+.ce-nav-menu__layout-horizontal {
		position: absolute;
		margin-top: 20px;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-active-menu.ce-active-menu-full-width+.ce-nav-menu__layout-horizontal .ce-nav-menu {
		position: relative;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-active-menu.ce-active-menu-full-width+.ce-nav-menu__layout-vertical {
		position: absolute;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu__layout-horizontal .ce-has-no-megamenu .sub-menu {
		visibility: hidden;
		opacity: 0;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu__layout-horizontal .menu-item-has-children .menu-item-has-children .sub-menu {
		top: 0;
		left: 0;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-layout-horizontal .ce-nav-menu__toggle, .ce-nav-menu__breakpoint-tablet .ce-layout-vertical .ce-nav-menu__toggle {
		visibility: visible;
		opacity: 1;
		display: block;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu__layout-vertical {
		float: none;
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-nav-menu__layout-horizontal .ce-nav-menu .menu-item-has-children:hover>.sub-menu, .ce-nav-menu__breakpoint-none .ce-nav-menu__layout-horizontal .ce-nav-menu .menu-item-has-children:hover>.sub-menu {
		visibility: hidden;
		opacity: 0;
		-webkit-transition: none;
		transition: none;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-menu-toggle {
		border: 1px dotted transparent;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-menu-toggle:hover {
		border: 1px dotted;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu__layout-horizontal .ce-has-no-megamenu .sub-menu {
		position: relative;
		position: relative;
		height: 0;
		height: 0;
		top: 0;
	}
	
	.ce-nav-menu__breakpoint-tablet .saved-content, .ce-nav-menu__breakpoint-tablet .sub-menu, .ce-nav-menu__breakpoint-tablet .child {
		left: 0 !important;
		width: auto !important;
	}
	
	.ce-nav-menu .sub-menu {
		min-width: auto;
		margin: 0;
	}
	
	.ce-nav-menu__breakpoint-tablet.ce-submenu-icon-arrow .ce-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
		content: "";
	}
	
	.ce-nav-menu__breakpoint-tablet.ce-submenu-icon-classic .ce-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
		content: "";
	}
	
	.ce-nav-menu__breakpoint-tablet.ce-submenu-icon-arrow .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.ce-nav-menu__breakpoint-tablet.ce-submenu-icon-classic .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.ce-nav-menu__breakpoint-tablet.ce-submenu-icon-plus .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "-";
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .sub-menu {
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-submenu-icon-arrow .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before, .ce-nav-menu__breakpoint-none.ce-submenu-icon-arrow .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-submenu-icon-classic .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before, .ce-nav-menu__breakpoint-none.ce-submenu-icon-classic .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-submenu-icon-arrow .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.ce-menu-item .sub-arrow i:before, .ce-nav-menu__breakpoint-none.ce-submenu-icon-arrow .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.ce-menu-item .sub-arrow i:before {
		content: "";
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-submenu-icon-classic .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.ce-menu-item .sub-arrow i:before, .ce-nav-menu__breakpoint-none.ce-submenu-icon-classic .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.ce-menu-item .sub-arrow i:before {
		content: "";
	}
	
	.ce-submenu-animation-slide_up .ce-layout-horizontal .menu-item-has-children ul.sub-menu, .ce-submenu-animation-slide_up .ce-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
	
	.ce-submenu-animation-slide_down .ce-layout-horizontal .menu-item-has-children ul.sub-menu, .ce-submenu-animation-slide_down .ce-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
	
	.elementor-widget-ce-nav-menu.ce-nav-menu__breakpoint-tablet .ce-nav-menu-layout:not(.ce-pointer__framed) .menu-item.parent a.ce-menu-item:after, .elementor-widget-ce-nav-menu.ce-nav-menu__breakpoint-tablet .ce-nav-menu-layout:not(.ce-pointer__framed) .menu-item.parent a.ce-menu-item:before {
		background-color: unset !important;
	}
	
	.elementor-widget-ce-nav-menu.ce-nav-menu__breakpoint-tablet .ce-pointer__framed .menu-item.parent a.ce-menu-item:before {
		border: 0px !important;
	}
	
	.elementor-widget-ce-nav-menu.ce-nav-menu__breakpoint-tablet .ce-pointer__text .menu-item.parent a.ce-menu-item:hover {
		-webkit-transform: none !important;
		-ms-transform: none !important;
		transform: none !important;
	}
	
	.ce-pointer__text .menu-item.parent a.ce-menu-item:focus {
		-webkit-transform: none !important;
		-ms-transform: none !important;
		transform: none !important;
	}
	
	.ce-nav-menu__breakpoint-tablet.ce-nav-menu__align-justify .ce-nav-menu__layout-horizontal .ce-nav-menu li a.ce-menu-item, .ce-nav-menu__breakpoint-tablet.ce-nav-menu__align-justify .ce-nav-menu__layout-horizontal .ce-nav-menu li a.ce-sub-menu-item {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	
	.ce-nav-menu__breakpoint-tablet.ce-nav-menu__align-justify .ce-nav-menu__layout-horizontal .ce-nav-menu li.elementor-button-wrapper {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

@media only screen and (max-width: 767px) {
	.ce-nav-menu__breakpoint-mobile.ce-nav-menu__align-justify .ce-nav-menu__layout-horizontal .ce-nav-menu li a.ce-menu-item, .ce-nav-menu__breakpoint-mobile.ce-nav-menu__align-justify .ce-nav-menu__layout-horizontal .ce-nav-menu li a.ce-sub-menu-item .ce-nav-menu__breakpoint-tablet.ce-nav-menu__align-justify .ce-nav-menu__layout-horizontal .ce-nav-menu li.elementor-button-wrapper {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-nav-toggle-yes .ce-layout-horizontal .ce-nav-menu__toggle, .ce-nav-menu__breakpoint-mobile.ce-nav-toggle-yes .ce-nav-menu__layout-horizontal .ce-nav-menu {
		visibility: visible;
		opacity: 1;
		display: block;
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-nav-menu__layout-horizontal li.menu-item, .ce-nav-menu__breakpoint-mobile .ce-nav-menu {
		width: 100%;
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-nav-toggle-yes .ce-layout-vertical .ce-nav-menu__toggle {
		display: inline-block;
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-nav-menu__layout-horizontal .ce-has-no-megamenu .sub-menu {
		position: relative;
		height: 0;
		top: 0;
	}
	
	.ce-nav-menu .sub-menu {
		min-width: auto;
		margin: 0;
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-nav-menu__layout-horizontal .ce-nav-menu .menu-item-has-children:hover>.sub-menu, .ce-nav-menu__breakpoint-none .ce-nav-menu__layout-horizontal .ce-nav-menu .menu-item-has-children:hover>.sub-menu {
		visibility: hidden;
		opacity: 0;
		-webkit-transition: none;
		transition: none;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu__layout-vertical {
		float: none;
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-nav-toggle-yes .ce-layout-vertical .ce-nav-menu__toggle.ce-active-menu {
		display: block;
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-nav-toggle-yes .ce-nav-menu__layout-horizontal, .ce-nav-menu__breakpoint-mobile.ce-nav-toggle-yes .ce-nav-menu__layout-vertical {
		visibility: hidden;
		opacity: 0;
		height: 0;
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-layout-horizontal .ce-nav-menu__toggle, .ce-nav-menu__breakpoint-mobile .ce-layout-vertical .ce-nav-menu__toggle {
		visibility: visible;
		opacity: 1;
		display: block;
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-nav-menu__layout-horizontal {
		visibility: hidden;
		opacity: 0;
		height: 0;
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-nav-menu__layout-vertical {
		float: none;
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-nav-menu__layout-horizontal .ce-has-no-megamenu .sub-menu, .ce-nav-menu__breakpoint-mobile .ce-nav-menu__layout-horizontal .ce-nav-menu {
		visibility: hidden;
		opacity: 0;
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-active-menu+.ce-nav-menu__layout-horizontal .ce-nav-menu {
		visibility: visible;
		opacity: 1;
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-nav-menu__layout-horizontal, .ce-nav-menu__breakpoint-mobile .ce-nav-menu__layout-vertical {
		visibility: hidden;
		opacity: 0;
		height: 0;
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-active-menu+.ce-nav-menu__layout-horizontal, .ce-nav-menu__breakpoint-mobile .ce-active-menu+.ce-nav-menu__layout-vertical {
		visibility: visible;
		opacity: 1;
		height: auto;
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-active-menu.ce-active-menu-full-width+.ce-nav-menu__layout-horizontal {
		position: absolute;
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-active-menu.ce-active-menu-full-width+.ce-nav-menu__layout-horizontal .ce-nav-menu {
		position: relative;
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-active-menu.ce-active-menu-full-width+.ce-nav-menu__layout-vertical {
		position: absolute;
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-nav-menu__layout-horizontal .menu-item-has-children .menu-item-has-children .sub-menu {
		top: 0;
		left: 0;
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-submenu-icon-arrow .ce-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
		content: "";
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-submenu-icon-classic .ce-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
		content: "";
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-submenu-icon-arrow .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-submenu-icon-classic .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-submenu-icon-plus .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "-";
	}
	
	.ce-nav-menu__breakpoint-none.ce-submenu-icon-arrow .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.ce-nav-menu__breakpoint-none.ce-submenu-icon-classic .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.ce-nav-menu__breakpoint-none.ce-submenu-icon-arrow .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.ce-menu-item .sub-arrow i:before {
		content: "";
	}
	
	.ce-nav-menu__breakpoint-none.ce-submenu-icon-classic .ce-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.ce-menu-item .sub-arrow i:before {
		content: "";
	}
	
	.ce-nav-menu__breakpoint-mobile .ce-nav-menu .sub-menu {
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-nav-toggle-yes .ce-effect-1 .ce-nav-menu {
		-webkit-transform: scale(.7);
		-ms-transform: scale(.7);
		transform: scale(.7);
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
		-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
		transition: all .3s cubic-bezier(.785, .135, .15, .86);
	}
	
	.ce-nav-menu__breakpoint-mobile .menu-is-active.ce-effect-1 .ce-nav-menu {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 1;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-nav-toggle-yes .ce-effect-2 .ce-nav-menu {
		-webkit-transform: translateX(20%);
		-ms-transform: translateX(20%);
		transform: translateX(20%);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
		-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
		transition: all .3s cubic-bezier(.785, .135, .15, .86);
	}
	
	.ce-nav-menu__breakpoint-mobile .menu-is-active.ce-effect-2 .ce-nav-menu {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	}
	
	.ce-nav-menu__breakpoint-mobile.ce-nav-toggle-yes .ce-effect-3 .ce-nav-menu {
		-webkit-transform: translateY(20%);
		-ms-transform: translateY(20%);
		transform: translateY(20%);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
		-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
		transition: all .3s cubic-bezier(.785, .135, .15, .86);
	}
	
	.ce-nav-menu__breakpoint-mobile .menu-is-active.ce-effect-3 .ce-nav-menu {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	}
	
	.ce-nav-menu__breakpoint-mobile .saved-content, .ce-nav-menu__breakpoint-mobile .sub-menu, .ce-nav-menu__breakpoint-mobile .child {
		left: 0 !important;
		width: auto !important;
	}
	
	.ce-nav-menu__breakpoint-tablet .saved-content, .ce-nav-menu__breakpoint-tablet .sub-menu, .ce-nav-menu__breakpoint-tablet .child {
		left: 0 !important;
		width: auto !important;
	}
	
	.ce-submenu-animation-slide_up .ce-layout-horizontal .menu-item-has-children ul.sub-menu, .ce-submenu-animation-slide_up .ce-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
	
	.ce-submenu-animation-slide_down .ce-layout-horizontal .menu-item-has-children ul.sub-menu, .ce-submenu-animation-slide_down .ce-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
	
	.elementor-widget-ce-nav-menu.ce-nav-menu__breakpoint-tablet .ce-nav-menu-layout:not(.ce-pointer__framed) .menu-item.parent a.ce-menu-item:after, .elementor-widget-ce-nav-menu.ce-nav-menu__breakpoint-mobile .ce-nav-menu-layout:not(.ce-pointer__framed) .menu-item.parent a.ce-menu-item:after, .elementor-widget-ce-nav-menu.ce-nav-menu__breakpoint-tablet .ce-nav-menu-layout:not(.ce-pointer__framed) .menu-item.parent a.ce-menu-item:before, .elementor-widget-ce-nav-menu.ce-nav-menu__breakpoint-mobile .ce-nav-menu-layout:not(.ce-pointer__framed) .menu-item.parent a.ce-menu-item:before {
		background-color: unset !important;
	}
	
	.elementor-widget-ce-nav-menu.ce-nav-menu__breakpoint-tablet .ce-pointer__framed .menu-item.parent a.ce-menu-item:before, .elementor-widget-ce-nav-menu.ce-nav-menu__breakpoint-mobile .ce-pointer__framed .menu-item.parent a.ce-menu-item:before {
		border: 0px !important;
	}
	
	.elementor-widget-ce-nav-menu.ce-nav-menu__breakpoint-tablet .ce-pointer__text .menu-item.parent a.ce-menu-item:hover {
		-webkit-transform: none !important;
		-ms-transform: none !important;
		transform: none !important;
	}
	
	.ce-pointer__text .menu-item.parent a.ce-menu-item:focus, .elementor-widget-ce-nav-menu.ce-nav-menu__breakpoint-mobile .ce-pointer__text .menu-item.parent a.ce-menu-item:hover, .ce-pointer__text .menu-item.parent a.ce-menu-item:focus {
		-webkit-transform: none !important;
		-ms-transform: none !important;
		transform: none !important;
	}
}

@media (max-width: 1023px) {
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu .ce-megamenu-wrapper {
		visibility: hidden;
		opacity: 0;
		height: 0;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu .ce-megamenu-wrapper li .sub-menu {
		visibility: hidden;
		opacity: 0;
		height: 0;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-no-megamenu.menu-item-has-children .sub-menu, .ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu .ce-megamenu-wrapper {
		box-shadow: none !important;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu__layout-horizontal .ce-nav-menu .menu-item-has-children:hover>.sub-menu {
		visibility: hidden;
		opacity: 0;
		height: 0;
	}
}

@media (min-width: 1024px) {
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu .ce-megamenu-wrapper {
		width: 100vw;
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 9999;
		visibility: hidden;
		opacity: 0;
		-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
		-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
		transition: all .3s cubic-bezier(.785, .135, .15, .86);
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu .ce-megamenu-wrapper>.sub-menu {
		margin: 0 auto;
		position: relative;
		display: flex;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu .ce-megamenu-wrapper>.sub-menu>li {
		flex: 1;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu .ce-megamenu-wrapper>.sub-menu>li .sub-arrow {
		display: none;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu .ce-megamenu-wrapper>.sub-menu>li .ce-has-submenu-container {
		padding-bottom: 12px;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu .ce-megamenu-wrapper>.sub-menu>li .ce-has-submenu-container a {
		font-weight: 500;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu .ce-megamenu-wrapper>.sub-menu>li .ce-has-submenu-container a:hover {
		background-color: inherit;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu .ce-megamenu-wrapper>.sub-menu ul {
		position: relative;
		left: 0;
		box-shadow: none;
		width: 100%;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu .ce-megamenu-wrapper>.sub-menu ul li {
		display: block;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu .ce-megamenu-wrapper>.sub-menu ul li a {
		opacity: .5;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu .ce-megamenu-wrapper>.sub-menu ul li a:hover {
		opacity: 1;
		background-color: inherit;
		color: inherit;
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu .ce-megamenu-wrapper .ce-has-submenu-container>a:hover {
		background-color: rgba(0, 0, 0, 0);
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu:hover .ce-megamenu-wrapper {
		visibility: visible;
		opacity: 1;
		-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
		-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
		transition: all .3s cubic-bezier(.785, .135, .15, .86);
	}
	
	.ce-nav-menu__breakpoint-tablet .ce-nav-menu .ce-has-megamenu:hover .ce-megamenu-wrapper ul {
		visibility: visible;
		opacity: 1;
	}
}

.ce-submenu-animation-slide_up .ce-layout-horizontal .ce-has-megamenu>.ce-megamenu-wrapper {
	-webkit-transform: translateY(20%);
	-ms-transform: translateY(20%);
	transform: translateY(20%);
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-submenu-animation-slide_up .ce-layout-horizontal .ce-has-megamenu:hover>.ce-megamenu-wrapper {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

body.ce-flyout-animating {
	-webkit-transition: all .4s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .4s cubic-bezier(.785, .135, .15, .86);
	transition: all .4s cubic-bezier(.785, .135, .15, .86);
}

.ce-flyout-inner-hudson .ce-flyout-wrapper nav {
	position: relative;
	z-index: 99;
}

@media (min-width: 1200px) {
	.ce-flyout-inner-hudson .ce-flyout-wrapper nav {
		padding-left: 100px;
	}
}

.ce-flyout-inner-hudson .ce-flyout-wrapper nav .ce-nav-menu {
	max-height: 70vh;
	overflow-y: scroll;
}

.ce-flyout-inner-hudson .ce-flyout-wrapper nav .ce-nav-menu::-webkit-scrollbar {
	display: none;
}

.ce-flyout-inner-hudson .ce-flyout-wrapper nav ul li a {
	display: inline-block;
}

.ce-flyout-inner-hudson .ce-flyout-wrapper nav ul li a span {
	padding-left: 12px;
	position: relative;
}

.ce-flyout-inner-hudson .ce-flyout-wrapper nav ul li a i {
	font-size: 24px;
	line-height: 24px;
	opacity: .5;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-flyout-inner-hudson .ce-flyout-wrapper nav ul li a:hover i {
	opacity: 1;
}

.ce-flyout-inner-hudson .ce-flyout-close {
	top: 40px;
	left: 40px;
}

@media (min-width: 1200px) {
	.ce-flyout-inner-hudson .ce-flyout-close {
		left: 75px;
	}
}

.ce-flyout-inner-hudson .ce-flyout-widget-area {
	position: absolute;
	bottom: 64px;
	display: none;
}

@media (min-width: 1200px) {
	.ce-flyout-inner-hudson .ce-flyout-widget-area {
		left: 145px;
	}
}

@media (min-width: 768px) {
	.ce-flyout-inner-hudson .ce-flyout-widget-area {
		display: block;
	}
}

.ce-flyout-inner-hudson .ce-flyout-widget-area * {
	line-height: 1;
	height: auto;
}

.ce-flyout-inner-hudson .ce-flyout-widget-area ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ce-flyout-inner-hudson .ce-flyout-widget-area ul li {
	display: inline-block;
	padding: 0 20px;
	height: 30px;
	line-height: 30px;
}

.ce-flyout-inner-hudson .ce-flyout-widget-area ul li:first-child {
	padding-left: 0px;
}

.ce-flyout-inner-hudson .ce-flyout-search-area {
	display: none;
	position: absolute;
	right: 40px;
	top: 28px;
	line-height: 38px;
	width: 50%;
	max-width: 370px;
}

@media (min-width: 768px) {
	.ce-flyout-inner-hudson .ce-flyout-search-area {
		display: block;
	}
}

.ce-flyout-inner-hudson .ce-flyout-search-area form {
	width: 100%;
}

.ce-flyout-inner-hudson .ce-flyout-search-area form i {
	position: absolute;
	right: 20px;
	top: 0;
	line-height: 58px;
	opacity: .5;
}

.ce-flyout-inner-hudson .ce-flyout-search-area input {
	border-radius: 4px;
	width: 100%;
	height: 58px;
	padding: 15px 20px;
	box-shadow: none;
	box-sizing: border-box;
}

.ce-pointer__small_underline nav>ul>li {
	position: relative;
}

.ce-pointer__small_underline nav>ul>li::before {
	content: "";
	width: 56px;
	height: 3px;
	background: #fff;
	left: 0px;
	bottom: -3px;
	position: absolute;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-pointer__small_underline nav>ul>li.current-menu-item::before, .ce-pointer__small_underline nav>ul>li:hover::before {
	width: 100%;
}

.ce-header--force-dark {
	color: #000 !important;
}

.ce-header--force-dark header nav>ul>li:before {
	background: #000 !important;
}

.ce-header--force-dark header nav>ul>li>a {
	color: #000 !important;
}

.ce-header--force-dark header .elementor-heading-title {
	color: #000 !important;
}

.ce-footer--force-dark {
	color: #000 !important;
}

.ce-footer--force-dark footer nav>ul>li:before {
	background: #000 !important;
}

.ce-footer--force-dark footer nav>ul>li>a {
	color: #000 !important;
}

.ce-footer--force-dark footer .elementor-heading-title {
	color: #000 !important;
}

@media (min-width: 1024px) {
	.ce-nav-menu.ce-text-orientation-vertical {
		transform: rotate(-90deg) translateY(-100%);
		left: 100%;
		position: absolute;
		transform-origin: 0 0;
		opacity: 0;
	}
}

@media (min-width: 1024px) {
	.fixed-size-100-section {
		position: fixed !important;
		width: 100px !important;
	}
}

@media (max-width: 991px) {
	.fixed-size-100-section {
		max-height: 116px;
	}
}

.ce-icon {
	display: inline-block;
}

.ce-cart-menu-wrap-custom {
	display: inline-block;
	line-height: 1;
}

.ce-cart-menu-wrap-custom .count {
	border-color: #75c32c;
	color: #75c32c;
	font-weight: bold;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	min-width: 2.1em;
	min-height: 2.1em;
	font-size: .86em;
	line-height: 1.8;
	border-radius: .3em .3em .3em .3em;
	border-width: 2px;
	border-style: solid;
	padding: 12px 24px;
}

.ce-cart-menu-wrap-custom .count:after {
	border-color: #75c32c;
	color: #75c32c;
}

.ce-cart-menu-wrap-default {
	display: inline-block;
	line-height: 1;
}

.ce-cart-menu-wrap-default .count {
	border-color: #75c32c;
	color: #75c32c;
	font-weight: bold;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	min-width: 2.1em;
	min-height: 2.1em;
	font-size: .86em;
	line-height: 1.8;
	border-radius: 0em 0em .3em .3em;
	border-width: 2px;
	border-style: solid;
	padding: 0 .4em;
}

.ce-cart-menu-wrap-default .count:after {
	border-color: #75c32c;
	color: #75c32c;
	bottom: 100%;
	margin-bottom: 0;
	height: .8em;
	width: .8em;
	left: 50%;
	transform: translateX(-50%);
	top: -.6em;
	content: " ";
	position: absolute;
	pointer-events: none;
	border-width: 2px;
	border-style: solid;
	border-top-left-radius: 10em;
	border-top-right-radius: 10em;
	border-bottom: 0;
}

.elementor-widget-ce-cart:not(.ce-menu-cart--show-subtotal-yes) .ce-menu-cart__toggle .elementor-button-text {
	display: none;
}

.elementor-widget-ce-cart.toggle-icon--bag-light .ce-menu-cart__toggle .elementor-button-icon i:before {
	content: "";
}

.elementor-widget-ce-cart.toggle-icon--bag-medium .ce-menu-cart__toggle .elementor-button-icon i:before {
	content: "";
}

.elementor-widget-ce-cart.toggle-icon--bag-solid .ce-menu-cart__toggle .elementor-button-icon i:before {
	content: "";
}

.ce-menu-cart__toggle .elementor-button {
	background: transparent;
	border-radius: 0;
	color: #818a91;
	border: 1px solid;
	border-color: inherit;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.ce-menu-cart__toggle .elementor-button-text {
	margin-right: .3em;
}

.ce-menu-cart__toggle .elementor-button-icon {
	position: relative;
	-webkit-transition: color .1s;
	-o-transition: color .1s;
	transition: color .1s;
}

.ce-menu-cart--items-indicator-bubble .ce-menu-cart__toggle .elementor-button-icon[data-counter]:before {
	content: attr(data-counter);
	display: block;
	position: absolute;
	min-width: 1.6em;
	height: 1.6em;
	line-height: 1.5em;
	top: -.7em;
	right: -.7em;
	border-radius: 100%;
	color: #fff;
	background-color: #d9534f;
	text-align: center;
	font-size: 10px;
}

.ce-menu-cart--items-indicator-plain .ce-menu-cart__toggle .elementor-button-icon[data-counter]:before {
	content: attr(data-counter);
	display: inline-block;
	font-weight: normal;
}

.ce-menu-cart--empty-indicator-hide .ce-menu-cart__toggle .elementor-button .elementor-button-icon[data-counter]:before {
	content: none;
	display: none;
}

.ce-menu-cart__toggle .elementor-button-icon {
	-webkit-box-ordinal-group: 16;
	-webkit-order: 15;
	-ms-flex-order: 15;
	order: 15;
}

.ce-menu-cart__toggle.elementor-button-wrapper .elementor-button {
	color: #4d4848;
}

.ce-site-logo .ce-site-logo-container {
	line-height: 1;
}

.ce-kiri-slider {
	height: 100vh;
}

.ce-kiri-slider .swiper-slide {
	overflow: hidden;
}

.admin-bar .ce-kiri-slider {
	height: calc(100vh - 32px);
}

.ce-kiri-slider .slider-wrapper {
	height: 100%;
}

.ce-kiri-slider .images-wrapper {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.ce-kiri-slider .images-wrapper .slide-img-wrapper {
	overflow: hidden;
	position: relative;
	width: 770px;
	height: 740px;
	-webkit-transition: all .4s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .4s cubic-bezier(.785, .135, .15, .86);
	transition: all .4s cubic-bezier(.785, .135, .15, .86);
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0) scale(1, 1);
	-ms-transform: translateZ(0) scale(1, 1);
	transform: translateZ(0) scale(1, 1);
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-height: 739px) {
	.ce-kiri-slider .images-wrapper .slide-img-wrapper {
		max-height: calc(100vh - 100px);
	}
}

@media (max-width: 767px) {
	.ce-kiri-slider .images-wrapper .slide-img-wrapper {
		max-height: calc(100vh - 200px);
	}
}

.ce-kiri-slider .images-wrapper .slide-img-wrapper:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0px;
	width: 100%;
	height: 100%;
	background: #000;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 1.2s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all 1.2s cubic-bezier(.785, .135, .15, .86);
	transition: all 1.2s cubic-bezier(.785, .135, .15, .86);
	opacity: 1;
}

.ce-animation-start .ce-kiri-slider .images-wrapper .slide-img-wrapper:after {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}

.ce-kiri-slider .images-wrapper .slide-img {
	opacity: 0;
	max-width: 770px;
	max-height: 740px;
	position: absolute;
	-webkit-transition: opacity .4s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: opacity .4s cubic-bezier(.785, .135, .15, .86);
	transition: opacity .4s cubic-bezier(.785, .135, .15, .86);
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-height: 739px) {
	.ce-kiri-slider .images-wrapper .slide-img {
		max-height: calc(100vh - 100px);
	}
}

@media (max-width: 767px) {
	.ce-kiri-slider .images-wrapper .slide-img {
		max-height: calc(100vh - 200px);
	}
}

.ce-kiri-slider .images-wrapper .slide-img img {
	max-width: 770px;
	max-height: 740px;
}

@media screen and (max-height: 739px) {
	.ce-kiri-slider .images-wrapper .slide-img img {
		max-height: calc(100vh - 100px);
	}
}

@media (max-width: 767px) {
	.ce-kiri-slider .images-wrapper .slide-img img {
		max-height: calc(100vh - 200px);
	}
}

.ce-kiri-slider .images-wrapper .slide-img:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
}

.ce-kiri-slider .images-wrapper .slide-img.active {
	opacity: 1;
}

.ce-kiri-slider .title-wrapper {
	position: absolute;
	left: 0;
	top: 50%;
	padding-top: 80px;
	text-align: center;
	max-height: 967px;
	height: 100%;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
	width: 100%;
	z-index: 999;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media (max-width: 991px) {
	.ce-kiri-slider .title-wrapper {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding-top: 0;
	}
}

.ce-kiri-slider .title-wrapper::-webkit-scrollbar {
	display: none;
}

.ce-kiri-slider .title-wrapper .slide-title {
	width: 100%;
	display: block;
}

@media (min-width: 768px) {
	.ce-kiri-slider .title-wrapper .slide-title {
		padding-top: 16px;
		padding-bottom: 16px;
	}
}

.ce-kiri-slider .title-wrapper .slide-title a {
	font-style: normal;
	font-weight: normal;
	font-size: 36px;
	line-height: 48px;
	text-transform: lowercase;
	color: rgba(0, 0, 0, 0);
	text-align: center;
	cursor: pointer;
	-webkit-text-stroke: 2px;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

@media (min-width: 768px) {
	.ce-kiri-slider .title-wrapper .slide-title a {
		font-size: 60px;
		line-height: 68px;
		padding-top: 16px;
		padding-bottom: 16px;
	}
}

@media (min-width: 1024px) {
	.ce-kiri-slider .title-wrapper .slide-title a {
		font-size: 120px;
		line-height: 100px;
	}
}

.ce-kiri-slider .title-wrapper .slide-title.active a {
	-webkit-text-stroke-color: rgba(0, 0, 0, 0);
}

.ce-kiri-slider .project-number {
	position: absolute;
	top: 50%;
	left: -25px;
	-webkit-transform: translateY(-50%) rotate(-90deg);
	-ms-transform: translateY(-50%) rotate(-90deg);
	transform: translateY(-50%) rotate(-90deg);
	font-size: 16px;
	line-height: 28px;
}

@media (min-width: 1024px) {
	.ce-kiri-slider .project-number {
		left: 25px;
	}
}

.ce-kiri-slider .project-number .actual {
	font-size: 36px;
	line-height: 50px;
	margin-left: 16px;
}

.ce-hudson-slider {
	height: 100vh;
	width: 100%;
	position: relative;
}

.admin-bar .ce-hudson-slider {
	height: calc(100vh - 32px);
}

.ce-hudson-slider .slider-wrapper {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 767px) {
	.ce-hudson-slider .slider-wrapper {
		flex-direction: column;
		justify-content: flex-start;
	}
}

.ce-hudson-slider .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.ce-hudson-slider .images-wrapper {
	width: 100%;
	position: relative;
}

@media (min-width: 768px) {
	.ce-hudson-slider .images-wrapper {
		flex: 1;
		height: 100%;
	}
}

@media (max-width: 767px) {
	.ce-hudson-slider .images-wrapper {
		height: 50%;
	}
}

.ce-hudson-slider .images-wrapper .slide-img {
	position: absolute;
	left: 0;
	opacity: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-hudson-slider .images-wrapper .slide-img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: relative;
}

.ce-hudson-slider .images-wrapper .slide-img video {
	object-fit: cover;
	height: 100%;
	position: relative;
}

.ce-hudson-slider .images-wrapper .slide-img.active {
	opacity: 1;
}

.ce-hudson-slider .title-wrapper {
	width: 100%;
	position: relative;
}

@media (min-width: 768px) {
	.ce-hudson-slider .title-wrapper {
		flex: 1;
		height: 100%;
	}
}

@media (max-width: 767px) {
	.ce-hudson-slider .title-wrapper {
		align-items: center;
		justify-content: center;
		text-align: center;
		order: 2;
		margin-top: 30px;
	}
}

@media (min-width: 768px) {
	.ce-hudson-slider .title-wrapper .inner {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 30px;
		width: 570px;
		max-width: 60%;
	}
}

.ce-hudson-slider .title-wrapper .slide-title a {
	font-size: 48px;
	line-height: 60px;
	font-weight: 300;
	letter-spacing: -.02em;
	padding: 4px 0;
	position: relative;
	text-transform: lowercase;
}

@media (max-height: 800px) {
	.ce-hudson-slider .title-wrapper .slide-title a {
		font-size: 36px;
		line-height: 48px;
	}
}

@media (max-width: 767px) {
	.ce-hudson-slider .title-wrapper .slide-title a {
		font-size: 24px;
		line-height: 32px;
	}
}

.ce-hudson-slider .title-wrapper .slide-title a span {
	left: 0px;
	position: relative;
	-webkit-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	transition: all .5s cubic-bezier(.785, .135, .15, .86);
}

@media (max-width: 767px) {
	.ce-hudson-slider .title-wrapper .slide-title a span {
		z-index: 999;
	}
}

.ce-hudson-slider .title-wrapper .slide-title a:before {
	content: "";
	width: 0;
	position: absolute;
	left: 0;
	bottom: 15px;
	z-index: -99;
	height: 18px;
	-webkit-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	transition: all .5s cubic-bezier(.785, .135, .15, .86);
}

@media (max-width: 767px) {
	.ce-hudson-slider .title-wrapper .slide-title a:before {
		z-index: 0;
		bottom: 4px;
	}
}

.ce-hudson-slider .title-wrapper .slide-title.active a:before {
	width: 100%;
}

.ce-hudson-slider .title-wrapper .slide-title.active a span {
	left: 10px;
}

.ce-hudson-slider .project-number {
	position: absolute;
	left: 40px;
	top: 120px;
	display: none;
	font-size: 16px;
	line-height: 28px;
}

@media (min-width: 768px) {
	.ce-hudson-slider .project-number {
		position: absolute;
		top: 50%;
		left: 0px;
		display: block;
		-webkit-transform: translateY(-50%) rotate(-90deg);
		-ms-transform: translateY(-50%) rotate(-90deg);
		transform: translateY(-50%) rotate(-90deg);
	}
}

.ce-hudson-slider .project-number .actual {
	font-size: 36px;
	line-height: 50px;
	margin-left: 16px;
}

.ce-hudson-slider .all-works {
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
	text-decoration-line: underline;
	display: block;
	text-transform: lowercase;
	margin-top: 40px;
}

@media (max-width: 767px) {
	.ce-hudson-slider .all-works {
		margin-top: 20px;
		margin-bottom: 20px;
	}
}

.ce-vjosa-slider {
	height: 100vh;
	width: 100%;
	position: relative;
}

.admin-bar .ce-vjosa-slider {
	height: calc(100vh - 32px);
}

.ce-vjosa-slider .slider-wrapper {
	height: 100%;
	width: 100%;
}

.ce-vjosa-slider .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.ce-vjosa-slider .images-wrapper {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
}

.ce-vjosa-slider .images-wrapper .slide-img {
	position: absolute;
	left: 50%;
	opacity: 0;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-vjosa-slider .images-wrapper .slide-img:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .2);
	content: "";
	z-index: 999;
}

.ce-vjosa-slider .images-wrapper .slide-img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: relative;
}

.ce-vjosa-slider .images-wrapper .slide-img video {
	object-fit: cover;
	height: 100%;
	position: relative;
}

.ce-vjosa-slider .images-wrapper .slide-img.active {
	opacity: 1;
}

@media (min-width: 992px) {
	.ce-vjosa-slider .all-works {
		position: absolute;
		right: 40px;
		top: 50%;
		line-height: 20px;
		margin-top: -10px;
	}
}

.ce-vjosa-slider .title-wrapper {
	position: absolute;
	left: 24%;
	bottom: 80px;
	right: auto;
	text-align: left;
	overflow-y: scroll;
	scroll-behavior: smooth;
	height: 525px;
	-ms-overflow-style: none;
	scrollbar-width: none;
	z-index: 999;
}

@media (max-width: 991px) {
	.ce-vjosa-slider .title-wrapper {
		left: 40px;
	}
}

@media (max-width: 991px) {
	.ce-vjosa-slider .title-wrapper {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding-top: 0;
	}
}

.ce-vjosa-slider .title-wrapper::-webkit-scrollbar {
	display: none;
}

.ce-vjosa-slider .title-wrapper .slide-title {
	width: 100%;
	display: block;
}

@media (min-width: 768px) {
	.ce-vjosa-slider .title-wrapper .slide-title {
		height: 100px;
	}
}

.ce-vjosa-slider .title-wrapper .slide-title a {
	font-style: normal;
	font-weight: 600;
	font-size: 60px;
	line-height: 68px;
	text-transform: lowercase;
	letter-spacing: -.06em;
	margin: 0;
	padding: 0;
	display: inline-block;
	color: #fff;
	text-align: center;
	cursor: pointer;
	opacity: .4;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

@media (min-width: 768px) {
	.ce-vjosa-slider .title-wrapper .slide-title a {
		font-size: 60px;
		line-height: 68px;
		padding-top: 16px;
		padding-bottom: 16px;
	}
}

@media (min-width: 1024px) {
	.ce-vjosa-slider .title-wrapper .slide-title a {
		font-size: 96px;
		line-height: 100px;
	}
}

.ce-vjosa-slider .title-wrapper .slide-title a svg {
	opacity: 0;
	margin-left: 20px;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

@media (max-width: 991px) {
	.ce-vjosa-slider .title-wrapper .slide-title a svg {
		display: none;
	}
}

.ce-vjosa-slider .title-wrapper .slide-title.active a {
	opacity: 1 !important;
}

@media (min-width: 1024px) {
	.ce-vjosa-slider .title-wrapper .slide-title.active a {
		font-size: 120px;
		line-height: 100px;
	}
}

.ce-vjosa-slider .title-wrapper .slide-title.active a svg {
	opacity: 1;
}

.ce-vjosa-slider .project-number {
	position: absolute;
	left: 40px;
	top: 120px;
	display: none;
	font-size: 16px;
	line-height: 28px;
}

@media (min-width: 768px) {
	.ce-vjosa-slider .project-number {
		position: absolute;
		top: 50%;
		left: 0px;
		display: block;
		-webkit-transform: translateY(-50%) rotate(-90deg);
		-ms-transform: translateY(-50%) rotate(-90deg);
		transform: translateY(-50%) rotate(-90deg);
	}
}

.ce-vjosa-slider .project-number .actual {
	font-size: 36px;
	line-height: 50px;
	margin-left: 16px;
}

.ce-vjosa-slider .all-works {
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
	text-decoration-line: underline;
	display: block;
	text-transform: lowercase;
}

.ce-vjosa-slider[data-actual-index="2"] .slide-title[data-id="0"] a, .ce-vjosa-slider[data-actual-index="3"] .slide-title[data-id="0"] a, .ce-vjosa-slider[data-actual-index="3"] .slide-title[data-id="1"] a, .ce-vjosa-slider[data-actual-index="4"] .slide-title[data-id="0"] a, .ce-vjosa-slider[data-actual-index="4"] .slide-title[data-id="1"] a, .ce-vjosa-slider[data-actual-index="4"] .slide-title[data-id="2"] a {
	opacity: .2;
}

.ce-vjosa-slider[data-actual-index="2"] .slide-title[data-id="4"] a, .ce-vjosa-slider[data-actual-index="1"] .slide-title[data-id="3"] a, .ce-vjosa-slider[data-actual-index="1"] .slide-title[data-id="4"] a, .ce-vjosa-slider[data-actual-index="0"] .slide-title[data-id="2"] a, .ce-vjosa-slider[data-actual-index="0"] .slide-title[data-id="3"] a, .ce-vjosa-slider[data-actual-index="0"] .slide-title[data-id="4"] a {
	opacity: .2;
}

@media (min-width: 992px) {
	.ce-vjosa-slider[data-slider-layout="vertical_boxed"] .slide-img {
		max-width: 1170px;
		max-height: 658px;
	}
}

.ce-tapi-slider.swiper-container {
	height: 90vh;
	z-index: 9999;
	z-index: 9999;
	overflow: visible;
	background: #000;
}

.ce-tapi-slider.swiper-container:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .9);
}

.ce-tapi-slider.swiper-container .slide-wrapper {
	width: 1170px;
	max-width: 80%;
	position: absolute;
	bottom: -120px;
	left: 50%;
	height: 920px;
	max-height: 90vh;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 99999;
}

.ce-tapi-slider.swiper-container .slide-wrapper .image {
	height: 100%;
	max-height: 90vh;
	width: 770px;
	margin: 0 auto;
	max-width: 100%;
	position: relative;
}

.ce-tapi-slider.swiper-container .slide-wrapper .image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: relative;
}

.ce-tapi-slider.swiper-container .slide-wrapper .image:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .2);
	z-index: 9;
}

.ce-tapi-slider.swiper-container .slide-wrapper .content {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 999;
}

.ce-tapi-slider.swiper-container .slide-wrapper .content h2 {
	font-size: 180px;
	line-height: 140px;
	text-align: center;
	letter-spacing: -.04em;
	color: #fff;
}

.ce-tapi-slider.swiper-container .slide-wrapper .content p {
	margin: 0;
	padding: 0;
}

.ce-tapi-slider.swiper-container .slide-wrapper .content .button {
	background: #000;
	border-radius: 34px;
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
	color: #fff;
	flex: none;
	order: 0;
	align-self: center;
	margin-top: 80px;
	padding: 20px 25px;
	align-items: center;
	-webkit-transition: width .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: width .3s cubic-bezier(.785, .135, .15, .86);
	transition: width .3s cubic-bezier(.785, .135, .15, .86);
	position: relative;
}

.ce-tapi-slider.swiper-container .slide-wrapper .content .button i {
	display: inline-block;
	margin-left: 8px;
	-webkit-transform: translateX(2px);
	-ms-transform: translateX(2px);
	transform: translateX(2px);
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
	opacity: 0;
	position: absolute;
}

.ce-tapi-slider.swiper-container .slide-wrapper .content .button span {
	padding-right: 0;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
	position: relative;
}

.ce-tapi-slider.swiper-container .slide-wrapper .content .button span:before {
	content: "";
	position: absolute;
	opacity: 0;
	right: 0;
	font-family: feather;
	transition: .5s;
	color: #fff;
}

.ce-tapi-slider.swiper-container .slide-wrapper .content .button:hover span {
	padding-right: 24px;
}

.ce-tapi-slider.swiper-container .slide-wrapper .content .button:hover span:before {
	opacity: 1;
	right: 0;
}

.ce-lana-slider .slide-wrapper {
	height: 100vh;
	width: 100%;
}

.admin-bar .ce-lana-slider .slide-wrapper {
	height: calc(100vh - 32px);
}

.ce-lana-slider .slide-wrapper .image-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) scale(.8, .8);
	-ms-transform: translate(-50%, -50%) scale(.8, .8);
	transform: translate(-50%, -50%) scale(.8, .8);
	-webkit-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	transition: all .5s cubic-bezier(.785, .135, .15, .86);
	width: 1170px;
	height: 705px;
	max-height: 100%;
	max-width: 80%;
	opacity: 0;
}

.ce-lana-slider .slide-wrapper .image-wrapper img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: relative;
}

.ce-lana-slider .slide-wrapper .image-wrapper .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .2);
}

.ce-lana-slider .slide-wrapper .title {
	z-index: 999;
}

@media (min-width: 1200px) {
	.ce-lana-slider .slide-wrapper .title {
		position: absolute;
		left: 75px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

.ce-lana-slider .slide-wrapper .title h2 {
	font-size: 160px;
	line-height: 140px;
	font-weight: 500;
	letter-spacing: -.04em;
	word-break: break-word;
	max-width: 760px;
	opacity: 0;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	transition: all .5s cubic-bezier(.785, .135, .15, .86);
	transition-delay: .3s;
}

@media (max-width: 768px) {
	.ce-lana-slider .slide-wrapper .title h2 {
		font-size: 48px;
		line-height: 60px;
	}
}

.ce-lana-slider .slide-wrapper .title h2 a {
	color: #fff;
}

.ce-lana-slider .slide-wrapper .title h2 a:hover {
	color: #fff !important;
}

.ce-lana-slider .slide-wrapper .desc {
	font-size: 20px;
	line-height: 32px;
	opacity: 0;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	transition: all .5s cubic-bezier(.785, .135, .15, .86);
	transition-delay: .6s;
}

@media (min-width: 1200px) {
	.ce-lana-slider .slide-wrapper .desc {
		position: absolute;
		bottom: 100px;
		right: 275px;
		width: 370px;
	}
}

.ce-lana-slider .slide-wrapper .desc p {
	margin: 0;
	color: #fff;
}

.ce-lana-slider .project-number {
	font-weight: 500;
	font-size: 36px;
	line-height: 42px;
	color: #fff;
	text-align: right;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
	z-index: 999;
}

@media (min-width: 1200px) {
	.ce-lana-slider .project-number {
		position: absolute;
		bottom: 40px;
		right: 75px;
	}
}

@media (max-width: 1199px) {
	.ce-lana-slider .project-number {
		position: absolute;
		bottom: 15px;
		right: 15px;
	}
}

.ce-lana-slider .project-number .text {
	display: block;
}

.ce-lana-slider .navigation {
	position: absolute;
	font-weight: 500;
	font-size: 36px;
	line-height: 42px;
	text-align: right;
	z-index: 999;
}

@media (min-width: 1200px) {
	.ce-lana-slider .navigation {
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 75px;
	}
}

@media (max-width: 1199px) {
	.ce-lana-slider .navigation {
		position: absolute;
		bottom: 15px;
		left: 15px;
		text-align: left !important;
	}
}

.ce-lana-slider .navigation a {
	display: block;
	color: #fff;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-lana-slider--skin-dark .ce-lana-slider .desc p {
	color: #000;
}

.ce-lana-slider--skin-dark .ce-lana-slider .title h2 a {
	color: #000;
}

.ce-lana-slider--skin-dark .ce-lana-slider .title h2 a:hover {
	color: #000 !important;
}

.ce-lana-slider--skin-dark .ce-lana-slider .image-wrapper .overlay {
	background: rgba(255, 255, 255, .2);
}

.ce-lana-slider--skin-dark .ce-lana-slider .project-number {
	color: #000;
}

.ce-lana-slider--skin-dark .ce-lana-slider .navigation a {
	color: #000;
}

.ce-lana-slider .swiper-slide.start-anim .title h2 {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.ce-lana-slider .swiper-slide.start-anim .image-wrapper {
	opacity: 1;
	-webkit-transform: translate(-50%, -50%) scale(1, 1);
	-ms-transform: translate(-50%, -50%) scale(1, 1);
	transform: translate(-50%, -50%) scale(1, 1);
}

.ce-lana-slider .swiper-slide.start-anim .desc {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

@media (max-width: 1199px) {
	.ce-lana-slider .content-wrapper {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 60px;
		text-align: center;
	}
	
	.ce-lana-slider .content-wrapper h2 p {
		padding: 0;
		margin: 0;
	}
	
	.ce-lana-slider .content-wrapper .desc {
		margin-top: 20px;
	}
}

.ce-banas-slider {
	background-color: #000;
}

.ce-banas-slider .cl-slide {
	height: 100vh;
	width: 100%;
}

.admin-bar .ce-banas-slider .cl-slide {
	height: calc(100vh - 32px);
}

.ce-banas-slider .cl-slide .image-wrapper {
	position: absolute;
	top: 50%;
	right: 20%;
	-webkit-transform: translateY(-50%) scale(.8, .8);
	-ms-transform: translateY(-50%) scale(.8, .8);
	transform: translateY(-50%) scale(.8, .8);
	-webkit-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	transition: all .5s cubic-bezier(.785, .135, .15, .86);
}

@media (max-width: 991px) {
	.ce-banas-slider .cl-slide .image-wrapper {
		right: auto;
		left: 30%;
	}
}

@media (max-width: 767px) {
	.ce-banas-slider .cl-slide .image-wrapper {
		right: auto;
		left: 0%;
	}
}

.ce-banas-slider .cl-slide .image-wrapper img {
	max-width: 970px;
	max-height: 645px;
}

.ce-banas-slider .cl-slide .image-wrapper .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.ce-banas-slider .cl-slide .content {
	position: absolute;
	left: 20%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 999;
}

@media (max-width: 991px) {
	.ce-banas-slider .cl-slide .content {
		left: 10%;
		width: 90%;
	}
}

.ce-banas-slider .cl-slide .content h2 {
	font-weight: 500;
	font-size: 120px;
	line-height: 100px;
	letter-spacing: -.02em;
	word-break: break-word;
	max-width: 770px;
	opacity: 0;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	transition: all .5s cubic-bezier(.785, .135, .15, .86);
	transition-delay: .2s;
}

@media (max-width: 767px) {
	.ce-banas-slider .cl-slide .content h2 {
		font-size: 54px;
		line-height: 68px;
	}
}

.ce-banas-slider .cl-slide .content h2 a {
	color: #fff;
}

.ce-banas-slider .cl-slide .content h2 a:hover {
	color: inherit;
}

.ce-banas-slider .cl-slide .content .view-project {
	margin-top: 64px;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: rgba(255, 255, 255, .8);
	text-shadow: 0px 10px 20px rgba(0, 0, 0, .1);
	display: block;
	opacity: 0;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	transition: all .5s cubic-bezier(.785, .135, .15, .86);
	transition-delay: .8s;
}

.ce-banas-slider .cl-slide .content .view-project:hover {
	color: #fff !important;
}

.ce-banas-slider .cl-slide .content .view-project i {
	margin-left: 5px;
}

.ce-banas-slider .cl-slide .content .view-project svg {
	margin-left: 5px;
}

.ce-banas-slider .cl-slide .desc {
	max-width: 370px;
	font-weight: normal;
	font-size: 16px;
	line-height: 26px;
	margin-top: 40px;
	color: #fff;
	text-shadow: 0px 10px 20px rgba(0, 0, 0, .1);
	opacity: 0;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .5s cubic-bezier(.785, .135, .15, .86);
	transition: all .5s cubic-bezier(.785, .135, .15, .86);
	transition-delay: .4s;
}

.ce-banas-slider .cl-slide .desc p {
	margin: 0;
	color: #fff;
}

.ce-banas-slider .swiper-slide.start-anim .content h2 {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.ce-banas-slider .swiper-slide.start-anim .image-wrapper {
	opacity: 1;
	-webkit-transform: translateY(-50%) scale(1, 1);
	-ms-transform: translateY(-50%) scale(1, 1);
	transform: translateY(-50%) scale(1, 1);
}

.ce-banas-slider .swiper-slide.start-anim .content .desc {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.ce-banas-slider .swiper-slide.start-anim .content .view-project {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.ce-banas-slider .scroll {
	position: absolute;
	top: 50%;
	left: 75px;
	height: 80px;
	width: 36px;
	z-index: 9999;
	opacity: 1;
	-webkit-transition: opacity .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: opacity .3s cubic-bezier(.785, .135, .15, .86);
	transition: opacity .3s cubic-bezier(.785, .135, .15, .86);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media (max-width: 991px) {
	.ce-banas-slider .scroll {
		display: none;
	}
}

.ce-banas-slider .scroll span {
	font-size: 16px;
	line-height: 28px;
	width: 36px;
	color: #fff;
	position: absolute;
	text-align: center;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.ce-banas-slider .scroll svg {
	position: absolute;
	bottom: -4px;
	right: 10px;
}

.ce-banas-slider .pagination {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(90deg);
	-ms-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
	color: #fff;
	z-index: 999;
	right: 0px;
	width: 484px;
	overflow: hidden;
}

@media (max-width: 991px) {
	.ce-banas-slider .pagination {
		display: none;
	}
}

.ce-banas-slider .pagination a {
	font-size: 20px;
	line-height: 32px;
	background: none;
	color: #fff;
	opacity: .5;
	text-shadow: 0px 10px 20px rgba(0, 0, 0, .1);
	position: relative;
	margin: 0 65px;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-banas-slider .pagination a:hover {
	opacity: 1;
}

.ce-banas-slider .pagination a:before {
	content: "";
	height: 2px;
	top: 12px;
	position: absolute;
	left: -30px;
	background: #fff;
	opacity: .5;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-banas-slider .pagination a.current {
	opacity: 1;
}

.ce-banas-slider .pagination a.current:before {
	width: 20px;
}

.ce-banas-slider .pagination a.next:before {
	width: 40px;
	left: -50px;
}

.ce-beas-slider .content {
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 28px;
	padding-left: 30px;
	padding-right: 40px;
	letter-spacing: -.02em;
	color: #fff;
	text-shadow: 0px 10px 20px rgba(0, 0, 0, .1);
	position: absolute;
	top: 0;
	left: 0;
}

@media (min-width: 1024px) {
	.ce-beas-slider .content {
		font-size: 48px;
		line-height: 60px;
		padding-left: 100px;
		padding-right: 200px;
	}
}

.ce-beas-slider .content p {
	margin: 0;
	padding: 0;
}

.ce-beas-slider .image {
	padding-top: 60px;
}

@media (min-width: 1024px) {
	.ce-beas-slider .image {
		padding-top: 150px;
	}
}

.ce-pao-slider .image {
	height: 100vh;
	width: 100%;
}

.ce-pao-slider .image img {
	object-fit: cover;
	position: relative;
	width: 100%;
	height: 100%;
}

.ce-pao-slider .content {
	position: absolute;
	width: 100%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
}

@media (max-width: 1023px) {
	.ce-pao-slider .content {
		left: 50%;
		-webkit-transform: translate3d(-50%, -50%, 0);
		-ms-transform: translate3d(-50%, -50%, 0);
		transform: translate3d(-50%, -50%, 0);
		width: auto;
	}
}

.ce-pao-slider .content h2 {
	font-size: 48px;
	line-height: 60px;
	letter-spacing: -.04em;
}

.ce-pao-slider .content h2 p {
	margin: 0;
	padding: 0;
}

.ce-pao-slider .content .desc {
	padding: 0;
	margin-top: 8px;
	margin-bottom: 32px;
}

.ce-pao-slider .content .button {
	display: inline-block;
	padding: 20px 25px;
	background: #fff;
	border-radius: 34px;
}

.ce-pao-slider .content .button i {
	margin-left: 8px;
}

.ce-pao-slider .swiper-button-prev {
	color: #000;
	background: none !important;
	left: 75px !important;
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	width: 60px;
}

.ce-pao-slider .swiper-button-prev i {
	margin-right: 8px;
}

.ce-pao-slider .swiper-button-prev:after {
	display: none;
}

.ce-pao-slider .swiper-button-prev .wrapper {
	position: relative;
}

.ce-pao-slider .swiper-button-prev .text {
	display: flex;
	align-items: center;
	font-weight: 500;
	z-index: 9999;
	position: relative;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-pao-slider .swiper-button-prev .image {
	width: 200px;
	height: 200px;
	position: absolute;
	margin-top: -100px;
	top: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	transform: scale(.65);
	left: -175px;
	right: auto;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-pao-slider .swiper-button-prev:hover .text {
	-webkit-transform: translateX(-30px);
	-ms-transform: translateX(-30px);
	transform: translateX(-30px);
}

.ce-pao-slider .swiper-button-prev:hover .image {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	left: -150px;
}

.ce-pao-slider .swiper-button-next {
	color: #000;
	background: none !important;
	right: 75px !important;
	width: 60px;
}

.ce-pao-slider .swiper-button-next i {
	margin-left: 8px;
}

.ce-pao-slider .swiper-button-next:after {
	display: none;
}

.ce-pao-slider .swiper-button-next .wrapper {
	position: relative;
}

.ce-pao-slider .swiper-button-next .text {
	display: flex;
	align-items: center;
	font-weight: 500;
	z-index: 9999;
	position: relative;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-pao-slider .swiper-button-next .image {
	width: 200px;
	height: 200px;
	position: absolute;
	margin-top: -100px;
	right: 0;
	right: -175px;
	top: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	transform: scale(.65);
	left: auto;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-pao-slider .swiper-button-next:hover .text {
	-webkit-transform: translateX(30px);
	-ms-transform: translateX(30px);
	transform: translateX(30px);
}

.ce-pao-slider .swiper-button-next:hover .image {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	right: -150px;
}

.ce-pao-slider .cl-slider-nav:focus {
	outline: none !important;
}

@media (max-width: 767px) {
	.ce-pao-slider .cl-slider-nav {
		display: none;
	}
}

.ce-portfolio-style-beas .ce-portfolio-item {
	text-align: left;
	position: relative;
}

.ce-portfolio-style-beas .ce-portfolio-item h3 {
	font-size: 20px;
	line-height: 32px;
	color: #fff;
}

.ce-portfolio-style-beas .ce-portfolio-item .entry-media {
	position: relative;
}

.ce-portfolio-style-beas .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.ce-portfolio-style-beas .entry-media {
	display: block;
}

.ce-portfolio-style-beas .portfolio-categories {
	text-align: left;
}

.ce-portfolio-style-beas .entry-wrapper-content {
	padding: 0 20px;
	display: block;
	position: relative;
	max-width: 570px;
	margin: 0 auto;
	width: 100%;
	left: 0;
	margin-top: -58px;
	z-index: 9999;
}

.ce-portfolio-style-beas .entry-wrapper-content .entry-content {
	background: #000;
	padding: 32px 30px;
	height: 116px;
}

.ce-portfolio-style-beas .entry-wrapper-content .entry-content h5 {
	color: #fff;
}

.ce-portfolio-style-beas .entry-wrapper-content .entry-content h6 {
	color: #fff;
}

.ce-portfolio-style-beas.ce-portfolio-carousel[data-center="1"] .ce-portfolio-item .grid-holder {
	display: flex;
}

@media (min-width: 1024px) {
	.ce-portfolio-style-beas.ce-portfolio-carousel[data-center="1"] .ce-portfolio-item .grid-holder {
		min-height: 630px;
		align-items: flex-end;
	}
}

.ce-portfolio-style-beas.ce-portfolio-carousel[data-center="1"] .ce-portfolio-item .grid-holder-inner {
	display: inline-block;
	margin: 0 auto;
	max-width: 100%;
}

@media (min-width: 1024px) {
	.ce-portfolio-style-beas.ce-portfolio-carousel[data-center="1"] .ce-portfolio-item .entry-content {
		opacity: 0;
		-webkit-transform: translateY(10px);
		-ms-transform: translateY(10px);
		transform: translateY(10px);
		-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
		-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
		transition: all .3s cubic-bezier(.785, .135, .15, .86);
	}
}

.ce-portfolio-style-beas.ce-portfolio-carousel[data-center="1"] .ce-portfolio-item .entry-media {
	position: relative;
	overflow: hidden;
}

.ce-portfolio-style-beas.ce-portfolio-carousel[data-center="1"] .ce-portfolio-item .post-thumbnail {
	position: relative;
	overflow: hidden;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

@media (min-width: 1024px) {
	.ce-portfolio-style-beas.ce-portfolio-carousel[data-center="1"] .ce-portfolio-item .post-thumbnail {
		width: 570px;
		height: 380px;
		max-width: 100%;
	}
}

.ce-portfolio-style-beas.ce-portfolio-carousel[data-center="1"] .ce-portfolio-item .post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
}

.ce-portfolio-style-beas.ce-portfolio-carousel[data-center="1"] .ce-portfolio-item.centered .entry-content {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}

@media (min-width: 1024px) {
	.ce-portfolio-style-beas.ce-portfolio-carousel[data-center="1"] .ce-portfolio-item.centered .post-thumbnail {
		width: 770px;
		height: 514px;
	}
}

.ce-portfolio-style-beas.ce-portfolio-carousel[data-center="1"] .ce-portfolio-item .ce-portfolio-carousel-controls {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 30px;
	color: #fff;
}

.ce-portfolio-style-beas.ce-portfolio-carousel[data-center="1"] .ce-portfolio-item .ce-portfolio-carousel-controls a {
	padding: 0 8px;
}

.ce-portfolio-style-beas.ce-portfolio-carousel[data-center="1"] .ce-portfolio-item .ce-portfolio-carousel-controls a.ce-next {
	padding-right: 0px;
}

@media (min-width: 767px) and (max-width: 1023px) {
	.ce-portfolio-style-beas.ce-portfolio-carousel[data-center="1"] .ce-portfolio-item .ce-portfolio-carousel-controls {
		display: none;
	}
}

.ce-portfolio-style-jasper .ce-portfolio-item .entry-media .post-thumbnail {
	display: inline-block;
	position: relative;
}

@media (max-width: 991px) {
	.ce-portfolio-style-jasper .ce-portfolio-item .entry-media .post-thumbnail {
		width: 100%;
	}
	
	.ce-portfolio-style-jasper .ce-portfolio-item .entry-media .post-thumbnail img {
		max-width: none;
		width: 100%;
	}
}

.ce-portfolio-style-jasper .ce-portfolio-item .entry-media .post-thumbnail h5 {
	position: absolute;
	bottom: 37px;
	left: 0;
	width: 100%;
	font-size: 48px;
	font-weight: 400;
	line-height: 60px;
	letter-spacing: -.04em;
}

.ce-portfolio-style-jasper .ce-portfolio-item .entry-media .post-thumbnail h6 {
	margin-top: 12px;
}

.ce-portfolio-style-jasper .ce-portfolio-item .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.ce-portfolio-style-ishmi .entry-media {
	position: relative;
}

.ce-portfolio-style-ishmi .entry-media .post-thumbnail {
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.ce-portfolio-style-ishmi .entry-media .post-thumbnail .wrapper {
	-webkit-transform: translate(0, 100%) scale(1);
	-ms-transform: translate(0, 100%) scale(1);
	transform: translate(0, 100%) scale(1);
	-webkit-transition: all 1s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all 1s cubic-bezier(.785, .135, .15, .86);
	transition: all 1s cubic-bezier(.785, .135, .15, .86);
	overflow: hidden;
}

.ce-portfolio-style-ishmi .entry-media .post-thumbnail:before {
	content: "";
	background: #f8ded2;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.ce-portfolio-style-ishmi .entry-media img {
	margin: 0px;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 1s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all 1s cubic-bezier(.785, .135, .15, .86);
	transition: all 1s cubic-bezier(.785, .135, .15, .86);
}

.ce-portfolio-style-ishmi .ce-portfolio-item:hover .post-thumbnail .wrapper {
	-webkit-transform: scale(var(--image-ratio-x), var(--image-ratio-y));
	-ms-transform: scale(var(--image-ratio-x), var(--image-ratio-y));
	transform: scale(var(--image-ratio-x), var(--image-ratio-y));
}

.ce-portfolio-style-ishmi .ce-portfolio-item:hover .post-thumbnail .wrapper img {
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
}

.ce-portfolio-style-ishmi .ce-portfolio-item.ce-animation-start .post-thumbnail:before {
	-webkit-transform: translate(0, 0%);
	-ms-transform: translate(0, 0%);
	transform: translate(0, 0%);
}

.ce-portfolio-style-ishmi .ce-portfolio-item.ce-animation-start .wrapper {
	-webkit-transform: translate(0, 0) scale(1);
	-ms-transform: translate(0, 0) scale(1);
	transform: translate(0, 0) scale(1);
}

.ce-portfolio-style-ishmi .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.ce-portfolio-style-ishmi .data {
	margin-top: 64px;
	display: flex;
	max-width: 300px;
	justify-content: space-between;
	font-weight: 500;
	font-size: 14px;
	line-height: 24px;
}

.ce-portfolio-style-ishmi .data .categories {
	padding-left: 30px;
	text-transform: uppercase;
}

.ce-portfolio-style-ishmi .title {
	position: relative;
	display: flex;
	align-items: center;
	height: 100px;
	margin-top: 24px;
}

.ce-portfolio-style-ishmi .title .number {
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 100;
	font-size: 120px;
	line-height: 100px;
	letter-spacing: -.04em;
	color: #fff;
	z-index: 0;
}

.ce-portfolio-style-ishmi .title a {
	position: relative;
	z-index: 9;
}

.ce-portfolio-style-ishmi.ce-portfolio-predefined--block_2 .ce-portfolio-item:nth-child(9n+8) .title {
	margin-left: 100px;
}

.ce-portfolio-style-ishmi.ce-portfolio-predefined--block_2 .ce-portfolio-item:nth-child(3n+3) .grid-holder-inner .entry-wrapper-content .title {
	margin-left: 70px;
}

.ce-portfolio-style-ishmi .ce-animation .entry-content {
	-webkit-transform: translate(0, 30px);
	-ms-transform: translate(0, 30px);
	transform: translate(0, 30px);
	opacity: 0;
	-webkit-transition: all .4s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .4s cubic-bezier(.785, .135, .15, .86);
	transition: all .4s cubic-bezier(.785, .135, .15, .86);
	animation-delay: .6s;
}

.ce-portfolio-style-ishmi .ce-animation.ce-animation-start .entry-content {
	-webkit-transform: translate(0, 0px);
	-ms-transform: translate(0, 0px);
	transform: translate(0, 0px);
	opacity: 1;
}

.ce-portfolio-style-amber .portfolio-title {
	margin-top: 24px;
}

.ce-portfolio-style-amber .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.ce-portfolio-style-amber .portfolio-categories {
	margin-top: 8px;
}

.ce-portfolio-style-amber .entry-media {
	position: relative;
}

.ce-portfolio-style-amber .post-thumbnail {
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.ce-portfolio-style-amber .post-thumbnail .wrapper {
	-webkit-transform: translate(0, 100%) scale(1);
	-ms-transform: translate(0, 100%) scale(1);
	transform: translate(0, 100%) scale(1);
	-webkit-transition: all 1s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all 1s cubic-bezier(.785, .135, .15, .86);
	transition: all 1s cubic-bezier(.785, .135, .15, .86);
	overflow: hidden;
}

.ce-portfolio-style-amber .post-thumbnail:before {
	content: "";
	background: #f8ded2;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.ce-portfolio-style-amber .post-thumbnail img {
	margin: 0px;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 1s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all 1s cubic-bezier(.785, .135, .15, .86);
	transition: all 1s cubic-bezier(.785, .135, .15, .86);
}

.ce-portfolio-style-amber .ce-portfolio-item:hover .post-thumbnail .wrapper {
	-webkit-transform: scale(var(--image-ratio-x), var(--image-ratio-y));
	-ms-transform: scale(var(--image-ratio-x), var(--image-ratio-y));
	transform: scale(var(--image-ratio-x), var(--image-ratio-y));
}

.ce-portfolio-style-amber .ce-portfolio-item:hover .post-thumbnail .wrapper img {
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
}

.ce-portfolio-style-amber .ce-portfolio-item.ce-animation-start .post-thumbnail:before {
	-webkit-transform: translate(0, 0%);
	-ms-transform: translate(0, 0%);
	transform: translate(0, 0%);
}

.ce-portfolio-style-amber .ce-portfolio-item.ce-animation-start .wrapper {
	-webkit-transform: translate(0, 0) scale(1);
	-ms-transform: translate(0, 0) scale(1);
	transform: translate(0, 0) scale(1);
}

.ce-portfolio-style-erzen .entry-wrapper-content {
	display: none;
}

.ce-portfolio-style-erzen .post-thumbnail {
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.ce-portfolio-style-erzen .post-thumbnail .wrapper {
	-webkit-transform: translate(0, 100%) scale(1);
	-ms-transform: translate(0, 100%) scale(1);
	transform: translate(0, 100%) scale(1);
	-webkit-transition: all 1s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all 1s cubic-bezier(.785, .135, .15, .86);
	transition: all 1s cubic-bezier(.785, .135, .15, .86);
	overflow: hidden;
}

.ce-portfolio-style-erzen .post-thumbnail:before {
	content: "";
	background: #f8ded2;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.ce-portfolio-style-erzen .post-thumbnail img {
	margin: 0px;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 1s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all 1s cubic-bezier(.785, .135, .15, .86);
	transition: all 1s cubic-bezier(.785, .135, .15, .86);
}

.ce-portfolio-style-erzen .ce-portfolio-item:hover .post-thumbnail .wrapper {
	-webkit-transform: scale(var(--image-ratio-x), var(--image-ratio-y));
	-ms-transform: scale(var(--image-ratio-x), var(--image-ratio-y));
	transform: scale(var(--image-ratio-x), var(--image-ratio-y));
}

.ce-portfolio-style-erzen .ce-portfolio-item:hover .post-thumbnail .wrapper img {
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
}

.ce-portfolio-style-erzen .ce-portfolio-item.ce-animation-start .post-thumbnail:before {
	-webkit-transform: translate(0, 0%);
	-ms-transform: translate(0, 0%);
	transform: translate(0, 0%);
}

.ce-portfolio-style-erzen .ce-portfolio-item.ce-animation-start .wrapper {
	-webkit-transform: translate(0, 0) scale(1);
	-ms-transform: translate(0, 0) scale(1);
	transform: translate(0, 0) scale(1);
}

.ce-portfolio-style-erzen .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

@media (max-width: 991px) {
	.ce-portfolio-style-erzen .grid-holder {
		width: 100%;
		display: flex;
		justify-content: center;
	}
}

body.ce-portfolio-follow-erzen .ce-fixed-follow .portfolio-title {
	font-weight: 500;
	font-size: 32px;
	line-height: 36px;
	letter-spacing: 0;
	text-shadow: 0px 10px 20px rgba(0, 0, 0, .1);
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	opacity: 0;
}

body.ce-portfolio-follow-erzen .ce-fixed-follow.is-active .portfolio-title {
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
	transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity .5s cubic-bezier(.165, .84, .44, 1);
}

body.ce-portfolio-follow-erzen .ce-fixed-follow .portfolio-categories {
	font-weight: 500;
	font-size: 16px;
	line-height: 16px;
	margin-top: 8px;
	letter-spacing: 0;
	text-transform: uppercase;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	opacity: 0;
}

body.ce-portfolio-follow-erzen .ce-fixed-follow .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

body.ce-portfolio-follow-erzen .ce-fixed-follow.is-active .portfolio-categories {
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
	transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity .5s cubic-bezier(.165, .84, .44, 1) .25ms;
}

.ce-portfolio-style-alder {
	position: relative;
	margin-bottom: 0px;
}

.ce-portfolio-style-alder .inner-box {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, .05);
}

.ce-portfolio-style-alder .inner-box .image {
	position: relative;
}

.ce-portfolio-style-alder .inner-box .image img {
	position: relative;
	width: 100%;
	display: block;
}

.ce-portfolio-style-alder .inner-box .image .overlay-box {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: block;
	padding: 20px 20px;
	text-align: center;
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease;
	opacity: 0;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
}

.ce-portfolio-style-alder .inner-box .image .overlay-box:before {
	position: absolute;
	content: "";
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	opacity: .5;
	display: block;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	background-color: rgba(29, 43, 54, .5);
}

.ce-portfolio-style-alder .inner-box .image .overlay-box .overlay-inner {
	position: relative;
	height: 100%;
}

.ce-portfolio-style-alder .inner-box .image .overlay-box .overlay-inner i:before {
	font-size: 30px;
	color: #fff;
}

.ce-portfolio-style-alder .inner-box .image .overlay-box h6 {
	font-size: 18px;
	position: absolute;
	left: 0px;
	bottom: 0px;
	right: 0px;
	color: #fff;
	font-weight: 500;
	line-height: 1.3em;
}

.ce-portfolio-style-alder .inner-box .image .overlay-box h6 a {
	position: relative;
	color: #fff;
}

.ce-portfolio-style-alder .inner-box .image .overlay-box .plus {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -12px;
	margin-top: -12px;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

.ce-portfolio-style-alder .inner-box:hover .image .overlay-box {
	opacity: 1;
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
}

.ce-portfolio-style-simple h4 {
	margin-top: 16px;
}

.ce-portfolio-style-simple .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.ce-portfolio-style-remake .post-thumbnail {
	box-shadow: 0px 10px 20px rgba(0, 0, 0, .02);
	border-radius: 10px;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-portfolio-style-remake .post-thumbnail img {
	border-radius: 10px;
}

.ce-portfolio-style-remake .entry-media {
	position: relative;
}

.ce-portfolio-style-remake .overlay {
	background: rgba(255, 255, 255, .8);
	border-radius: 10px;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-portfolio-style-remake .overlay a {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
}

.ce-portfolio-style-remake .overlay a svg {
	margin-top: 2px;
	margin-left: 8px;
}

.ce-portfolio-style-remake .ce-portfolio-item:hover .post-thumbnail {
	box-shadow: 0px 20px 40px rgba(0, 0, 0, .05);
}

.ce-portfolio-style-remake .ce-portfolio-item:hover .overlay {
	opacity: 1;
}

.ce-portfolio-style-remake .entry-wrapper-content {
	margin-top: 40px;
}

.ce-portfolio-style-remake .entry-wrapper-content .entry-content {
	display: flex;
}

.ce-portfolio-style-remake .entry-wrapper-content h6 {
	font-size: 16px;
	line-height: 28px;
	color: #000;
	opacity: .5;
	text-transform: capitalize;
	letter-spacing: 0;
	font-weight: 400;
	width: 100px;
}

.ce-portfolio-style-remake .entry-wrapper-content h3 {
	font-size: 36px;
	line-height: 48px;
	letter-spacing: -.04em;
	color: #000;
}

.ce-portfolio-style-remake #ce-portfolio-item-2674 .overlay, .ce-portfolio-style-remake #ce-portfolio-item-2677 .overlay, .ce-portfolio-style-remake #ce-portfolio-item-2676 .overlay, .ce-portfolio-style-remake #ce-portfolio-item-2673 .overlay {
	background: rgba(0, 0, 0, .8);
}

.ce-portfolio-style-remake #ce-portfolio-item-2674 .overlay a, .ce-portfolio-style-remake #ce-portfolio-item-2677 .overlay a, .ce-portfolio-style-remake #ce-portfolio-item-2676 .overlay a, .ce-portfolio-style-remake #ce-portfolio-item-2673 .overlay a {
	color: #fff;
}

.ce-portfolio-style-remake #ce-portfolio-item-2674 .overlay svg, .ce-portfolio-style-remake #ce-portfolio-item-2677 .overlay svg, .ce-portfolio-style-remake #ce-portfolio-item-2676 .overlay svg, .ce-portfolio-style-remake #ce-portfolio-item-2673 .overlay svg {
	fill: #fff;
	stroke: #fff;
}

.ce-portfolio-grid .ce-portfolio-item {
	width: 100%;
}

@media (min-width: 1024px) {
	.ce-portfolio-grid[data-columns="2"] .ce-portfolio-item {
		width: 50%;
	}
	
	.ce-portfolio-grid[data-columns="3"] .ce-portfolio-item {
		width: calc(100% / 3);
	}
	
	.ce-portfolio-grid[data-columns="4"] .ce-portfolio-item {
		width: 25%;
	}
	
	.ce-portfolio-grid[data-columns="5"] .ce-portfolio-item {
		width: 20%;
	}
}

.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_1 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	overflow: hidden;
}

.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_1 .ce-portfolio-item {
	width: 100%;
}

@media (min-width: 1024px) {
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_1 .ce-portfolio-item {
		width: calc(100% / 3);
	}
}

@media (max-width: 1024px) {
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_1 .ce-portfolio-item .entry-media {
		display: flex;
		justify-content: center;
	}
}

@media (max-width: 991px) {
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_1 .ce-portfolio-item {
		padding: 30px 0;
	}
}

@media (min-width: 1200px) {
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_1 .ce-portfolio-item {
		padding: 0px 15px;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_1 .ce-portfolio-item .entry-media {
		display: flex;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_1 .ce-portfolio-item:nth-child(3) .entry-media {
		justify-content: flex-end;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_1 .ce-portfolio-item:nth-child(5) .post-thumbnail {
		left: 100px;
	}
}

@media (max-width: 991px) {
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_1 .ce-portfolio-item.rellax {
		transform: translate3d(0, 0, 0) !important;
	}
}

.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_1[data-parallax="1"] {
	padding-top: 100px;
	padding-bottom: 100px;
}

@media (min-width: 1024px) {
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_2 {
		display: grid;
		grid-template-columns: repeat(16, calc(100% / 16));
		grid-row-gap: 160px;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_2 .ce-portfolio-item:nth-child(9n+1) {
		grid-column: 1/7;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_2 .ce-portfolio-item:nth-child(9n+1) .title {
		margin-left: 100px;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_2 .ce-portfolio-item:nth-child(9n+2) {
		grid-column: 13/17;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_2 .ce-portfolio-item:nth-child(3n+3) {
		grid-column: 2/15;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_2 .ce-portfolio-item:nth-child(3n+3) .grid-holder-inner {
		display: flex;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_2 .ce-portfolio-item:nth-child(3n+3) .grid-holder-inner .entry-media {
		flex: 10;
		padding-right: 65px;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_2 .ce-portfolio-item:nth-child(3n+3) .grid-holder-inner .entry-wrapper-content {
		padding-left: 40px;
		flex: 6;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_2 .ce-portfolio-item:nth-child(9n+4) {
		grid-column: 1/5;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_2 .ce-portfolio-item:nth-child(9n+5) {
		grid-column: 11/15;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_2 .ce-portfolio-item:nth-child(9n+7) {
		grid-column: 1/5;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_2 .ce-portfolio-item:nth-child(9n+8) {
		grid-column: 11/17;
	}
}

@media (max-width: 991px) {
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_2 .ce-portfolio-item {
		margin-top: 60px;
		margin-bottom: 60px;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_2 .ce-portfolio-item.rellax {
		transform: translate3d(0, 0, 0) !important;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_2 .ce-portfolio-item .grid-holder {
		display: flex;
		justify-content: center;
	}
}

@media (min-width: 1024px) {
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_3 {
		display: grid;
		grid-template-columns: repeat(2, calc(100% / 2));
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_3 .ce-portfolio-item {
		margin-bottom: 110px;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_3 .ce-portfolio-item:last-child {
		margin-bottom: 0px;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_3 .column1, .ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_3 .column2 {
		padding: 0 40px;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_3 .column1 {
		padding-left: 0px;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_3 .column2 {
		padding-top: 200px;
		padding-right: 0px;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_3 .column2 .ce-portfolio-item .grid-holder {
		display: flex;
		justify-content: flex-end;
	}
	
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_3 .column2 .ce-portfolio-item .grid-holder .grid-holder-inner {
		display: inline-block;
	}
}

@media (max-width: 991px) {
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_3 .ce-portfolio-item {
		margin-bottom: 30px;
	}
}

@media (min-width: 1024px) {
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_4 {
		display: grid;
		grid-template-columns: repeat(18, calc(100% / 18));
		grid-row-gap: 120px;
	}
}

.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_4 .ce-portfolio-item {
	margin-bottom: 32px;
}

.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_4 .ce-portfolio-item:last-child {
	margin-bottom: 0;
}

@media (min-width: 1024px) {
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_4 .ce-portfolio-item {
		margin-bottom: 0;
	}
}

.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_4 .ce-portfolio-item:nth-child(1) {
	grid-column: 8/12;
}

.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_4 .ce-portfolio-item:nth-child(2) {
	grid-column: 15/19;
}

.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_4 .ce-portfolio-item:nth-child(3) {
	position: relative;
}

@media (min-width: 1024px) {
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_4 .ce-portfolio-item:nth-child(3) {
		top: -80px;
	}
}

.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_4 .ce-portfolio-item:nth-child(3n+3) {
	grid-column: 1/5;
	position: relative;
}

@media (min-width: 1024px) {
	.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_4 .ce-portfolio-item:nth-child(3n+3) {
		top: -60px;
	}
}

.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_4 .ce-portfolio-item:nth-child(3n+4):not(:first-child) {
	grid-column: 8/12;
}

.ce-portfolio-grid[data-module="predefined"].ce-portfolio-predefined--block_4 .ce-portfolio-item:nth-child(3n+5) {
	grid-column: 15/19;
}

.ce-fixed-follow {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 9999;
	pointer-events: none;
	visibility: hidden;
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease;
	-o-transition: transform .3s ease;
}

.ce-fixed-follow.is-active {
	visibility: visible;
}

.centered {
	text-align: center;
}

.left-align {
	text-align: left;
}

.right-align {
	text-align: right;
}

.ce-filters {
	position: relative;
	margin-bottom: 55px;
}

.ce-filters button {
	border: none;
	background: none;
	margin-right: 15px;
	font-size: 16px;
	color: #acacac;
}

.ce-filters button:focus {
	outline: none;
}

.ce-filters button.selected {
	color: #5d6cc1;
	border: none;
}

@media (min-width: 1024px) {
	.ce-portfolio-grid-wrapper[data-filters="1"][data-filters-style="vertical"] {
		display: flex;
	}
}

@media (min-width: 1024px) {
	.ce-portfolio-grid-wrapper[data-filters="1"][data-filters-style="vertical"] .ce-filters {
		width: 30%;
		min-width: 368px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

.ce-portfolio-grid-wrapper[data-filters="1"][data-filters-style="vertical"] .ce-filters button {
	display: block;
	font-weight: 600;
	width: 100%;
	text-align: left;
	font-size: 60px;
	line-height: 60px;
	letter-spacing: -.02em;
	text-transform: uppercase;
	color: #000;
	text-shadow: 0px 10px 20px rgba(0, 0, 0, .1);
	padding-top: 8px;
	padding-bottom: 8px;
}

@media (max-width: 991px) {
	.ce-portfolio-grid-wrapper[data-filters="1"][data-filters-style="vertical"] .ce-filters button {
		text-align: center;
	}
}

.ce-portfolio-grid-wrapper[data-filters="1"][data-filters-style="vertical"] .ce-filters button.selected {
	text-decoration-line: underline;
}

@media (min-width: 1024px) {
	.ce-portfolio-grid-wrapper[data-filters="1"][data-filters-style="vertical"] .ce-portfolio-grid {
		padding-left: 0px;
		width: 70%;
	}
}

.ce-testimonial-style-beas .content {
	padding-left: 30px;
	position: relative;
}

@media (min-width: 768px) {
	.ce-testimonial-style-beas .content {
		padding-left: 100px;
	}
}

.ce-testimonial-style-beas .content svg {
	position: absolute;
	left: 0px;
	top: 0px;
}

.ce-testimonial-style-beas .content svg path {
	fill: #000;
}

.light-text .ce-testimonial-style-beas .content svg path {
	color: #fff;
}

.ce-testimonial-style-beas .content .text {
	font-size: 24px;
	line-height: 36px;
	padding-bottom: 30px;
}

@media (min-width: 768px) {
	.ce-testimonial-style-beas .content .text {
		padding-bottom: 80px;
	}
}

.ce-testimonial-style-beas .data {
	border-top: 2px solid #000;
	padding-top: 16px;
	font-size: 18px;
	line-height: 28px;
	position: relative;
}

.light-text .ce-testimonial-style-beas .data {
	border-top: 2px solid #fff;
}

.ce-testimonial-style-beas .ce-testimonial-carousel-controls {
	position: absolute;
	top: 30px;
	right: 10px;
}

.ce-testimonial-style-beas .ce-testimonial-carousel-controls a {
	padding: 0 16px;
}

.ce-testimonial-style-beas .ce-testimonial-carousel-controls a:last-child {
	padding-right: 0px;
}

.ce-testimonial-style-beas .ce-testimonial-carousel-controls i {
	font-size: 24px;
	line-height: 24px;
}

.ce-testimonial-style-tapi .ce-testimonial-item {
	position: relative;
}

.ce-testimonial-style-tapi .inner-wrapper {
	padding: 0 20px;
}

@media (min-width: 768px) {
	.ce-testimonial-style-tapi .inner-wrapper {
		padding: 0 80px;
	}
}

.ce-testimonial-style-tapi .content {
	position: relative;
}

.ce-testimonial-style-tapi .content .text {
	font-size: 24px;
	line-height: 36px;
	padding-bottom: 40px;
}

@media (max-width: 767px) {
	.ce-testimonial-style-tapi .content .text {
		font-size: 20px !important;
		line-height: 28px !important;
	}
}

@media (min-width: 768px) {
	.ce-testimonial-style-tapi .content .text {
		padding-bottom: 40px;
	}
}

.ce-testimonial-style-tapi .data {
	border-top: 2px solid #000;
	padding-top: 16px;
	font-size: 18px;
	line-height: 28px;
	position: relative;
}

.light-text .ce-testimonial-style-tapi .data {
	border-top: 2px solid #fff;
}

.ce-testimonial-style-tapi .ce-testimonial-carousel-controls {
	position: absolute;
	top: calc(50% - 57px);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
}

@media (max-width: 991px) {
	.ce-testimonial-style-tapi .ce-testimonial-carousel-controls {
		display: none;
	}
}

.ce-testimonial-style-tapi .ce-testimonial-carousel-controls a {
	padding: 0 16px;
}

.ce-testimonial-style-tapi .ce-testimonial-carousel-controls a:last-child {
	padding-right: 0px;
}

.ce-testimonial-style-tapi .ce-testimonial-carousel-controls i {
	font-size: 24px;
	line-height: 24px;
}

.ce-testimonial-style-tapi .ce-testimonial-carousel-controls .ce-prev {
	position: absolute;
	left: -80px;
}

.ce-testimonial-style-tapi .ce-testimonial-carousel-controls .ce-next {
	position: absolute;
	right: 125px;
}

.ce-testimonial-style-tista {
	margin: 0 auto;
}

.ce-testimonial-style-tista .text {
	max-width: 770px;
	margin: 0 auto;
	font-weight: 300;
	font-size: 36px;
	line-height: 48px;
	text-align: center;
	letter-spacing: -.02em;
}

.ce-testimonial-style-tista-nav {
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 80px !important;
}

.ce-testimonial-style-tista-nav .nav-item {
	opacity: .5;
	cursor: pointer;
	font-weight: 300;
	font-size: 24px;
	line-height: 32px;
	text-align: center;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
}

.ce-testimonial-style-tista-nav .nav-item.active {
	opacity: 1;
}

.ce-testimonial-style-tista-nav .nav-item:hover {
	opacity: 1;
}

.ce-testimonial-style-talia {
	margin: 0 auto;
	text-align: center;
}

.ce-testimonial-style-talia svg {
	text-align: center;
	margin-bottom: 40px;
}

.ce-testimonial-style-talia .text {
	font-size: 24px;
	line-height: 36px;
}

.ce-testimonial-style-talia .data {
	margin-top: 40px;
}

.ce-testimonial-style-talia .ce-testimonial-carousel-controls {
	margin-top: 40px;
}

.ce-testimonial-style-talia .ce-testimonial-carousel-controls a {
	margin: 0 15px;
}

.testimonial-section {
	position: relative;
	padding: 100px 0px 100px;
	background-color: #f3f5fb;
}

.testimonial-section .owl-dots {
	display: none;
}

.testimonial-section .owl-nav {
	display: none;
}

.testimonial-section .inner-container {
	position: relative;
}

.testimonial-section .patern-layer-one {
	position: absolute;
	right: -115px;
	top: -60px;
	width: 294px;
	height: 292px;
	background-repeat: no-repeat;
}

.ce-testimonial-style-alder {
	position: relative;
}

.ce-testimonial-style-alder .inner-box {
	position: relative;
	border-radius: 5px;
	text-align: center;
	padding: 40px 60px 50px;
	background-color: #fff;
}

.ce-testimonial-style-alder .inner-box .author-image {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 50px;
}

.ce-testimonial-style-alder .inner-box h4 {
	position: relative;
	font-weight: 500;
	color: #5d6cc1;
	line-height: 1.3em;
	margin-top: 30px;
	font-size: 22px;
}

.ce-testimonial-style-alder .inner-box .rating {
	position: relative;
	color: #f6a46a;
	font-size: 16px;
	margin-top: 20px;
}

.ce-testimonial-style-alder .inner-box .rating .fa {
	position: relative;
	margin: 0px 1px;
}

.ce-testimonial-style-alder .inner-box .text {
	position: relative;
	color: #373737;
	font-size: 16px;
	line-height: 1.8em;
	margin-top: 35px;
}

.ce-testimonial-style-modern {
	text-align: center;
}

.ce-testimonial-style-modern img {
	width: 100px;
	height: 100px;
	max-width: 100px;
	border-radius: 50%;
	margin-bottom: 18px !important;
}

.ce-testimonial-style-modern .data .title {
	margin-bottom: 8px;
}

.ce-testimonial-style-modern .data .position {
	margin-bottom: 10px;
}

.ce-testimonial-style-modern .data .text {
	width: 70%;
	text-align: center;
	margin: 0 auto;
}

.elementor-widget-ce-testimonial-carousel[data-style="modern"] .ce-carousel-head {
	position: static;
}

.elementor-widget-ce-testimonial-carousel[data-style="modern"] .ce-testimonial-carousel-controls {
	position: static;
	top: 0;
	right: 0;
}

.elementor-widget-ce-testimonial-carousel[data-style="modern"] .ce-testimonial-carousel-controls a {
	width: 50px;
	height: 50px;
	background: #fff;
	text-align: center;
	line-height: 50px;
	display: inline-block;
	border-radius: 50%;
	box-shadow: 0 0 35px 0px rgba(22, 12, 96, .09);
	transition: box-shadow .3s;
}

.elementor-widget-ce-testimonial-carousel[data-style="modern"] .ce-testimonial-carousel-controls a:hover {
	box-shadow: 0 0 35px 0px rgba(0, 0, 0, 0);
}

.elementor-widget-ce-testimonial-carousel[data-style="modern"] .ce-testimonial-carousel-controls a.ce-next {
	position: absolute;
	right: 0;
	top: 80px;
}

.elementor-widget-ce-testimonial-carousel[data-style="modern"] .ce-testimonial-carousel-controls a.ce-prev {
	position: absolute;
	left: 0;
	top: 80px;
}

.ce-staff-style-beas img {
	border-radius: 50%;
	width: 270px !important;
	max-height: 270px;
	margin: 0 auto;
}

.ce-staff-style-beas .team-content {
	text-align: center;
}

.ce-staff-style-beas .team-content h4 {
	margin-top: 24px;
}

.ce-staff-style-beas .team-content .team-position {
	margin-top: 8px;
}

.ce-staff-style-beas .team-content .team-socials {
	margin-top: 32px;
}

.ce-staff-style-beas .team-content .team-socials a {
	padding: 0 12px;
}

.ce-staff-style-default .team-thumbnail {
	position: relative;
}

.ce-staff-style-default .team-thumbnail:before {
	content: "";
	position: absolute;
	width: 220px !important;
	height: 100%;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	background: rgba(0, 0, 0, .2);
	transition: all .5s;
	-webkit-transition: all .5s;
	opacity: 0;
}

.ce-staff-style-default img {
	border-radius: 50%;
	width: 220px !important;
	max-height: 220px;
	margin: 0 auto;
}

.ce-staff-style-default .team-content {
	text-align: center;
}

.ce-staff-style-default .team-content h4 {
	margin-top: 24px;
}

.ce-staff-style-default .team-content .team-position {
	margin-top: 8px;
}

.ce-staff-style-default .team-content .team-socials {
	margin-top: 10px;
}

.ce-staff-style-default .team-content .team-socials a {
	padding: 0 12px;
}

.ce-staff-style-default .team-content .team-socials a:hover {
	color: #01b7cc;
}

.ce-staff-style-default .team-content .team-socials i {
	font-size: 20px;
}

.ce-staff-style-default .team-content p {
	line-height: 24px;
}

.ce-staff-style-default .ce-staff-item:hover .team-thumbnail:before {
	opacity: 1;
}

.ce-staff-style-modern .ce-staff {
	box-shadow: 0 0 35px 0px rgba(22, 12, 96, .09);
}

.ce-staff-style-modern .team-content {
	padding: 30px 0;
	text-align: center;
}

.ce-staff-style-modern .team-content .team-position {
	margin-top: 13px;
}

.ce-staff-style-modern .team-content .team-socials a {
	padding: 0 12px;
}

.ce-staff-style-modern .team-content .team-socials i {
	font-size: 20px;
}

.ce-staff-style-modern .team-content .team-socials {
	margin-top: 15px;
}

.ce-staff-style-modern .team-thumbnail img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	margin: 0;
	width: 100%;
}

.elementor-widget-ce-staff-carousel button {
	display: none;
}

.ce-carousel-head {
	position: relative;
	margin-bottom: 30px;
	min-height: 50px;
}

.ce-carousel-head .ce-staff-carousel-controls {
	position: absolute;
	top: 0;
	right: 0;
}

.ce-carousel-head .ce-staff-carousel-controls a {
	width: 50px;
	height: 50px;
	background: #fff;
	text-align: center;
	line-height: 50px;
	display: inline-block;
	border-radius: 50%;
	box-shadow: 0 0 35px 0px rgba(22, 12, 96, .09);
	transition: box-shadow .4s;
}

.ce-carousel-head .ce-staff-carousel-controls a:hover {
	box-shadow: 0 0 35px 0px rgba(0, 0, 0, 0);
}

.ce-carousel-head .ce-staff-carousel-controls a i {
	line-height: 50px;
}

.ce-post-style-adair .category-colored {
	padding: 5px 10px;
	font-weight: 500;
	font-size: 12px;
	line-height: 20px;
	color: #000;
	letter-spacing: .2em;
	text-align: center;
	text-transform: uppercase;
	display: inline-block;
	z-index: 99999;
}

.ce-post-style-adair .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

.ce-post-style-adair .entry-meta {
	display: flex;
	align-items: center;
}

.ce-post-style-adair .entry-meta .entry-meta-single {
	padding-right: 24px;
	font-size: 14px;
	line-height: 24px;
	color: #000;
	display: flex;
	align-items: center;
}

.ce-post-style-adair .entry-meta .entry-meta-single:last-child {
	padding-right: 0px;
}

.ce-post-style-adair .entry-meta .entry-meta-single i {
	margin-right: 8px;
	font-size: 16px;
	line-height: 16px;
}

.ce-post-style-adair .entry-meta .entry-meta-single img {
	margin-right: 8px;
	border-radius: 50%;
}

.ce-post-style-adair .entry-media {
	position: relative;
}

.ce-post-style-adair .entry-wrapper {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.ce-post-style-adair .entry-meta {
	justify-content: center;
}

.ce-post-style-adair .entry-wrapper-content {
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding-left: 0px;
	z-index: 999;
	margin-top: 40px;
}

.ce-post-style-adair .media-wrapper {
	position: relative;
}

.ce-post-style-adair .category-colored {
	position: absolute;
	left: 30px;
	bottom: 10px;
}

.ce-post-style-adair .entry-title {
	text-align: center;
	margin-bottom: 23px;
	padding: 0 30px;
}

.ce-post-style-adair .entry-content {
	margin-top: 32px;
	opacity: .5;
	text-align: center;
	padding: 0 20px;
}

.ce-post-style-adair .entry-media, .ce-post-style-adair .entry-overlay, .ce-post-style-adair .entry-media, .ce-post-style-adair .post-thumbnail {
	display: block;
}

.ce-post-style-adair.sticky {
	border-width: 1px;
	border-style: solid;
	padding: 40px !important;
}

.ce-post-style-adair .entry-readmore {
	font-size: 16px;
	font-weight: 500;
	color: #000;
	position: relative;
	padding-right: 24px;
}

.ce-post-style-adair .entry-readmore:after {
	content: "";
	font-family: "feather";
	position: absolute;
	top: 0;
	right: 0;
	font-weight: 300;
}

.ce-post-style-adair .entry-footer {
	height: 60px;
	margin-top: 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
}

.ce-post-style-adair .entry-footer .ce-share-buttons .pre {
	opacity: .5;
	margin-right: 8px;
	font-size: 14px;
}

.ce-post-style-adair .entry-footer .ce-share-buttons a {
	margin-right: 24px;
}

.ce-post-style-adair .entry-footer .ce-share-buttons a:last-child {
	margin-right: 0;
}

.ce-post-style-adair .entry-footer .ce-share-buttons a i {
	font-size: 16px;
}

.ce-post-style-colm .grid-holder {
	padding: 10px;
}

.ce-post-style-colm .grid-holder .grid-holder-inner {
	text-align: left;
}

.ce-post-style-colm .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

.ce-post-style-colm .entry-media {
	position: relative;
}

.ce-post-style-colm .entry-wrapper {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.ce-post-style-colm .entry-wrapper-content {
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding-left: 0px;
	z-index: 999;
	padding: 24px 30px;
}

.ce-post-style-colm .media-wrapper {
	position: relative;
}

.ce-post-style-colm .category-colored {
	position: absolute;
	left: 30px;
	bottom: 10px;
}

.ce-post-style-colm .entry-meta-single {
	color: rgba(0, 0, 0, .5);
}

.ce-post-style-colm .entry-title {
	margin-bottom: 12px;
	margin-top: 12px;
	font-size: 24px;
	line-height: 36px;
}

.ce-post-style-colm .entry-content {
	margin-bottom: 24px;
	opacity: .5;
}

.ce-post-style-colm .entry-media, .ce-post-style-colm .entry-overlay, .ce-post-style-colm .entry-media, .ce-post-style-colm .post-thumbnail {
	display: block;
}

.ce-post-style-colm .entry-readmore {
	font-size: 16px;
	font-weight: 500;
	color: #000;
	position: relative;
	padding-right: 24px;
}

.ce-post-style-colm .entry-readmore:after {
	content: "";
	font-family: "feather";
	position: absolute;
	top: 0;
	right: 0;
	font-weight: 300;
	line-height: 22px;
}

.ce-post-style-colm .entry-meta {
	display: flex;
	align-items: center;
}

.ce-post-style-colm .entry-meta .entry-meta-single {
	padding-right: 24px;
	font-size: 14px;
	line-height: 24px;
	color: #000;
	display: flex;
	align-items: center;
}

.ce-post-style-colm .entry-meta .entry-meta-single:last-child {
	padding-right: 0px;
}

.ce-post-style-colm .entry-meta .entry-meta-single i {
	margin-right: 8px;
	font-size: 16px;
	line-height: 16px;
}

.ce-post-style-colm .entry-meta .entry-meta-single img {
	margin-right: 8px;
	border-radius: 50%;
}

.ce-post-style-birk .grid-holder .grid-holder-inner {
	text-align: left;
}

.ce-post-style-birk .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

.ce-post-style-birk .entry-media {
	position: relative;
}

.ce-post-style-birk .entry-wrapper {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.ce-post-style-birk .entry-wrapper-content {
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding-left: 0px;
	z-index: 999;
	padding: 15px 20px;
	background: #fff;
}

.ce-post-style-birk .media-wrapper {
	position: relative;
}

.ce-post-style-birk .category-colored {
	position: absolute;
	left: 10px;
	bottom: 10px;
}

.ce-post-style-birk .entry-meta {
	display: flex;
	align-items: center;
}

.ce-post-style-birk .entry-meta .entry-meta-single {
	padding-right: 24px;
	font-size: 14px;
	line-height: 24px;
	color: #000;
	display: flex;
	align-items: center;
}

.ce-post-style-birk .entry-meta .entry-meta-single:last-child {
	padding-right: 0px;
}

.ce-post-style-birk .entry-meta .entry-meta-single i {
	margin-right: 8px;
	font-size: 16px;
	line-height: 16px;
}

.ce-post-style-birk .entry-meta .entry-meta-single img {
	margin-right: 8px;
	border-radius: 50%;
}

.ce-post-style-birk .entry-meta-single {
	color: rgba(0, 0, 0, .5);
	padding-right: 20px;
}

.ce-post-style-birk .entry-meta-single:last-child {
	padding-right: 0px !important;
}

.ce-post-style-birk .entry-title {
	margin-top: 8px;
	font-size: 20px;
	line-height: 32px;
	font-weight: 400;
}

.ce-post-style-birk .entry-content {
	margin-top: 12px;
	margin-bottom: 24px;
	opacity: .5;
}

.ce-post-style-birk .entry-media, .ce-post-style-birk .entry-overlay, .ce-post-style-birk .entry-media, .ce-post-style-birk .post-thumbnail {
	display: block;
}

.ce-post-style-birk .entry-readmore {
	font-size: 16px;
	font-weight: 500;
	color: #000;
	position: relative;
	padding-right: 24px;
}

.ce-post-style-birk .entry-readmore:after {
	content: "";
	font-family: "feather";
	position: absolute;
	top: 0;
	right: 0;
	font-weight: 300;
	line-height: 22px;
}

.ce-post-style-rowan {
	color: #fff;
}

.ce-post-style-rowan .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.ce-post-style-rowan .grid-holder {
	position: relative;
}

.ce-post-style-rowan .post-thumbnail {
	position: relative;
}

.ce-post-style-rowan .post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ce-post-style-rowan .post-thumbnail:before {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	top: 0;
	height: 100%;
	background: rgba(0, 0, 0, .2);
}

.ce-post-style-rowan .entry-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	text-align: center;
	z-index: 99;
	justify-content: center;
	padding: 25px;
}

.ce-post-style-rowan .entry-wrapper .entry-wrapper-content {
	width: 750px;
}

.ce-post-style-rowan .entry-meta {
	justify-content: center;
}

.ce-post-style-rowan .entry-meta .entry-meta-single {
	color: #fff;
}

.ce-post-style-rowan .entry-header h2 {
	color: #fff;
	margin-top: 32px;
	margin-bottom: 24px;
	font-weight: 700;
}

@media (max-width: 767px) {
	.ce-post-style-rowan .entry-header h2 {
		font-size: 36px;
		line-height: 48px;
	}
}

.ce-post-style-rowan .entry-header .category-colored {
	background: #313a48;
}

.ce-post-style-box {
	color: #fff;
}

.ce-post-style-box .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.ce-post-style-box .grid-holder {
	position: relative;
}

.ce-post-style-box .post-thumbnail {
	position: relative;
}

.ce-post-style-box .post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}

.ce-post-style-box .post-thumbnail:before {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	top: 0;
	height: 100%;
	background-color: rgba(0, 0, 0, .15);
	border-radius: 15px;
	opacity: 1;
	transition: background-color .4s;
}

.ce-post-style-box .entry-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	text-align: center;
	z-index: 99;
	justify-content: center;
	padding: 25px;
}

.ce-post-style-box .entry-wrapper .entry-wrapper-content {
	width: 100%;
}

.ce-post-style-box .entry-meta {
	justify-content: center;
	position: absolute;
	bottom: 30px;
	text-align: center;
	display: flex;
	align-items: center;
}

.ce-post-style-box .entry-meta .entry-meta-single {
	line-height: 40px;
	color: #fff;
}

.ce-post-style-box .entry-meta .entry-meta-single a {
	line-height: 40px;
}

.ce-post-style-box .entry-header h2 {
	color: #fff;
	margin-top: 32px;
	margin-bottom: 24px;
	font-weight: 700;
	font-weight: 500;
	position: absolute;
	bottom: 60px;
	left: 0;
	text-align: left;
	padding-left: 25px;
	padding-right: 25px;
	font-size: 24px;
	line-height: 30px;
}

@media (max-width: 767px) {
	.ce-post-style-box .entry-header h2 {
		font-size: 36px;
		line-height: 48px;
	}
}

.ce-post-style-box .entry-header .category-colored {
	background: rgba(91, 118, 135, .6);
	position: absolute;
	top: 20px;
	right: 20px;
}

.ce-post-style-box .ce-post-item:hover .post-thumbnail:before {
	background-color: rgba(0, 0, 0, .4);
}

.ce-post-style-lark article .grid-holder .grid-holder-inner {
	text-align: left;
	display: flex;
}

.ce-post-style-lark article .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

.ce-post-style-lark article .media-wrapper {
	flex: 10;
}

.ce-post-style-lark article .entry-media {
	position: relative;
}

.ce-post-style-lark article .entry-wrapper {
	padding-left: 20px;
	flex: 27;
}

.ce-post-style-lark article .entry-wrapper-content {
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	z-index: 999;
}

.ce-post-style-lark article .media-wrapper {
	position: relative;
}

.ce-post-style-lark article .category-colored {
	position: static;
	display: inline-block;
}

.ce-post-style-lark article h2.entry-title {
	margin-top: 16px;
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
}

.ce-post-style-lark article .entry-media, .ce-post-style-lark article .entry-overlay, .ce-post-style-lark article .entry-media, .ce-post-style-lark article .post-thumbnail {
	display: block;
}

.ce-post-style-drake article {
	display: flex;
}

@media (max-width: 767px) {
	.ce-post-style-drake article {
		flex-wrap: wrap;
	}
}

.ce-post-style-drake .image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.ce-post-style-drake .media-wrapper {
	flex: 1;
}

@media (max-width: 767px) {
	.ce-post-style-drake .media-wrapper {
		flex: auto;
	}
}

.ce-post-style-drake .entry-wrapper {
	flex: 1;
	padding-left: 30px;
}

@media (max-width: 767px) {
	.ce-post-style-drake .entry-wrapper {
		padding-left: 0px;
		padding-top: 30px;
	}
}

.ce-post-style-drake .category-colored {
	position: static;
	display: inline-block;
}

.ce-post-style-drake .entry-title {
	font-size: 28px;
	line-height: 36px;
	margin-top: 32px;
	margin-bottom: 16px;
}

.ce-post-style-drake .entry-content {
	display: none;
	margin-top: 32px;
	color: rgba(0, 0, 0, .5);
}

.ce-post-style-drake .entry-content a.more-link {
	color: #000 !important;
	font-weight: 500;
}

.ce-post-style-drake .entry-meta {
	display: flex;
	align-items: center;
}

.ce-post-style-drake .entry-meta .entry-meta-single {
	padding-right: 24px;
	font-size: 14px;
	line-height: 24px;
	color: #000;
	display: flex;
	align-items: center;
}

.ce-post-style-drake .entry-meta .entry-meta-single:last-child {
	padding-right: 0px;
}

.ce-post-style-drake .entry-meta .entry-meta-single i {
	margin-right: 8px;
	font-size: 16px;
	line-height: 16px;
}

.ce-post-style-drake .entry-meta .entry-meta-single img {
	margin-right: 10px;
	border-radius: 50%;
}

.elementor-col-100 .ce-post-style-drake {
	margin-bottom: 80px;
}

@media (min-width: 768px) {
	.elementor-col-100 .ce-post-style-drake .entry-wrapper {
		padding-left: 100px;
		display: flex;
		align-items: center;
	}
}

.elementor-col-100 .ce-post-style-drake .entry-title {
	font-size: 36px;
	line-height: 42px;
}

.elementor-col-100 .ce-post-style-drake .entry-content {
	display: block;
}

.ce-post-style-vernon .category-colored {
	color: #fff;
}

.ce-post-style-vernon .entry-title {
	margin-top: 32px;
	margin-bottom: 64px;
}

.ce-post-style-vernon .entry-readmore {
	display: inline-block;
	background: #eee;
	color: #000;
	padding: 20px;
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
}

.ce-post-style-vernon .entry-readmore:hover {
	background: #f8ded2;
}

.elementor-widget-ce-posts-carousel button {
	display: none;
}

.ce-carousel-head {
	position: relative;
	min-height: 50px;
	margin-bottom: 30px;
}

.ce-carousel-head .ce-posts-carousel-controls {
	position: absolute;
	top: 0;
	right: 0;
}

.ce-carousel-head .ce-posts-carousel-controls a {
	width: 50px;
	height: 50px;
	background: #fff;
	text-align: center;
	line-height: 50px;
	display: inline-block;
	border-radius: 50%;
	box-shadow: 0 0 35px 0px rgba(22, 12, 96, .09);
	transition: box-shadow .4s;
}

.ce-carousel-head .ce-posts-carousel-controls a:hover {
	box-shadow: 0 0 35px 0px rgba(0, 0, 0, 0);
}

.ce-carousel-head .ce-posts-carousel-controls a i {
	line-height: 50px;
}

.ce-posts-grid .ce-post-item {
	padding: 15px;
	width: 100%;
}

@media (min-width: 768px) {
	.ce-posts-grid .ce-post-item {
		width: 50%;
	}
}

@media (min-width: 1024px) {
	.ce-posts-grid[data-columns="1"] .ce-post-item {
		width: 100%;
	}
	
	.ce-posts-grid[data-columns="2"] .ce-post-item {
		width: 50%;
	}
	
	.ce-posts-grid[data-columns="3"] .ce-post-item {
		width: calc(100% / 3);
	}
	
	.ce-posts-grid[data-columns="4"] .ce-post-item {
		width: 25%;
	}
	
	.ce-posts-grid[data-columns="5"] .ce-post-item {
		width: 20%;
	}
}

.ce-podcasts-grid .ce-post-item {
	padding: 15px;
	width: 100%;
}

@media (min-width: 768px) {
	.ce-podcasts-grid .ce-post-item {
		width: 50%;
	}
}

@media (min-width: 1024px) {
	.ce-podcasts-grid[data-columns="1"] .ce-post-item {
		width: 100%;
	}
	
	.ce-podcasts-grid[data-columns="2"] .ce-post-item {
		width: 50%;
	}
	
	.ce-podcasts-grid[data-columns="3"] .ce-post-item {
		width: calc(100% / 3);
	}
	
	.ce-podcasts-grid[data-columns="4"] .ce-post-item {
		width: 25%;
	}
	
	.ce-podcasts-grid[data-columns="5"] .ce-post-item {
		width: 20%;
	}
}

.ce-featured-podcasts-grid .ce-post-item {
	padding: 15px;
	width: 100%;
}

@media (min-width: 768px) {
	.ce-featured-podcasts-grid .ce-post-item {
		width: 50%;
	}
}

@media (min-width: 1024px) {
	.ce-featured-podcasts-grid[data-columns="1"] .ce-post-item {
		width: 100%;
	}
	
	.ce-featured-podcasts-grid[data-columns="2"] .ce-post-item {
		width: 50%;
	}
	
	.ce-featured-podcasts-grid[data-columns="3"] .ce-post-item {
		width: calc(100% / 3);
	}
	
	.ce-featured-podcasts-grid[data-columns="4"] .ce-post-item {
		width: 25%;
	}
	
	.ce-featured-podcasts-grid[data-columns="5"] .ce-post-item {
		width: 20%;
	}
}

.ce-featured-podcasts-grid .entry-featured-podcast span.ce-featured {
	font-size: 11px;
	color: #fff;
	background: #01beca;
	text-transform: uppercase;
	padding: 0 15px;
	padding-top: 2px;
	border-radius: 15px;
	margin-bottom: 15px;
	display: inline-block;
	line-height: 20px;
}

.ce-featured-podcasts-grid .entry-meta {
	font-size: 11px;
	color: #01b7cc;
	text-transform: uppercase;
	line-height: 20px;
}

.ce-featured-podcasts-grid .entry-img {
	width: 70px;
	float: left;
	margin-right: 10px !important;
}

.ce-featured-podcasts-grid .entry-img img {
	border-radius: 50%;
}

.ce-featured-podcasts-grid .entry-data {
	margin-top: 14px;
	float: left;
}

.ce-featured-podcasts-grid .entry-data h5 {
	line-height: 24px;
}

.ce-featured-podcasts-grid .entry-play {
	margin-top: 20px;
}

.ce-featured-podcasts-grid .entry-play a {
	display: inline-block;
	padding: 10px 30px;
	border: 1px solid #c2c8cd;
	border-radius: 25px;
	font-size: 13px;
	text-transform: uppercase;
}

.ce-featured-podcasts-grid .entry-play .ce-active {
	background: #fff;
	color: #3b3663;
	padding: 2px;
	padding-right: 30px;
	margin-right: 10px;
}

.ce-featured-podcasts-grid .entry-play .ce-active i {
	width: 45px;
	height: 45px;
	display: inline-block;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	color: #fff;
	background-image: linear-gradient(to bottom, #01dac1, #009ad5);
	margin-right: 10px;
}

.ce-featured-podcasts-grid .ce-subscriptions {
	margin-top: 50px;
}

.ce-featured-podcasts-grid .ce-subscriptions img {
	float: left;
	margin-right: 10px;
	margin-top: 6px;
}

.ce-featured-podcasts-grid .ce-subscriptions h5 {
	float: left;
	margin-right: 20px;
	font-size: 20px;
	font-weight: 700;
	color: #061020;
	line-height: 41px;
}

.ce-featured-podcasts-grid .ce-subscriptions a {
	margin-right: 20px;
	display: inline-block;
	color: #061021;
	text-transform: uppercase;
}

.ce-featured-podcasts-grid .ce-subscriptions a i {
	margin-right: 8px;
}

@media (max-width: 767px) {
	.ce-featured-podcasts-grid .ce-subscriptions {
		display: none;
	}
}

.ce-featured-podcasts-grid.ce-post-style-light .entry-featured-podcast {
	background: url("https://cdn-khiaj.nitrocdn.com/FoIzgCwKZxaQHRPhrTjcNqPevNavAGnJ/assets/images/optimized/rev-697e7e6/saniex.com/wp-content/plugins/cowidgets-elementor-addons/assets/images/bg.png") no-repeat;
	background-size: cover;
	padding: 24px 35px 30px 35px;
	border-radius: 10px;
	box-shadow: 0 0 35px 0px rgba(22, 12, 96, .09);
}

.ce-featured-podcasts-grid.ce-post-style-light .entry-featured-podcast.nitro-lazy {
	background-image: none !important;
}

@media (max-width: 767px) {
	.ce-featured-podcasts-grid.ce-post-style-light .entry-featured-podcast {
		padding: 24px 18px 30px 18px;
	}
}

.ce-featured-podcasts-grid.ce-post-style-light .entry-featured-podcast span.ce-featured {
	background: #908dab;
}

.ce-featured-podcasts-grid.ce-post-style-light .entry-play a {
	background-color: #fff;
	border: 0;
	box-shadow: 0 0 35px 0px rgba(22, 12, 96, .09);
	transition: all .4s;
}

.ce-featured-podcasts-grid.ce-post-style-light .entry-play a:hover {
	background-color: #01b7cd;
	color: #fff;
}

.ce-featured-podcasts-grid.ce-post-style-light .entry-play .ce-active {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin: 0;
	padding-right: 15px;
	color: #6d727c;
}

.ce-featured-podcasts-grid.ce-post-style-light .ce-subscriptions a {
	background: transparent;
	padding: 8px 0;
	border-radius: 25px;
	font-size: 13px;
	font-weight: 500;
}

.ce-featured-podcasts-grid.ce-post-style-dark h5 a {
	color: #fff;
}

.ce-featured-podcasts-grid.ce-post-style-dark .entry-play a {
	color: #fff;
	border: 2px solid #fff;
	font-weight: 500;
	transition: all .3s;
}

.ce-featured-podcasts-grid.ce-post-style-dark .entry-play a:hover {
	background: #01b7cd;
	border-color: #01b7cd;
}

.ce-featured-podcasts-grid.ce-post-style-dark .entry-play .ce-active {
	color: #3b3663;
	transition: all .3s;
}

.ce-featured-podcasts-grid.ce-post-style-dark .entry-play .ce-active:hover {
	color: #fff;
}

.ce-featured-podcasts-grid.ce-post-style-dark .ce-subscriptions h5 {
	color: #fff;
}

.ce-featured-podcasts-grid.ce-post-style-dark .ce-subscriptions a {
	color: #fff;
	background: rgba(56, 76, 96, .5);
	padding: 8px 20px;
	border-radius: 25px;
	transition: all .3s;
}

.ce-featured-podcasts-grid.ce-post-style-dark .ce-subscriptions a:hover {
	background: #01b7cd;
}

.ce-podcasts-grid.ce-post-style-modern .entry-podcast {
	padding: 0;
	border-radius: 10px;
}

.ce-podcasts-grid.ce-post-style-modern .entry-podcast .entry-contents {
	padding: 30px;
}

.ce-podcasts-grid.ce-post-style-modern .entry-podcast .entry-contents .ce-latest {
	font-size: 11px;
	color: #fff;
	line-height: 25px;
	background: #908dab;
	text-transform: uppercase;
	display: inline-block;
	padding: 0px 16px;
	font-weight: 500;
	border-radius: 25px;
}

.ce-podcasts-grid.ce-post-style-modern .entry-podcast .entry-title {
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	margin-top: 15px;
	margin-bottom: 15px;
}

.ce-podcasts-grid.ce-post-style-modern .entry-podcast .entry-wrap {
	clear: both;
	margin-bottom: 20px;
}

.ce-podcasts-grid.ce-post-style-modern .entry-podcast .entry-play {
	width: 50px;
	height: 50px;
	float: left;
	text-align: center;
	vertical-align: middle;
	background: #fff;
	line-height: 50px;
	border-radius: 50%;
	margin-right: 15px;
	box-shadow: 0 0px 20px 0 rgba(37, 197, 255, .2);
	margin-top: 0px;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.ce-podcasts-grid.ce-post-style-modern .entry-podcast .entry-play a {
	width: 100%;
}

.ce-podcasts-grid.ce-post-style-modern .entry-podcast .entry-count {
	font-size: 11px;
	color: #01b7cc;
	text-transform: uppercase;
	font-weight: 500;
}

.ce-podcasts-grid.ce-post-style-modern .entry-podcast .ce-date {
	display: block;
	font-size: 11px;
	color: #6d727c;
	line-height: 18px;
	text-transform: uppercase;
	font-weight: 500;
}

.ce-podcasts-grid.ce-post-style-modern .entry-podcast .entry-text {
	font-size: 14px;
	line-height: 24px;
	color: #6d727c;
}

.ce-podcasts-grid.ce-post-style-modern .entry-podcast .entry-text::first-letter {
	text-transform: uppercase;
}

.ce-podcasts-grid.ce-post-style-modern .entry-podcast .entry-media .entry-img img {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.entry-podcast {
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 35px 0px rgba(22, 12, 96, .09);
}

.entry-podcast .entry-media {
	position: relative;
}

.entry-podcast .entry-media .entry-img {
	margin-top: 0;
	position: relative;
}

.entry-podcast .entry-media .entry-img:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 10px;
	z-index: 1;
	background: rgba(0, 0, 0, .2);
	transition: all .5s;
	-webkit-transition: all .5s;
	opacity: 0;
}

.entry-podcast .entry-media .entry-img img {
	border-radius: 10px;
	width: 100%;
	max-width: 100%;
}

.entry-podcast .entry-media .entry-meta-date {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
}

.entry-podcast .entry-media .entry-meta-date span {
	background: rgba(98, 108, 117, .4);
	color: #fff;
	padding: 4px 15px;
	border-radius: 20px;
	font-size: 11px;
	text-transform: uppercase;
	line-height: 20px;
}

.entry-podcast .entry-media .entry-play a {
	vertical-align: middle;
	line-height: 50px;
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: #fff;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	text-align: center;
	z-index: 2;
}

.entry-podcast h3 {
	color: #061020;
	margin-bottom: 30px;
	line-height: 30px;
	font-weight: 500;
}

.entry-podcast .entry-icon {
	display: inline-block;
	margin: 15px 0 0 0;
}

.entry-podcast .entry-icon a {
	font-size: 11px;
	color: #01b7cd;
	text-transform: uppercase;
	background: url("https://cdn-khiaj.nitrocdn.com/FoIzgCwKZxaQHRPhrTjcNqPevNavAGnJ/assets/images/optimized/rev-697e7e6/saniex.com/wp-content/plugins/cowidgets-elementor-addons/inc/img/headphones.png") no-repeat;
	background-position: left;
	padding-left: 20px;
	padding-bottom: 1px;
}

.entry-podcast .entry-icon a.nitro-lazy {
	background-image: none !important;
}

.entry-podcast:hover .entry-img:before {
	opacity: 1;
}

@media (min-width: 768px) {
	.ce-podcasts-grid.ce-post-style-list .ce-post-item {
		width: 100%;
	}
}

@media (max-width: 991px) {
	.ce-podcasts-grid.ce-post-style-list .entry-meta-single {
		display: none;
	}
	
	.ce-podcasts-grid.ce-post-style-list .entry-cat {
		display: none;
	}
	
	.ce-podcasts-grid.ce-post-style-list .entry-view {
		display: none;
	}
}

.entry-podcast.entry-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	align-items: center;
	min-height: 100px;
}

.entry-podcast.entry-list .entry-titles {
	padding-left: 75px;
}

.entry-podcast.entry-list .entry-media {
	flex: 50%;
}

@media (max-width: 500px) {
	.entry-podcast.entry-list .entry-media {
		flex: 100%;
		width: 100%;
	}
}

.entry-podcast.entry-list .entry-media .entry-play a {
	top: 50%;
	left: 0;
	margin-top: -25px;
	box-shadow: 0 0px 20px 0 rgba(0, 155, 212, .2);
}

.entry-podcast.entry-list .entry-meta-single {
	flex: 20%;
	text-align: center;
}

@media (max-width: 500px) {
	.entry-podcast.entry-list .entry-meta-single {
		flex: 100%;
		width: 100%;
	}
}

.entry-podcast.entry-list .entry-cat {
	width: 20%;
	text-align: center;
}

@media (max-width: 500px) {
	.entry-podcast.entry-list .entry-cat {
		flex: 100%;
		width: 100%;
	}
}

.entry-podcast.entry-list .entry-cat .entry-icon {
	margin: 0;
}

.entry-podcast.entry-list .entry-view {
	width: 10%;
	text-align: center;
}

@media (max-width: 500px) {
	.entry-podcast.entry-list .entry-view {
		flex: 100%;
		width: 100%;
	}
}

.entry-podcast.entry-list h3 {
	margin: 0;
}

.elementor-widget-ce-podcasts-carousel button {
	display: none;
}

.ce-carousel-head {
	position: relative;
	min-height: 50px;
	margin-bottom: 30px;
}

.ce-carousel-head .ce-podcasts-carousel-controls {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 999;
}

.ce-carousel-head .ce-podcasts-carousel-controls a {
	width: 50px;
	height: 50px;
	background: #fff;
	text-align: center;
	line-height: 50px;
	display: inline-block;
	border-radius: 50%;
	box-shadow: 0 0 35px 0px rgba(22, 12, 96, .09);
	transition: box-shadow .4s;
}

.ce-carousel-head .ce-podcasts-carousel-controls a:hover {
	box-shadow: 0 0 35px 0px rgba(0, 0, 0, 0);
}

.ce-carousel-head .ce-podcasts-carousel-controls a i {
	line-height: 50px;
}

.ce-post-style-box3 .entry-podcast {
	padding: 0;
	background: transparent;
}

.ce-post-style-box3 .entry-podcast .entry-media .entry-play {
	position: absolute;
	bottom: 20px;
	background: transparent;
	left: 20px;
	padding-right: 20px;
	z-index: 2;
}

.ce-post-style-box3 .entry-podcast .entry-media .entry-play a.ce-play {
	position: static;
	float: left;
	margin: 5px 15px 0 0;
}

.ce-post-style-box3 .entry-podcast .entry-media .entry-play .entry-title {
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-align: left;
	color: #fff;
}

.ce-post-style-box3 .entry-podcast .entry-media .entry-play .entry-title:hover {
	color: #fff !important;
}

.ce-post-style-box3 .entry-podcast .entry-media .entry-play .entry-title a {
	position: static;
	line-height: inherit;
	background: transparent;
}

.ce-post-style-box3 .entry-podcast .entry-media .entry-play .entry-title a:hover {
	color: #fff !important;
}

.ce-post-style-box3 .entry-podcast .entry-media .entry-play .entry-icon {
	display: block;
	width: 100%;
	text-align: left;
	float: none;
	margin: 0;
	height: 26px;
}

.ce-post-style-box3 .entry-podcast .entry-media .entry-play .entry-icon a {
	background: none;
	position: static;
	position: static;
	width: 100%;
	display: block;
	float: none;
	text-align: left;
	color: #fff;
	padding: 0;
	line-height: inherit;
	line-height: 10px;
	height: auto;
}

.ce-post-style-box3 .entry-podcast .entry-media .entry-play .entry-icon a i {
	color: #fff;
	font-size: 16px;
	vertical-align: text-bottom;
	margin-right: 5px;
}

.ce-post-style-box3 .entry-podcast .entry-media .entry-img:before {
	opacity: 1;
	background: rgba(0, 0, 0, .15);
}

.ce-post-style-box3 .entry-podcast:hover .entry-media .entry-img:before {
	opacity: 1;
	background: rgba(0, 0, 0, .3);
}

.ce-post-style-box4 .entry-podcast {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
}

@media (max-width: 500px) {
	.ce-post-style-box4 .entry-podcast {
		display: block;
	}
}

.ce-post-style-box4 .entry-podcast .entry-icon {
	margin-top: 0;
}

@media (max-width: 767px) {
	.ce-post-style-box4 .entry-podcast .entry-icon {
		margin-top: 20px;
	}
}

.ce-post-style-box4 .entry-podcast .entry-media {
	width: 50%;
	height: 100%;
	padding-right: 20px;
}

@media (max-width: 500px) {
	.ce-post-style-box4 .entry-podcast .entry-media {
		width: 100%;
	}
}

.ce-post-style-box4 .entry-podcast .entry-media figure {
	height: 100%;
}

.ce-post-style-box4 .entry-podcast .entry-media figure img {
	height: 100%;
}

.ce-post-style-box4 .entry-podcast .entry-media .entry-meta-date {
	right: 35px;
}

.ce-post-style-box4 .entry-podcast .entry-titles {
	width: 50%;
	padding-left: 20px;
}

@media (max-width: 500px) {
	.ce-post-style-box4 .entry-podcast .entry-titles {
		width: 100%;
	}
}

.ce-post-style-box4 .entry-podcast .entry-titles h3 {
	margin-bottom: 15px;
}

.ce-post-style-box4 .entry-podcast .entry-titles a {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.ce-post-style-box4 .entry-podcast .entry-titles p {
	margin-top: 0;
	font-size: 18px;
	line-height: 30px;
	color: #6d727c;
}

.ce-post-style-box4 .entry-podcast .entry-titles p::first-letter {
	text-transform: uppercase;
}

.ce-post-style-box4 .entry-podcast .entry-titles .ce-view {
	font-size: 11px;
	color: #908dab;
	text-transform: uppercase;
	font-weight: 500;
	transition: all .3s;
}

.ce-post-style-box4 .entry-podcast .entry-titles .ce-view:hover {
	color: #01b7cd;
}

.ce-featured-podcasts-grid.ce-post-style-light .entry-play span, .ce-featured-podcasts-grid.ce-post-style-dark .entry-play span {
	width: 45px;
	height: 45px;
	display: inline-block;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	color: #fff;
	background-image: linear-gradient(to bottom, #01dac1, #009ad5);
	margin-right: 10px;
}

a.livecast-play span:before {
	font-family: "audioplayer-font" !important;
	font-size: 24px;
	line-height: 1;
	vertical-align: middle;
}

a.livecast-play span.lp-play:before {
	content: "꤀";
	margin-left: 3px;
}

a.livecast-play span.lp-pause:before, a.livecast-play span.lp-pause:before {
	content: "꤁";
}

.ce-post-style-box2 .entry-podcast h3 {
	margin-bottom: 15px;
	margin-top: 2px;
}

.ce-post-navigation-style-lark .nav-wrapper {
	display: flex;
}

.ce-post-navigation-style-lark .nav-wrapper .nav-item {
	flex: 1;
}

.ce-post-navigation-style-lark .nav-wrapper .nav-item.item-back_to {
	text-align: center;
}

.ce-post-navigation-style-lark .nav-wrapper .nav-item.item-next {
	text-align: right;
}

.ce-post-navigation-style-lark .nav-wrapper .nav-item .item-label {
	font-weight: 500;
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.ce-post-navigation-style-lark .nav-wrapper .nav-item .item-title {
	font-size: 36px;
	line-height: 48px;
	letter-spacing: -.72px;
	font-weight: 300;
}

.pricing-section {
	position: relative;
}

.pricing-section:before {
	position: absolute;
	content: "";
	left: 0px;
	top: 0px;
	right: 0px;
	height: 550px;
	background-color: #f3f5fb;
}

.pricing-section .auto-container {
	position: static;
	max-width: 1200px;
	padding: 0px 15px;
	margin: 0 auto;
}

.pricing-section .sec-title {
	margin-bottom: 35px;
}

.pricing-section .sec-title h2 {
	position: relative;
	color: #222;
	font-weight: 500;
	line-height: 1.3em;
}

.pricing-section ul {
	list-style: none;
}

.pricing-section .pricing-tabs {
	position: relative;
}

.pricing-section .pricing-tabs .tabs-content .tab {
	position: relative;
	display: none;
	transition: all 600ms ease;
	-moz-transition: all 600ms ease;
	-webkit-transition: all 600ms ease;
	-ms-transition: all 600ms ease;
	-o-transition: all 600ms ease;
	transform: translateY(60px);
}

.pricing-section .pricing-tabs .tabs-content .tab .content .pattern-layer-one {
	position: absolute;
	left: -115px;
	top: -140px;
	width: 294px;
	height: 292px;
	background-repeat: no-repeat;
}

.pricing-section .pricing-tabs .tabs-content .active-tab {
	display: block;
	transform: translateY(0px);
}

.pricing-section .pricing-tabs .support {
	position: relative;
	color: #666;
	font-size: 14px;
	text-align: center;
	margin-top: 20px;
}

.pricing-section .pricing-tabs .support a {
	position: relative;
	color: #5d6cc1;
	font-size: 14px;
	font-weight: 500;
	text-decoration: underline;
}

.pricing-section .pricing-tabs .title-column {
	position: relative;
	text-align: center;
	margin-bottom: 105px;
}

.pricing-section .pricing-tabs .tab-buttons {
	position: relative;
	text-align: center;
	display: inline-block;
}

.pricing-section .pricing-tabs .tab-buttons .tab-btn {
	position: relative;
	color: #c0c0c0;
	font-size: 18px;
	font-weight: 400;
	float: left;
	cursor: pointer;
	margin: 0px 20px;
	line-height: 24px;
	text-transform: capitalize;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
}

.pricing-section .pricing-tabs .tab-buttons .boll {
	position: relative;
	width: 60px;
	height: 30px;
	padding: 2.5px 2px 2px;
	border-radius: 50px;
	float: left;
	text-align: left;
	background-color: #5d6cc1;
}

.pricing-section .pricing-tabs .tab-buttons .boll .round {
	position: relative;
	width: 24px;
	height: 24px;
	border-radius: 50px;
	display: inline-block;
	background-color: #fff;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
}

.pricing-section .pricing-tabs .tab-buttons .boll .round.boll-right {
	transform: translateX(31px);
}

.pricing-section .pricing-tabs .tab-buttons .tab-btn:hover, .pricing-section .pricing-tabs .tab-buttons .tab-btn.active-btn {
	color: #222;
}

.pricing-section .price-block {
	position: relative;
	margin-bottom: 30px;
}

.pricing-section .price-block .inner-box {
	position: relative;
	border-radius: 8px;
	text-align: center;
	padding: 45px 0px 50px;
	background-color: #fff;
	box-shadow: 0px 5px 25px rgba(0, 0, 0, .07);
}

.pricing-section .price-block .inner-box .most-popular {
	position: absolute;
	left: 0px;
	top: -39px;
	width: 100%;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	padding: 8px 15px;
	text-align: center;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: 5px 5px 0px 0px;
	background-color: #2ed47d;
}

.pricing-section .price-block .inner-box .title {
	position: relative;
	color: #5d6cc1;
	font-size: 22px;
	font-family: "Jost", sans-serif;
}

.pricing-section .price-block .inner-box .price {
	position: relative;
	color: #5d6cc1;
	font-size: 52px;
	text-align: center;
	font-weight: 300;
	line-height: 1em;
	margin-top: 22px;
	margin-bottom: 30px;
	font-family: "Jost", sans-serif;
}

.pricing-section .price-block .inner-box ul {
	position: relative;
	padding: 0;
}

.pricing-section .price-block .inner-box ul li {
	position: relative;
	color: #666;
	font-size: 16px;
	margin-bottom: 14px;
}

.pricing-section .price-block .inner-box .button-box {
	position: relative;
	padding-top: 40px;
	margin-top: 50px;
	border-top: 1px solid #e7e7e7;
}

.pricing-section .price-block .inner-box .button-box .theme-btn {
	display: inline-block;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.pricing-section .price-block .inner-box .button-box .btn-style-nine {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 30px;
	color: #5d6cc1;
	padding: 13px 52px;
	font-weight: 500;
	overflow: hidden;
	overflow: hidden;
	border-radius: 50px;
	text-transform: capitalize;
	border: 2px solid #5d6cc1;
}

.pricing-section2 {
	position: relative;
	padding: 90px 0px 90px;
}

.pricing-section2:before {
	position: absolute;
	content: "";
	left: 0px;
	top: 0px;
	right: 0px;
	height: 647px;
	background-color: transparent;
}

@-webkit-keyframes "ripple" {
	70% {
		box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
	}
	
	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

@keyframes "ripple" {
	70% {
		box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
	}
	
	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

.play-box {
	position: relative;
	float: left;
	width: 60px;
	height: 60px;
	color: #5d6cc1;
	font-size: 20px;
	text-align: center;
	border-radius: 50%;
	line-height: 25px;
	display: inline-block;
	z-index: 1;
	padding: 3.1%;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	background-color: #dfe2f3;
}

.play-box .overlay-box span {
	position: absolute;
	width: 60px;
	height: 60px;
	left: 50%;
	top: 50%;
	z-index: 99;
	color: #5d6cc1;
	font-weight: 400;
	font-size: 12px;
	text-align: center;
	border-radius: 50%;
	padding-left: 7px;
	background-color: #dfe2f3;
	display: inline-block;
	margin-top: -30px;
	margin-left: -35px;
	transition: all 900ms ease;
	-moz-transition: all 900ms ease;
	-webkit-transition: all 900ms ease;
	-ms-transition: all 900ms ease;
	-o-transition: all 900ms ease;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, .1);
}

.play-box .ripple {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 60px;
	width: 60px;
	margin-left: -1px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 0 0 rgba(93, 108, 193, .4);
	-moz-box-shadow: 0 0 0 0 rgba(93, 108, 193, .4);
	-ms-box-shadow: 0 0 0 0 rgba(93, 108, 193, .4);
	-o-box-shadow: 0 0 0 0 rgba(93, 108, 193, .4);
	box-shadow: 0 0 0 0 rgba(93, 108, 193, .4);
	-webkit-animation: ripple 3s infinite;
	-moz-animation: ripple 3s infinite;
	-ms-animation: ripple 3s infinite;
	-o-animation: ripple 3s infinite;
	animation: ripple 3s infinite;
}

.play-box .ripple:before {
	position: absolute;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 60px;
	width: 60px;
	margin-left: -1px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 0 0 rgba(93, 108, 193, .4);
	-moz-box-shadow: 0 0 0 0 rgba(93, 108, 193, .4);
	-ms-box-shadow: 0 0 0 0 rgba(93, 108, 193, .4);
	-o-box-shadow: 0 0 0 0 rgba(93, 108, 193, .4);
	box-shadow: 0 0 0 0 rgba(93, 108, 193, .4);
	-webkit-animation: ripple 3s infinite;
	-moz-animation: ripple 3s infinite;
	-ms-animation: ripple 3s infinite;
	-o-animation: ripple 3s infinite;
	animation: ripple 3s infinite;
	-webkit-animation-delay: .9s;
	-moz-animation-delay: .9s;
	-ms-animation-delay: .9s;
	-o-animation-delay: .9s;
	animation-delay: .9s;
	content: "";
}

.play-box .ripple:after {
	position: absolute;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 60px;
	width: 60px;
	margin-left: -1px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 0 0 rgba(93, 108, 193, .4);
	-moz-box-shadow: 0 0 0 0 rgba(93, 108, 193, .4);
	-ms-box-shadow: 0 0 0 0 rgba(93, 108, 193, .4);
	-o-box-shadow: 0 0 0 0 rgba(93, 108, 193, .4);
	box-shadow: 0 0 0 0 rgba(93, 108, 193, .4);
	-webkit-animation: ripple 3s infinite;
	-moz-animation: ripple 3s infinite;
	-ms-animation: ripple 3s infinite;
	-o-animation: ripple 3s infinite;
	animation: ripple 3s infinite;
	-webkit-animation-delay: .6s;
	-moz-animation-delay: .6s;
	-ms-animation-delay: .6s;
	-o-animation-delay: .6s;
	animation-delay: .6s;
	content: "";
}

.ce-products-carousel ul.products li.product {
	float: none;
	margin: 0;
}

.ce-products-carousel ul.products li.product.ce-animation {
	-webkit-animation-duration: .3s;
	-moz-animation-duration: .3s;
	-o-animation-duration: .3s;
	animation-duration: .3s;
}

.ce-products-carousel .ce-products-carousel-controls {
	margin-top: 32px;
	display: flex;
	justify-content: center;
}

.ce-products-carousel .ce-products-carousel-controls a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #eee;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 15px;
}

@media (max-width: 991px) {
	.ce-products-carousel .ce-products-carousel-controls {
		display: none;
	}
}

.ce-mailchimp-form {
	background: url("https://cdn-khiaj.nitrocdn.com/FoIzgCwKZxaQHRPhrTjcNqPevNavAGnJ/assets/images/optimized/rev-697e7e6/saniex.com/wp-content/plugins/cowidgets-elementor-addons/assets/images/formbg.png") no-repeat;
	background-size: cover;
	padding: 33px 40px;
	box-shadow: 0 0 35px 0px rgba(22, 12, 96, .09);
	border-radius: 10px;
}

.ce-mailchimp-form.nitro-lazy {
	background-image: none !important;
}

.ce-mailchimp-form .row {
	display: flex;
	justify-content: center;
	align-items: center;
}

.ce-mailchimp-form .cl-head {
	display: none;
}

.ce-mailchimp-form .ce-head h2 {
	color: #061020;
	font-size: 30px;
	font-weight: 700;
}

.ce-mailchimp-form .ce-head p {
	color: #6d727c;
	margin: 0;
	margin-top: 5px;
	font-size: 18px;
}

.ce-mailchimp-form input[type=email]::placeholder {
	color: #6d727c;
	text-tranform: capitalize;
}

.ce-mailchimp-form p {
	position: relative;
}

.ce-mailchimp-form input[type=email] {
	color: #6d727c;
	border-radius: 25px;
	border: 1px solid #ecf2f7;
	padding: 10px 20px;
	width: 100%;
	padding-right: 150px;
}

.ce-mailchimp-form input[type=submit] {
	background: #000;
	color: #fff;
	border-radius: 25px;
	height: 50px;
	padding: 10px 40px;
	text-transform: uppercase;
	position: absolute;
	right: 0;
	font-size: 13px;
	font-weight: 500;
	transition: all .3s;
}

.ce-mailchimp-form input[type=submit]:hover {
	background: #01b7cc;
}

.ce-mailchimp-form.light {
	background: transparent;
	box-shadow: none;
	padding: 33px 0px;
}

.ce-mailchimp-form.light input[type=email] {
	border: none;
}

.ce-mailchimp-form.light .ce-head h5 {
	color: #667687;
	line-height: 27px;
	text-transform: inherit;
	font-size: 16px;
	font-weight: normal;
}

.ce-mailchimp-form.dark {
	background: transparent;
	box-shadow: none;
	padding: 33px 0px;
}

.ce-mailchimp-form.dark input[type=email] {
	border: none;
	background: #192331;
}

.ce-mailchimp-form.dark .ce-head h2 {
	color: #f6fafc;
}

.ce-mailchimp-form.dark .ce-head h5 {
	color: #667687;
	line-height: 24px;
	font-size: 16px;
	text-transform: inherit;
	font-weight: normal;
}

.ce-mailchimp-form.dark input[type=submit] {
	background-image: linear-gradient(300deg, #025ba3 34%, #03a18e 100%);
}

@media (max-width: 767px) {
	.ce-mailchimp-form .row {
		display: block;
	}
	
	.ce-mailchimp-form .ce-head {
		display: none;
	}
}

@media (max-width: 320px) {
	.ce-mailchimp-form input[type=submit] {
		position: static;
	}
}

.entry-show {
	box-shadow: 0 0 35px 0px rgba(22, 12, 96, .09);
}

.entry-show .entry-content {
	padding: 40px 40px 40px 30px;
	background: #fff;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.entry-show .entry-wrap {
	clear: both;
	margin-bottom: 15px;
}

.entry-show .entry-data {
	clear: both;
	margin-bottom: 10px;
}

.entry-show .entry-play {
	width: 50px;
	height: 50px;
	float: left;
	text-align: center;
	vertical-align: middle;
	background: #fff;
	line-height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	box-shadow: 0 0px 20px 0 rgba(37, 197, 255, .2);
	margin-top: 7px;
	backface-visibility: hidden;
	transform: translateZ(0) scale(1, 1);
	-webkit-transition: all .2s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .2s cubic-bezier(.785, .135, .15, .86);
	transition: all .2s cubic-bezier(.785, .135, .15, .86);
}

.entry-show .entry-play a {
	-webkit-transition: all .2s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: all .2s cubic-bezier(.785, .135, .15, .86);
	transition: all .2s cubic-bezier(.785, .135, .15, .86);
	width: 100%;
}

.entry-show .entry-play:hover a {
	color: #fff;
}

.entry-show .entry-title .entry-count {
	font-size: 11px;
	color: #01b7cc;
	text-transform: uppercase;
}

.entry-show .entry-title h3 {
	font-size: 18px;
	color: #061020;
	line-height: 24px;
	font-weight: 500;
}

.entry-show .entry-img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	position: relative;
}

.entry-show .entry-img:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	top: 0;
	left: 0;
	z-index: 1;
	background: rgba(0, 0, 0, .2);
	transition: all .5s;
	-webkit-transition: all .5s;
	opacity: 0;
}

.entry-show img {
	width: 100%;
	max-width: 100%;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.entry-show p {
	line-height: 24px;
	margin-bottom: 25px;
}

.entry-show .view-all {
	margin-top: 30px;
	border-top: 1px solid #e6ebef;
	padding-top: 25px;
	margin-bottom: 0;
}

.entry-show .view-all a {
	color: #908dab;
	font-size: 11px;
	text-transform: uppercase;
}

.entry-show .view-all a:hover {
	color: #01b7cc;
}

.entry-show:hover .entry-img:before {
	opacity: 1;
}

.elementor-widget-ce-podcasts-shows-carousel button {
	display: none;
}

.ce-carousel-head {
	position: relative;
	margin-bottom: 30px;
	min-height: 50px;
}

.ce-carousel-head .ce-podcasts-shows-carousel-controls {
	position: absolute;
	top: 0;
	right: 0;
}

.ce-carousel-head .ce-podcasts-shows-carousel-controls a {
	width: 50px;
	height: 50px;
	background: #fff;
	text-align: center;
	line-height: 50px;
	display: inline-block;
	border-radius: 50%;
	box-shadow: 0 0 35px 0px rgba(22, 12, 96, .09);
	transition: box-shadow .4s;
}

.ce-carousel-head .ce-podcasts-shows-carousel-controls a:hover {
	box-shadow: 0 0 35px 0px rgba(0, 0, 0, 0);
}

.ce-carousel-head .ce-podcasts-shows-carousel-controls a i {
	line-height: 50px;
}

.entry-show .entry-play a.livecast-play span:before {
	font-family: "audioplayer-font" !important;
	font-size: 24px;
	line-height: inherit;
}

.entry-show .entry-play a.livecast-play span.lp-play:before {
	content: "꤀";
	margin-left: 3px;
}

.entry-show .entry-play a.livecast-pause span.lp-pause:before {
	content: "꤁";
}
