.ces-slider {
	--ces-height-desktop: 620px;
	--ces-height-tablet: 520px;
	--ces-height-mobile: 420px;
	--ces-content-width: 1180px;
	--ces-bg-position: center center;
	--ces-bg-size: cover;
	--ces-title-size: 56px;
	--ces-title-size-tab: 42px;
	--ces-title-size-mob: 32px;
	--ces-title-color: #fff;
	--ces-title-weight: 700;
	--ces-title-font: inherit;
	--ces-text-size: 20px;
	--ces-text-size-tab: 18px;
	--ces-text-size-mob: 16px;
	--ces-text-color: #fff;
	--ces-text-weight: 400;
	--ces-text-font: inherit;
	--ces-button-color: #fff;
	--ces-button-bg: rgba(255, 255, 255, 0);
	--ces-button-border: rgba(255, 255, 255, 0.72);
	--ces-button-hover-color: #111;
	--ces-button-hover-bg: #fff;
	--ces-button-radius: 4px;
	--ces-speed: 650ms;
	--ces-arrow-size: 46px;
	--ces-arrow-color: #fff;
	--ces-arrow-bg: rgba(0, 0, 0, 0.45);
	--ces-arrow-hover-color: #111;
	--ces-arrow-hover-bg: #fff;
	--ces-dot-color: #fff;
	--ces-dot-active-color: #fff;
	position: relative;
	width: 100%;
	height: var(--ces-height-desktop);
	overflow: hidden;
	background: #111827;
}

.ces-slider *,
.ces-slider *::before,
.ces-slider *::after {
	box-sizing: border-box;
}

.ces-viewport,
.ces-track,
.ces-slide {
	width: 100%;
	height: 100%;
}

.ces-viewport {
	position: relative;
	overflow: hidden;
}

.ces-track {
	display: flex;
	transition: transform var(--ces-speed) ease;
	will-change: transform;
}

.ces-slide {
	position: relative;
	flex: 0 0 100%;
	overflow: hidden;
}

.ces-slide-bg,
.ces-overlay {
	position: absolute;
	inset: 0;
}

.ces-slide-bg {
	z-index: 1;
	background-image: var(--ces-slide-image);
	background-position: var(--ces-bg-position);
	background-size: var(--ces-bg-size);
	transform: scale(1.01);
	transition: transform calc(var(--ces-speed) * 1.35) ease;
}

.ces-slide.is-active .ces-slide-bg {
	transform: scale(1);
}

.ces-overlay {
	z-index: 2;
	background: var(--ces-slide-overlay-color);
	opacity: var(--ces-slide-overlay-opacity);
}

.ces-content-wrap {
	position: relative;
	z-index: 4;
	display: flex;
	width: min(100% - 40px, var(--ces-content-width));
	height: 100%;
	margin: 0 auto;
	padding: 70px 0 54px;
}

.ces-content {
	width: min(100%, 720px);
	color: var(--ces-text-color);
}

.ces-content-top-left .ces-content-wrap,
.ces-content-top-center .ces-content-wrap,
.ces-content-top-right .ces-content-wrap {
	align-items: flex-start;
}

.ces-content-center-left .ces-content-wrap,
.ces-content-center-center .ces-content-wrap,
.ces-content-center-right .ces-content-wrap {
	align-items: center;
}

.ces-content-bottom-left .ces-content-wrap,
.ces-content-bottom-center .ces-content-wrap,
.ces-content-bottom-right .ces-content-wrap {
	align-items: flex-end;
}

.ces-content-top-left .ces-content-wrap,
.ces-content-center-left .ces-content-wrap,
.ces-content-bottom-left .ces-content-wrap {
	justify-content: flex-start;
}

.ces-content-top-center .ces-content-wrap,
.ces-content-center-center .ces-content-wrap,
.ces-content-bottom-center .ces-content-wrap {
	justify-content: center;
}

.ces-content-top-right .ces-content-wrap,
.ces-content-center-right .ces-content-wrap,
.ces-content-bottom-right .ces-content-wrap {
	justify-content: flex-end;
}

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

.ces-align-center .ces-content {
	text-align: center;
}

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

.ces-title {
	margin: 0 0 16px;
	color: var(--ces-slide-title-color, var(--ces-title-color));
	font-family: var(--ces-title-font);
	font-size: var(--ces-title-size);
	font-weight: var(--ces-title-weight);
	line-height: 1.05;
	letter-spacing: 0;
}

.ces-text {
	max-width: 680px;
	color: var(--ces-slide-text-color, var(--ces-text-color));
	font-family: var(--ces-text-font);
	font-size: var(--ces-text-size);
	font-weight: var(--ces-text-weight);
	line-height: 1.55;
}

