.websyc-responsive-slides {
	overflow: hidden;
	--ws-rs-accent: var(--color-primary, #c4a356);
	--ws-rs-arrow-color: var(--ws-rs-accent);
	--ws-rs-nav-border: rgba(255, 255, 255, 0.18);
	--ws-rs-nav-bg: rgba(8, 8, 8, 0.32);
	--ws-rs-nav-bg-hover: rgba(255, 255, 255, 0.08);
}

.websyc-responsive-slides .swiper-slide {
	position: relative;
	display: block;
	overflow: hidden;
	height: auto;
}

.websyc-responsive-slides .websyc-rs__media {
	position: relative;
	width: 100%;
	min-height: 0;
	overflow: hidden;
	background-color: #1a1a1a;
}

.websyc-responsive-slides .websyc-rs__media--fixed-ratio {
	aspect-ratio: var(--ws-aspect-ratio, 21 / 9);
}

.websyc-responsive-slides .websyc-rs__media--fit-content {
	aspect-ratio: auto;
	height: auto;
}

.websyc-responsive-slides .websyc-rs__media--fit-content .websyc-rs__picture,
.websyc-responsive-slides .websyc-rs__media--fit-content .websyc-rs__image {
	position: relative;
	inset: auto;
	width: 100%;
	height: auto;
	max-width: 100%;
}

.websyc-responsive-slides .websyc-rs__media--fit-content picture .websyc-rs__image {
	position: relative;
	inset: auto;
}

.websyc-responsive-slides .websyc-rs__media--fit-content .websyc-rs__video {
	position: relative;
	inset: auto;
	width: 100%;
	height: auto;
	display: block;
}

.websyc-responsive-slides .websyc-rs__picture,
.websyc-responsive-slides .websyc-rs__media--fixed-ratio .websyc-rs__image {
	display: block;
	width: 100%;
	height: 100%;
}

.websyc-responsive-slides .websyc-rs__media--fixed-ratio .websyc-rs__picture {
	position: absolute;
	inset: 0;
}

.websyc-responsive-slides .websyc-rs__media--fixed-ratio picture .websyc-rs__image {
	position: absolute;
	inset: 0;
}

.websyc-responsive-slides .websyc-rs__media--fixed-ratio .websyc-rs__image {
	object-fit: cover;
	object-position: center center;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.websyc-responsive-slides .websyc-rs__image--mobile {
	display: none;
}

.websyc-responsive-slides .websyc-rs__video {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.websyc-responsive-slides .websyc-rs__media--fixed-ratio .websyc-rs__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.websyc-responsive-slides .websyc-rs__media--video {
	background-color: #000;
}

.websyc-responsive-slides .websyc-rs__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.websyc-responsive-slides .websyc-rs__inner {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: clamp(24px, 4vw, 50px);
	color: #fff;
	text-decoration: none;
	box-sizing: border-box;
}

.websyc-responsive-slides .websyc-rs__inner:hover,
.websyc-responsive-slides .websyc-rs__inner:focus {
	color: #fff;
	text-decoration: none;
}

.websyc-responsive-slides .websyc-rs__content {
	position: relative;
	width: 100%;
	max-width: 66%;
}

.websyc-responsive-slides .websyc-rs__heading {
	margin: 0;
	font-size: clamp(1.5rem, 2.8vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
}

.websyc-responsive-slides .websyc-rs__description {
	margin: 0;
	font-size: clamp(0.95rem, 1.4vw, 1.125rem);
	line-height: 1.45;
}

.websyc-responsive-slides .websyc-rs__heading:not(:last-child) {
	margin-bottom: clamp(12px, 2vw, 24px);
}

.websyc-responsive-slides .websyc-rs__description:not(:last-child) {
	margin-bottom: clamp(16px, 2.5vw, 28px);
}

.websyc-responsive-slides .websyc-rs__button {
	display: inline-block;
	padding: 0.75em 1.5em;
	border: 2px solid currentColor;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.12);
	color: inherit;
	font-size: clamp(0.875rem, 1.1vw, 1rem);
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.websyc-responsive-slides .websyc-rs__button:hover,
.websyc-responsive-slides .websyc-rs__button:focus {
	background: rgba(255, 255, 255, 0.22);
	color: inherit;
	text-decoration: none;
}

.websyc-rs--v-top .websyc-rs__inner {
	align-items: flex-start;
}

.websyc-rs--v-middle .websyc-rs__inner {
	align-items: center;
}

.websyc-rs--v-bottom .websyc-rs__inner {
	align-items: flex-end;
}

.websyc-rs--h-left .websyc-rs__inner {
	justify-content: flex-start;
}

.websyc-rs--h-center .websyc-rs__inner {
	justify-content: center;
}

.websyc-rs--h-right .websyc-rs__inner {
	justify-content: flex-end;
}

.websyc-rs--h-left .websyc-rs__content {
	margin-right: auto;
}

.websyc-rs--h-center .websyc-rs__content {
	margin-left: auto;
	margin-right: auto;
}

.websyc-rs--h-right .websyc-rs__content {
	margin-left: auto;
}

.websyc-responsive-slides .websyc-rs__arrow {
	position: absolute;
	top: 50%;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 1px solid var(--ws-rs-nav-border);
	border-radius: 50%;
	background: var(--ws-rs-nav-bg);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--ws-rs-arrow-color);
	cursor: pointer;
	transform: translateY(-50%);
	transition:
		border-color 0.25s ease,
		background-color 0.25s ease,
		color 0.25s ease,
		box-shadow 0.25s ease,
		opacity 0.25s ease;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.websyc-responsive-slides .websyc-rs__arrow--prev {
	left: clamp(12px, 2.5vw, 24px);
	right: auto;
}

.websyc-responsive-slides .websyc-rs__arrow--next {
	right: clamp(12px, 2.5vw, 24px);
	left: auto;
}

.websyc-responsive-slides .websyc-rs__arrow-icon {
	position: relative;
	display: block;
	width: 12px;
	height: 12px;
}

.websyc-responsive-slides .websyc-rs__arrow--prev .websyc-rs__arrow-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 9px;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translate(-20%, -50%) rotate(45deg);
}

.websyc-responsive-slides .websyc-rs__arrow--next .websyc-rs__arrow-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 9px;
	border-right: 2px solid currentColor;
	border-top: 2px solid currentColor;
	transform: translate(-80%, -50%) rotate(45deg);
}

.websyc-responsive-slides .websyc-rs__arrow:hover,
.websyc-responsive-slides .websyc-rs__arrow:focus-visible {
	border-color: var(--ws-rs-accent);
	background: var(--ws-rs-nav-bg-hover);
	color: #ffffff;
	outline: none;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
	transform: translateY(-50%);
}

.websyc-responsive-slides .websyc-rs__arrow.swiper-button-disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

.websyc-responsive-slides .websyc-rs__pagination {
	position: absolute !important;
	left: clamp(16px, 2.5vw, 24px) !important;
	right: auto !important;
	bottom: 22px !important;
	z-index: 4 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 0 !important;
	width: auto !important;
	padding: 8px 14px !important;
	border-radius: 999px !important;
	background: rgba(8, 8, 8, 0.22) !important;
	backdrop-filter: blur(6px) !important;
	-webkit-backdrop-filter: blur(6px) !important;
}

.websyc-responsive-slides .websyc-rs__pagination .swiper-pagination-bullet {
	width: 8px !important;
	height: 8px !important;
	margin: 0 5px !important;
	border: 1px solid transparent !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.38) !important;
	opacity: 1 !important;
	transition:
		width 0.28s ease,
		background-color 0.28s ease,
		border-color 0.28s ease,
		transform 0.28s ease;
}

.websyc-responsive-slides .websyc-rs__pagination .swiper-pagination-bullet-active {
	width: 28px !important;
	background: var(--ws-rs-accent) !important;
	border-color: var(--ws-rs-accent) !important;
	transform: scale(1) !important;
}

.websyc-responsive-slides .websyc-rs__pagination .swiper-pagination-bullet:focus-visible {
	outline: 2px solid var(--ws-rs-accent);
	outline-offset: 2px;
}

.websyc-responsive-slides .websyc-rs__progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 6;
	height: 3px;
	background: rgba(255, 255, 255, 0.14);
	pointer-events: none;
}

