/* === ../wp-content/plugins/crafto-addons/includes/assets/css/frontend.css === */
/* ===================================
	Frontend
====================================== */
/* Custom */
body.elementor-page a {
	text-decoration: none;
}

body:not(.crafto-theme-ready) .verticalbar-wrap {
    display: none;
}

.edit-crafto-section * {
	transition: all 0.3s ease-in-out;
}
.edit-crafto-section {
	z-index: 999;
	position: absolute;
	top: 30px;
	border: 0 solid #532df5;
	width: 25px;
	height: 25px;
	border-radius: 2px;
	text-align: center;
	font-size: 14px;
	line-height: 28px;
	padding-left: 1px;
	left: 15px;
	transition: all 0.3s ease-in-out;
	background: url(/wp-content/plugins/crafto-addons/includes/assets/images/edit-icon.svg) center center no-repeat #532df5;
}
.edit-crafto-section:hover {
	background: url(/wp-content/plugins/crafto-addons/includes/assets/images/edit-icon.svg) center center no-repeat #27AE60;
	border: 0 solid #27AE60;
}
.edit-crafto-section i {
	color: #fff;
}
.elementor-editor-active .edit-crafto-section {
	display: none !important;
}
.full-screen-slide {
	height: 100vh;
}
.elementor-icon {
	font-size: 20px;
}
.elementor-counter .elementor-counter-number-prefix,
.elementor-counter .elementor-counter-number-suffix {
	white-space: normal;
}
.elementor-widget .elementor-icon-list-items {
	margin: 0;
	padding: 0;
}
.elementor embed,
.elementor iframe,
.elementor object,
.elementor video {
	vertical-align: top;
}
.elementor-star-rating i {
	line-height: 1;
}
.elementor-html .elementor-template-edit-cover {
	background-color: #532df5;
	color: #fff;
	padding: 6px 12px 7px;
	font-size: 12px;
	display: inline-block;
	line-height: normal;
	vertical-align: top;
	cursor: pointer;
	top: 0;
	right: 0;
	position: relative;
	z-index: 99;
}
.elementor-html .elementor-template-edit-cover span {
	margin-left: 8px;
	font-weight: 600;
	font-size: 11px;
	text-transform: uppercase;
}
.menu svg {
	width: 1em;
	height: auto;
	transition: all 0.3s ease-in-out;
}
.elementor-widget-icon.elementor-view-default .elementor-icon {
	display: block;
}
.elementor-blockquote footer {
	color: var( --e-global-color-secondary, #232323 );
}
.elementor-widget-crafto-text-editor span[style*="text-decoration: underline"],
.elementor-widget-crafto-text-editor a[style*="text-decoration: underline"] {
	text-decoration: none !important;
	border-bottom: 1px solid currentColor;
}

/* Edit Icon */
.edit-mini-header {
	top: 11px;
}
.edit-top-header {
	top: 19px;
}
.edit-header {
	top: 29px;
}
.edit-archive {
	top: 90px;
	z-index: 99999;
}
.edit-single {
	top: 90px;
	z-index: 99999;
}
.edit-footer {
	top: 57px;
}
.edit-page-title {
	top: 150px;
}

/* Button icon Position */
.elementor-button .elementor-align-icon-right {
	order: 15;
}
.elementor-button .elementor-align-icon-left {
	order: 5;
}
.elementor-view-default .elementor-icon svg {
	height: auto;
}

/* Elementor Text View Vertical */
.elementor-text-view-vertical {
	transform: rotate(-180deg);
	writing-mode: vertical-lr;
	height: 100%;
}

/* Left Menu */
.single-themebuilder .header-common-wrapper.left-menu-classic,
.single-themebuilder .header-common-wrapper.left-menu-modern {
	position: absolute;
	width: 100%;
}

/* Custom Menu */
.elementor-editor-active .crafto-wp-menus-wrapper.slide-on-hover li a,
.elementor-editor-active .crafto-custom-menu-wrapper.slide-on-hover li a {
	transition: padding-left 0.3s;
}

/* Simple Menu */
.page-layout .crafto-simple-menu a {
	padding: 0 0 2px 0;
}

/* Text Rotator */
.elementor-widget-crafto-text-rotator .text-rotator {
	visibility: hidden;
}
.elementor-widget-crafto-text-rotator .text-rotator.appear {
	visibility: visible;
}
.elementor-title-vertical-text.elementor-widget-crafto-text-rotator .elementor-widget-container {
	justify-content: center;
	align-items: center;
	display: flex;
}
.elementor-widget-crafto-text-rotator.elementor-text-view-vertical {
	height: auto;
}

/* Float Animation */
.animation-float.has-float {
	--float-animation-ease: linear;
	--float-animate-from: 0px;
	--float-animate-middle: 5px;
	--float-animate-to: 10px;
	--float-delay: 0s;
	--float-duration: 2000ms;
	animation: craftoFloatAnimation var(--float-duration) var(--float-animation-ease) infinite alternate both;
	animation-delay: var(--float-delay);
}

@keyframes craftoFloatAnimation {
	0% {
		transform: translateY(var(--float-animate-from, 0px));
	}

	50% {
		transform: translateY(var(--float-animate-middle, 5px));
	}

	100% {
		transform: translateY(var(--float-animate-to, 10px));
	}
}

/* Zoom Animation */
.animation-zoom {
	animation: zoom-in-zoom-out 2000ms linear 500ms infinite alternate both;
}

@keyframes zoom-in-zoom-out {
	0% {
		transform: scale(1, 1);
	}

	50% {
		transform: scale(1.2, 1.2);
	}

	100% {
		transform: scale(1, 1);
	}
}

/* Rotation Animation */
@keyframes rotation {
	from {
		-webkit-transform: rotate(var(--rotate-animate-from, 0deg));
	}

	to {
		-webkit-transform: rotate(var(--rotate-animate-to, 359deg));
	}
}

/* Move it (Define The Animation) */
.marquees-text .crafto-primary-title {
	white-space: nowrap;
}
.marquees-text {
	transform: translateX(100%);
	animation: marquees-effect-text 50s linear infinite;
	width: 100%;
	white-space: nowrap;
	display: block;
}

@-moz-keyframes marquees-effect-text {
	0% {
		-moz-transform: translateX(100%);
	}

	100% {
		-moz-transform: translateX(-100%);
	}
}

@-webkit-keyframes marquees-effect-text {
	0% {
		-webkit-transform: translateX(100%);
	}

	100% {
		-webkit-transform: translateX(-100%);
	}
}

@keyframes marquees-effect-text {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-100%);
	}
}

.marquees-text.marquees-right {
	transform: translateX(100%);
	animation: marquees-effect-text-right 50s linear infinite;
	width: 100%;
	white-space: nowrap;
	display: block;
}

@-moz-keyframes marquees-effect-text-right {
	0% {
		-moz-transform: translateX(-100%);
	}

	100% {
		-moz-transform: translateX(100%);
	}
}

@-webkit-keyframes marquees-effect-text-right {
	0% {
		-webkit-transform: translateX(-100%);
	}

	100% {
		-webkit-transform: translateX(100%);
	}
}

@keyframes marquees-effect-text-right {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(100%);
	}
}