.ces-text p {
	color: inherit;
}

.ces-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.ces-align-center .ces-buttons {
	justify-content: center;
}

.ces-align-right .ces-buttons {
	justify-content: flex-end;
}

.ces-align-center .ces-text {
	margin-right: auto;
	margin-left: auto;
}

.ces-align-right .ces-text {
	margin-left: auto;
}

.ces-text p {
	margin: 0 0 12px;
}

.ces-text p:last-child {
	margin-bottom: 0;
}

.ces-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 22px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-color: var(--ces-button-border);
	border-radius: var(--ces-button-radius);
	background: var(--ces-button-bg);
	color: var(--ces-button-color);
	text-decoration: none;
	font-weight: 700;
	line-height: 1;
	transition: background 180ms ease, color 180ms ease;
}

.ces-button:hover,
.ces-button:focus {
	background: #fff;
	background: var(--ces-button-hover-bg);
	color: var(--ces-button-hover-color);
}

.ces-transition-fade .ces-track,
.ces-transition-zoom .ces-track {
	display: block;
	transform: none !important;
}

.ces-transition-fade .ces-slide,
.ces-transition-zoom .ces-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--ces-speed) ease;
}

.ces-transition-fade .ces-slide.is-active,
.ces-transition-zoom .ces-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.ces-transition-zoom .ces-slide .ces-slide-bg {
	transform: scale(1.12);
}

.ces-transition-zoom .ces-slide.is-active .ces-slide-bg {
	transform: scale(1);
}

.ces-transition-blur .ces-track,
.ces-transition-wipe .ces-track,
.ces-transition-reveal .ces-track,
.ces-transition-parallax .ces-track {
	display: block;
	transform: none !important;
}

.ces-transition-blur .ces-slide,
.ces-transition-wipe .ces-slide,
.ces-transition-reveal .ces-slide,
.ces-transition-parallax .ces-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--ces-speed) ease, filter var(--ces-speed) ease, clip-path var(--ces-speed) cubic-bezier(0.22, 1, 0.36, 1), transform var(--ces-speed) cubic-bezier(0.22, 1, 0.36, 1);
}

.ces-transition-blur .ces-slide.is-active,
.ces-transition-wipe .ces-slide.is-active,
.ces-transition-reveal .ces-slide.is-active,
.ces-transition-parallax .ces-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}

.ces-transition-blur .ces-slide {
	filter: blur(16px);
	transform: scale(1.04);
}

.ces-transition-blur .ces-slide.is-active {
	filter: blur(0);
	transform: scale(1);
}

.ces-transition-wipe .ces-slide {
	clip-path: inset(0 100% 0 0);
}

.ces-transition-wipe .ces-slide.is-active {
	clip-path: inset(0 0 0 0);
}

.ces-transition-reveal .ces-slide {
	transform: translate3d(6%, 0, 0) scale(1.04);
}

.ces-transition-reveal .ces-slide.is-active {
	transform: translate3d(0, 0, 0) scale(1);
}

.ces-transition-parallax .ces-slide {
	transform: translate3d(0, 0, 0);
}

.ces-transition-parallax .ces-slide .ces-slide-bg {
	transform: translate3d(7%, 0, 0) scale(1.08);
}

.ces-transition-parallax .ces-slide.is-active .ces-slide-bg {
	transform: translate3d(0, 0, 0) scale(1.02);
}

.ces-transition-vertical .ces-track {
	display: block;
	transition: transform var(--ces-speed) ease;
}

.ces-transition-vertical .ces-slide {
	display: block;
	flex-basis: auto;
}

.ces-arrows {
	position: absolute;
	z-index: 8;
	display: flex;
	gap: 10px;
	pointer-events: none;
}