.websyc-responsive-slides .websyc-rs__progress-fill {
	display: block;
	width: 0;
	height: 100%;
	background: var(--ws-rs-accent);
	transform-origin: left center;
	will-change: width;
}

.websyc-responsive-slides .websyc-rs__counter {
	position: absolute;
	top: clamp(16px, 2.5vw, 24px);
	right: clamp(16px, 2.5vw, 24px);
	z-index: 5;
	display: inline-flex;
	align-items: baseline;
	gap: 0.2em;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(8, 8, 8, 0.34);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: rgba(255, 255, 255, 0.72);
	font-family: "Roboto", sans-serif;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.06em;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.websyc-responsive-slides .websyc-rs__counter-current {
	color: var(--ws-rs-accent);
	font-size: 1.08em;
	font-variant-numeric: tabular-nums;
}

.websyc-responsive-slides .websyc-rs__counter-total {
	font-variant-numeric: tabular-nums;
	opacity: 0.88;
}

.websyc-responsive-slides .websyc-rs__counter-sep {
	opacity: 0.45;
}

.elementor-widget-websyc-responsive-slides.websyc-rs--counter-top-left .websyc-rs__counter {
	right: auto;
	left: clamp(16px, 2.5vw, 24px);
}

.elementor-widget-websyc-responsive-slides.websyc-rs--counter-bottom-right .websyc-rs__counter {
	top: auto;
	bottom: clamp(52px, 7vw, 64px);
}

.elementor-widget-websyc-responsive-slides.websyc-rs--counter-bottom-left .websyc-rs__counter {
	top: auto;
	right: auto;
	left: clamp(16px, 2.5vw, 24px);
	bottom: clamp(52px, 7vw, 64px);
}

.websyc-responsive-slides .websyc-rs__thumb-nav {
	position: absolute;
	left: 50%;
	right: auto;
	bottom: clamp(16px, 2.5vw, 24px);
	z-index: 5;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: auto;
	max-width: min(calc(100% - 32px), 560px);
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	transform: translateX(-50%);
}

.websyc-responsive-slides .websyc-rs__thumb {
	--ws-rs-thumb-accent: var(--ws-rs-accent, #c4a356);
	--ws-rs-thumb-size: 56px;
	position: relative;
	flex-shrink: 0;
	width: var(--ws-rs-thumb-size);
	height: var(--ws-rs-thumb-size);
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 12px;
	background: rgba(8, 8, 8, 0.42);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	cursor: pointer;
	overflow: visible;
	transition:
		border-color 0.28s ease,
		background-color 0.28s ease,
		transform 0.28s ease,
		box-shadow 0.28s ease;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.websyc-responsive-slides .websyc-rs__thumb-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding: clamp(10px, 22%, 14px);
	border-radius: 11px;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.82);
	transition: transform 0.32s ease, color 0.28s ease;
}

.websyc-responsive-slides .websyc-rs__thumb-img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform 0.45s ease, filter 0.35s ease;
}