/* Animation Effect */
.hvr-btn-expand-ltr,
.hvr-btn-slide-up-bg,
.hvr-btn-slide-down-bg,
.hvr-btn-slide-left-bg,
.hvr-btn-slide-right-bg {
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.hvr-btn-expand-ltr:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	z-index: -1;
	transition-duration: 0.3s;
	width: 50%;
	height: 53px;
}
.hvr-btn-expand-ltr:hover:before {
	width: 100% !important;
}
.hvr-btn-slide-up-bg:before,
.hvr-btn-slide-down-bg:before,
.hvr-btn-slide-left-bg:before,
.hvr-btn-slide-right-bg:before {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: -1;
	left: 0;
	top: 0;
	transition-duration: 0.3s;
}
.hvr-btn-slide-up-bg:before {
	transform: translateY(100%);
}
.hvr-btn-slide-down-bg:before {
	transform: translateY(-100%);
}
.hvr-btn-slide-left-bg:before {
	transform: translateX(100%);
}
.hvr-btn-slide-right-bg:before {
	transform: translateX(-100%);
}
.hvr-btn-slide-right-bg:hover:before,
.hvr-btn-slide-left-bg:hover:before {
	transform: translateX(0);
}
.hvr-btn-slide-up-bg:hover:before,
.hvr-btn-slide-down-bg:hover:before {
	transform: translateY(0);
}
.hvr-float-5px,
.hvr-float-3px,
.hvr-scale-effect,
.hvr-scale-9-effect {
	transition: all 0.3s ease-in-out;
	will-change: transform;
}
.hvr-float-10px {
	transition: all 0.3s ease-in-out;
	will-change: transform;
}
.hvr-float-10px:active,
.hvr-float-10px:focus,
.elementor-social-icon:hover .hvr-float-10px,
.elementor-social-icon.hvr-float-10px:hover,
.elementor-animation-float-10px:hover {
	transform: translateY(-10px);
}
.hvr-float-5px:active,
.hvr-float-5px:focus,
.hvr-float-5px:hover,
.elementor-animation-float-5px:hover {
	transform: translateY(-5px);
}
.hvr-float-2px:active,
.hvr-float-2px:focus,
.hvr-float-2px:hover,
.elementor-animation-float-2px:hover {
	transform: translateY(-2px);
}
.hvr-float-3px:active,
.hvr-float-3px:focus,
.hvr-float-3px:hover,
.elementor-animation-float-3px:hover {
	transform: translateY(-3px);
}
.hvr-scale-effect:hover {
	transform: scale(1.3);
}
.hvr-scale-9-effect:hover {
	transform: scale(.9);
}
.hvr-zoom-effect span {
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	transition: all 0.3s ease-in-out;
	width: 0;
	z-index: -1;
}
.hvr-ease-in-out,
.elementor-button,
.elementor-button-wrapper a.elementor-button,
.elementor-button-wrapper a.elementor-button:not(.btn-custom-effect) .elementor-button-content-wrapper {
	transition: all 0.3s ease-in-out;
}
.elementor-animation-btn-expand-ltr,
.elementor-animation-btn-slide-up,
.elementor-animation-btn-slide-down,
.elementor-animation-btn-slide-left,
.elementor-animation-btn-slide-right {
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.elementor-animation-btn-expand-ltr {
	background-color: transparent !important;
	background-image: none !important;
	border: none !important;
}
.elementor-animation-btn-expand-ltr .btn-hover-animation {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	z-index: -1;
	transition-duration: 0.3s;
}
.elementor-animation-btn-expand-ltr:hover .btn-hover-animation {
	width: 100% !important;
}
.btn-hover-animation {
	background-color: rgb(255 255 255);
}
.elementor-animation-btn-slide-up .btn-hover-animation,
.elementor-animation-btn-slide-down .btn-hover-animation,
.elementor-animation-btn-slide-left .btn-hover-animation,
.elementor-animation-btn-slide-right .btn-hover-animation {
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: -1;
	left: 0;
	top: 0;
	transition-duration: 0.3s;
}
.elementor-animation-btn-slide-up .btn-hover-animation {
	transform: translateY(100%);
}
.elementor-animation-btn-slide-down .btn-hover-animation {
	transform: translateY(-101%);
}
.elementor-animation-btn-slide-left .btn-hover-animation {
	transform: translateX(100%);
}
.elementor-animation-btn-slide-right .btn-hover-animation {
	transform: translateX(-101%);
}
.elementor-animation-btn-slide-right:hover .btn-hover-animation,
.elementor-animation-btn-slide-left:hover .btn-hover-animation {
	transform: translateX(0);
}
.elementor-animation-btn-slide-up:hover .btn-hover-animation,
.elementor-animation-btn-slide-down:hover .btn-hover-animation {
	transform: translateY(0);
}
.elementor-animation-btn-switch-text {
	position: relative;
	overflow: hidden;
}
.elementor-animation-btn-switch-text .elementor-button-content-wrapper {
	display: inline-flex;
	align-items: center;
	position: relative;
}
.elementor-animation-btn-switch-text .elementor-button-text {
	transition: opacity 0.65s, transform 0.65s;
	transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
.elementor-animation-btn-switch-text .elementor-button-text::before {
	content: attr(data-btn-text);
	display: inline-block;
	position: absolute;
	white-space: nowrap;
	top: 50%;
	opacity: 0;
	left: 50%;
	transform: translate(-50%, 100%);
	transition: opacity 0.5s, transform 0.8s;
	transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
.elementor-animation-btn-switch-text:hover .elementor-button-text {
	transform: translateY(-200%);
}
.elementor-animation-btn-switch-text:hover .elementor-button-text::before {
	transform: translate(-50%, 150%);
	opacity: 1;
}
.elementor-button.elementor-animation-btn-reveal-icon>.elementor-button-content-wrapper {
	display: inline-flex;
	align-items: center;
}
.elementor-button.elementor-animation-btn-reveal-icon .elementor-button-text {
	margin-left: 0;
	position: relative;
	z-index: 3;
	transition: transform 0.5s;
}
.elementor-button.elementor-animation-btn-reveal-icon .elementor-button-icon.elementor-align-icon-right {
	display: inline-flex;
	align-items: center;
	margin-left: -12px;
}
.elementor-button.elementor-animation-btn-reveal-icon .elementor-button-icon.elementor-align-icon-right i,
.elementor-button.elementor-animation-btn-reveal-icon .elementor-button-icon.elementor-align-icon-right svg {
	display: inline-block;
	opacity: 0;
	transform: translateX(0.24px);
	transition: all 0.3s ease-in-out;
}
.elementor-button.elementor-animation-btn-reveal-icon:hover .elementor-button-text {
	transform: translateX(-9px);
}
.elementor-button.elementor-animation-btn-reveal-icon:hover .elementor-button-icon i,
.elementor-button.elementor-animation-btn-reveal-icon:hover .elementor-button-icon svg {
	opacity: 1;
	transform: translateX(9px);
}
.elementor-button.elementor-animation-btn-reveal-icon.btn-reveal-icon-left .elementor-button-icon {
	margin-right: -12px;
	margin-left: 0;
	order: inherit;
}
.elementor-button.elementor-animation-btn-reveal-icon.btn-reveal-icon-left .elementor-button-icon i,
.elementor-button.elementor-animation-btn-reveal-icon.btn-reveal-icon-left .elementor-button-icon svg {
	transform: translateX(0.24px);
	transition: all 0.3s ease-in-out;
	display: inline-block;
	opacity: 0;
}
.elementor-button.elementor-animation-btn-reveal-icon.btn-reveal-icon-left .elementor-button-text {
	margin-right: 0;
	margin-left: 0;
	order: 1;
}
.elementor-button.elementor-animation-btn-reveal-icon.btn-reveal-icon-left:hover .elementor-button-text {
	transform: translateX(8px);
}
.elementor-button.elementor-animation-btn-reveal-icon.btn-reveal-icon-left:hover .elementor-button-icon i,
.elementor-button.elementor-animation-btn-reveal-icon.btn-reveal-icon-left:hover .elementor-button-icon svg {
	opacity: 1;
	transform: translateX(-11px);
}

/* Button */
.elementor-button,
a.elementor-button,
.btn,
[type="submit"],
.wp-block-search .wp-block-search__button,
input[type="submit"] {
	text-align: center;
	outline: none;
	letter-spacing: normal;
	line-height: 1.5;
	color: #fff;
	border: 2px solid var( --e-global-color-secondary, #232323 );
	background-color: var( --e-global-color-secondary, #232323 );
	padding: 13px 26px 13px 26px;
	border-radius: 0;
	font-weight: 500;
	box-shadow: none;
	white-space: nowrap;
	text-decoration: none;
	transition: all .3s ease-in-out;
	vertical-align: middle;
}
.elementor-button:hover,
a.elementor-button:hover,
.btn:hover,
a.btn:hover, [type="submit"]:hover,
.wp-block-search .wp-block-search__button:hover,
input[type="submit"]:hover {
	background-color: transparent;
	color: var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-button:focus,
.elementor-widget-crafto-button a.elementor-button:focus,
.btn:focus,
[type="submit"]:focus,
input[type="submit"]:focus {
	outline: medium none;
	outline-offset: 0;
	color: var( --e-global-color-secondary, #232323 );
}
.elementor-button {
	letter-spacing: 0.5px;
	transition: all 300ms ease-in-out;
	vertical-align: top;
}
.elementor-button-content-wrapper {
	align-items: center;
	color: #fff;
	transition: all .3s ease-in-out;
	gap: 0;
}
.elementor-button .elementor-button-content-wrapper svg {
	fill: #fff;
	transition: all 0.3s ease-in-out;
}
.elementor-button:hover .elementor-button-content-wrapper svg {
	fill: var( --e-global-color-secondary, #232323 );
}
a.elementor-button:hover .elementor-button-content-wrapper {
	color: var( --e-global-color-secondary, #232323 );
}
.elementor-button .elementor-button-icon.elementor-align-icon-left {
	margin-right: 6px;
}
.elementor-button .elementor-button-icon.elementor-align-icon-right {
	margin-left: 6px;
}
.elementor-button .elementor-button-icon i {
	color: #fff;
	transition: all .3s ease-in-out
}
.elementor-button:hover .elementor-button-icon i {
	color: var( --e-global-color-secondary, #232323 );
}
.crafto-slider-buttons .crafto-button-wrapper {
	display: inline-block;
	margin: 0;
}
.crafto-slider-buttons .crafto-button-wrapper .elementor-button { 
	margin: 0 4px;
}
.elementor-widget-crafto-button .elementor-button.elementor-size-custom {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.elementor-button .elementor-align-icon-left {
	order: -1;
}

/* Switch Icon Button */
.elementor-animation-btn-switch-icon .elementor-button-content-wrapper {
	display: inline-flex;
	align-items: center;
	transition: 0s;
	position: relative;
}
.elementor-animation-btn-switch-icon .elementor-button-text {
	position: relative;
	z-index: 3;
	order: inherit;
	transition: transform .6s 125ms cubic-bezier(.1, .75, .25, 1);
	margin-left: -1em;
}
.elementor-animation-btn-switch-icon:hover .elementor-button-text {
	transition-delay: 0.1s;
	transform: translateX(1.5em);
}
.elementor-animation-btn-switch-icon .elementor-button-icon {
	margin-right: 0;
	margin-left: 6px;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1em;
	width: 1em;
	transition: opacity .4s .25s, transform .6s .25s;
	transition-timing-function: cubic-bezier(.1, .75, .25, 1);
	z-index: 3;
}
.elementor-animation-btn-switch-icon:hover .elementor-button-icon {
	transition-delay: 0s;
	transform: translateX(1em);
	opacity: 0;
}
.elementor-animation-btn-switch-icon .elementor-button-icon i {
	margin: 0;
	font-size: 1em;
}
.elementor-animation-btn-switch-icon .elementor-button-icon+.elementor-button-icon {
	order: -2;
	opacity: 0;
	transition-delay: 0s;
	transform: translateX(-1em);
	display: inline-flex;
	margin-left: 0;
	margin-right: 0;
}
.elementor-animation-btn-switch-icon:hover .elementor-button-icon+.elementor-button-icon {
	opacity: 1;
	transform: translateX(0);
	transition-delay: 0.225s;
}
.elementor-animation-btn-switch-icon.btn-icon-left .elementor-button-text {
	margin-left: 0;
	margin-right: -1em;
}
.elementor-animation-btn-switch-icon.btn-icon-left:hover .elementor-button-text {
	transform: translateX(-1.5em);
}
.elementor-animation-btn-switch-icon.btn-icon-left .elementor-button-icon {
	order: -1;
	margin-left: 0;
	margin-right: 6px;
}
.elementor-animation-btn-switch-icon.btn-icon-left:hover .elementor-button-icon {
	transform: translateX(-1em);
}
.elementor-animation-btn-switch-icon.btn-icon-left .elementor-button-icon+.elementor-button-icon {
	order: 2;
	transform: translateX(1em);
	margin-right: 0;
}
.elementor-animation-btn-switch-icon.btn-icon-left:hover .elementor-button-icon+.elementor-button-icon {
	transform: translateX(0);
}

/* Expand Button */
.crafto-button-wrapper .elementor-button.elementor-animation-btn-expand-ltr .btn-hover-animation {
	background-color: var( --e-global-color-secondary, #232323 );
	border: 2px solid var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-animation-btn-expand-ltr .elementor-button-content-wrapper,
.crafto-button-wrapper .elementor-animation-btn-expand-ltr:focus .elementor-button-content-wrapper {
	color: #828282;
}
.elementor-button.elementor-animation-btn-expand-ltr .elementor-button-icon i {
	color: #828282;
	transition: all .3s ease-in-out;
}
.elementor-button.elementor-animation-btn-expand-ltr:hover .elementor-button-icon i {
	color: #fff;
}
.crafto-button-wrapper .elementor-animation-btn-expand-ltr svg {
	fill: #828282;
}
.crafto-button-wrapper .elementor-animation-btn-expand-ltr:hover .elementor-button-content-wrapper {
	color: #fff;
}
.crafto-button-wrapper .elementor-animation-btn-expand-ltr:hover svg {
	fill: #fff;
}

/* Rounded / Circle Button */
.crafto-button-wrapper .elementor-button.btn-icon-round.btn-border,
.crafto-button-wrapper .elementor-button.btn-icon-circle.btn-border {
	background-color: transparent;
}
.crafto-button-wrapper .elementor-button.btn-icon-round.btn-border:hover,
.crafto-button-wrapper .elementor-button.btn-icon-circle.btn-border:hover {
	background-color: var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-button.btn-icon-round.btn-border .elementor-button-content-wrapper,
.crafto-button-wrapper .elementor-button.btn-icon-circle.btn-border .elementor-button-content-wrapper {
	color: var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-button.btn-icon-round.btn-border:hover .elementor-button-content-wrapper,
.crafto-button-wrapper .elementor-button.btn-icon-circle.btn-border:hover .elementor-button-content-wrapper {
	color: #fff;
}
.crafto-button-wrapper .elementor-button.btn-icon-round,
.crafto-button-wrapper .elementor-button.btn-icon-circle {
	background-color: var( --e-global-color-secondary, #232323 );
	color: #fff;
	border-radius: 50px;
	padding:3px 3px 3px 20px;
	border: 2px solid var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-button.btn-icon-round:hover,
.crafto-button-wrapper .elementor-button.btn-icon-circle:hover {
	background-color: transparent;
}
.crafto-button-wrapper .elementor-button.btn-icon-round:hover .elementor-button-content-wrapper,
.crafto-button-wrapper .elementor-button.btn-icon-circle:hover .elementor-button-content-wrapper {
	color: var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-button.btn-icon-round svg,
.crafto-button-wrapper .elementor-button.btn-icon-circle svg {
	fill: var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-button.btn-icon-round {
	border-radius: 6px;
}
.crafto-button-wrapper .elementor-button.btn-icon-round.btn-icon-left,
.crafto-button-wrapper .elementor-button.btn-icon-circle.btn-icon-left {
	padding: 3px 20px 3px 3px;
}
.crafto-button-wrapper .elementor-button.btn-icon-round .elementor-button-content-wrapper,
.crafto-button-wrapper .elementor-button.btn-icon-circle .elementor-button-content-wrapper {
	color: #fff;
}
.crafto-button-wrapper .elementor-button.btn-icon-round .elementor-button-icon,
.crafto-button-wrapper .elementor-button.btn-icon-circle .elementor-button-icon {
	height: 42px;
	width: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	color: var( --e-global-color-secondary, #232323 );
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .35);
	border-radius: 50%;
}
.crafto-button-wrapper .elementor-button.btn-icon-round .elementor-button-icon {
	border-radius: 4px;
}
.crafto-button-wrapper .elementor-button.btn-icon-round .elementor-button-icon,
.crafto-button-wrapper .elementor-button.btn-icon-round .elementor-button-icon i,
.crafto-button-wrapper .elementor-button.btn-icon-circle .elementor-button-icon,
.crafto-button-wrapper .elementor-button.btn-icon-circle .elementor-button-icon i {
	transition: all .3s ease-in-out;
}
.crafto-button-wrapper .elementor-button.btn-icon-round .elementor-align-icon-right,
.crafto-button-wrapper .elementor-button.btn-icon-circle .elementor-align-icon-right {
	margin-left: 12px;
}
.crafto-button-wrapper .elementor-button.btn-icon-round .elementor-align-icon-left,
.crafto-button-wrapper .elementor-button.btn-icon-circle .elementor-align-icon-left {
	margin-right: 12px;
}
.crafto-button-wrapper .elementor-button.btn-icon-round .elementor-button-icon i,
.crafto-button-wrapper .elementor-button.btn-icon-circle .elementor-button-icon i,
.crafto-button-wrapper .elementor-button.btn-icon-round:hover .elementor-button-icon i,
.crafto-button-wrapper .elementor-button.btn-icon-circle:hover .elementor-button-icon i,
.crafto-button-wrapper .elementor-button.btn-icon-round.btn-border:hover i,
.crafto-button-wrapper .elementor-button.btn-icon-circle.btn-border:hover i {
	color: var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-button.btn-icon-round .elementor-button-icon svg,
.crafto-button-wrapper .elementor-button.btn-icon-circle .elementor-button-icon svg,
.crafto-button-wrapper .elementor-button.btn-icon-round:hover .elementor-button-icon svg,
.crafto-button-wrapper .elementor-button.btn-icon-circle:hover .elementor-button-icon svg,
.crafto-button-wrapper .elementor-button.btn-icon-round.btn-border:hover svg,
.crafto-button-wrapper .elementor-button.btn-icon-circle.btn-border:hover svg {
	fill: var( --e-global-color-secondary, #232323 );
}
.elementor-animation-btn-rounded-icon .elementor-button-content-wrapper {
	align-items: center;
}
.elementor-animation-btn-rounded-icon:hover {
	box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
}

/* Double Border */
.crafto-button-wrapper .elementor-button.btn-double-border {
	position: relative;
	border: 1px solid;
	color: var( --e-global-color-secondary, #232323 );
	border-radius: 0;
	background-color: transparent;
	padding: 0;
	margin: 6px 0;
	overflow: visible;
}
.crafto-button-wrapper .elementor-button.btn-double-border .elementor-button-content-wrapper {
	overflow: hidden;
	padding: 16px 30px;
	color: var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-button.btn-double-border i {
	color: var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-button.btn-double-border svg {
	fill: var( --e-global-color-secondary, #232323 );
}
.btn-double-border::after {
	display: inline-block;
	content: "";
	position: absolute;
	border: 1px solid;
	background-color: transparent;
	width: calc(100% - 8px);
	height: calc(100% + 12px);
	top: -6px;
	left: 4px;
	transform: translateX(0) translateY(0);
	z-index: 0;
	transition: all .3s ease-in-out;
}

/* Border Button */
.crafto-button-wrapper .elementor-button.btn-border {
	background-color: transparent;
}
.crafto-button-wrapper .elementor-button.btn-border .elementor-button-content-wrapper,
.crafto-button-wrapper .elementor-button.btn-border i {
	color: var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-button.btn-border svg {
	fill: var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-button.btn-border:hover svg {
	fill: #fff;
}
.crafto-button-wrapper .elementor-button.btn-border:hover {
	background-color: var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-button.btn-border:hover .elementor-button-content-wrapper,
.crafto-button-wrapper .elementor-button.btn-border:hover i {
	color: #fff;
}

/* Underline Button */
.crafto-button-wrapper .elementor-button.btn-underline {
	padding: 0 0 2px;
	position: relative;
	border: 0;
	border-bottom: 2px solid var( --e-global-color-secondary, #232323 );
	letter-spacing: 0;
	background-color: transparent;
	border-radius: 0;
	box-shadow: none;
}
.crafto-button-wrapper .btn-underline .elementor-button-content-wrapper,
.crafto-button-wrapper .elementor-button.btn-underline i {
	color: var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-button.btn-underline svg {
	fill: var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-button.btn-border.elementor-animation-btn-slide-up,
.crafto-button-wrapper .elementor-button.btn-border.elementor-animation-btn-slide-down,
.crafto-button-wrapper .elementor-button.btn-border.elementor-animation-btn-slide-left,
.crafto-button-wrapper .elementor-button.btn-border.elementor-animation-btn-slide-right {
	background-color: transparent;
}

/* Button Size */
.elementor-button.elementor-size-lg {
	font-size: 14px;
	padding: 19px 36px;
	border-radius: 0;
}
.elementor-button.elementor-size-xl {
	font-size: 16px;
	padding: 24px 46px;
	border-radius: 0;
}
.elementor-button.elementor-size-md {
	font-size: 13px;
	padding: 16px 30px;
	border-radius: 0;
}
.elementor-button.elementor-size-sm {
	font-size: 12px;
	padding: 13px 26px;
	border-radius: 0;
}
.elementor-button.elementor-size-xs {
	font-size: 11px;
	padding: 10px 20px;
	border-radius: 0;
}

/* Slide Button */
.crafto-button-wrapper .elementor-button.elementor-animation-btn-slide-up,
.crafto-button-wrapper .elementor-button.elementor-animation-btn-slide-down,
.crafto-button-wrapper .elementor-button.elementor-animation-btn-slide-left,
.crafto-button-wrapper .elementor-button.elementor-animation-btn-slide-right {
	background-color: var( --e-global-color-secondary, #232323 );
}
.crafto-button-wrapper .elementor-animation-btn-slide-up .elementor-button-content-wrapper,
.crafto-button-wrapper .elementor-animation-btn-slide-down .elementor-button-content-wrapper,
.crafto-button-wrapper .elementor-animation-btn-slide-left .elementor-button-content-wrapper,
.crafto-button-wrapper .elementor-animation-btn-slide-right .elementor-button-content-wrapper {
	color: #fff;
}
.crafto-button-wrapper .btn-border.elementor-button.elementor-animation-btn-slide-up .btn-hover-animation,
.crafto-button-wrapper .btn-border.elementor-button.elementor-animation-btn-slide-down .btn-hover-animation,
.crafto-button-wrapper .btn-border.elementor-button.elementor-animation-btn-slide-left .btn-hover-animation,
.crafto-button-wrapper .btn-border.elementor-button.elementor-animation-btn-slide-right .btn-hover-animation {
	background-color: var( --e-global-color-secondary, #232323 );
}

/* Content Visible When Disable All Animations */
body.disable-all-animation [data-anime],
body.disable-all-animation [data-fancy-text],
body.disable-all-animation .swiper-slide [data-fancy-text],
body.disable-all-animation .swiper-slide .slider-subtitle[data-anime] {
	opacity: 1 !important;
}
.appear:not(.anime-complete) .e-con.e-flex,
.appear:not(.anime-complete),
.appear:not(.anime-complete) .elementor-widget-container {
	transition: 0s;
}
.crafto-theme-ready [data-top-bottom] {
	transition: transform .65s cubic-bezier(.23, 1, .32, 1);
}
body:not(.crafto-theme-ready) [data-top-bottom] {
	transition-delay: 250ms;
}
.mfp-hide {
	display: none;
}

/* Vertical Sticky Bar */
.verticalbar-wrap {
	pointer-events: none;
}
.verticalbar-none {
	display: none !important;
}
.verticalbar-wrap,
.verticalbar-wrap.verticalbar-position-left,
.verticalbar-wrap.verticalbar-position-right { 
	position: fixed !important;
	left: -100px;
	padding: 15px;
	overflow: hidden;
	transform: translateY(0) !important;
	top: 0 !important;
	width: 100px;
	height: 100vh;
	z-index: 998;
	transition: 0.8s cubic-bezier(.7, 0, .3, 1) !important;
	line-height: normal;
	background-color: transparent;
}
.verticalbar-wrap .e-con-inner,
.verticalbar-wrap .e-con-inner .elementor-element,
.verticalbar-wrap .e-con-inner .elementor-element .elementor-widget-container {
	height: 100%;
}
.verticalbar-wrap .e-con-inner .elementor-element .elementor-widget-container {
	display: flex;
	justify-content: center;
	align-items: center;
}
.verticalbar-wrap .e-con-inner .elementor-element .elementor-widget-container > * {
	pointer-events: all;
}
.verticalbar-wrap.shadow-in {
	left: 0;
	opacity: 1;
}
.verticalbar-wrap.verticalbar-hidden {
	opacity:0 !important;
	left: -110px;
}
.verticalbar-wrap.verticalbar-position-right.shadow-in {
	right: 0;
	opacity: 1;
}
.verticalbar-wrap.verticalbar-position-right.verticalbar-hidden {
	left: inherit;
	right: -110px;
}
.verticalbar-wrap > .elementor-element:not(.e-child) .elementor-widget-container,
.verticalbar-wrap > .elementor-element.e-child {
	white-space: nowrap;
	overflow: hidden;
	height: auto !important;
}
.verticalbar-wrap .crafto-icon-box-wrapper .elementor-icon i,
.verticalbar-wrap .crafto-icon-box-wrapper .elementor-icon svg {
	top: 2px;
	position: relative;
}
.verticalbar-wrap .crafto-icon-box-wrapper,
.verticalbar-wrap .social-icons-wrapper,
.verticalbar-wrap .social-share-wrapper {
	white-space: nowrap;
	transform: rotate(-90deg);
}
.verticalbar-wrap.verticalbar-position-right {
	left: inherit;
	right: -100px;
}
.elementor-editor-active .verticalbar-wrap,
.elementor-editor-active .verticalbar-wrap.verticalbar-position-left {
	left: 0;
}
.elementor-editor-active .verticalbar-wrap.verticalbar-position-right {
	left: inherit;
	right: 0;
}
header.sticky.sticky-active .header-reverse > .elementor > .elementor-element.verticalbar-wrap,
header > .elementor > .elementor-element.verticalbar-wrap,
header .navbar > .elementor > .elementor-element.verticalbar-wrap,
.sticky.sticky-active .header-common-wrapper > .elementor > .elementor-element.verticalbar-wrap,
header.sticky.sticky-active .header-reverse > .elementor > .elementor-element.verticalbar-wrap,
header.sticky .responsive-sticky > .elementor > .elementor-element.verticalbar-wrap {
	background-color: transparent;
	box-shadow: none;
}
.verticalbar-wrap .elementor-widget-crafto-icon-box .crafto-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-description,
.verticalbar-wrap .elementor-widget-crafto-icon-box .crafto-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-title,
.verticalbar-wrap .elementor-widget-crafto-icon-box.elementor-view-default .crafto-icon-box-wrapper .elementor-icon i:before {
	transition: all 0.3s ease-in-out;
}
.verticalbar-wrap .elementor-widget-crafto-icon-box.elementor-view-default .crafto-icon-box-wrapper .elementor-icon svg {
	transition: all 0s ease-in-out;
}
.verticalbar-wrap .elementor-widget-crafto-icon-box .crafto-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-description a {
	border-bottom: 1px solid;
	font-weight: 600;
}
.verticalbar-wrap.verticalbar-highlight .elementor-widget-crafto-icon-box.elementor-view-default .crafto-icon-box-wrapper .elementor-icon,
.verticalbar-wrap.verticalbar-highlight .elementor-widget-crafto-icon-box.elementor-view-default .crafto-icon-box-wrapper .elementor-icon i:before,
.verticalbar-wrap.verticalbar-highlight .elementor-widget-crafto-icon-box.elementor-view-default .crafto-icon-box-wrapper .elementor-icon svg {
	fill:#fff;
	color:#fff;
} 
.verticalbar-wrap.verticalbar-highlight .elementor-widget-crafto-icon-box .crafto-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-description,
.verticalbar-wrap.verticalbar-highlight .elementor-widget-crafto-icon-box .crafto-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-title,
.verticalbar-wrap.verticalbar-highlight .elementor-widget-crafto-icon-box .crafto-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-description a,
.verticalbar-wrap.verticalbar-highlight .social-share-wrapper ul li a.social-sharing-icon,
.verticalbar-wrap.verticalbar-highlight .elementor-widget-crafto-social-icons .social-icons-wrapper ul li .elementor-icon .social-icon-text,
.verticalbar-wrap.verticalbar-highlight .elementor-widget-crafto-social-icons .social-icons-wrapper ul li .elementor-icon i,
.verticalbar-wrap.verticalbar-highlight .elementor-widget-crafto-social-icons .social-icons-wrapper ul li .elementor-icon svg,
.verticalbar-wrap.verticalbar-highlight .elementor-widget-crafto-social-icons .social-icons-wrapper ul li a.elementor-icon,
.verticalbar-wrap.verticalbar-highlight .elementor-widget-crafto-social-icons .social-share-wrapper ul li .elementor-icon .social-share-text,
.verticalbar-wrap.verticalbar-highlight .elementor-widget-crafto-social-icons .social-share-wrapper ul li .elementor-icon i,
.verticalbar-wrap.verticalbar-highlight .elementor-widget-crafto-social-icons .social-share-wrapper ul li .elementor-icon svg,
.verticalbar-wrap.verticalbar-highlight .elementor-widget-crafto-social-icons .social-share-wrapper ul li a.elementor-icon {
	color: #fff;
	fill:#fff;
}
.verticalbar-wrap .pen:not([data-elementor-inline-editing-toolbar=advanced]) {
	white-space: inherit;
}

/* Crafto Text Editor */
.elementor-widget-crafto-text-editor .elementor-drop-cap {
	float: left;
	margin-right: 20px;
	margin-top: 8px;
}
.elementor-widget-crafto-text-editor .elementor-drop-cap .elementor-drop-cap-letter {
	font-size: 4.5rem;
	line-height: 4.5rem;
	font-weight: 600;
	text-align: center;
	position: relative;
}
.elementor-widget-crafto-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap {
	height: 110px;
	width: 110px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	background-color: var( --e-global-color-secondary, #232323 );
	color: #fff;
}
.elementor-widget-crafto-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap {
	height: 110px;
	width: 110px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid var( --e-global-color-secondary, #232323 );
	color: var( --e-global-color-secondary, #232323 );
	background-color: transparent;
}

/* Promo Popup */
.crafto-promo-popup-wrap {
	display: none;
}
.crafto-subscribe-popup .subscribe-form-popup,
.crafto-subscribe-popup .subscribe-form-popup>.elementor {
	width: 100%;
}
.crafto-contant-form-popup .section-light .section-light,
.crafto-subscribe-popup .section-light .section-light {
	background-color: #fff;
}
.crafto-subscribe-popup .section-light .section-light:first-child,
.crafto-contant-form-popup .section-light .section-light:first-child {
	padding-left: 0;
	padding-right: 0;
}
.logged-in .crafto-contant-form-popup .edit-template-with-light-box,
.logged-in .crafto-subscribe-popup .edit-template-with-light-box {
	position: absolute;
	width: auto;
}
.elementor-heading-title {
	font-weight: 500;
}
.crafto-promo-popup-wrap .popup-modal-dismiss {
	cursor: pointer;
}
.crafto-promo-popup-wrap .popup-prevent-text {
	position: relative;
	cursor: pointer;
	font-size: 18px;
}
.crafto-promo-popup-wrap .popup-prevent-text input[type="checkbox"].crafto-promo-show-popup,
.crafto-promo-popup-wrap .popup-prevent-text input[type="radio"].crafto-promo-show-popup {
	height: 18px;
	width: 18px;
	position: relative;
	-webkit-appearance: none;
	appearance: none;
	margin: 0 7px 0 0;
	font: inherit;
	color: #e4e4e4;
	border: 1px solid #e4e4e4;
	border-radius: 3px;
	transition: all 0.3s ease-in-out;
	position: relative;
	top: -1px;
}
.crafto-promo-popup-wrap .popup-prevent-text input[type="radio"].crafto-promo-show-popup {
	border-radius: 50px;
}
.crafto-promo-popup-wrap .popup-prevent-text:hover input[type="checkbox"].crafto-promo-show-popup,
.crafto-promo-popup-wrap .popup-prevent-text:hover input[type="radio"].crafto-promo-show-popup {
	border-color: var( --e-global-color-secondary, #232323 );
}
.crafto-promo-popup-wrap .popup-prevent-text input[type="checkbox"].crafto-promo-show-popup::before {
	content: '';
	position: absolute;
	left: 5px;
	top: 2px;
	width: 6px;
	height: 9px;
	border: solid var( --e-global-color-secondary, #232323 );
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	display: none;
}
.crafto-promo-popup-wrap .popup-prevent-text input[type="radio"].crafto-promo-show-popup::before {
	content: '';
	position: absolute;
	left: 3px;
	top: 3px;
	width: 10px;
	height: 10px;
	border-radius: 50px;
	background-color: var( --e-global-color-secondary, #232323 );
	display: none;
}
.crafto-promo-popup-wrap .popup-prevent-text input[type="checkbox"]:checked,
.crafto-promo-popup-wrap .popup-prevent-text input[type="radio"]:checked {
	border-color: var( --e-global-color-secondary, #232323 );
}
.crafto-promo-popup-wrap .popup-prevent-text input[type="checkbox"]:checked::before,
.crafto-promo-popup-wrap .popup-prevent-text input[type="radio"]:checked::before{
	display: block;
}
input[type="checkbox"].crafto-promo-show-popup,
input[type="radio"].crafto-promo-show-popup {
	float: none;
	margin-top: 0;
	margin-right: 8px;
	top: -1px;
	vertical-align: middle;
	position: relative;
}

/* Father Shadow */
.feather-shadow {
	mask-image: linear-gradient(to right, transparent 18%, #000000 22%, #000000 78%, transparent 82%);
	-webkit-mask-image: linear-gradient(to right, transparent 18%, #000000 22%, #000000 78%, transparent 82%);
	width: 100%;
}
.feather-shadow-right {
	mask-image: linear-gradient(to right, transparent 0%, #000000 0%, #000000 50%, transparent 80%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 0%, #000000 50%, transparent 80%);
	width: 100%;
}
.feather-shadow-left {
	mask-image: linear-gradient(to left, transparent 0%, #000000 0%, #000000 50%, transparent 80%);
	-webkit-mask-image: linear-gradient(to left, transparent 0%, #000000 0%, #000000 50%, transparent 80%);
	width: 100%;
}
.feather-shadow-bottom:after {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 14.87%, rgba(255, 255, 255, 0.831169) 55.17%, #fff 75.13%);
	opacity: 1;
	height: 400px;
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 0;
	content: "";
	z-index: 9;
}

/* Custom Adaptive Background */
.adaptive-wrapper {
	position: fixed;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	pointer-events: none;
}
.adaptive-wrapper .custom-adaptive-background {
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	width: 100%;
	pointer-events: none;
}
.elementor [adaptive-bg] {
	position: relative;
	background-color: transparent !important;
}

/* Atropos */
.atropos .atropos-shadow {
	background-color: transparent;
	filter: inherit;
}
.atropos .atropos-highlight {
	background-image: inherit;
}
.is-touchable .cursor-page-inner {
	display: none !important;
}

/* Crafto Client Image Carousel */
.elementor-widget-crafto-client-image-carousel .swiper {
	text-align: center;
}
.elementor-widget-crafto-client-image-carousel .swiper-wrapper {
	-webkit-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
	position: relative;
}

/* Scroll Tools */
.mCSB_scrollTools_vertical.mCSB_scrollTools {
	width: 8px !important;
	z-index: 9999 !important;
	opacity: 1 !important;
	filter: alpha(opacity=100) !important;
	-ms-filter: alpha(opacity=100) !important;
}
.mCustomScrollbar .mCSB_scrollTools_vertical.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #828282 !important;
	filter: alpha(opacity=100) !important;
	-ms-filter: alpha(opacity=100) !important;
}
.mCustomScrollbar .mCS-dark.mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #828282 !important;
}
.mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_draggerRail {
	background-color: #9d9d9d !important;
	filter: alpha(opacity=100) !important;
	-ms-filter: alpha(opacity=100) !important;
}
.main-content {
	z-index: 2;
	background-color: #fff;
	overflow: visible;
	position: relative;
	background-position: top left;
}

/* Text Stroke */
.text-stroke,
.title-stroke .title,
.crafto-main-title-wrap .crafto-main-title.text-stroke {
	color: transparent;
	-webkit-text-stroke-width: 1px;
	stroke-width: 1px;
	-webkit-text-stroke-color: var( --e-global-color-secondary, #232323 );
	stroke: var( --e-global-color-secondary, #232323 );
}

/* Search Bar */
.simple-search-form .search-form-simple-box {
	position: relative;
	z-index: 2;
}
.simple-search-form .icon-text {
	color: var( --e-global-color-secondary, #232323 );
	font-size: 15px;
	margin-bottom: 5px;
	display: block;
}
.simple-search-form .search-form-simple-box input,
.simple-search-form .search-form-simple-box .search-input {
	margin-bottom: 0;
}
.simple-search-form .search-form-simple-box .search-input {
	padding-right: 50px;
	font-weight: 400;
	width: 100%;
	border: 1px solid #e4e4e4;
}
.simple-search-form .search-form-simple-box .search-button {
	position: absolute;
	right: 0;
	top: 0;
	padding: 2px 15px 0;
	height: 100%;
	background-color: transparent;
	border: 0;
	color: var( --e-global-color-secondary, #232323 );
}
.simple-search-form .search-form-simple-box .search-button i {
	font-size: 16px;
}
.simple-search-form .search-form-simple-box .search-button svg {
	width: 1em;
	height: auto;
}
header .simple-search-form {
	display: flex;
	flex-direction: row;
	align-items: center;
}
header .simple-search-form .search-form {
	width: 100%;
}
header .simple-search-form .icon-text{
	flex: 0 0 auto;
	width: auto;
	margin: 0 8px 0 0;
}
.simple-search-form .search-form-simple-box .search-dropdown,
.simple-search-form .search-form-simple-box .search-loader {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
}
.simple-search-form .search-form-simple-box .search-dropdown .simple-search-results {
	max-height: 350px;
	overflow: hidden;
	overflow-y: auto;
	border: 0;
}
.simple-search-form .search-form-simple-box .search-dropdown .simple-search-results .mCSB_scrollTools .mCSB_draggerRail {
	background-color: transparent !important;
}
.simple-search-form .search-form-simple-box .search-dropdown ul,
.simple-search-form .search-form-simple-box .search-dropdown p,
.simple-search-form .search-form-simple-box .search-loader {
	background-color: #fff;
	width: 100%;
	border: 1px solid #e4e4e4;
	overflow: hidden;
	border-radius: 0;
	padding: 8px 25px;
	animation: show-animation 0.5s;
	margin: -1px 0 0;
	list-style: none;
}
.simple-search-form .search-form-simple-box .search-dropdown .simple-search-results:has(ul) {
	border: 1px solid #e4e4e4;
	margin-top: -1px;
}
.simple-search-form .search-form-simple-box .search-dropdown ul {
	border: 0;
}
.simple-search-form .search-form-simple-box .search-dropdown ul li {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e4e4e4;
	padding: 10px 0;
}
.simple-search-form .search-form-simple-box .search-dropdown ul li:last-child {
	border-bottom: 0;
}
.simple-search-form .search-form-simple-box .search-dropdown ul li img {
	width: 50px;
	margin-right: 15px;
	border-radius: 4px;
}
.simple-search-form .search-form-simple-box .search-dropdown ul li a {
	font-size: calc(var(--e-global-typography-text-font-size) - 3px);
	line-height: calc(var(--e-global-typography-text-line-height) - 12px);
	display: inline-block;
	color: var( --e-global-color-secondary, #232323 );
}

/* Search Results Loader */
.simple-search-form .search-form-simple-box .search-loader,
.simple-search-form .search-form-simple-box .search-dropdown p {
	text-align: center;
	padding: 20px 25px;
}
.simple-search-form .search-form-simple-box .search-dropdown p {
	font-size: calc(var(--e-global-typography-text-font-size) - 2px);
	line-height: calc(var(--e-global-typography-text-line-height) - 8px);
	display: block;
	color: #e65656;
}
.simple-search-form .search-form-simple-box .search-loader:after {
	content: "";
	width: 25px;
	padding: 2px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #000;
	-webkit-mask: conic-gradient(#0000 10%,#000), 
	linear-gradient(#000 0 0) content-box;
	mask: conic-gradient(#0000 10%,#000),
	linear-gradient(#000 0 0) content-box;
	-webkit-mask-composite: source-out;
	mask-composite: subtract;
	animation: search-loader 1s infinite linear;
	margin: 10px auto 0;
	display: inline-block;
}

@keyframes search-loader {
	to{
		transform: rotate(1turn)
	}
}

/* Custom Hide Animation */
@-webkit-keyframes hide-animation {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

/* Custom slide animation */
@-webkit-keyframes show-animation {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Tooltip */
body:not([class*="woocommerce"]) .tooltip {
	opacity: 1;
}
body:not([class*="woocommerce"]) .tooltip-inner {
	background-color: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
	color: inherit;
	padding: 22px 35px;
	max-width: 260px;
	font-size: 16px;
	line-height: 26px;
	text-transform: none;
	font-weight: 400;
}
body:not([class*="woocommerce"]) .tooltip .tooltip-arrow {
	width: 3.5em;
	height: 1.2em;
}
body:not([class*="woocommerce"]) .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before, 
body:not([class*="woocommerce"]) .bs-tooltip-top .tooltip-arrow:before {
	border-top-color: #fff;
	border-width: 1.7em 1.7em 0;
}
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
	border-top-color: #fff;
}
body:not([class*="woocommerce"]) .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before,
body:not([class*="woocommerce"]) .bs-tooltip-bottom .tooltip-arrow:before {
	border-bottom-color: #fff;
	border-width: 0 1.7em 1.7em;
}
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
	border-bottom-color: #fff;
}
body:not([class*="woocommerce"]) .bs-tooltip-auto[data-popper-placement^=bottom] {
	margin-top: 15px;
}
body:not([class*="woocommerce"]) .bs-tooltip-auto[data-popper-placement^=top] {
	margin-bottom: 15px;
}
body:not([class*="woocommerce"]) .bs-tooltip-auto[data-popper-placement^=left] {
	margin-right: 15px;
}
body:not([class*="woocommerce"]) .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before,
body:not([class*="woocommerce"]) .bs-tooltip-start .tooltip-arrow:before {
	border-width: 1.7em 0 1.7em 1.7em;
	border-left-color: #fff;
}
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,
.bs-tooltip-start .tooltip-arrow::before {
	border-left-color: #fff;
}
body:not([class*="woocommerce"]) .bs-tooltip-end.tooltip .tooltip-arrow {
	width: 1.2em;
	height: 3.2em;
	margin-top: -18px;
}
body:not([class*="woocommerce"]) .bs-tooltip-auto[data-popper-placement^=right] {
	margin-left: 15px;
}
body:not([class*="woocommerce"]) .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before,
body:not([class*="woocommerce"]) .bs-tooltip-end .tooltip-arrow:before {
	border-width: 1.7rem 1.7rem 1.7rem 0;
	border-right-color: #fff;
}
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
	border-right-color: #fff;
}
body:not([class*="woocommerce"]) .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,
body:not([class*="woocommerce"]) .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
	width: 1.2em;
	height: 3.5em;
	margin-top: -2px;
}
body:not([class*="woocommerce"]) .tooltip-title {
	font-weight: 600;
	display: block;
	font-size: 18px;
	margin-bottom: 7px;
	color: var( --e-global-color-secondary, #232323 );
	letter-spacing: -.5px;
}
body:not([class*="woocommerce"]) .tooltip p {
	margin: 0;
	color: inherit;
}
.liquid-parallax {
	transition: transform .8s cubic-bezier(.23, 1, .32, 1);
	will-change: transform;
}

/* Cursor page */
.e--ua-isTouchDevice .cursor-page-inner {
	display: none !important;
}

/* Screen Height */
.small-screen {
	height: 400px;
}
.one-half-screen {
	height: 600px;
}
.one-third-screen {
	height: 700px;
}
.one-fourth-screen {
	height: 800px;
}
.one-fifth-screen {
	height: 900px;
}
.one-sixth-screen {
	height: 870px;
}

/* Alert Box */
.alert {
	padding: 15px;
	line-height: 22px;
	position: relative;
	z-index: 1;
	border-radius: 4px;
	text-align: center;
	font-size: 14px;
	margin: 15px 0;
}
body.elementor-page .alert strong {
	font-weight: 500;
}
.alert-success {
	background-color: #f1fbec;
	color: #54b783;
	border-color: #cce8b3;
}
.alert-success a {
	color: #54b783;
	text-decoration: underline;
}
.alert-success a:hover {
	text-decoration: none;
}
.alert-info {
	background-color: #ebf5f9;
	color: #4278bb;
	border-color: #bce8f1;
}
.alert-info a {
	color: #4278bb;
	text-decoration: underline;
}
.alert-info a:hover {
	text-decoration: none;
}
.alert-warning {
	background-color: #fcf8e3;
	color: #e2ad4b;
	border-color: #faebcc;
}
.alert-warning a {
	color: #e2ad4b;
	text-decoration: underline;
}
.alert-warning a:hover {
	text-decoration: none;
}
.alert-danger {
	background-color: #fbf1f1;
	color: #e65656;
	border-color: #efe1e3;
}
.alert-danger a {
	color: #e65656;
	text-decoration: underline;
}
.alert-danger a:hover {
	text-decoration: none;
}
.alert .close {
	opacity: 1;
	font-size: 16px;
	line-height: 22px;
	color: rgba(0, 0, 0, .34);
	text-shadow: none;
	float: right;
}
.alert .close:not(.disabled):focus,
.alert .close:not(.disabled):hover,
.alert .close:not(:disabled) {
	opacity: 1;
}

/* Alert Box Style 01 */
.alert-box-style-01.alert,
.alert-box-style-02.alert,
.alert-box-style-03.alert,
.alert-box-style-04.alert,
.alert-box-style-05.alert {
	font-size: 16px;
	line-height: 22px;
	text-align: left;
}
.alert-box-style-01.alert {
	padding: 20px 25px 20px 30px;
}

/* Alert Box Style 02 */
.alert-box-style-02.alert {
	border: none;
	background-color: #fff;
	padding: 22px 60px 22px 30px;
	-webkit-box-shadow: 0 0 10px 0 rgba(111, 111, 111, .1);
	box-shadow: 0 0 10px 0 rgba(111, 111, 111, .1);
}
.alert-box-style-02.alert .close {
	height: 100%;
	position: absolute;
	right: 0;
	width: 60px;
	text-align: center;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border-left: 1px solid #eaeaeb;
	font-size: 18px;
}

/* Alert Box Style 03 */
.alert-box-style-03.alert {
	color: #fff;
	border: 0;
	padding: 20px 30px 20px 55px;
}
.alert-box-style-03.alert .close {
	right: -10px;
	position: relative;
	color: #fff;
}
.alert-box-style-03.alert:before {
	font-family: "bootstrap-icons";
	position: absolute;
	left: 25px;
	font-size: 18px;
}
.alert-box-style-03.alert.alert-success {
	background-color: #54b783;
}
.alert-box-style-03.alert.alert-success:before {
	content: "\f26b";
}
.alert-box-style-03.alert.alert-info {
	background-color: #4278bb;
}
.alert-box-style-03.alert.alert-info:before {
	content: "\f431";
}
.alert-box-style-03.alert.alert-warning {
	background-color: #e2ad4b;
}
.alert-box-style-03.alert.alert-warning:before {
	content: "\f567";
}
.alert-box-style-03.alert.alert-danger {
	background-color: #e65656;
}
.alert-box-style-03.alert.alert-danger:before {
	content: "\f623";
}

/* Alert Box Style 04 */
.alert-box-style-04.alert {
	padding: 20px 25px 20px 30px;
	background-color: #fff;
	border-radius: 0;
	border: none;
	border-left: 3px solid;
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .08);
	box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}
.alert-box-style-04.alert.alert-success {
	color: #54b783;
	border-color: #54b783;
}

/* Alert Box Style 05 */
.alert-box-style-05.alert {
	background-color: transparent;
	border: none;
	border-bottom: 2px solid;
	color: #232323;
	padding: 10px 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.alert-box-style-05.alert.alert-success {
	border-color: #54b783;
}
.alert-box-style-05.alert.alert-info {
	border-color: #4278bb;
}
.alert-box-style-05.alert.alert-warning {
	border-color: #e2ad4b;
}
.alert-box-style-05.alert.alert-danger {
	border-color: #e65656;
}

/* Scroll Down Arrow */
.scroll-to-next {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	margin-bottom: 50px;
	z-index: 2;
}
.scroll-to-next a {
	font-size: 18px;
	border-radius: 100%;
	color: #000;
	background-color: #fff;
	height: 45px;
	width: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
}
.scroll-to-next.default a {
	box-shadow: 0 0 15px rgba(0, 0, 0, .08);
}
.scroll-to-next a i {
	font-size: 15px;
	color: #2F2F2F;
}
.scroll-to-next a svg {
	width: 1em;
	height: auto;
}

/* Scroll Down Arrow Style 01 */
.scroll-to-next.scroll-down-type-1 .down-section-link {
	background-color: transparent;
	width: auto;
	height: auto;
}
.scroll-to-next.scroll-down-type-1 .down-section-link i {
	font-size: 28px;
	color: var( --e-global-color-secondary, #232323 );
}
.scroll-to-next.scroll-down-type-1 .down-section-link {
	display: table;
	position: relative;
	margin: 0 auto;
	animation: float 2s linear .5s infinite alternate both;
}

@keyframes float {
	0% { transform: translateY(0); }
	50% { transform: translateY(5px); }
	100% { transform: translateY(10px); }
}

/* Scroll Down Arrow Style 02 */
.scroll-down-type-2.scroll-to-next {
	margin-bottom: 0;
}
.scroll-down-type-2.scroll-to-next a {
	width: 75px;
	height: 75px;
	box-shadow: 0 0 25px rgba(0, 0, 0, .08);
	transform: translateY(50%);
}
.scroll-down-type-2.scroll-to-next a i {
	font-size: 28px;
	color: var( --e-global-color-secondary, #232323 );
}

/* Mfp Popup */
.mfp-wrap .mfp-arrow {
	opacity: 1;
}
.mfp-wrap .mfp-arrow:hover,
.mfp-wrap .mfp-arrow:focus {
	background-color: transparent;
}
.mfp-wrap .mfp-arrow-right:after,
.mfp-wrap .mfp-arrow-left:after {
	display: none;
}
.mfp-wrap .mfp-arrow-left {
	left: 30px;
}
.mfp-wrap .mfp-arrow-right {
	right: 30px;
}
.mfp-wrap .mfp-arrow-left:before {
	border-right: none;
	content: "\f053";
	font-size: 25px;
	font-family: "Font Awesome 7 Free";
	font-weight: 600;
	color: #fff;
	line-height: 60px;
	width: 100%;
	height: 100%;
	border: none;
	margin: 0;
	opacity: 1;
}
.mfp-wrap .mfp-arrow-right:before {
	border-left: none;
	content: "\f054";
	font-size: 25px;
	font-family: "Font Awesome 7 Free";
	font-weight: 600;
	color: #fff;
	line-height: 60px;
	width: 100%;
	height: 100%;
	border: none;
	margin: 0;
	opacity: 1;
}
.mfp-wrap .mfp-bottom-bar {
	margin-top: -24px;
	font-size: 12px;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active {
	font-size: 28px;
	font-family: 'Manrope', sans-serif;
	opacity: 1;
}
.mfp-wrap .mfp-figure {
	animation-name: fadeIn;
	animation-duration: 0.4s;
	animation-fill-mode: both;
	backface-visibility: hidden;
}
.mfp-bg,
.mfp-bg.mfp-ready {
	background-color: var( --e-global-color-secondary, #232323 );
	opacity: 0.9;
}
.mfp-bg,
.mfp-wrap {
	z-index: 10007;
}
.mfp-fade.mfp-bg {
	opacity: 0;
	transition: all 0.3s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.9;
}
.mfp-fade.mfp-bg.mfp-removing,
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
}
.mfp-fade.mfp-wrap.mfp-ready:not(.crafto-mfp-bg-white) .mfp-content {
	max-width: 1050px;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}
.mfp-ajax-holder {
	width: 70%;
	height: calc(100% - 100px);
	margin: 0 auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.mfp-wrap button.mfp-close,
.mfp-wrap button.mfp-close:active,
.mfp-wrap button.mfp-close:hover {
	right: 30px;
	top: 30px;
	background-color: rgba(0, 0, 0, .5);
	font-size: 0;
	height: 50px;
	width: 50px;
	opacity: 1;
	border-radius: 100%;
	position: fixed;
	padding: 0 0 0 1px;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.mfp-wrap button.mfp-close:before,
.mfp-wrap button.mfp-close:active:before {
	content: "\f00d";
	color: #fff;
	font-family: "Font Awesome 7 Free";
	font-size: 20px;
	font-weight: 900;
}
.mfp-gallery button.mfp-close:before,
.mfp-iframe-holder~button.mfp-close:before {
	color: #fff;
	display: inline-block;
}
.mfp-gallery button.mfp-arrow {
	background-color: transparent;
	border: 0;
	box-shadow: none;
}
.crafto-mfp-bg-white .mfp-content {
	background-color: #fff;
	padding: 40px;
	max-width: 1435px;
}
.mfp-iframe-holder .mfp-content,
.mfp-container {
	background-color: transparent;
	padding: 0;
}
.mfp-wrap,
.crafto-white-popup {
	margin: 0 auto;
	left: 0;
	right: 0;
}

/* Separator Line */
.separator-line {
	width: 1px;
	height: 14px;
	background-color: rgba(255, 255, 255, .45);
}
.horizontal-separator {
	width: 30px;
	background-color: #e4e4e4;
	margin-bottom: 0;
	height: 1px;
}
.admin-bar footer:not(.footer-sticky),
.elementor-editor-active footer:not(.footer-sticky) {
	position: relative;
}

/* Client Carousel Default CSS here */
.elementor-widget-crafto-client-image-carousel .feather-shadow {
	mask-image: linear-gradient(to right, transparent 0, #000 20%, #000 80%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 20%, #000 80%, transparent 100%);
}
.fa-x-twitter:before {
	content: "\e61b" !important;
}

/* Custom Cursor */
@media (hover: hover) and (pointer: fine) {
	.custom-cursor .circle-cursor {
		position: fixed;
		left: 0;
		top: 0;
		pointer-events: none;
		border-radius: 50%;
		transform: translateZ(0);
		visibility: hidden;
		opacity: 0;
		transition: opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1);
	}
	.custom-cursor .circle-cursor-inner {
		margin-left: -3px;
		margin-top: -3px;
		width: 6px;
		height: 6px;
		z-index: 10000001;
		background-color: #000;
	}
	.custom-cursor .circle-cursor-inner.cursor-link-hover {
		opacity: 0.8;
		margin-left: -10px !important;
		margin-top: -10px !important;
		width: 20px !important;
		height: 20px !important;
	}
	.custom-cursor .circle-cursor-outer {
		margin-left: -15px;
		margin-top: -15px;
		width: 30px;
		height: 30px;
		border: 1px solid #000;
		z-index: 10000000;
		opacity: 0.8;
		transition: 0.1s;
	}
	.custom-cursor .cursor-link.circle-cursor-inner .cursor-link-hover {
		opacity: 1;
	}
}

/* Responsive CSS Here */
@media (max-width: 1399px) {
	/* Sticky Wrap */
	.crafto-icon-box-wrapper.sticky-wrap.shadow-in {
		left: 20px;
	}
}

@media (max-width: 1199px) {
	header .simple-search-form.disable-label .icon-text,
	.simple-search-form.disable-label .icon-text {
		display: none;
	}

	/* Screen Height */
	.one-fifth-screen {
		height: 750px;
	}
}

@media (max-width: 991px) {
	/* Scrollbar */
	.mCustomScrollbar:not(.mCS_no_scrollbar) .mCSB_vertical {
		padding-right: 0;
	}

	/* Screen Height */
	.one-third-screen {
		height: 550px;
	}
	.one-fourth-screen {
		height: 650px;
	}
}

@media (max-width: 767px) {
	.simple-search-form .search-form-simple-box .search-dropdown .simple-search-results {
		max-height: 280px;
	}

	/* Screen Height */
	.small-screen {
		height: 300px;
	}
	.one-third-screen {
		height: 450px;
	}
	.one-fourth-screen {
		height: 500px;
	}
	.one-fifth-screen {
		height: 650px;
	}
}

@media (min-width: 992px) {
    .elementor-editor-active .left-menu-modern.navbar-expand-lg {
        flex-wrap: wrap;
    }
}
/* === ../wp-content/plugins/elementor/assets/css/widget-image.min.css === */
/*! elementor - v3.31.0 - 09-09-2025 */
.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=".svg"]{width:48px}.elementor-widget-image img{display:inline-block;vertical-align:middle}
/* === ../wp-content/plugins/elementor/assets/css/widget-heading.min.css === */
/*! elementor - v3.31.0 - 09-09-2025 */
.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}
/* === ../wp-content/plugins/elementor/assets/lib/animations/styles/fadeIn.min.css === */
@keyframes fadeIn{from{opacity:0}to{opacity:1}}.fadeIn{animation-name:fadeIn}
/* === ../wp-content/uploads/elementor/css/custom-widget-icon-list.min.css === */
.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container,.elementor-widget:not(:has(.elementor-widget-container)) .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{display:flex;flex-wrap:wrap;margin-inline:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-inline-item{word-break:break-word}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{border-width:0;border-inline-start-width:1px;border-style:solid;height:100%;inset-inline-end:-8px;inset-inline-start:auto;position:relative;width:auto}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{inset-block-end:0;position:absolute;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{align-items:var(--icon-vertical-align,center);display:flex;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{align-self:center;padding-inline-start:5px}.elementor-widget .elementor-icon-list-icon{display:flex;inset-block-start:var(--icon-vertical-offset,initial);position:relative}.elementor-widget .elementor-icon-list-icon svg{height:var(--e-icon-list-icon-size,1em);width:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{font-size:var(--e-icon-list-icon-size);width:1.25em}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{inset-inline-end:0}@media (min-width:-1){.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-widescreen-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-widescreen-align-left .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-widescreen-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-widescreen-align-right .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-widescreen-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-widescreen-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-widescreen-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:1399px){.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-laptop-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-laptop-align-left .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-laptop-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-laptop-align-right .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-laptop-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-laptop-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-laptop-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:1199px){.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet_extra-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet_extra-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-tablet_extra-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet_extra-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:991px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:767px){.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile_extra-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile_extra-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-mobile_extra-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile_extra-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:575px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}#left-area ul.elementor-icon-list-items,.elementor .elementor-element ul.elementor-icon-list-items,.elementor-edit-area .elementor-element ul.elementor-icon-list-items{padding:0}
/* === ../wp-content/plugins/crafto-addons/assets/css/vendors/swiper-bundle.min.css === */
/**
 * Swiper 11.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 19, 2025
 */

 @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* === ../wp-content/plugins/crafto-addons/includes/widgets/assets/css/nav-pagination.css === */
/* ===================================
	Navigation / Pagination
====================================== */
/* Swiper navigation */
.elementor-element .swiper-container .elementor-swiper-button,
.elementor-element .swiper-container~.elementor-swiper-button,
.elementor-element .swiper .elementor-swiper-button,
.elementor-element .swiper~.elementor-swiper-button,
.elementor-lightbox .swiper-container .elementor-swiper-button,
.elementor-lightbox .swiper-container~.elementor-swiper-button,
.elementor-lightbox .swiper .elementor-swiper-button,
.elementor-lightbox .swiper~.elementor-swiper-button {
	position: absolute;
	display: inline-flex;
	z-index: 1;
	cursor: pointer;
	font-size: 25px;
	color: var( --e-global-color-secondary, #232323 );
	top: 50%;
	transform: translateY(-50%);
}
.elementor-element .swiper-container .elementor-swiper-button-next,
.elementor-element .swiper-container~.elementor-swiper-button-next,
.elementor-element .swiper .elementor-swiper-button-next,
.elementor-element .swiper~.elementor-swiper-button-next,
.elementor-lightbox .swiper-container .elementor-swiper-button-next,
.elementor-lightbox .swiper-container~.elementor-swiper-button-next,
.elementor-lightbox .swiper .elementor-swiper-button-next,
.elementor-lightbox .swiper~.elementor-swiper-button-next {
	right: 10px;
}
.elementor-element .swiper-container .elementor-swiper-button-prev,
.elementor-element .swiper-container~.elementor-swiper-button-prev,
.elementor-element .swiper .elementor-swiper-button-prev,
.elementor-element .swiper~.elementor-swiper-button-prev,
.elementor-lightbox .swiper-container .elementor-swiper-button-prev,
.elementor-lightbox .swiper-container~.elementor-swiper-button-prev,
.elementor-lightbox .swiper .elementor-swiper-button-prev,
.elementor-lightbox .swiper~.elementor-swiper-button-prev {
	left: 10px;
}
.elementor-swiper-button,
.elementor-element .swiper .elementor-swiper-button {
	outline: none;
	cursor: pointer;
	height: 45px;
	width: 45px;
	margin-top: 0;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
	color: var( --e-global-color-secondary, #232323 );
	border: 0;
	z-index: 9;
}
.elementor-element .swiper .elementor-swiper-button i {
	font-size: 16px;
	color: var( --e-global-color-secondary, #232323 );
	position: relative;
	top: 0;
	transition: 0.3s;
	margin: 0;
}
.elementor-element .swiper .elementor-swiper-button svg {
	fill: var( --e-global-color-secondary, #232323 );
	font-size: 16px;
	transition: 0.3s;
	margin: 0;
}
.elementor-element .swiper .elementor-swiper-button.swiper-button-disabled,
.elementor-element .swiper .elementor-swiper-button.swiper-button-disabled:hover {
	cursor: default;
	opacity: 0.6;
}
.elementor-element .swiper .elementor-swiper-button:hover {
	opacity: 0.6;
}

/* Navigation Square */
.elementor-element .swiper.nav-icon-square .elementor-swiper-button {
	background-color: #fff;
}

/* Navigation Round */
.elementor-element .swiper.nav-icon-circle .elementor-swiper-button {
	background-color: #fff;
	border-radius: 100%;
}

/* Navigation Top */
.elementor-element .swiper.navigation-top .elementor-swiper-button {
	top: 0;
	transform: translateY(0);
}

/* Navigation Bottom */
.elementor-element .swiper.navigation-bottom .elementor-swiper-button {
	top: inherit;
	bottom: 0;
	transform: translateY(0);
	z-index: 99;
}

/* Navigation Left */
.elementor-element .swiper.navigation-left .elementor-swiper-button {
	left: 0;
}
.elementor-element .swiper.navigation-left .elementor-swiper-button.elementor-swiper-button-next {
	left: 50px;
}

/* Navigation Right */
.elementor-element .swiper.navigation-right .elementor-swiper-button {
	left: inherit;
	right: 50px;
}
.elementor-element .swiper.navigation-right .elementor-swiper-button.elementor-swiper-button-next {
	left: inherit;
	right: 0;
}

/* Navigation Bottom */
.elementor-element .swiper.navigation-center .elementor-swiper-button {
	left: 0;
	right: 50px;
	margin: 0 auto;
}
.elementor-element .swiper.navigation-center .elementor-swiper-button.elementor-swiper-button-next {
	left: 50px;
	right: 0;
	margin: 0 auto;
}

/* Swiper Pagination */
/* Bullet */
.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	cursor: pointer;
	margin: 0 6px;
	transition: .3s;
	opacity: 1;
	background-color: rgba(35, 35, 35, .4);
	vertical-align: middle;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var( --e-global-color-secondary, #232323 );
}

/* Position Outside */
.elementor-arrows-position-outside .swiper,
.elementor-arrows-position-outside .swiper-container {
	position: static;
}
.elementor-element.elementor-pagination-position-outside .swiper,
.elementor-element.elementor-pagination-position-outside .swiper-container,
.elementor-lightbox.elementor-pagination-position-outside .swiper,
.elementor-lightbox.elementor-pagination-position-outside .swiper-container {
	padding-bottom: 50px;
}

/* Direction Horizontal */
.elementor-element .swiper.pagination-right .swiper-pagination {
	text-align: right;
}
.elementor-element .swiper.pagination-left .swiper-pagination {
	text-align: left;
}
.elementor-element.elementor-pagination-position-inside:not(.elementor-widget-crafto-slider) .swiper.horizontal .swiper-pagination-bullets.swiper-pagination-horizontal,
.elementor-element.elementor-pagination-position-outside:not(.elementor-widget-crafto-slider) .swiper.horizontal .swiper-pagination-bullets.swiper-pagination-horizontal {
	width: auto;
	left: 0;
	right: 0;
}

/* Direction Vertical */
.elementor-element.pagination-direction-vertical .swiper-pagination-bullets {
	right: 20px;
	width: auto;
	left: inherit;
	padding: 0;
	bottom: inherit;
	top: 50%;
	transform: translate3d(0, -50%, 0);
}
.elementor-element.pagination-direction-vertical .swiper-pagination-bullets .swiper-pagination-bullet {
	display: block;
}
.elementor-element.pagination-direction-vertical.elementor-pagination-position-inside .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.elementor-element.pagination-direction-vertical.elementor-pagination-position-outside .swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: inherit;
	flex-direction: column;
}
.elementor-element.pagination-direction-vertical .swiper-pagination-bullet {
	margin: 15px auto;
}
.elementor-element.pagination-direction-vertical.pagination-vertical-right .swiper .swiper-pagination {
	right: 30px;
}
.elementor-element.pagination-direction-vertical.pagination-vertical-left .swiper .swiper-pagination {
	left: 30px;
}
.elementor-element.pagination-direction-vertical.pagination-vertical-left .swiper:not(.number-style-3) .swiper-pagination {
	width: fit-content;
}
.elementor-widget-crafto-slider.elementor-pagination-position-inside:not(.pagination-direction-vertical) .swiper.vertical .swiper-pagination-bullets.swiper-pagination-vertical,
.elementor-widget-crafto-slider.elementor-pagination-position-outside:not(.pagination-direction-vertical) .swiper.vertical .swiper-pagination-bullets.swiper-pagination-vertical {
	width: auto;
	left: 0;
	right: 0;
	top: inherit;
	transform: unset;
	bottom: 25px;
}
.elementor-widget-crafto-slider.elementor-pagination-position-inside:not(.pagination-direction-vertical) .swiper.vertical .swiper-pagination-vertical .swiper-pagination-bullet,
.elementor-widget-crafto-slider.elementor-pagination-position-outside:not(.pagination-direction-vertical) .swiper.vertical .swiper-pagination-vertical .swiper-pagination-bullet {
	display: inline-flex;
	margin: 0 6px;
}
.elementor-widget-crafto-slider.elementor-pagination-position-inside:not(.pagination-direction-vertical) .number-style-2.vertical .swiper-pagination-vertical .swiper-pagination-bullet,
.elementor-widget-crafto-slider.elementor-pagination-position-outside:not(.pagination-direction-vertical) .number-style-2.vertical .swiper-pagination-vertical .swiper-pagination-bullet {
	margin-left: 0;
	margin-right: 0;
}
.elementor-widget-crafto-slider.elementor-pagination-position-inside:not(.pagination-direction-vertical) .swiper.dots-style-2.vertical .swiper-pagination-vertical .swiper-pagination-bullet,
.elementor-widget-crafto-slider.elementor-pagination-position-outside:not(.pagination-direction-vertical) .swiper.dots-style-2.vertical .swiper-pagination-vertical .swiper-pagination-bullet {
	margin-left: 12px;
	margin-right: 12px;
}

/* Position Inside */
.elementor-element.elementor-pagination-position-inside .swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 25px;
}

/* Bullet Style 02 */
.elementor-element .swiper.dots-style-2 .swiper-pagination-bullet {
	opacity: 1;
	position: relative;
	margin: 15px;
	background-color: var( --e-global-color-secondary, #232323 );
}
.elementor-element .swiper.dots-style-2 .swiper-pagination-bullet:before {
	content: '';
	width: 30px;
	height: 30px;
	border: 2px solid transparent;
	background: transparent;
	display: inline-block;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.3s;
	opacity: 0;
}
.elementor-element .swiper.dots-style-2 .swiper-pagination-bullet:hover,
.elementor-element .swiper.dots-style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var( --e-global-color-secondary, #232323 );
	opacity: 1;
}
.elementor-element .swiper.dots-style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active:before,
.elementor-element .swiper.dots-style-2 .swiper-pagination-bullet:hover:before {
	opacity: 1;
	border-color: rgba(0, 0, 0, .4);
}
.elementor-element.pagination-direction-vertical .swiper.dots-style-2 .swiper-pagination-bullet {
	margin: 25px auto;
}

/* Bullet Style 03 */
.elementor-element .swiper.dots-style-3 .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	opacity: 1;
	margin: 0 7px;
	border: 2px solid var( --e-global-color-secondary, #232323 );
	background-color: transparent;
}
.elementor-element .swiper.dots-style-3 .swiper-pagination-bullet:hover,
.elementor-element .swiper.dots-style-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var( --e-global-color-secondary, #232323 );
	transform: scale(1.3);
	opacity: 1;
}
.elementor-element.pagination-direction-vertical .swiper.dots-style-3 .swiper-pagination-bullet {
	margin: 12px auto;
}

/* Number */
.swiper-pagination.swiper-numbers .swiper-pagination-bullet {
	background: transparent;
	border-radius: 100%;
	color: var( --e-global-color-secondary, #232323 );
	font-size: 15px;
	position: relative;
	margin: 0 10px;
	opacity: 1;
	width: 56px;
	height: 56px;
	text-align: center;
	outline: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: 0.4s;
	background-color: transparent;
}
.swiper-pagination.swiper-numbers .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
	background-color: var( --e-global-color-secondary, #232323 );
	color: #fff;
}
.elementor-element.pagination-direction-vertical .swiper-pagination-bullets.swiper-numbers .swiper-pagination-bullet {
	display: flex;
	margin-top: 10px;
	margin-bottom: 10px;
}
.elementor-element.pagination-direction-vertical .number-style-1 .swiper-pagination.swiper-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
}
.elementor-element.pagination-direction-vertical .number-style-1.vertical .swiper-pagination.swiper-numbers {
	bottom: inherit;
	flex-direction: column;
}

/* Number Style 02 */
.number-style-2 .swiper-pagination.swiper-numbers .swiper-pagination-bullet {
	position: relative;
	padding-right: 10px;
	padding-left: 8px;
	margin: 0;
	color: var( --e-global-color-secondary, #232323 );
	opacity: 1;
	width: auto;
	transition: 0.5s;
	height: auto;
	background: transparent;
	border-radius: 0;
	outline: none;
}
.number-style-2 .swiper-pagination.swiper-numbers .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
	background-color: transparent;
	color: var( --e-global-color-secondary, #232323 );
}
.number-style-2 .swiper-pagination.swiper-numbers .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
	width: 70px;
}
.number-style-2 .swiper-pagination.swiper-numbers .swiper-pagination-bullet::before {
	display: none;
}
.number-style-2 .swiper-pagination.swiper-numbers .swiper-pagination-bullet:after {
	width: 0;
	height: 1px;
	content: "";
	margin-left: 15px;
	display: inline-block;
	background-color: var( --e-global-color-secondary, #232323 );
	vertical-align: middle;
	transition: 0.5s;
}
.elementor-element.pagination-direction-vertical .number-style-2 .swiper-pagination.swiper-numbers {
	bottom: inherit;
	right: 30px;
	left: auto;
	max-width: inherit;
	width: auto;
	writing-mode: vertical-lr;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translate(0, -50%) rotate(180deg);
	flex-direction: row !important;
}
.elementor-element.pagination-direction-vertical .number-style-2 .swiper-pagination.swiper-numbers .swiper-pagination-bullet {
	padding: 5px 0 12px;
	margin: 0;
	display: inherit !important;
	height: max-content;
	width: max-content;
}
.elementor-element.pagination-direction-vertical .number-style-2 .swiper-pagination.swiper-numbers .swiper-pagination-bullet:after {
	width: 1px;
	height: 0;
	content: "";
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
	margin-top: 10px;
}
.elementor-element.pagination-direction-vertical .number-style-2 .swiper-pagination.swiper-numbers .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
	height: 70px;
	width: 1px;
}
.elementor-element.pagination-direction-vertical.pagination-vertical-left .number-style-2 .swiper-pagination.swiper-numbers {
	right: inherit;
	left: 30px;
}

/* Number Style 03 */
.number-style-3 .swiper-pagination-wrapper {
	position: absolute;
	z-index: 9;
	bottom: 40px;
	left:0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.number-style-3 .swiper-pagination-wrapper .number-prev,
.number-style-3 .swiper-pagination-wrapper .number-next {
	width: 50px;
	text-align: center;
	color: var( --e-global-color-secondary, #232323 );
	font-size: 14px;
	font-weight: 600;
}
.number-style-3 .swiper-pagination-wrapper .swiper-pagination-progressbar {
	width: 220px;
	height: 1px;
	position: relative;
	background-color: #e4e4e4;
	top: -2px;
}
.number-style-3 .swiper-pagination-wrapper .swiper-pagination-progressbar-fill {
	background-color: var( --e-global-color-secondary, #232323 );
}
.elementor-element.pagination-direction-vertical .number-style-3 .swiper-pagination-wrapper {
	bottom: inherit;
	right: 40px;
	transform: translate(0, -50%) rotate(-90deg);
	top: 50%;
	left: initial;
	width: auto;
	margin-right: -150px;
	justify-content: center;
}
.elementor-element.pagination-direction-vertical.pagination-vertical-left .number-style-3 .swiper-pagination-wrapper {
	right: inherit;
	left: 40px;
	margin-right: inherit;
	margin-left: -150px;
}
.elementor-element.pagination-direction-vertical.pagination-vertical-left .number-style-3 .swiper-pagination-wrapper .swiper-pagination {
	left: 0 !important;
}
.elementor-element.pagination-direction-vertical.pagination-vertical-right .number-style-3 .swiper-pagination-wrapper .swiper-pagination {
	right: 0 !important;
}
.number-style-3.pagination-left .swiper-pagination-wrapper {
	justify-content: start;
}
.number-style-3.pagination-right .swiper-pagination-wrapper {
	justify-content: end;
}
.elementor-pagination-position-outside .number-style-3 .swiper-pagination-wrapper {
	bottom: 10px;
}
.elementor-element.pagination-direction-vertical .number-style-3.vertical .swiper-pagination-wrapper .swiper-pagination-progressbar {
	width: 1px;
	height: 220px;
	margin: 0 auto;
}
.elementor-element.pagination-direction-vertical .number-style-3.vertical .swiper-pagination-wrapper {
	transform: translate(0, -50%) rotate(-180deg);
	margin-right: 0;
	display: inline-block;
	right: 25px;
}
.pagination-direction-vertical.pagination-vertical-left .number-style-3.vertical .swiper-pagination-wrapper {
	margin-left: 0;
	right: inherit;
	left: 25px;
}
.elementor-element.pagination-direction-vertical .number-style-3.vertical .swiper-pagination-wrapper .number-prev,
.elementor-element.pagination-direction-vertical .number-style-3.vertical .swiper-pagination-wrapper .number-next {
	transform: rotate(90deg);
}
.elementor-element.pagination-direction-vertical .number-style-3.vertical .swiper-pagination-wrapper .number-prev {
	margin: 0 0 5px 0;
}

/* Thumb */
.swiper .slider-custom-image-pagination {
	position: absolute;
	padding: 15px 0;
}
.swiper .slider-custom-image-pagination span {
	filter: grayscale(1);
	margin: 0 15px;
	width: 100px;
	height: 100px;
	opacity: 0.8;
}
.swiper .slider-custom-image-pagination > span.swiper-pagination-bullet-active {
	filter: grayscale(0);
	transform: scale(1.2);
	opacity: 1;
}
.swiper-horizontal>.swiper-pagination-bullets.slider-custom-image-pagination span.swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.slider-custom-image-pagination span.swiper-pagination-bullet {
	margin: 0 10px;
}

/* Responsive CSS here */
@media (max-width: 991px) {
	.elementor-element.pagination-direction-vertical .number-style-1.vertical .swiper-pagination.swiper-numbers {
		right: 0;
		left: 0;
		bottom: 30px;
		top: inherit;
		transform: translate3d(0, 0, 0);
		flex-direction: row;
	}
	.elementor-element.pagination-direction-vertical .number-style-2.vertical .swiper-pagination.swiper-numbers {
		bottom: 30px;
		right: 0;
		left: 0;
		max-width: inherit;
		width: auto;
		writing-mode: inherit;
		display: flex;
		justify-content: center;
		align-items: center;
		transform: translate(0, 0) rotate(0deg);
		top: inherit;
	}
	.elementor-element.pagination-direction-vertical .number-style-2.vertical .swiper-pagination.swiper-numbers .swiper-pagination-bullet {
		padding: 0 10px 0 8px;
		margin: 0;
		display: inherit !important;
		height: auto;
		width: auto;
	}
	.elementor-element.pagination-direction-vertical .number-style-2.vertical .swiper-pagination.swiper-numbers .swiper-pagination-bullet:after {
		height: 1px;
		width: 0;
		margin: 0 0 0 12px;
	}
	.elementor-element.pagination-direction-vertical .number-style-2.vertical .swiper-pagination.swiper-numbers .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
		width: 70px;
	}
}
@media (max-width: 767px) {
	.elementor-element.pagination-direction-vertical .number-style-3.vertical .swiper-pagination-wrapper {
		right: 15px;
	}
}
/* === ../wp-content/plugins/crafto-addons/assets/css/vendors/atropos.css === */
/**
 * Atropos 1.0.1
 * Touch-friendly 3D parallax hover effects
 * https://atroposjs.com
 *
 * Copyright 2021-2021 
 *
 * Released under the MIT License
 *
 * Released on: October 18, 2021
 */

.atropos {
  position: relative;
  display: block;
  perspective: 1200px;
  transform: translate3d(0, 0, 0);
}
.atropos-rotate-touch,
.atropos-rotate-scroll-x,
.atropos-rotate-scroll-y {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.atropos-rotate-touch-scroll-y {
  touch-action: pan-y;
}
.atropos-rotate-touch-scroll-x {
  touch-action: pan-x;
}
.atropos-rotate-touch {
  touch-action: none;
}
.atropos-scale,
.atropos-rotate {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition-property: transform;
  display: block;
}
.atropos-shadow,
.atropos-highlight {
  position: absolute;
  pointer-events: none;
  transition-property: transform, opacity;
  display: block;
  opacity: 0;
}
.atropos-shadow {
  z-index: -1;
  background: #000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  filter: blur(30px);
}
.atropos-highlight {
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(circle at 50%, rgba(255, 255, 255, 0.25), transparent 50%);
  z-index: 0;
}
.atropos-rotate {
  position: relative;
}
.atropos-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: translate3d(0, 0, 0);
  display: block;
}
.atropos-active {
  z-index: 1;
}
.atropos-active .atropos-shadow {
  opacity: 1 !important;
}
[data-atropos-offset] {
  transition-property: transform;
}
[data-atropos-opacity] {
  transition-property: opacity;
}
[data-atropos-offset][data-atropos-opacity] {
  transition-property: transform, opacity;
}
/* === ../wp-content/plugins/crafto-addons/includes/widgets/assets/css/client-image-carousel.css === */
/* ===================================
	Client Carousel
====================================== */
.client-image-carousel-2 .crafto-client-image {
	position: relative;
	overflow: hidden;
}
.client-image-carousel-2 .crafto-client-image * {
	-webkit-transition: all .4s cubic-bezier(.37,0,.63,1);
	transition: all .4s cubic-bezier(.37,0,.63,1);
}
.client-image-carousel-2 .crafto-client-image > img {
	width: 100%;
}
.client-image-carousel-2 .client-image-overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-color: rgba(35, 35, 35, 0.8);
}
.client-image-carousel-2 .crafto-client-icon {
	left: 50%;
	top: 50%;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.client-image-carousel-2 .elementor-icon {
	font-size: 40px;
	color: #fff;
}
.client-image-carousel-2 .crafto-client-image:hover > img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-filter: blur(3px);
	filter: blur(3px);
}
/* === ../wp-content/plugins/crafto-addons/includes/widgets/assets/css/image.css === */
/* ===================================
	Image
====================================== */
.elementor-widget-crafto-image .crafto-image-wrapper a {
	display: block;
}

/* Parallax Liquid */
.crafto-image-wrapper .image-box.reveal-effect,
.crafto-image-wrapper .liquid-parallax-box {
	display: inline-block;
}
.crafto-image-wrapper a .liquid-parallax-box {
	width: 100%;
}
.crafto-image-wrapper .image-box.reveal-effect {
	width: 100%;
}
.crafto-image-wrapper .shadow-in {
	box-shadow: 0 20px 100px 0 rgba(0, 0, 0, 0.1);
}
[data-shadow-animation].shadow-in img {
	opacity: 1;
	transition-delay: .35s;
}
[data-shadow-animation] img {
	opacity: 0;
	transition: opacity .65s cubic-bezier(.5,1,.5,1);
}
.liquid-parallax-box {
	overflow: hidden;
	position: relative;
}
.liquid-parallax-box .liquid-parallax {
	will-change: transform;
	transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
	transform: translateY(0) scale(1.201);
	position: relative;
}
.crafto-image-wrapper .atropos img {
	border-radius: 6px 6px 6px 6px;
	position: relative;
	display: block;
	width: 100%;
}

/* Responsive CSS Here */
@media (max-width: 1024px) {
	.liquid-parallax-box .liquid-parallax {
		top: 0;
	}
}
/* === ../wp-content/plugins/crafto-addons/includes/widgets/assets/css/slider.css === */
/* ===================================
	Slider
====================================== */
.elementor-widget-crafto-slider .swiper-slide .slider-text-middle-main {
	max-width: 1220px;
}
.elementor-widget-crafto-slider .swiper-slide {
	display: flex;
	justify-content: center;
}
.elementor-widget-crafto-slider .swiper-slide .slider-text-middle-main {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}
body:not(.preloader-overflow-hidden) .swiper-slide [data-fancy-text],
body:not(.preloader-overflow-hidden) .swiper-slide .slider-subtitle[data-anime],
body:not(.preloader-overflow-hidden) .swiper-slide .crafto-slider-buttons[data-anime],
body:not(.preloader-overflow-hidden) .swiper-slide .crafto-slider-description[data-anime],
body:not(.preloader-overflow-hidden) .swiper-slide .crafto-splash-text[data-anime],
body:not(.preloader-overflow-hidden) .swiper-slide .slider-title[data-anime] {
	opacity: 0;
}
body:not(.preloader-overflow-hidden) .swiper-slide.swiper-slide-active [data-fancy-text].appear,
body:not(.preloader-overflow-hidden) .swiper-slide.swiper-slide-active [data-fancy-text],
body:not(.preloader-overflow-hidden) .swiper-slide.swiper-slide-active .slider-subtitle[data-anime],
body:not(.preloader-overflow-hidden) .swiper-slide.swiper-slide-active .crafto-slider-buttons[data-anime],
body:not(.preloader-overflow-hidden) .swiper-slide.swiper-slide-active .crafto-slider-description[data-anime],
body:not(.preloader-overflow-hidden) .swiper-slide.swiper-slide-active .crafto-splash-text[data-anime],
body:not(.preloader-overflow-hidden) .swiper-slide.swiper-slide-active .slider-title[data-anime],
body:not(.preloader-overflow-hidden) .swiper-slide.swiper-slide-active img[data-anime] {
	opacity: 1;
}
.elementor-widget-crafto-slider .crafto-slider-description {
	max-width: 45%;
	margin-bottom: 20px;
}
.elementor-widget-crafto-slider .crafto-slider-description p:last-of-type {
	margin-bottom: 0;
}
.slider-style-1,
.slider-style-2,
.slider-style-3 {
	height: 100vh;
}
.elementor-element.elementor-widget-crafto-slider .swiper.horizontal .swiper-pagination-bullets.swiper-pagination-horizontal,
.elementor-element.elementor-widget-crafto-slider .swiper.horizontal.number-style-3 .swiper-pagination-wrapper {
	margin: 0 auto;
	left: 0;
	right: 0;
	max-width: 1220px;
}
.elementor-element.elementor-widget-crafto-slider .swiper.horizontal.number-style-3 .swiper-pagination-wrapper .swiper-pagination-progressbar {
	top: 0;
}
.elementor-element.elementor-widget-crafto-slider .swiper.horizontal.pagination-left .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
	margin-left: 0 !important;
	margin-right: 12px;
}
.elementor-element.elementor-widget-crafto-slider .swiper.horizontal.pagination-right .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
	margin-right: 0 !important;
	margin-left: 12px;
}
.elementor-element.elementor-widget-crafto-slider .swiper.horizontal.pagination-left.dots-style-2 .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
	margin-left: 0 !important;
	margin-right: 24px;
}
.elementor-element.elementor-widget-crafto-slider .swiper.horizontal.pagination-right.dots-style-2 .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
	margin-right: 0 !important;
	margin-left: 24px;
}
.elementor-element.elementor-widget-crafto-slider .swiper.horizontal.pagination-left.number-style-2 .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
	margin-left: 0 !important;
	margin-right: 0;
}
.elementor-element.elementor-widget-crafto-slider .swiper.horizontal.pagination-right.number-style-2 .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
	margin-right: 0 !important;
	margin-left: 0;
}
.elementor-element.elementor-widget-crafto-slider .swiper.horizontal.number-style-3.pagination-left .swiper-pagination-wrapper .number-prev,
.elementor-element.elementor-widget-crafto-slider .swiper.horizontal.number-style-3.pagination-right .swiper-pagination-wrapper .number-prev {
	width: 35px;
	text-align: left;
}
.elementor-element.elementor-widget-crafto-slider .swiper.horizontal.number-style-3.pagination-left .swiper-pagination-wrapper .number-next,
.elementor-element.elementor-widget-crafto-slider .swiper.horizontal.number-style-3.pagination-right .swiper-pagination-wrapper .number-next {
	width: 35px;
	text-align: right;
	margin-left: 2px;
}
.slider-style-1.swiper .swiper-slide .desktop-img img,
.slider-style-1.swiper .swiper-slide .mobile-img img,
.slider-style-2.swiper .swiper-slide .desktop-img img,
.slider-style-2.swiper .swiper-slide .mobile-img img,
.slider-style-3.swiper .swiper-slide .desktop-img img,
.slider-style-3.swiper .swiper-slide .mobile-img img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	position: absolute;
	will-change: transform;
}
.slider-style-1.swiper .swiper-slide .desktop-img,
.slider-style-1.swiper .swiper-slide .mobile-img,
.slider-style-2.swiper .swiper-slide .desktop-img,
.slider-style-2.swiper .swiper-slide .mobile-img,
.slider-style-3.swiper .swiper-slide .desktop-img,
.slider-style-3.swiper .swiper-slide .mobile-img {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	will-change: transform;
}

/* Parallax Slider */
.parallax-slider .swiper-slide .cover-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
}
.parallax-slider .swiper-slide {
	overflow: hidden;
}
.elementor-widget-crafto-slider {
	width: 100%;
}

/* Slider Style 01 */
.slider-style-1 .slider-title {
	margin-bottom: 10px;
}
.slider-style-1 .swiper-slide .number {
	position: absolute;
	left: 0;
	bottom: -45px;
	display: inline-block;
	font-size: 11.875rem;
	font-weight: 600;
	line-height: 190px;
	letter-spacing: -5px;
	color: var( --e-global-color-secondary, #232323 );
}
.slider-style-1 .elementor-animation-btn-switch-icon:hover,
.slider-style-1 .elementor-animation-btn-reveal-icon:hover {
	transform: translate3d(0,-2px,0) !important;
}
.slider-style-1 .crafto-splash-text {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	margin-bottom: 8%;
}
.slider-style-1 .swiper-slide .cover-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Slider Style 02 */
.slider-style-2 .content-wrapper {
	background-color: #fff;
	border-radius: 8px 0 0 0;
	padding: 50px 40px 40px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
	width: 41.66666667%;
	display: flex;
	flex-wrap: wrap;
}
.slider-style-2 .content-wrapper .content-icon-wrap {
	display: flex;
	flex-wrap: wrap;
	flex: 0 0 auto;
	width: 58.33333333%;
}
.slider-style-2 .content-wrapper .content-icon {
	border-right: 1px solid #e4e4e4;
	padding: 0 15px;
	flex: 1 0 0%;
	text-align: center;
}
.slider-style-2 .content-wrapper .content-icon .icon-description {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}
.slider-style-2 .content-wrapper .elementor-icon-list-icon {
	display: inline-block;
	margin-bottom: 5px;
}
.slider-style-2 .content-wrapper .elementor-icon-list-icon svg {
	fill: #000;
	width: 50px;
	height: auto;
}
.slider-style-2 .content-wrapper .content-wrap {
	flex: 0 0 auto;
	width: 41.66666667%;
	padding: 0 15px 0 35px;
}
.slider-style-2 .content-wrap .property-description {
	margin-bottom: 5px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}
.slider-style-2 .content-wrap .price {
	font-size: 38px;
	line-height: 40px;
	letter-spacing: -1px;
	font-weight: 700;
	color: #000; 
}
.slider-style-2 {
	display: flex;
	justify-content: center;
}
.slider-style-2 .crafto-slider-buttons .crafto-button-wrapper {
	margin: 0;
}

/* Slider Style 03 */
.slider-style-3 .swiper-slide > .row {
	width: 100%;
}
.slider-style-3 .swiper-slide .content-box-wrap,
.slider-style-3 .swiper-slide .image-box-wrap {
	position: relative;
}
.slider-style-3 .content-box-wrap .content-bg-image {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
}
.slider-style-3 .content-box-wrap .content-bg-image img {
	width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    position: absolute;
    will-change: transform;
}
.elementor-element.elementor-widget-crafto-slider .swiper.horizontal.slider-style-3 .swiper-pagination-bullets.swiper-pagination-horizontal, 
.elementor-element.elementor-widget-crafto-slider .swiper.horizontal.slider-style-3.number-style-3 .swiper-pagination-wrapper {
	max-width: 100%;
	padding-left: 6%;
	padding-right: 6%;
}

/* Admin Bar */
.admin-bar .full-screen-slide.swiper,
.admin-bar .full-screen-slide.swiper-container,
.admin-bar .slider-style-1,
.admin-bar .slider-style-2,
.admin-bar .slider-style-3 {
	height: calc(100vh - 32px);
}

/* Responsive CSS Here */
@media (max-width: 1199px) {
	.slider-style-2 .content-wrapper .content-wrap {
		width: 100%;
		text-align: center;
	}
	.slider-style-2 .content-wrapper .content-icon-wrap {
		margin-bottom: 25px;
		width: 100%;
	}
	.slider-style-2 .content-wrapper .content-icon:last-child {
		border: none;
	}
}

@media (max-width: 991px) {
	.slider-style-1 .crafto-splash-text {
		position: relative;
	}
	.slider-style-2 .content-wrapper {
		display: none;
	}
	.slider-style-3 .swiper-slide > .row {
		flex-direction: column-reverse;
	}
	.slider-style-3 .image-box-wrap {
		height: 500px;
	}
}

@media (max-width: 767px) {
	.slider-style-3 .image-box-wrap {
		height: 400px;
	}
}
/* === ../wp-content/plugins/crafto-addons/includes/widgets/assets/css/star-rating.css === */
/* ===================================
	Star Rating
====================================== */
.elementor-star-rating i {
	margin-right: 2px;
	font-size: 16px;
	font-style: normal;
	position: relative;
	display: inline-block;
}
.elementor-star-rating i:last-child,
.elementor--star-style-star_unicode .elementor-star-rating i:last-child,
.elementor--star-style-star_bootstrap .elementor-star-rating i:last-child {
	margin: 0;
}
.elementor-star-rating i:before {
	color: #fd961e;
	right: 0;
	display: block;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
}
.elementor-star-rating i:after,
.elementor-star-rating i.elementor-star-empty:before {
	color: #ccd6df;
	vertical-align: top;
}
.elementor-star-rating .elementor-star-1:before {
	width: 10%;
}
.elementor-star-rating .elementor-star-2:before {
	width: 20%;
}
.elementor-star-rating .elementor-star-3:before {
	width: 30%;
}
.elementor-star-rating .elementor-star-4:before {
	width: 40%;
}
.elementor-star-rating .elementor-star-5:before {
	width: 50%;
}
.elementor-star-rating .elementor-star-6:before {
	width: 60%;
}
.elementor-star-rating .elementor-star-7:before {
	width: 70%;
}
.elementor-star-rating .elementor-star-8:before {
	width: 80%;
}
.elementor-star-rating .elementor-star-9:before {
	width: 90%;
}
.review-star-icon,
.review-star-icon .elementor-star-rating {
	line-height: normal;
}

/* Star Fontawesome */
.elementor--star-style-star_fontawesome .elementor-star-rating {
	font-family: unset;
}
.elementor--star-style-star_fontawesome .elementor-star-rating i:after {
	content: "\f005";
	font-weight: 900;
	font-family: "Font Awesome 7 Free";
}
.elementor--star-style-star_fontawesome .elementor-star-rating i:before {
	content: "\f005";
	font-weight: 900;
	font-family: "Font Awesome 7 Free";
}

/* Star Bootstrap */
.elementor--star-style-star_bootstrap .elementor-star-rating {
	font-family: unset;
}
.elementor--star-style-star_bootstrap .elementor-star-rating i:after {
	content: "\f586";
	font-weight: 400;
	font-family: "bootstrap-icons";
}
.elementor--star-style-star_bootstrap .elementor-star-rating i:before {
	content: "\f586";
	font-weight: 400;
	font-family: "bootstrap-icons";
}

/* Outline */
.elementor--star-style-star_fontawesome.elementor-star-outline .elementor-star-rating i:after,
.elementor--star-style-star_fontawesome.elementor-star-outline .elementor-star-rating i.elementor-star-empty:before {
	font-weight: 400;
}
.elementor--star-style-star_bootstrap.elementor-star-outline .elementor-star-rating i:after,
.elementor--star-style-star_bootstrap.elementor-star-outline .elementor-star-rating i.elementor-star-empty:before {
	content: "\f588";
}

/* Star Unicode */
.elementor--star-style-star_unicode .elementor-star-rating i {
	font-size: 22px;
	margin-right: 0;
}
.elementor--star-style-star_unicode .elementor-star-rating {
	font-family: "Arial", "Helvetica", sans-serif;
}
.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before {
	content: "★";
}

/* Star Rating Widget Style 01 */
.rating-style-1 {
	border-radius: 10px;
	background-color: #fff;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	background-color: var( --e-global-color-secondary, #232323 );
	border-radius: 10px;
}
.rating-style-1 img {
	height: auto;
	margin: 15px 25px;
	width: 50px;
}
.rating-style-1 .rating-content-box {
	padding: 25px;
	background-color: #fff;
	border-radius: 8px;
	position: relative;
	top: -1px;
}
.rating-style-1 .rating-content-box .star-rating-number {
	color: #000;
	font-size: 55px;
	line-height: 55px;
	font-weight: 600;
}
.rating-style-1 .rating-content-box .elementor-star-rating i {
	font-size: 18px;
}
.rating-style-1 .rating-content-box .rating-review-number {
	color: #000;
	display: block;
	margin-top: 5px;
}
.rating-style-1 .rating-content-box .review-text {
	display: inline-block;
	border-radius: 30px;
	background-color: #000;
	color: #fff;
	font-size: 11px;
	padding: 0 20px;
}

/* Star Rating Widget Style 02 */
.rating-style-2 {
	background-color: var( --e-global-color-secondary, #232323 );
	text-align: center;
	border-radius: 30px;
}
.rating-style-2 .rating-content-box {
	padding: 3px 20px 3px;
}
.rating-style-2 .rating-content-box .elementor-star-rating i {
	font-size: 16px;
	margin-right: 0;
}
.elementor--star-style-star_bootstrap .elementor-star-rating i,
.elementor--star-style-star_bootstrap .rating-style-2 .elementor-star-rating i {
	margin-right: 2px;
}
.elementor--star-style-star_bootstrap .elementor-star-rating i:last-child,
.elementor--star-style-star_bootstrap .rating-style-2 .elementor-star-rating i:last-child {
	margin-right: 0;
}
/* === ../wp-content/plugins/crafto-addons/includes/widgets/assets/css/testimonial-carousel.css === */
/* ===================================
	Testimonial Carousel
====================================== */
.elementor-widget-crafto-testimonial-carousel .swiper-wrapper.swiper-image-stretch .swiper-slide {
	height: initial;
}
.testimonials-wrapper {
	height: 100%;
}
.testimonials-wrapper .content-box {
	display: flex;
	align-items: center;
}
.testimonials-wrapper .testimonials-carousel-image-box {
	flex-shrink: 0;
	margin-right: 15px;
	border-radius: 100%;
	overflow: hidden;
}
.testimonials-wrapper .testimonials-carousel-image-box img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	display: block;
}
.testimonials-wrapper .testimonial-name-icon {
	flex-grow: 1;
}
.testimonial-carousel-content .content-highlights {
	border-width:0 0 1px 0;
	color: var( --e-global-color-secondary, #232323 );
	font-weight: 500;
}
.testimonial-carousel-title {
	font-size: 17px;
	font-weight: 500;
	color: var( --e-global-color-secondary, #232323 );
	margin-bottom: 5px;
}
.testimonial-carousel-wrapper .heading .separator {
	border: 0;
	border-bottom: 1px solid #000;
}
.elementor-element.elementor-widget-crafto-testimonial-carousel .swiper.nav-icon-circle .elementor-swiper-button,
.elementor-element.elementor-widget-crafto-testimonial-carousel .swiper.nav-icon-square .elementor-swiper-button {
	background-color: #f7f7f7;
}
.feather-shadow.testimonial-carousel {
	mask-image: linear-gradient(to right, transparent 18%, #000000 22%, #000000 78%, transparent 82%);
	width: initial;
}
.feather-shadow-right.testimonial-carousel,
.feather-shadow-left.testimonial-carousel {
	width: initial;
}
.elementor-widget-crafto-testimonial-carousel .slider-custom-image-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	padding-top: 30px;
}
.elementor-widget-crafto-testimonial-carousel .slider-custom-image-pagination > span {
	width: 12px;
	height: 12px; 
	margin: 0 6px;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	transition-duration: 0.3s;
	border: 0;
}
.elementor-widget-crafto-testimonial-carousel .slider-custom-image-pagination > .swiper-pagination-bullet-active {
	opacity: 1;
}
.elementor-widget-crafto-testimonial-carousel .swiper-pagination-bullets :focus-visible {
	outline: none;
}

/* Testimonial Carousal Style 01 */
.testimonial-carousel-style-1 .testimonials-wrapper {
	display: flex;
	flex-direction: column;
}
.testimonial-carousel-style-1 .testimonial-carousel-content {
	margin-bottom: 20px;
}
.testimonial-carousel-style-1 .testimonial-carousel-content p:last-child {
	margin-bottom: 0;
}
.testimonial-carousel-style-1 .content-box {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
}
.testimonial-carousel-style-1 .testimonial-name-icon {
	text-align: left;
	line-height: 28px;
}
.testimonial-carousel-style-1 .testimonial-name-icon .testimonial-carousel-name {
	color: var( --e-global-color-secondary, #232323 );
}
.testimonial-carousel-style-1 .testimonial-name-icon .testimonial-carousel-position {
	display: block;
}
.testimonial-carousel-style-1 .testimonial-name-icon .review-star-icon {
	margin-top: 5px;
}
.elementor-element.elementor-widget-crafto-testimonial-carousel .testimonial-carousel-style-1 .elementor-swiper-button {
	bottom: 0;
	left: 0;
	top: inherit;
	transform: translateY(0);
	z-index: 99;
}
.elementor-element.elementor-widget-crafto-testimonial-carousel .testimonial-carousel-style-1 .elementor-swiper-button i {
	transition: .3s;
}
.elementor-element .testimonial-carousel-style-1 .elementor-swiper-button+.elementor-swiper-button,
.elementor-element.elementor-pagination-position-outside .swiper.testimonial-carousel-style-1 .elementor-swiper-button+.elementor-swiper-button {
	left: 55px;
}
.swiper.testimonial-carousel-style-1 .navigation-wrapper {
	clear: both;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0;
}
.swiper.testimonial-carousel-style-1.navigation-left .navigation-wrapper {
	justify-content: start;
}
.swiper.testimonial-carousel-style-1.navigation-right .navigation-wrapper {
	justify-content: end;
}
.elementor-element .swiper.testimonial-carousel-style-1 .navigation-wrapper .elementor-swiper-button.elementor-swiper-button-next,
.elementor-element .swiper.testimonial-carousel-style-1 .navigation-wrapper .elementor-swiper-button.elementor-swiper-button-prev {
	left: 0;
	right: 0;
	margin: 0;
	position: relative;
}
.elementor-element .swiper.testimonial-carousel-style-1.navigation-center .navigation-wrapper .elementor-swiper-button {
	margin: 0 5px;
}
.elementor-element .swiper.testimonial-carousel-style-1.navigation-left .navigation-wrapper .elementor-swiper-button {
	margin: 0 10px 0 0;
}
.elementor-element .swiper.testimonial-carousel-style-1.navigation-right .navigation-wrapper .elementor-swiper-button {
	margin: 0 0 0 10px;
}
.testimonial-carousel-style-1 .testimonial-name-icon > *:last-child {
	margin-bottom: 0;
}

/* Testimonial Carousal Style 02 */
.testimonial-carousel-style-2 {
	padding: 30px 22px;
}
.testimonial-carousel-style-2 .content-box {
	display: inline-flex;
	align-items: center;
}
.testimonial-carousel-style-2 .testimonials-wrapper {
	background-color: #fff;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
	border-radius: 6px 6px 6px 6px;
	padding: 12%;
}
.testimonial-carousel-style-2 .testimonial-carousel-title {
	margin-bottom: 15px;
	display: inline-block;
}
.testimonial-carousel-style-2 .testimonial-carousel-content {
	margin-bottom: 20px;
}
.testimonial-carousel-style-2 .testimonial-carousel-name {
	font-weight: 500;
	color: var( --e-global-color-secondary, #232323 );
	margin-bottom: 3px;
}
.testimonial-carousel-style-2 .testimonial-carousel-position {
	font-weight: 400;
	display: inline-block;
}
.testimonial-carousel-style-2 .review-star-icon i {
	margin-right: 1px;
}
.testimonial-carousel-style-2 .testimonials-wrapper .testimonial-name-icon {
	line-height: normal;
}

/* Testimonial Carousal Style 03 */
.testimonial-carousel-wrapper {
	display: flex;
	flex-wrap: nowrap;
}
.testimonial-carousel-style-3 .content-box {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
}
.testimonial-carousel-wrapper .carousel-title-box {
	flex-shrink: 0;
	width: 50%;
	padding-right: 15px;
	display: flex;
	flex-direction: column;
}
.testimonial-carousel-wrapper .carousel-title-box .subheading {
	background-color: #c2c2c2;
	color: var( --e-global-color-secondary, #232323 );
	border-radius: 4px;
	display: inline-block;
	font-size: 13px;
	line-height: 40px;
	font-weight: 700;
	margin-bottom: 25px;
	padding: 0 20px;
	width: fit-content;
}
.testimonial-carousel-wrapper .carousel-title-box .heading {
	display: block;
	margin-bottom: 25px;
}
.testimonial-carousel-wrapper .carousel-title-box .carousel-content-box {
	width: 65%;
}
.testimonial-carousel-wrapper .testimonials-carousel-wrap {
	flex-grow: 1;
	min-width: 100%;
	padding-left: 15px;
}
.testimonial-carousel-wrapper .testimonials-carousel-wrap .testimonial-carousel-style-3 {
	position: static;
}
.testimonial-carousel-style-3 .testimonial-carousel-title {
	font-size: 20px;
	display: inline-block;
}
.testimonial-carousel-style-3 .testimonial-carousel-content {
	width: 90%;
	margin-bottom: 20px;
	display: inline-block;
}
.testimonial-carousel-style-3 .testimonial-carousel-name {
	color: var( --e-global-color-secondary, #232323 );
}
.testimonial-carousel-style-3 .testimonial-carousel-position {
	display: block;
}
.elementor-element .testimonial-carousel-style-3 .elementor-swiper-button,
.elementor-element.elementor-pagination-position-outside .swiper.testimonial-carousel-style-3 .elementor-swiper-button {
	left: 0;
	top: 210px;
	z-index: 10;
	transform: translateY(0);
}
.elementor-element .testimonial-carousel-style-3 .elementor-swiper-button i ,
.elementor-element.elementor-pagination-position-outside .swiper.testimonial-carousel-style-3 .elementor-swiper-button i {
	transition: all 0.3s ease-in-out;
}
.elementor-element .testimonial-carousel-style-3 .elementor-swiper-button+.elementor-swiper-button,
.elementor-element.elementor-pagination-position-outside .swiper.testimonial-carousel-style-3 .elementor-swiper-button+.elementor-swiper-button {
	left: 55px;
}
.testimonial-carousel-style-3 .testimonial-name-icon {
	flex-grow: 1;
	line-height: 28px;
}
.testimonial-carousel-style-3 .review-star-icon {
	margin-top: 5px;
}
.testimonial-carousel-style-3 .testimonial-name-icon > *:last-child,
.testimonial-carousel-style-3 .carousel-title-box > *:last-child {
	margin-bottom: 0;
}

/* Testimonial Carousal Style 04 */
.testimonial-carousel-wrapper .testimonials-carousel-wrap .testimonial-carousel-style-4 {
	position: static;
}
.testimonial-carousel-style-4 .testimonials-wrapper {
	border-radius: 6px;
	background-color: #262d38;
	padding: 12%;
	display: flex;
	flex-direction: column;
}
.testimonial-carousel-style-4 .testimonial-carousel-content {
	margin-bottom: 20px;
	display: inline-block;
}
.testimonial-carousel-style-4 .testimonial-carousel-content .content-highlights {
	color: #fff;
}
.testimonial-carousel-style-4 .content-box {
	margin-bottom: 20px;
}
.testimonial-carousel-style-4 .testimonial-carousel-title,
.testimonial-carousel-style-4 .testimonial-carousel-name {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}
.testimonial-carousel-style-4 .testimonial-carousel-position {
	display: block;
}
.testimonial-carousel-style-4 .testimonial-carousel-footer {
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}
.testimonial-carousel-style-4 .review-star-icon {
	display: flex;
	align-items: center;
}
.testimonial-carousel-style-4 .review-star-icon .star-rating-number {
	font-weight: 500;
	color: #fff;
	margin-right: 10px;
}
.testimonial-carousel-style-4 .review-date {
	background-color: rgba(136, 136, 136, 0.3);
	border-radius: 3px;
	font-size: 12px;
	line-height: 26px;
	color: #fff;
	font-weight: 600;
	padding: 0 15px;
}
.elementor-element .testimonial-carousel-style-4 .elementor-swiper-button,
.elementor-element.elementor-pagination-position-outside .swiper.testimonial-carousel-style-4 .elementor-swiper-button {
	left: 0;
	top: 210px;
	z-index: 10;
	transform: translateY(0);
}
.elementor-element .testimonial-carousel-style-4 .elementor-swiper-button+.elementor-swiper-button,
.elementor-element.elementor-pagination-position-outside .swiper.testimonial-carousel-style-4 .elementor-swiper-button+.elementor-swiper-button {
	left: 55px;
}

/* Testimonial Carousal Style 05 */
.testimonial-carousel-style-5 .testimonials-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0 10.5%;
}
.testimonial-carousel-style-5 .testimonials-carousel-image-box {
	width: 42.44%;
	overflow: visible;
	text-align: right;
	padding: 0 15px;
	margin: 0;
}
.testimonial-carousel-style-5 .testimonials-carousel-image-box img {
	width: 90%;
	height: auto;
	display: inline-block;
}
.testimonial-carousel-style-5 .testimonials-carousel-icon-box {
	margin-bottom: 20px;
}
.testimonial-carousel-style-5 .testimonials-carousel-icon-box img {
	width: 60px;
}
.testimonial-carousel-style-5 .testimonial-carousel-title {
	font-size: 20px;
	font-weight: 600;
}
.testimonial-carousel-style-5 .testimonial-carousel-content {
	width: 80%;
	margin-bottom: 15px;
}
.testimonial-carousel-style-5 .testimonial-carousel-name {
	font-size: 20px;
	font-weight: 600;
	color: var( --e-global-color-secondary, #232323 );
}
.testimonial-carousel-style-5 .testimonial-carousel-position {
	display: block;
}
.testimonial-carousel-style-5 .review-star-icon {
	line-height: normal;
	margin-top: 3px;
}

/* Testimonial Carousal Style 06 */
.testimonial-carousel-wrapper .testimonials-carousel-wrap .testimonial-carousel-style-6 {
	position: static;
	padding: 30px 15px;
}
.testimonial-carousel-style-6 .testimonials-wrapper {
	border-radius: 6px;
	background-color: #fff;
	padding: 12%;
	display: flex;
	flex-direction: column;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
.testimonial-carousel-style-6 .testimonials-author-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.testimonial-carousel-style-6 .testimonial-carousel-content {
	display: inline-block;
	order: 2;
}
.testimonial-carousel-style-6 .content-box {
	order: 1;
	margin-bottom: 20px;
}
.testimonial-carousel-style-6 .testimonial-carousel-title {
	color: var( --e-global-color-secondary, #232323 );
	font-weight: 600;
}
.testimonial-carousel-style-6 .testimonial-carousel-name {
	font-size: 18px;
	font-weight: 600;
	color: var( --e-global-color-secondary, #232323 );
}
.testimonial-carousel-style-6 .testimonial-carousel-position {
	display: block;
}
.testimonial-carousel-style-6 .rating-icon-singular {
	display: flex;
	align-items: center;
	background-color: #ffea23;
	color: var( --e-global-color-secondary, #232323 );
	font-size: 14px;
	font-weight: 700;
	padding: 0 15px;
	border-radius: 30px;
	margin-top: 5px;
	margin-bottom: 5px;
}
.testimonial-carousel-style-6 .rating-icon-singular i {
	font-size: 14px;
	vertical-align: middle;
	position: relative;
	top: -1px;
}
.testimonial-carousel-style-6 .rating-icon-singular .elementor-star-rating {
	font-size: 14px;
	margin-right: 5px;
}
.testimonial-carousel-style-6 .rating-icon-singular .elementor-star-rating i:before {
	color: var( --e-global-color-secondary, #232323 );
}
.elementor-element .testimonial-carousel-style-6 .elementor-swiper-button,
.elementor-element.elementor-pagination-position-outside .swiper.testimonial-carousel-style-6 .elementor-swiper-button {
	left: 0;
	top: 250px;
	z-index: 10;
	transform: translateY(0);
}
.elementor-element .testimonial-carousel-style-6 .elementor-swiper-button i,
.elementor-element.elementor-pagination-position-outside .swiper.testimonial-carousel-style-6 .elementor-swiper-button i {
	transition: .3s;
}
.elementor-element .testimonial-carousel-style-6 .elementor-swiper-button+.elementor-swiper-button,
.elementor-element.elementor-pagination-position-outside .swiper.testimonial-carousel-style-6 .elementor-swiper-button+.elementor-swiper-button {
	left: 55px;
}
.testimonial-carousel-style-6 .testimonials-wrapper .testimonial-name-icon {
	margin-top: 5px;
	margin-bottom: 5px;
}

/* Testimonial Carousal Style 07 */
.testimonial-carousel-style-7.swiper {
	margin-left: -15vw;
	margin-right: -15vw;
}
.testimonial-carousel-style-7.feather-shadow.testimonial-carousel {
	mask-image: linear-gradient(to right, transparent 10%, #000000 25%, #000000 75%, transparent 90%);
}
.testimonial-carousel-style-7 .swiper-wrapper {
	padding: 20px 0;
}
.testimonial-carousel-style-7 .testimonials-wrapper {
	border: 1px solid #e4e4e4;
	border-radius: 4px;
}
.testimonial-carousel-style-7 .content-box {
	border-bottom: 1px solid #e4e4e4;
	padding: 35px 45px;
}
.testimonial-carousel-style-7 .testimonials-carousel-image-box {
	margin-right: 25px;
}
.testimonial-carousel-style-7 .testimonials-carousel-image-box img {
	width: 110px;
	height: 110px;
}
.testimonial-carousel-style-7 .testimonial-name-icon {
	padding: 15px 45px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.testimonial-carousel-style-7 .testimonial-carousel-name {
	color: var( --e-global-color-secondary, #232323 );
	font-weight: 600;
	margin-right: 5px;
}
.testimonial-carousel-style-7 .testimonial-carousel-position {
	color: var( --e-global-color-secondary, #232323 );
	font-weight: 600;
}
.testimonial-carousel-style-7 .review-star-icon {
	margin-left: auto;
}
.testimonial-carousel-style-7 .elementor-star-rating i {
	margin-right: 1px;
}
.elementor-element.elementor-arrows-position-outside .swiper.testimonial-carousel-style-7 {
	width: auto;
}
.elementor-element.elementor-arrows-position-inside .swiper.testimonial-carousel-style-7 {
	position: static;
}

/* Testimonial Carousal Style 08 */
.el-testimonial-carousel-style-8 .elementor-widget-container {
	border: 1px solid #e4e4e4;
	border-radius: 100px;
	padding: 20px;
	box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.swiper.testimonial-carousel-style-8 {
	width: 83.33333333%;
	margin: 0;
	position: unset;
}
.testimonial-carousel-style-8 .swiper-slide {
	display: flex;
	align-items: center;
}
.testimonial-carousel-style-8 .testimonials-wrapper {
	width: 71%;
	padding: 0 55px 0 15px;
}
.testimonial-carousel-style-8 .carousel-content-wrap {
	position: relative;
}
.testimonial-carousel-style-8 .testimonials-carousel-image-warp {
	display: flex;
	flex-shrink: 0;
	position: relative;
	margin-right: 15px;
}
.testimonial-carousel-style-8 .testimonials-wrapper .testimonials-carousel-image-box {
	margin-right: 0;
}
.testimonial-carousel-style-8 .testimonials-carousel-icon-box {
	position: absolute;
	top: 5px;
	right: -15px;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	vertical-align: middle;
	overflow: hidden;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.testimonial-carousel-style-8 .testimonials-carousel-icon-box img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.testimonial-carousel-style-8 .testimonials-carousel-icon-box i {
	position: relative;
	top: -1px;
	color: #fff;
}
.testimonial-carousel-style-8 .testimonials-carousel-icon-box svg {
	fill: #fff;
	color: #fff;
}
.testimonial-carousel-style-8 .testimonials-carousel-image-box img {
	width: 100px;
	height: 100px;
}
.testimonial-carousel-style-8 .testimonial-carousel-content,
.testimonial-carousel-style-8 .testimonial-carousel-title {
	padding-left: 25px;
}
.testimonial-carousel-style-8 .testimonial-name-icon {
	width: 29%;
	padding: 0 15px 0 55px;
	border-left: 1px solid #e4e4e4;
}
.elementor-element .testimonial-carousel-style-8.swiper .elementor-swiper-button-prev, 
.elementor-element .testimonial-carousel-style-8.swiper .elementor-swiper-button-next {
	transform: translate(50%, -50%);
	background-color: #e4e4e4;
}
.elementor-element .testimonial-carousel-style-8.swiper .elementor-swiper-button-prev {
	left: inherit;
	right: 12%;
}
.elementor-element .testimonial-carousel-style-8.swiper .elementor-swiper-button-next {
	right: 6.5%;
	transform: translate(50%, -50%);
}
.testimonial-carousel-style-8 .testimonial-name-icon .testimonial-carousel-name {
	color: var( --e-global-color-secondary, #232323 );
}
.testimonial-carousel-style-8 .testimonial-name-icon .testimonial-carousel-position {
	display: block;
}
.testimonial-carousel-style-8 .testimonial-name-icon > *:last-child {
	margin-bottom: 0;
}
.testimonial-carousel-style-8 .swiper-wrapper {
	align-items: center;
}
.testimonial-carousel-style-8 .review-star-icon {
	margin-top: 3px;
}

/* Testimonial Carousal Style 09 */
.testimonial-carousel-style-9 .swiper-wrapper {
	margin: 20px 0;
}
.testimonial-carousel-style-9 .testimonials-wrapper {
	border-radius: 10px;
	box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
	padding: 30px;
}
.testimonial-carousel-style-9 .testimonials-carousel-image-box {
	margin-right: 25px;
}
.testimonial-carousel-style-9 .testimonials-carousel-image-box img {
	width: 110px;
	height: 110px;
}
.testimonial-carousel-style-9 .testimonial-name-icon {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.testimonial-carousel-style-9 .testimonial-carousel-content {
	margin-bottom: 15px;
}
.testimonial-carousel-style-9 .testimonial-carousel-name {
	color: var( --e-global-color-secondary, #232323 );
	font-weight: 600;
}
.testimonial-carousel-style-9 .review-star-icon {
	background: #fd961e;
	border-radius: 3px;
	padding: 4px 10px 4px;
	margin: 5px 10px 5px 0;
	display: inline-flex;
}
.testimonial-carousel-style-9 .elementor-star-rating i {
	margin-right: 1px;
	font-size: 13px;
}
.testimonial-carousel-style-9 .elementor-star-rating i:before {
	color: #fff;
}
.testimonial-carousel-style-9 .elementor-star-rating i:after,
.testimonial-carousel-style-9 .elementor-star-rating i.elementor-star-empty:before {
	color: #e4e4e4;
}
.testimonial-carousel-style-9 .testimonial-name-icon .position-wrapper {
	line-height: normal;
}

/* Testimonial Carousal Style 10 */
.testimonial-carousel-style-10.swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	z-index: 1;
	padding-top: 8%;
	padding-bottom: 5%;
}
.testimonial-carousel-style-10 .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	box-sizing: content-box;
}
.testimonial-carousel-style-10 .testimonials-wrapper {
	text-align: center;
	padding: 20% 13% 10%;
	display: flex;
	flex-direction: column;
}
.testimonial-carousel-style-10 .testimonials-wrapper .testimonials-carousel-image-box {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 50%;
	margin: 0;
	opacity: 0;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
	border: 8px solid #fff;
}
.testimonial-carousel-style-10 .testimonials-carousel-image-box img {
	width: 150px;
	height: 150px;
}
.testimonial-carousel-style-10 .testimonials-wrapper .testimonial-carousel-title {
	font-weight: 600;
	margin-bottom: 5px;
	margin-top: 20px;
	font-size: 18px;
}
.testimonial-carousel-style-10 .testimonials-wrapper .testimonial-carousel-content {
	margin-bottom: 25px;
}
.testimonial-carousel-style-10 .testimonials-wrapper .testimonial-carousel-name {
	color: var( --e-global-color-secondary, #232323 );
	font-size: 19px;
	margin-bottom: 5px;
}
.testimonial-carousel-style-10 .testimonials-wrapper .testimonial-carousel-position {
	display: block;
}
.testimonial-carousel-style-10 .review-star-icon {
	margin-top: 3px;
}
.testimonial-carousel-style-10 .swiper-slide {
	background-color: #fff;
	filter: grayscale(100%);
	opacity: 1;
	-webkit-flex-shrink: 0;
	-ms-flex: 0 0 auto;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	opacity: 0;
}
.testimonial-carousel-style-10 .swiper-slide.swiper-slide-next,
.testimonial-carousel-style-10 .swiper-slide.swiper-slide-prev {
	opacity: 0.7;
}
.testimonial-carousel-style-10 .swiper-slide.swiper-slide-active {
	opacity: 1;
	filter: grayscale(0);
	box-shadow: 0 0 60px rgba(0, 0, 0, 0.17);
}
.testimonial-carousel-style-10.swiper-3d .swiper-slide-shadow-left,
.testimonial-carousel-style-10.swiper-3d .swiper-slide-shadow-right {
	background-image: none;
}
.testimonial-carousel-style-10 .swiper-slide-active .testimonials-carousel-image-box {
	opacity: 1;
}
.testimonial-carousel-style-10 .testimonials-wrapper > *:last-child {
	margin-bottom: 0;
}

/* Testimonial Carousal Style 11 */
.testimonial-carousel-style-11.swiper,
.swiper.slider-review-image {
	padding-bottom: 0;
}
.testimonial-carousel-style-11 .carousel-content-wrap {
	display: flex;
	flex-direction: column;
}
.testimonial-carousel-style-11 .testimonials-rounded-icon {
	margin-bottom: 30px;
	display: inline-flex;
}
.testimonial-carousel-style-11 .testimonials-rounded-icon span {
	vertical-align: middle;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.testimonial-carousel-style-11 .testimonials-rounded-icon img {
	border-radius: 100%;
	width: 80px;
	height: 80px;
	object-fit: cover;
	display: block;
}
.testimonial-carousel-style-11 .testimonials-rounded-icon i {
	position: relative;
	top: -1px;
}
.testimonial-carousel-style-11 .testimonial-carousel-name {
	color: var( --e-global-color-secondary, #232323 );
}
.testimonial-carousel-style-11 .testimonial-carousel-position {
	display: block;
}
.testimonial-carousel-style-11 .testimonial-carousel-content {
	margin-bottom: 15px;
}
.testimonial-carousel-style-11 .review-star-icon {
	margin-top: 1px;
	margin-bottom: -2px;
}
.testimonial-carousel-style-11 .carousel-content-wrap > *:last-child {
	margin-bottom: 0;
}
.testimonial-carousel-style-11 .avtar-image {
	display: none;
}
.testimonial-carousel-style-11 .slider-custom-image-pagination > span.swiper-pagination-bullet-active {
	box-shadow: 0 0 30px rgba(0,0,0,.05);
}

/* Testimonial Carousal Style 12 */
.testimonial-carousel-style-12 {
	position: static;
}
.testimonial-carousel-style-12 .testimonials-wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}
.testimonial-carousel-style-12 .testimonials-carousel-image-box {
	margin: 0 0 15px;
	display: block;
	overflow: visible;
}
.testimonial-carousel-style-12 .testimonials-carousel-image-box span img {
	border-radius: 100%;
}
.testimonial-carousel-style-12 .testimonial-carousel-name {
	display: inline-block;
	color: var( --e-global-color-secondary, #232323 );
}
.testimonial-carousel-style-12 .testimonial-carousel-position {
	display: inline-block;
}
.testimonial-carousel-style-12 .swiper-pagination-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}
.testimonial-carousel-style-12 .swiper-pagination-wrapper .number-prev,
.testimonial-carousel-style-12 .swiper-pagination-wrapper .number-next {
	width: 50px;
	text-align: center;
}
.testimonial-carousel-style-12 .swiper-pagination-wrapper .swiper-pagination-progressbar {
	position: relative;
	top: inherit;
	left: inherit;
	width: 220px;
	height: 1px;
}
.testimonial-carousel-style-12 .review-star-icon {
	margin-top: 10px;
}

/* Testimonial Carousal Style 13 */
.testimonial-carousel-wrapper .testimonials-carousel-wrap .testimonial-carousel-style-13 {
	position: static;
}
.testimonial-carousel-style-13 .testimonial-carousel-title {
	display: block;
	width: 100%;
}
.testimonial-carousel-style-13 .testimonials-carousel-image-box {
	border-radius: 0;
	padding: 0 15px 0 15px;
}
.testimonial-carousel-style-13 .testimonials-carousel-image-box img {
	display: block;
	width: 100%;
	height: auto;
}
.testimonial-carousel-style-13 .testimonial-name-icon {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	padding: 0 15px 0 16%;
}
.testimonial-carousel-style-13 .testimonial-name-icon .testimonial-carousel-name {
	transform: rotate(180deg);
	writing-mode: vertical-lr;
	position: absolute;
	top: 0;
	left: 0;
	width: 19%;
	height: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-left: 1px solid rgba(0, 0, 0, .15);
	color: var( --e-global-color-secondary, #232323 );
}
.testimonial-carousel-style-13 .testimonial-carousel-content {
	margin-bottom: 15px;
}
.testimonial-carousel-style-13 .review-star-icon {
	background-color: #C19052;
	border-radius: 30px;
	padding: 10px 20px 6px 20px;
}
.testimonial-carousel-style-13 .elementor-star-rating i:before {
	color: #fff;
}
.testimonial-carousel-style-13 .elementor-star-rating i:after,
.testimonial-carousel-style-13 .elementor-star-rating i.elementor-star-empty:before {
	color: #e4e4e4;
}
.elementor-element .testimonial-carousel-style-13 .elementor-swiper-button {
	left: 0;
	top: 200px;
	z-index: 10;
	transform: translateY(0);
}
.elementor-element .testimonial-carousel-style-13 .elementor-swiper-button+.elementor-swiper-button,
.elementor-element.elementor-pagination-position-outside .swiper.testimonial-carousel-style-13 .elementor-swiper-button+.elementor-swiper-button {
	left: 55px;
}

/* Testimonial Carousal Style 14 */
.el-testimonial-carousel-style-14 > .elementor-widget-container {
	padding: 0 15%;
}
.el-testimonial-carousel-style-14.elementor-widget-crafto-testimonial-carousel .elementor-swiper-button {
	min-height: 125px;
	color: var( --e-global-color-secondary, #232323 );
	min-height: 125px;
	font-size: 14px;
}
.elementor-element.elementor-widget-crafto-testimonial-carousel .swiper.nav-icon-circle.testimonial-carousel-style-14 .elementor-swiper-button {
	border-radius: 0;
	background: transparent;
	width: auto;
	height: auto;
}
.el-testimonial-carousel-style-14.elementor-widget-crafto-testimonial-carousel .elementor-swiper-button.elementor-swiper-button-prev {
	border-right: 1px solid #e4e4e4;
	padding-right: 50px;
}
.el-testimonial-carousel-style-14.elementor-widget-crafto-testimonial-carousel .elementor-swiper-button.elementor-swiper-button-prev i,
.el-testimonial-carousel-style-14.elementor-widget-crafto-testimonial-carousel .elementor-swiper-button.elementor-swiper-button-prev svg {
	margin-right: 5px;
	transition: all 0.3s ease-in-out;
}
.el-testimonial-carousel-style-14.elementor-widget-crafto-testimonial-carousel .elementor-swiper-button.elementor-swiper-button-next {
	border-left: 1px solid #e4e4e4;
	padding-left: 50px;
}
.el-testimonial-carousel-style-14.elementor-widget-crafto-testimonial-carousel .elementor-swiper-button.elementor-swiper-button-next i,
.el-testimonial-carousel-style-14.elementor-widget-crafto-testimonial-carousel .elementor-swiper-button.elementor-swiper-button-next svg {
	margin-left: 5px;
	order: 2;
	transition: all 0.3s ease-in-out;
}
.testimonial-carousel-style-14 {
	position: static;
}
.testimonial-carousel-style-14 .testimonials-wrapper {
	text-align: center;
	align-items: center;
	display: flex;
	flex-direction: column;
}
.testimonial-carousel-style-14 .testimonial-carousel-title {
	font-size: 22px;
	line-height: 32px;
	margin-bottom: 10px;
}
.testimonial-carousel-style-14 .testimonial-carousel-content {
	margin-bottom: 20px;
}
.testimonial-carousel-style-14 .testimonial-carousel-name,
.testimonial-carousel-style-14 .testimonial-carousel-position {
	display: block;
}
.testimonial-carousel-style-14 .testimonials-carousel-image-box {
	margin: 0 0 15px 0;
	border-radius: 0;
}
.testimonial-carousel-style-14 .testimonials-carousel-image-box img {
	border-radius: 100%;
	display: inline-block;
}
.testimonial-carousel-style-14 .testimonial-carousel-name {
	color: var( --e-global-color-secondary, #232323 );
}

/* Testimonial Carousal Style 15 */
.testimonial-carousel-wrapper .testimonials-carousel-wrap .testimonial-carousel-style-15 {
	position: static;
	padding: 30px 15px;
}
.testimonial-carousel-style-15 .swiper-slide {
	height: auto;
}
.testimonial-carousel-style-15 .content-box {
	height: 100%;
}
.elementor-element .testimonial-carousel-style-15 .elementor-swiper-button,
.elementor-element.elementor-pagination-position-outside .swiper.testimonial-carousel-style-15 .elementor-swiper-button {
	left: 0;
	top: 250px;
	width: 55px;
	height: 55px;
	z-index: 10;
	transform: translateY(0);
}
.elementor-element .testimonial-carousel-style-15 .elementor-swiper-button+.elementor-swiper-button,
.elementor-element.elementor-pagination-position-outside .swiper.testimonial-carousel-style-15 .elementor-swiper-button+.elementor-swiper-button {
	left: 55px;
}
.testimonial-carousel-style-15 .testimonial-name-icon {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	padding: 35px 35px 35px 95px;
	height: 100%;
}
.testimonial-carousel-style-15 .testimonial-name-icon .testimonial-carousel-name {
	color: var( --e-global-color-secondary, #232323 );
	transform: rotate(180deg);
	writing-mode: vertical-lr;
	position: absolute;
	top: 0;
	left: 0;
	padding: 15px;
	height: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-left: 1px solid rgba(0, 0, 0, .08);
}
.testimonial-carousel-style-15 .testimonial-carousel-content {
	margin-bottom: 10px;
}
.testimonial-carousel-style-15 .review-star-icon {
	background-color: #fd961e;
	border-radius: 100px;
	padding: 7px 15px 5px;
}
.testimonial-carousel-style-15 .elementor-star-rating i:before {
	color: #fff;
}
.testimonial-carousel-style-15 .elementor-star-rating i:after,
.testimonial-carousel-style-15 .elementor-star-rating i.elementor-star-empty:before {
	color: #e4e4e4;
}

/* Testimonial Carousal Style 16 */
.testimonial-carousel-style-16 {
	position: static;
}
.testimonial-carousel-style-16 .testimonials-wrapper {
	display: flex;
	flex-direction: column;
}
.testimonial-carousel-style-16 .testimonials-wrapper .name-rating-wrap {
	display: flex; 
	align-items: center;
	margin-bottom: 10px;
}
.testimonial-carousel-style-16 .testimonials-wrapper .name-rating-wrap .testimonial-position-wrap {
	line-height: normal;
}
.testimonial-carousel-style-16 .name-rating-wrap .rating-icon-singular {
	flex-shrink: 0;
	margin-left: 10px;
	display: flex;
	align-items: center;
	background-color: #ECBA23;
	color: var( --e-global-color-secondary, #232323 );
	font-size: 14px;
	font-weight: 700;
	padding: 0 15px;
	border-radius: 30px;
	margin-bottom: 3px;
}
.testimonial-carousel-style-16 .name-rating-wrap .rating-icon-singular i:before {
	color: var( --e-global-color-secondary, #232323 );
}
.testimonial-carousel-style-16 .testimonials-wrapper .name-rating-wrap .rating-icon-singular .elementor-star-rating {
	margin-right: 5px;
	vertical-align: middle;
	line-height: normal;
	margin-top: 1px;
}
.testimonial-carousel-style-16 .testimonial-carousel-name {
	color: var( --e-global-color-secondary, #232323 );
	margin-bottom: 5px;
}
.elementor-element.elementor-widget-crafto-testimonial-carousel .testimonial-carousel-style-16 .elementor-swiper-button {
	bottom: 0;
	left: 0;
	top: inherit;
	transform: translateY(0);
	z-index: 98;
}
.elementor-element.elementor-widget-crafto-testimonial-carousel .testimonial-carousel-style-16 .elementor-swiper-button i {
	transition: .3s;
}
.elementor-element .testimonial-carousel-style-16 .elementor-swiper-button+.elementor-swiper-button,
.elementor-element.elementor-pagination-position-outside .swiper.testimonial-carousel-style-16 .elementor-swiper-button+.elementor-swiper-button {
	left: 55px;
}
.swiper.testimonial-carousel-style-16 .navigation-wrapper {
	clear: both;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0;
}
.swiper.testimonial-carousel-style-16.navigation-left .navigation-wrapper {
	justify-content: start;
}
.swiper.testimonial-carousel-style-16.navigation-right .navigation-wrapper {
	justify-content: end;
}
.elementor-element .swiper.testimonial-carousel-style-16 .navigation-wrapper .elementor-swiper-button.elementor-swiper-button-next,
.elementor-element .swiper.testimonial-carousel-style-16 .navigation-wrapper .elementor-swiper-button.elementor-swiper-button-prev {
	left: 0;
	right: 0;
	margin: 0;
	position: relative;
}
.elementor-element .swiper.testimonial-carousel-style-16.navigation-center .navigation-wrapper .elementor-swiper-button {
	margin: 0 5px;
}
.elementor-element .swiper.testimonial-carousel-style-16.navigation-left .navigation-wrapper .elementor-swiper-button {
	margin: 0 10px 0 0;
}
.elementor-element .swiper.testimonial-carousel-style-16.navigation-right .navigation-wrapper .elementor-swiper-button {
	margin: 0 0 0 10px;
}
.testimonial-carousel-style-16 .testimonial-carousel-title {
	margin-bottom: 0;
}
.testimonial-carousel-style-16 .testimonial-carousel-content {
	margin-bottom: 15px;
	width: 85%;
}
.testimonial-carousel-style-16 .testimonials-carousel-image-box {
	margin: 0;
	border-radius: 0;
}
.testimonial-carousel-style-16 .testimonials-carousel-image-box img {
	border-radius: 100%;
	display: inline-block;
}
.testimonial-carousel-style-16 .testimonials-wrapper > *:last-child {
	margin-bottom: 0;
}
.swiper.testimonial-carousel-style-16 .swiper-slide.swiper-slide-next {
	opacity: 0.4;
}
.swiper.testimonial-carousel-style-16 .swiper-slide {
	opacity: 0.1;
}
.swiper.testimonial-carousel-style-16 .swiper-slide.swiper-slide-active {
	opacity: 1;
}

/* Testimonial Carousal Style 17 */
.testimonial-carousel-style-17 {
	padding: 20px 0;
	position: static;
}
.testimonial-carousel-style-17 .testimonials-wrapper {
	background-color: #fff;
	border-radius: 6px;
	box-shadow: 0 0 30px rgba(0,0,0,.08);
	display: flex;
	flex-direction: row;
	overflow: hidden;
}
.testimonial-carousel-style-17 .testimonials-carousel-image-box {
	border-radius: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 41.66666667%;
	margin: 0;
}
.testimonial-carousel-style-17 .carousel-content-wrap {
	width: 58.33333333%;
	padding: 9%;
	display: flex;
	flex-direction: column;
}
.testimonial-carousel-style-17 .review-star-icon {
	background-color: #ef991f;
	border-radius: 50px;
	display: inline-block;
	padding: 6px 20px 8px;
	margin-bottom: 2px;
}
.testimonial-carousel-style-17 .elementor-star-rating i:before {
	color: #fff;
}
.testimonial-carousel-style-17 .elementor-star-rating i:after,
.testimonial-carousel-style-17 .elementor-star-rating i.elementor-star-empty:before {
	color: #e4e4e4;
}
.testimonial-carousel-style-17 .elementor-star-rating i {
	font-size: 15px;
	vertical-align: middle;
}
.testimonial-carousel-style-17 .testimonial-carousel-content {
	margin: 25px 0 20px;
}
.testimonial-carousel-style-17 .testimonial-carousel-name {
	color: var( --e-global-color-secondary, #232323 );
	font-size: 18px;
	font-weight: 600;
}
.testimonial-carousel-style-17 .testimonial-carousel-position {
	font-size: 16px;
	line-height: 20px;
}
.testimonial-carousel-style-17 .testimonial-carousel-title {
	margin-bottom: 0;
}

/* Testimonial Carousal Style 18 */
.el-testimonial-carousel-style-18 .testimonial-carousel-wrapper {
	position: relative;
	flex-wrap: wrap;
}
.el-testimonial-carousel-style-18 .testimonials-carousel-wrap {
	flex: 1 0 0%;
	width: 100%;
	max-width: 100%;
	min-width: 1px;
}
.el-testimonial-carousel-style-18 .testimonial-carousel-content-box {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.el-testimonial-carousel-style-18 .testimonial-carousel-content-box .testimonial-carousel-number {
	color: var( --e-global-color-secondary, #232323 );
	font-weight: 700;
	margin-right: 10px;
	margin-bottom: 0;
	word-break: normal;
}
.el-testimonial-carousel-style-18 .testimonial-carousel-content-box div.testimonial-carousel-number,
.el-testimonial-carousel-style-18 .testimonial-carousel-content-box span.testimonial-carousel-number {
	font-size: 5rem;
	line-height: 5rem;
}
.el-testimonial-carousel-style-18 .testimonial-carousel-content-box .testimonial-carousel-rating-box {
	text-align: center;
}
.el-testimonial-carousel-style-18 .testimonial-carousel-rating-box .review-star-icon {
	font-size: 16px;
	background-color: #BEFF01;
	color: #fff;
	padding: 8px 20px 5px;
	border-radius: 30px;
	display: block;
}
.el-testimonial-carousel-style-18 .testimonial-carousel-rating-box .review-star-icon i:before {
	color: #1C1D1F;
}
.el-testimonial-carousel-style-18 .testimonial-carousel-rating-box .review-star-icon i:after,
.el-testimonial-carousel-style-18 .testimonial-carousel-rating-box .review-star-icon i.elementor-star-empty:before {
	color: #6F7071;
}
.el-testimonial-carousel-style-18 .testimonial-carousel-content-box .subheading {
	font-size: 13px;
	line-height: 32px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 0;
	background-color: transparent;
	border-radius: 0;
	margin-bottom: 0;
	display: block;
	width: auto;
}
.swiper.testimonial-carousel-style-18 {
	position: static;
}
.testimonial-carousel-style-18 .testimonial-carousel-content {
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	margin-bottom: 20px;
	display: inline-block;
}
.testimonial-carousel-style-18 .testimonial-carousel-name {
	color: var( --e-global-color-secondary, #232323 );
	display: inline-block;
	font-size: 17px;
	line-height: 22px;
	font-weight: 600;
	letter-spacing: 0.5px;
}
.testimonial-carousel-style-18 .testimonial-carousel-position {
	display: block;
}
.swiper.testimonial-carousel-style-18 .elementor-swiper-button-prev {
	left: 0;
}
.testimonial-carousel-style-18 .elementor-swiper-button-next {
	left: 55px;
}
.testimonial-carousel-style-18 .testimonial-carousel-title {
	display: inline-block;
}
.testimonial-carousel-style-18 .testimonials-carousel-image-box {
	margin: 0 0 10px;
	border-radius: 0;
}
.testimonial-carousel-style-18 .testimonials-carousel-image-box img {
	border-radius: 100%;
	display: inline-block;
}
.testimonial-carousel-style-18 .review-star-icon {
	margin-bottom: 7px;
}
.testimonial-carousel-style-18 .testimonial-carousel-content > *:last-child {
	margin-bottom: 0;
}

/* Responsive CSS Here */
@media (max-width: 1399px) {
	.testimonial-carousel-wrapper .carousel-title-box .carousel-content-box {
		width: 70%;
	}
	.testimonial-carousel-style-7 .content-box {
		padding: 35px 35px;
	}
}

@media (max-width: 1199px) {
	.testimonial-carousel-wrapper .carousel-title-box .carousel-content-box {
		width: 90%;
	}
	.el-testimonial-carousel-style-6 .testimonial-carousel-wrapper {
		display: block;
	}
	.el-testimonial-carousel-style-6 .carousel-title-box {
		padding-right: 0;
		width: 85%;
	}
	.el-testimonial-carousel-style-6 .testimonial-carousel-wrapper .testimonials-carousel-wrap {
		padding-left: 0;
	}
	.el-testimonial-carousel-style-6 > .elementor-widget-container {
		margin-right: 0 !important;
	}
	.testimonial-carousel-wrapper .testimonials-carousel-wrap .testimonial-carousel-style-6 {
		position: relative;
		padding-top: 75px;
	}
	.testimonial-carousel-wrapper .testimonials-carousel-wrap .testimonial-carousel-style-6 {
		padding-top: 75px;
	}
	.el-testimonial-carousel-style-4 .testimonial-carousel-wrapper {
		display: block;
	}
	.el-testimonial-carousel-style-4 .carousel-title-box {
		padding-right: 0;
		width: 85%;
	}
	.el-testimonial-carousel-style-4 .testimonial-carousel-wrapper .testimonials-carousel-wrap {
		padding-left: 0;
	}
	.el-testimonial-carousel-style-4 > .elementor-widget-container {
		margin-right: 0 !important;
	}
	.testimonial-carousel-wrapper .testimonials-carousel-wrap .testimonial-carousel-style-4 {
		position: relative;
		padding-top: 75px;
	}
	.testimonial-carousel-wrapper .testimonials-carousel-wrap .testimonial-carousel-style-4 {
		padding-top: 75px;
	}
	.testimonial-carousel-style-7 .content-box {
		padding: 25px;
	}
	.testimonial-carousel-style-7 .testimonial-name-icon {
		padding: 15px 25px;
	}
	.testimonial-carousel-style-8 .testimonial-name-icon {
		padding: 0 15px 0 45px;
	}
	.feather-shadow.testimonial-carousel-style-9 {
		mask-image: none !important;
	}
}

@media (max-width: 991px) {
	.el-testimonial-carousel-style-3 .testimonial-carousel-wrapper {
		display: block;
	}
	.el-testimonial-carousel-style-3 .carousel-title-box {
		padding-right: 0;
		width: 85%;
	}
	.el-testimonial-carousel-style-3 .testimonial-carousel-wrapper .testimonials-carousel-wrap {
		padding-left: 0;
	}
	.el-testimonial-carousel-style-3 > .elementor-widget-container {
		margin-right: 0 !important;
	}
	.testimonial-carousel-style-5 .testimonials-wrapper {
		padding: 0 4%;
	}
	.testimonial-carousel-style-5 .testimonials-carousel-image-box {
		width: 33.33333333%;
	}
	.testimonial-carousel-style-7.swiper {
		margin-left: auto;
		margin-right: auto;
	}
	.testimonial-carousel-style-8 .swiper-slide {
		display: block;
		text-align: center;
	}
	.swiper.testimonial-carousel-style-8 {
		width: 100%;
		text-align: center;
	}
	.testimonial-carousel-style-8 .testimonials-wrapper {
		width: 100%;
		padding: 0 15px;
		margin-bottom: 15px;
	}
	.testimonial-carousel-style-8 .testimonials-wrapper .content-box {
		flex-wrap: wrap;
		flex-direction: column;
	}
	.testimonial-carousel-style-8 .testimonials-carousel-image-warp {
		margin: 0 auto 35px;
		margin-left: auto !important;
		margin-right: auto !important;
	}
	.testimonial-carousel-style-8 .testimonials-carousel-icon-box {
		right: 0;
		bottom: -25px;
		top: inherit;
		left: 0;
		margin: 0 auto;
	}
	.testimonial-carousel-style-8 .testimonials-wrapper .testimonials-carousel-image-box {
		margin: 0 auto;
	}
	.testimonial-carousel-style-8 .testimonial-name-icon {
		width: 100%;
		padding: 0 15px;
		border: 0;
	}
	.el-testimonial-carousel-style-8 .elementor-widget-container {
		border-radius: 6px;
		padding-bottom: 100px;
	}
	.testimonial-carousel-style-8 .testimonial-carousel-content,
	.testimonial-carousel-style-8 .testimonial-carousel-title {
		padding: 0;
	}
	.elementor-element .testimonial-carousel-style-8.swiper .elementor-swiper-button-prev {
		top: inherit;
		left: inherit;
		right: 50%;
		margin-right: 5px;
		bottom: 25px;
		transform: translate(0);
	}
	.elementor-element .testimonial-carousel-style-8.swiper .elementor-swiper-button-next {
		transform: translate(0);
		top: inherit;
		bottom: 25px;
		left: 50%;
		right: inherit;
		margin-left: 5px;
	}
	.testimonial-carousel-style-10 .swiper-slide {
		opacity: 0;
	}
	.testimonial-carousel-style-10 .swiper-slide.swiper-slide-prev, 
	.testimonial-carousel-style-10 .swiper-slide.swiper-slide-next {
		opacity: 0.7;
	}
	.el-testimonial-carousel-style-13 .testimonial-carousel-wrapper {
		flex-wrap: wrap;
	}
	.el-testimonial-carousel-style-13 .testimonial-carousel-wrapper .carousel-title-box {
		width: 100%;
		padding-right: 0;
	}
	.testimonial-carousel-wrapper .carousel-title-box .carousel-content-box {
		width: 100%;
	}
	.testimonial-carousel-wrapper .testimonials-carousel-wrap .testimonial-carousel-style-13 {
		position: relative;
		padding-top: 80px;
	}
	.el-testimonial-carousel-style-14.elementor-widget-crafto-testimonial-carousel .elementor-swiper-button.elementor-swiper-button-prev {
		padding-right: 30px;
	}
	.el-testimonial-carousel-style-14.elementor-widget-crafto-testimonial-carousel .elementor-swiper-button.elementor-swiper-button-next {
		padding-left: 30px;
	}
	.el-testimonial-carousel-style-15 .testimonial-carousel-wrapper {
		flex-wrap: wrap; 
	}
	.el-testimonial-carousel-style-15 .testimonials-carousel-wrap {
		padding-left: 0;
	}

	.el-testimonial-carousel-style-18 .carousel-title-box,
	.el-testimonial-carousel-style-18 .testimonials-carousel-wrap {
		padding: 0;
	}
	.swiper.testimonial-carousel-style-18 {
		position: relative;
		padding-top: 90px;
	}
	.el-testimonial-carousel-style-18 .swiper .elementor-swiper-button {
		transform: inherit;
	}
	.feather-shadow.testimonial-carousel,
	.feather-shadow-right.testimonial-carousel {
		mask-image: none !important;
	}
}

@media (max-width: 767px) {
	.testimonial-carousel-style-1 .testimonial-carousel-content {
		width: 100%;
	}
	.testimonial-carousel-style-5 .testimonials-wrapper {
		flex-wrap: wrap;
		padding: 0 15px;
		justify-content: center;
		text-align: center;
	}
	.testimonial-carousel-style-5 .testimonials-carousel-image-box,
	.testimonial-carousel-style-5 .carousel-content-wrapcarousel-content-wrap {
		width: 100%;
		text-align: center;
	}
	.testimonial-carousel-style-10.swiper-3d .swiper-slide.swiper-slide-active {
		box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	}
	.testimonial-carousel-style-10 .swiper-slide.swiper-slide-prev, 
	.testimonial-carousel-style-10 .swiper-slide.swiper-slide-next {
		opacity: 0;
	}
	.testimonial-carousel-style-13 .testimonials-carousel-image-box {
		width: 100%;
		padding: 0;
		margin-bottom: 15px;
		text-align: center;
	}
	.testimonial-carousel-style-13 .testimonial-name-icon {
		padding: 0;
	}
	.testimonial-carousel-style-13 .testimonial-name-icon .testimonial-carousel-name {
		position: static;
		transform: rotate(0);
		writing-mode: inherit;
		width: 100%;
		border: 0;
		margin-top: 10px;
		justify-content: left;
	}
	.testimonial-carousel-style-13 .testimonials-wrapper .content-box {
		flex-wrap: wrap;
	}
	.testimonial-carousel-style-14 .testimonials-wrapper {
		margin-bottom: 50px;
	}
	.el-testimonial-carousel-style-14.elementor-widget-crafto-testimonial-carousel .elementor-swiper-button.elementor-swiper-button-prev,
	.el-testimonial-carousel-style-14.elementor-widget-crafto-testimonial-carousel .elementor-swiper-button.elementor-swiper-button-next {
		top: inherit;
		right: inherit;
		bottom: 0;
		min-height: inherit;
		left: 50%;
		padding: 0 20px;
		transform: inherit;
	}
	.el-testimonial-carousel-style-14.elementor-widget-crafto-testimonial-carousel .elementor-swiper-button.elementor-swiper-button-prev {
		transform: translate(-100%, 0);
	}
	.testimonial-carousel-style-16 .testimonials-wrapper .name-rating-wrap {
		justify-content: center;
	}
	.testimonial-carousel-style-16 .testimonial-carousel-content {
		width: 85%;
	}
}

@media (max-width: 575px) {
	.testimonial-carousel-style-17 .testimonials-wrapper {
		flex-direction: column;
	}
	.testimonial-carousel-style-17 .testimonials-carousel-image-box {
		width: 100%;
		height: 350px;
	}
	.testimonial-carousel-style-17 .carousel-content-wrap {
		width: 100%;
	}
}
/* === ../wp-content/uploads/elementor/google-fonts/css/dmsans.css === */
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-a233b6d6.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-5224995c.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-a233b6d6.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-5224995c.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-a233b6d6.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-5224995c.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-a233b6d6.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-5224995c.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-a233b6d6.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-5224995c.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-a233b6d6.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-5224995c.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-a233b6d6.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-5224995c.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-a233b6d6.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-5224995c.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-a233b6d6.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-5224995c.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-850928f5.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-002a94d0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-850928f5.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-002a94d0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-850928f5.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-002a94d0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-850928f5.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-002a94d0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-850928f5.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-002a94d0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-850928f5.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-002a94d0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-850928f5.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-002a94d0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-850928f5.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-002a94d0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-850928f5.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/dmsans-002a94d0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* === ../wp-content/uploads/elementor/google-fonts/css/poppins.css === */
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-08e0d50c.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-93f11d58.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-7d01d947.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-758f68ea.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-360bd262.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-39a602a6.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-6fc19dfc.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-e88b8c9f.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-311b40f0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-2244f050.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-2dbff688.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-60aca29c.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-91200cf0.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-cb20a6b5.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-aa83815c.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-ead2e67f.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-2a218d23.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-7b7b057d.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-5afe1c41.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-f9a2a21e.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-638b5d9d.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-65f24a29.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-cc94d36e.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-2fd9ae31.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-687c311d.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-f86081bc.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-f19361b5.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-a7db2864.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-40a4c285.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-285e6dee.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-1f81f35a.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-33caf375.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-e45eb333.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-dedddbf7.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-664d5007.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-de430313.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-8fe2ec7c.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-c9d614f4.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-e6a077c3.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-42acf878.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-86b12e74.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-57e843b6.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-ad3722d3.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-b1eb82d1.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-93818c37.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-23090f00.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-71994884.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-742b18be.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-61ee1b60.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-e4a3a357.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-d0e6a9ae.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-c4609759.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-84c939dc.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/poppins-df089f64.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* === ../wp-content/uploads/elementor/google-fonts/css/inter.css === */
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