.ces-slider .ces-arrow,
.ces-slider .ces-arrow[type="button"] {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: var(--ces-arrow-size) !important;
	height: var(--ces-arrow-size) !important;
	min-width: var(--ces-arrow-size) !important;
	min-height: var(--ces-arrow-size) !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	outline: 0;
	background: var(--ces-arrow-bg) !important;
	box-shadow: none !important;
	color: var(--ces-arrow-color) !important;
	cursor: pointer;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 0 !important;
	font-style: normal !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	text-align: center !important;
	text-decoration: none !important;
	text-shadow: none !important;
	text-transform: none !important;
	pointer-events: auto;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ces-slider .ces-arrow svg {
	display: block !important;
	width: calc(var(--ces-arrow-size) * 0.46) !important;
	height: calc(var(--ces-arrow-size) * 0.46) !important;
	margin: 0 !important;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 2.7 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
	pointer-events: none;
}

.ces-slider .ces-arrow:hover,
.ces-slider .ces-arrow:focus {
	background: var(--ces-arrow-hover-bg) !important;
	box-shadow: none !important;
	color: var(--ces-arrow-hover-color) !important;
	transform: translateY(-1px);
}

.ces-slider.ces-arrow-style-outline-circle .ces-arrow {
	border: 1px solid currentColor !important;
	background: transparent !important;
}

.ces-slider.ces-arrow-style-filled-square .ces-arrow {
	border-radius: 4px !important;
}

.ces-slider.ces-arrow-style-minimal .ces-arrow {
	width: calc(var(--ces-arrow-size) * 0.8) !important;
	background: transparent !important;
}

.ces-slider.ces-arrow-style-glass-circle .ces-arrow {
	border: 1px solid rgba(255, 255, 255, 0.22) !important;
	background: rgba(255, 255, 255, 0.12) !important;
	backdrop-filter: blur(12px);
}

.ces-slider.ces-arrow-style-soft-square .ces-arrow {
	border-radius: 12px !important;
	background: var(--ces-arrow-bg) !important;
}

.ces-slider.ces-arrow-style-line-arrow .ces-arrow {
	width: calc(var(--ces-arrow-size) * 1.35) !important;
	border-radius: 0 !important;
	background: transparent !important;
}

.ces-slider.ces-arrow-style-line-arrow .ces-arrow::before {
	content: "";
	width: calc(var(--ces-arrow-size) * 0.72);
	height: 2px;
	background: currentColor;
	transition: transform 180ms ease;
}

.ces-slider.ces-arrow-style-line-arrow .ces-prev {
	flex-direction: row-reverse;
}

.ces-slider.ces-arrow-style-line-arrow .ces-arrow svg {
	width: calc(var(--ces-arrow-size) * 0.36) !important;
	height: calc(var(--ces-arrow-size) * 0.36) !important;
}

.ces-slider.ces-arrow-style-dual-tone .ces-arrow {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), var(--ces-arrow-bg)) !important;
	color: var(--ces-arrow-hover-color) !important;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 14px 34px rgba(0, 0, 0, 0.2) !important;
}

.ces-arrows-center-sides .ces-arrows {
	inset: 50% 24px auto;
	justify-content: space-between;
	transform: translateY(-50%);
}

.ces-arrows-center-inset .ces-arrows {
	inset: 50% 7% auto;
	justify-content: space-between;
	transform: translateY(-50%);
}

.ces-arrows-bottom-right .ces-arrows {
	right: 32px;
	bottom: 28px;
}

.ces-arrows-bottom-left .ces-arrows {
	bottom: 28px;
	left: 32px;
}

.ces-arrows-bottom-center .ces-arrows {
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
}

.ces-arrows-top-right .ces-arrows {
	top: 28px;
	right: 32px;
}

.ces-arrows-split-bottom .ces-arrows {
	right: 32px;
	bottom: 28px;
	left: 32px;
	justify-content: space-between;
}

.ces-arrows-right-rail .ces-arrows {
	top: 50%;
	right: 28px;
	flex-direction: column;
	transform: translateY(-50%);
}

.ces-slider.ces-arrow-hover-glow .ces-arrow:hover,
.ces-slider.ces-arrow-hover-glow .ces-arrow:focus {
	box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12), 0 18px 45px rgba(0, 0, 0, 0.28) !important;
	transform: translateY(-1px) scale(1.04);
}

.ces-slider.ces-arrow-hover-slide .ces-next:hover svg,
.ces-slider.ces-arrow-hover-slide .ces-next:focus svg {
	transform: translateX(3px);
}

.ces-slider.ces-arrow-hover-slide .ces-prev:hover svg,
.ces-slider.ces-arrow-hover-slide .ces-prev:focus svg {
	transform: translateX(-3px);
}

.ces-slider.ces-arrow-hover-pulse .ces-arrow:hover,
.ces-slider.ces-arrow-hover-pulse .ces-arrow:focus {
	transform: scale(1.08);
}

.ces-slider.ces-arrow-hover-tilt .ces-prev:hover,
.ces-slider.ces-arrow-hover-tilt .ces-prev:focus {
	transform: rotate(-6deg) translateY(-1px);
}

.ces-slider.ces-arrow-hover-tilt .ces-next:hover,
.ces-slider.ces-arrow-hover-tilt .ces-next:focus {
	transform: rotate(6deg) translateY(-1px);
}

.ces-dots {
	position: absolute;
	z-index: 8;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 8px 10px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(10, 14, 23, 0.28);
	backdrop-filter: blur(10px);
}