.websyc-responsive-slides .websyc-rs__thumb-icon,
.websyc-responsive-slides .websyc-rs__thumb-inner .elementor-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	font-size: 1.25rem;
	line-height: 1;
}

.websyc-responsive-slides .websyc-rs__thumb-icon svg,
.websyc-responsive-slides .websyc-rs__thumb-inner .elementor-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	fill: currentColor;
}

.websyc-responsive-slides .websyc-rs__thumb-fallback {
	font-family: "Roboto", sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.04em;
}

.websyc-responsive-slides .websyc-rs__thumb-ring {
	position: absolute;
	inset: -4px;
	z-index: 1;
	border: 2px solid var(--ws-rs-thumb-accent);
	border-radius: 14px;
	opacity: 0;
	transform: scale(0.92);
	pointer-events: none;
}

.websyc-responsive-slides .websyc-rs__thumb:hover,
.websyc-responsive-slides .websyc-rs__thumb:focus-visible {
	border-color: rgba(196, 163, 86, 0.65);
	background: rgba(255, 255, 255, 0.06);
	outline: none;
	transform: translateY(-2px);
}

.websyc-responsive-slides .websyc-rs__thumb.is-active {
	border-color: var(--ws-rs-thumb-accent);
	background: rgba(196, 163, 86, 0.12);
	transform: translateY(-3px) scale(1.04);
	box-shadow:
		0 10px 28px rgba(0, 0, 0, 0.28),
		0 0 0 1px rgba(196, 163, 86, 0.35);
}