.ces-slider .ces-dot,
.ces-slider .ces-dot[type="button"] {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: block !important;
	width: 8px !important;
	height: 8px !important;
	min-width: 8px !important;
	min-height: 8px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	outline: 0;
	background: var(--ces-dot-color) !important;
	box-shadow: none !important;
	color: transparent !important;
	cursor: pointer;
	font-size: 0 !important;
	line-height: 0 !important;
	opacity: 0.52;
	text-indent: -9999px;
	transition: width 180ms ease, opacity 180ms ease, background 180ms ease, transform 180ms ease;
}

.ces-slider .ces-dot.is-active {
	width: 30px !important;
	background: var(--ces-dot-active-color) !important;
	opacity: 1;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12) !important;
	transform: translateY(0);
}

.ces-dots-bottom-center .ces-dots {
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
}

.ces-dots-bottom-left .ces-dots {
	bottom: 24px;
	left: 32px;
}

.ces-dots-bottom-right .ces-dots {
	right: 32px;
	bottom: 24px;
}

.ces-dots-center-left .ces-dots,
.ces-dots-center-right .ces-dots {
	top: 50%;
	bottom: auto;
	flex-direction: column;
	transform: translateY(-50%);
}

.ces-dots-center-left .ces-dots {
	left: 28px;
}

.ces-dots-center-right .ces-dots {
	right: 28px;
}

.ces-slider.ces-dot-style-minimal-dots .ces-dots {
	padding: 0;
	border: 0;
	background: transparent;
	backdrop-filter: none;
}

.ces-slider.ces-dot-style-minimal-dots .ces-dot.is-active {
	width: 20px !important;
}

.ces-slider.ces-dot-style-line-progress .ces-dots {
	gap: 6px;
	padding: 0;
	border: 0;
	background: transparent;
	backdrop-filter: none;
}

.ces-slider.ces-dot-style-line-progress .ces-dot,
.ces-slider.ces-dot-style-line-progress .ces-dot[type="button"] {
	width: 34px !important;
	height: 3px !important;
	min-width: 34px !important;
	min-height: 3px !important;
	border-radius: 999px !important;
	opacity: 0.32;
}

.ces-slider.ces-dot-style-line-progress .ces-dot.is-active {
	width: 52px !important;
	opacity: 1;
	box-shadow: none !important;
}

.ces-slider.ces-dot-style-boxed-dots .ces-dots {
	gap: 6px;
	padding: 7px;
	border-color: rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	background: rgba(10, 14, 23, 0.44);
}

.ces-slider.ces-dot-style-boxed-dots .ces-dot,
.ces-slider.ces-dot-style-boxed-dots .ces-dot[type="button"] {
	width: 16px !important;
	height: 16px !important;
	min-width: 16px !important;
	min-height: 16px !important;
	border-radius: 4px !important;
	opacity: 0.45;
}

.ces-slider.ces-dot-style-boxed-dots .ces-dot.is-active {
	width: 30px !important;
	opacity: 1;
	box-shadow: none !important;
}

.ces-slider.ces-dot-style-vertical-bars .ces-dots {
	gap: 7px;
	padding: 9px 8px;
	flex-direction: column;
}

.ces-slider.ces-dot-style-vertical-bars .ces-dot,
.ces-slider.ces-dot-style-vertical-bars .ces-dot[type="button"] {
	width: 4px !important;
	height: 18px !important;
	min-width: 4px !important;
	min-height: 18px !important;
	opacity: 0.38;
}

.ces-slider.ces-dot-style-vertical-bars .ces-dot.is-active {
	width: 4px !important;
	height: 36px !important;
	opacity: 1;
	box-shadow: none !important;
}

@media (max-width: 1024px) {
	.ces-slider {
		height: var(--ces-height-tablet);
	}

	.ces-title {
		font-size: var(--ces-title-size-tab);
	}

	.ces-text {
		font-size: var(--ces-text-size-tab);
	}
}

@media (max-width: 767px) {
	.ces-slider {
		height: var(--ces-height-mobile);
	}

	.ces-content-wrap {
		width: min(100% - 30px, var(--ces-content-width));
		padding-top: 42px;
		padding-bottom: 46px;
	}

	.ces-title {
		font-size: var(--ces-title-size-mob);
	}

	.ces-text {
		font-size: var(--ces-text-size-mob);
	}

	.ces-arrows-center-sides .ces-arrows {
		right: 14px;
		left: 14px;
	}

	.ces-arrows-bottom-right .ces-arrows,
	.ces-arrows-top-right .ces-arrows,
	.ces-arrows-split-bottom .ces-arrows {
		right: 16px;
	}

	.ces-arrows-split-bottom .ces-arrows {
		left: 16px;
	}

	.ces-dots-bottom-left .ces-dots {
		left: 16px;
	}

	.ces-dots-bottom-right .ces-dots {
		right: 16px;
	}
}