.websyc-responsive-slides .websyc-rs__thumb.is-active .websyc-rs__thumb-ring {
	opacity: 1;
	animation: websyc-rs-thumb-ring 2.2s ease-out infinite;
}

.websyc-responsive-slides .websyc-rs__thumb.is-active .websyc-rs__thumb-inner {
	color: #ffffff;
}

.websyc-responsive-slides .websyc-rs__thumb.is-active .websyc-rs__thumb-img {
	transform: scale(1.04);
	filter: brightness(1.08) saturate(1.05);
}

.websyc-responsive-slides .websyc-rs__thumb.is-active .websyc-rs__thumb-icon {
	animation: websyc-rs-thumb-icon-pop 0.55s ease;
}

@keyframes websyc-rs-thumb-ring {
	0% {
		opacity: 0.95;
		transform: scale(0.94);
	}

	70% {
		opacity: 0;
		transform: scale(1.18);
	}

	100% {
		opacity: 0;
		transform: scale(1.18);
	}
}

@keyframes websyc-rs-thumb-icon-pop {
	0% {
		transform: scale(0.88);
	}

	55% {
		transform: scale(1.12);
	}

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

.websyc-responsive-slides .elementor-swiper-button svg,
.websyc-responsive-slides .elementor-swiper-button i {
	display: none;
}

@media (min-width: 768px) {
	.websyc-responsive-slides[data-nav-desktop="none"] .websyc-rs__arrow,
	.websyc-responsive-slides[data-nav-desktop="dots"] .websyc-rs__arrow,
	body[data-elementor-device-mode="desktop"] .websyc-responsive-slides[data-nav-desktop="none"] .websyc-rs__arrow,
	body[data-elementor-device-mode="desktop"] .websyc-responsive-slides[data-nav-desktop="dots"] .websyc-rs__arrow,
	body[data-elementor-device-mode="tablet"] .websyc-responsive-slides[data-nav-desktop="none"] .websyc-rs__arrow,
	body[data-elementor-device-mode="tablet"] .websyc-responsive-slides[data-nav-desktop="dots"] .websyc-rs__arrow {
		display: none !important;
	}

	.websyc-responsive-slides[data-nav-desktop="none"] .websyc-rs__pagination,
	.websyc-responsive-slides[data-nav-desktop="arrows"] .websyc-rs__pagination,
	body[data-elementor-device-mode="desktop"] .websyc-responsive-slides[data-nav-desktop="none"] .websyc-rs__pagination,
	body[data-elementor-device-mode="desktop"] .websyc-responsive-slides[data-nav-desktop="arrows"] .websyc-rs__pagination,
	body[data-elementor-device-mode="tablet"] .websyc-responsive-slides[data-nav-desktop="none"] .websyc-rs__pagination,
	body[data-elementor-device-mode="tablet"] .websyc-responsive-slides[data-nav-desktop="arrows"] .websyc-rs__pagination {
		display: none !important;
	}

	.websyc-responsive-slides[data-counter-desktop="no"] .websyc-rs__counter,
	body[data-elementor-device-mode="desktop"] .websyc-responsive-slides[data-counter-desktop="no"] .websyc-rs__counter,
	body[data-elementor-device-mode="tablet"] .websyc-responsive-slides[data-counter-desktop="no"] .websyc-rs__counter {
		display: none !important;
	}

	.websyc-responsive-slides[data-progress-desktop="no"] .websyc-rs__progress,
	body[data-elementor-device-mode="desktop"] .websyc-responsive-slides[data-progress-desktop="no"] .websyc-rs__progress,
	body[data-elementor-device-mode="tablet"] .websyc-responsive-slides[data-progress-desktop="no"] .websyc-rs__progress {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.websyc-responsive-slides[data-nav-mobile="none"] .websyc-rs__arrow,
	.websyc-responsive-slides[data-nav-mobile="dots"] .websyc-rs__arrow,
	body[data-elementor-device-mode="mobile"] .websyc-responsive-slides[data-nav-mobile="none"] .websyc-rs__arrow,
	body[data-elementor-device-mode="mobile"] .websyc-responsive-slides[data-nav-mobile="dots"] .websyc-rs__arrow {
		display: none !important;
	}

	.websyc-responsive-slides[data-nav-mobile="none"] .websyc-rs__pagination,
	.websyc-responsive-slides[data-nav-mobile="arrows"] .websyc-rs__pagination,
	body[data-elementor-device-mode="mobile"] .websyc-responsive-slides[data-nav-mobile="none"] .websyc-rs__pagination,
	body[data-elementor-device-mode="mobile"] .websyc-responsive-slides[data-nav-mobile="arrows"] .websyc-rs__pagination {
		display: none !important;
	}

	.websyc-responsive-slides[data-counter-mobile="no"] .websyc-rs__counter,
	body[data-elementor-device-mode="mobile"] .websyc-responsive-slides[data-counter-mobile="no"] .websyc-rs__counter {
		display: none !important;
	}

	.websyc-responsive-slides[data-progress-mobile="no"] .websyc-rs__progress,
	body[data-elementor-device-mode="mobile"] .websyc-responsive-slides[data-progress-mobile="no"] .websyc-rs__progress {
		display: none !important;
	}
}

.websyc-responsive-slides .websyc-rs__ui-hidden {
	display: none !important;
}

@media (max-width: 1024px) {
	.websyc-responsive-slides .websyc-rs__content {
		max-width: 80%;
	}
}

@media (max-width: 767px) {
	.websyc-responsive-slides .websyc-rs__content {
		max-width: 100%;
	}

	.websyc-responsive-slides .websyc-rs__inner {
		padding: clamp(20px, 6vw, 30px);
	}

	.websyc-responsive-slides .websyc-rs__image--desktop {
		display: none;
	}

	.websyc-responsive-slides .websyc-rs__image--mobile {
		display: block;
	}

	.websyc-responsive-slides .websyc-rs__arrow {
		width: 38px;
		height: 38px;
	}

	.websyc-responsive-slides .websyc-rs__arrow--prev {
		left: 10px;
	}

	.websyc-responsive-slides .websyc-rs__arrow--next {
		right: 10px;
	}

	.websyc-responsive-slides .websyc-rs__pagination {
		left: 12px !important;
		right: auto !important;
		bottom: 14px !important;
		padding: 6px 10px !important;
	}

	.websyc-responsive-slides .websyc-rs__pagination .swiper-pagination-bullet {
		width: 7px !important;
		height: 7px !important;
		margin: 0 4px !important;
	}

	.websyc-responsive-slides .websyc-rs__pagination .swiper-pagination-bullet-active {
		width: 22px !important;
	}

	.elementor-widget-websyc-responsive-slides.websyc-rs--counter-bottom-right .websyc-rs__counter,
	.elementor-widget-websyc-responsive-slides.websyc-rs--counter-bottom-left .websyc-rs__counter {
		bottom: 46px;
	}

	.websyc-responsive-slides .websyc-rs__counter {
		padding: 7px 12px;
		font-size: 0.75rem;
	}

	.websyc-responsive-slides .websyc-rs__thumb-nav {
		left: 50%;
		right: auto;
		bottom: 12px;
		max-width: calc(100% - 24px);
		transform: translateX(-50%);
	}

	.websyc-responsive-slides .websyc-rs__thumb,
	body[data-elementor-device-mode="mobile"] .websyc-responsive-slides .websyc-rs__thumb {
		width: calc(var(--ws-rs-thumb-size, 56px) * 0.7);
		height: calc(var(--ws-rs-thumb-size, 56px) * 0.7);
		border-radius: calc(12px * 0.7);
	}

	.websyc-responsive-slides .websyc-rs__thumb-inner {
		padding: clamp(8px, 22%, 12px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.websyc-responsive-slides .websyc-rs__button,
	.websyc-responsive-slides .websyc-rs__arrow,
	.websyc-responsive-slides .websyc-rs__pagination .swiper-pagination-bullet,
	.websyc-responsive-slides .websyc-rs__progress-fill,
	.websyc-responsive-slides .websyc-rs__thumb,
	.websyc-responsive-slides .websyc-rs__thumb-ring,
	.websyc-responsive-slides .websyc-rs__thumb-img,
	.websyc-responsive-slides .websyc-rs__thumb-icon {
	 transition: none !important;
	 animation: none !important;
	}
}
