/* ARN Smart Vendix — readable, conditional frontend styles. */

.arnsc-hero {
	position: relative;
	direction: ltr;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	border-radius: var(--arnsc-slide-radius, 0px) !important;
	background: #111;
	color: #fff;
}

.arnsc-hero__track,
.arnsc-hero__slide,
.arnsc-hero__media,
.arnsc-hero__overlay,
.arnsc-hero__content {
	position: absolute;
	inset: 0;
}

.arnsc-hero__track,
.arnsc-hero__slide,
.arnsc-hero__media,
.arnsc-hero__overlay {
	border-radius: var(--arnsc-slide-radius, 0px) !important;
}

.arnsc-hero__track,
.arnsc-hero__slide,
.arnsc-hero__media {
	overflow: hidden;
}

.arnsc-hero__slide {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	transition-duration: var(--arnsc-transition-speed, 0.8s);
}

.arnsc-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
}

.arnsc-hero__media img {
	position: absolute;
	inset-inline-start: 50%;
	top: 50%;
	width: var(--arnsc-hero-image-width, 100%);
	height: var(--arnsc-hero-image-height, 100%) !important;
	min-width: 0;
	min-height: 0;
	max-height: none !important;
	display: block;
	object-fit: var(--arnsc-hero-image-fit, cover);
	object-position: var(--arnsc-hero-image-x, 50%) var(--arnsc-hero-image-y, 50%);
	translate: -50% -50%;
	border-radius: var(--arnsc-slide-radius, 0px) !important;
}

.arnsc-hero--ken-burns .arnsc-hero__media img {
	transform: scale(1.02);
	transition: transform 7s ease;
}

.arnsc-hero--ken-burns .arnsc-hero__slide.is-active .arnsc-hero__media img {
	transform: scale(1.08);
}

.arnsc-hero__overlay {
	background: linear-gradient(to right, rgba(0, 0, 0, var(--arnsc-overlay, 0.42)), rgba(0, 0, 0, 0.08));
}

.arnsc-hero--rtl .arnsc-hero__overlay {
	background: linear-gradient(to left, rgba(0, 0, 0, var(--arnsc-overlay, 0.42)), rgba(0, 0, 0, 0.08));
}

.arnsc-hero__content {
	display: flex;
	align-items: center;
}

.arnsc-hero__container {
	position: relative;
	z-index: 2;
	width: 100%;
	margin: 0 auto;
	display: flex;
	padding: clamp(24px, 6vw, 100px);
}

.arnsc-hero:not(.arnsc-hero--contained) .arnsc-hero__container {
	max-width: none;
}

.arnsc-hero__content--left .arnsc-hero__container {
	justify-content: flex-start;
}

.arnsc-hero__content--center .arnsc-hero__container {
	justify-content: center;
}

.arnsc-hero__content--right .arnsc-hero__container {
	justify-content: flex-end;
}

.arnsc-hero__content--left {
	text-align: start;
}

.arnsc-hero__content--center {
	justify-content: center;
	text-align: center;
}

.arnsc-hero__content--right {
	justify-content: flex-end;
	text-align: end;
}

.arnsc-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
}

.arnsc-hero__inner h1,
.arnsc-hero__inner h2 {
	margin: 0 0 20px;
	color: inherit;
	font-size: clamp(42px, 6vw, 92px);
	line-height: 0.98;
	letter-spacing: -0.035em;
}

.arnsc-hero__subtitle {
	margin: 0 0 14px;
	color: inherit;
	font-size: clamp(20px, 2.2vw, 34px);
	line-height: 1.2;
	font-weight: 600;
}

.arnsc-hero__inner p {
	margin: 0 0 30px;
	font-size: clamp(17px, 1.6vw, 24px);
	line-height: 1.5;
	max-width: 680px;
}

.arnsc-hero__content--center .arnsc-hero__inner p {
	margin-inline: auto;
}

.arnsc-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 13px 24px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-style: solid;
	border-radius: 999px;
	color: #fff;
	text-decoration: none;
	background-color: rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(8px);
	transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.arnsc-hero__cta-content {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: inherit;
	position: relative;
	z-index: 1;
}

.arnsc-hero__buttons {
	display: flex;
	flex-direction: var(--arnsc-hero-buttons-direction, row);
	flex-wrap: var(--arnsc-hero-buttons-wrap, wrap);
	align-items: center;
	justify-content: flex-start;
	gap: var(--arnsc-hero-buttons-gap, 12px);
}

.arnsc-hero__content--center .arnsc-hero__buttons {
	justify-content: center;
}

.arnsc-hero__content--right .arnsc-hero__buttons {
	justify-content: flex-end;
}

.arnsc-hero__navigation {
	position: absolute;
	top: var(--arnsc-arrow-top, 50%);
	z-index: 5;
	display: flex;
	pointer-events: none;
	transform: translateY(-50%);
}

.arnsc-hero__arrow {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.22);
	color: #fff;
	cursor: pointer;
	pointer-events: auto;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.arnsc-hero__arrow:hover {
	transform: translateY(-2px);
}

.arnsc-hero__arrow svg {
	display: block;
	fill: currentColor;
}

.arnsc-hero--nav-split .arnsc-hero__navigation {
	inset-inline: 0;
	justify-content: space-between;
	padding-inline: var(--arnsc-arrow-offset, 24px);
}

.arnsc-hero--nav-left-stack .arnsc-hero__navigation {
	inset-inline-start: var(--arnsc-arrow-offset, 24px);
	flex-direction: column;
}

.arnsc-hero--nav-right-stack .arnsc-hero__navigation {
	inset-inline-end: var(--arnsc-arrow-offset, 24px);
	flex-direction: column;
}

.arnsc-hero__dots {
	position: absolute;
	inset-inline-start: 50%;
	bottom: 28px;
	z-index: 5;
	display: flex;
	gap: 9px;
	transform: translateX(-50%);
}

.arnsc-hero__dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 1px solid #fff;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.arnsc-hero__dots button.is-active {
	background: #fff;
}

@media(max-width:1024px) {
  .arnsc-hero__navigation {
  display: none;
  }
}

@media(max-width:767px) {
  .arnsc-hero__container {
  padding: 28px;
  }

  .arnsc-hero__inner h1,
  .arnsc-hero__inner h2 {
  font-size: clamp(38px, 12vw, 64px);
  }

  .arnsc-hero__content {
  overflow-y: auto;
  		overscroll-behavior: contain;
  }

  .arnsc-hero__overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12));
  }
}

@media(prefers-reduced-motion:reduce) {
  .arnsc-hero__slide,
  .arnsc-hero__media img {
  transition-duration: 0.15s;
  }
}

.arnsc-hero--rtl {
	direction: rtl;
}

.arnsc-hero__shape {
	position: absolute;
	inset-inline: 0;
	bottom: -1px;
	z-index: 4;
	height: 80px;
	overflow: hidden;
	line-height: 0;
	pointer-events: none;
}

.arnsc-hero__shape svg {
	position: absolute;
	inset-inline-start: 50%;
	bottom: 0;
	display: block;
	width: 100%;
	height: 100%;
	transform: translateX(-50%);
	fill: #fff;
}

.arnsc-hero__shape--flip svg {
	transform: translateX(-50%) scaleX(-1);
}

.arnsc-hero__shape--invert svg {
	transform: translateX(-50%) scaleY(-1);
}

.arnsc-hero__shape--flip.arnsc-hero__shape--invert svg {
	transform: translateX(-50%) scale(-1, -1);
}

.arnsc-hero__shape--front {
	z-index: 7;
}

.elementor-widget-arnsc-hero-slider {
	border-radius: var(--arnsc-slide-radius, 0px) !important;
	overflow: hidden !important;
}

.arnsc-hero--transition-fade .arnsc-hero__slide {
	opacity: 0;
}

.arnsc-hero--transition-fade .arnsc-hero__slide.is-active {
	opacity: 1;
}

.arnsc-hero--transition-slide .arnsc-hero__slide {
	opacity: 1;
	visibility: visible;
	transform: translateX(100%);
	transition: transform var(--arnsc-transition-speed, 0.8s) ease;
}

.arnsc-hero--rtl.arnsc-hero--transition-slide .arnsc-hero__slide {
	transform: translateX(-100%);
}

.arnsc-hero--transition-slide .arnsc-hero__slide.is-active {
	transform: translateX(0);
}

.arnsc-hero--transition-zoom .arnsc-hero__slide {
	opacity: 0;
	transform: scale(1.08);
	transition: opacity var(--arnsc-transition-speed, 0.8s) ease, transform var(--arnsc-transition-speed, 0.8s) ease;
}

.arnsc-hero--transition-zoom .arnsc-hero__slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.arnsc-hero--transition-reveal .arnsc-hero__slide {
	opacity: 1;
	visibility: visible;
	clip-path: inset(0 0 0 100%);
	transition: clip-path var(--arnsc-transition-speed, 0.8s) cubic-bezier(0.77, 0, 0.18, 1);
}

.arnsc-hero--rtl.arnsc-hero--transition-reveal .arnsc-hero__slide {
	clip-path: inset(0 100% 0 0);
}

.arnsc-hero--transition-reveal .arnsc-hero__slide.is-active {
	clip-path: inset(0 0 0 0);
}

.arnsc-hero__overlay--none {
	background: none !important;
}

.arnsc-hero__overlay--solid {
	background: color-mix(in srgb, var(--arnsc-overlay-color-1, #000) calc(var(--arnsc-overlay, 0.42) * 100%), transparent);
}

.arnsc-hero__overlay--linear.arnsc-hero__overlay--to_right {
	background: linear-gradient(to right, color-mix(in srgb, var(--arnsc-overlay-color-1, #000) calc(var(--arnsc-overlay, 0.42) * 100%), transparent), var(--arnsc-overlay-color-2, rgba(0, 0, 0, 0.08)));
}

.arnsc-hero__overlay--linear.arnsc-hero__overlay--to_left {
	background: linear-gradient(to left, color-mix(in srgb, var(--arnsc-overlay-color-1, #000) calc(var(--arnsc-overlay, 0.42) * 100%), transparent), var(--arnsc-overlay-color-2, rgba(0, 0, 0, 0.08)));
}

.arnsc-hero__overlay--linear.arnsc-hero__overlay--to_bottom {
	background: linear-gradient(to bottom, color-mix(in srgb, var(--arnsc-overlay-color-1, #000) calc(var(--arnsc-overlay, 0.42) * 100%), transparent), var(--arnsc-overlay-color-2, rgba(0, 0, 0, 0.08)));
}

.arnsc-hero__overlay--linear.arnsc-hero__overlay--to_top {
	background: linear-gradient(to top, color-mix(in srgb, var(--arnsc-overlay-color-1, #000) calc(var(--arnsc-overlay, 0.42) * 100%), transparent), var(--arnsc-overlay-color-2, rgba(0, 0, 0, 0.08)));
}

.arnsc-hero__overlay--radial {
	background: radial-gradient(circle at center, var(--arnsc-overlay-color-2, rgba(0, 0, 0, 0.08)), color-mix(in srgb, var(--arnsc-overlay-color-1, #000) calc(var(--arnsc-overlay, 0.42) * 100%), transparent));
}

.arnsc-hero__animate {
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.arnsc-hero__slide:not(.is-active) .arnsc-hero__animate {
	opacity: 0;
}

.arnsc-hero--content-none .arnsc-hero__animate {
	opacity: 1 !important;
	transform: none !important;
}

.arnsc-hero--content-fade_up .arnsc-hero__slide:not(.is-active) .arnsc-hero__animate {
	transform: translateY(30px);
}

.arnsc-hero--content-fade_left .arnsc-hero__slide:not(.is-active) .arnsc-hero__animate {
	transform: translateX(-30px);
}

.arnsc-hero--content-fade_right .arnsc-hero__slide:not(.is-active) .arnsc-hero__animate {
	transform: translateX(30px);
}

.arnsc-hero--content-zoom .arnsc-hero__slide:not(.is-active) .arnsc-hero__animate {
	transform: scale(0.94);
}

.arnsc-hero__slide.is-active .arnsc-hero__animate {
	opacity: 1;
	transform: none;
}

.arnsc-hero__animate--1 {
	transition-delay: var(--arnsc-content-stagger, 150ms);
}

.arnsc-hero__animate--2 {
	transition-delay: calc(var(--arnsc-content-stagger, 150ms) * 2);
}

.arnsc-hero__animate--3 {
	transition-delay: calc(var(--arnsc-content-stagger, 150ms) * 3);
}

.arnsc-hero__animate--4 {
	transition-delay: calc(var(--arnsc-content-stagger, 150ms) * 4);
}

.arnsc-hero__scroll {
	position: absolute;
	inset-inline-start: 50%;
	bottom: 28px;
	z-index: 6;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	transform: translateX(-50%);
	color: #fff;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	pointer-events: none;
}

.arnsc-hero__scroll i,
.arnsc-hero__scroll svg {
	animation: arnscScrollBounce 1.6s ease-in-out infinite;
}

@keyframes arnscScrollBounce {
0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(7px);
	}
}

.arnsc-hero__cta svg {
	display: block;
	width: var(--arnsc-hero-button-icon-size, 14px);
	height: var(--arnsc-hero-button-icon-size, 14px);
	fill: currentColor;
}

.arnsc-hero__cta i {
	font-size: var(--arnsc-hero-button-icon-size, 14px);
}

.arnsc-hero--button-full .arnsc-hero__cta {
	width: 100%;
}

.arnsc-hero--button-hover-none .arnsc-hero__cta:hover {
	transform: none;
}

.arnsc-hero--button-hover-lift .arnsc-hero__cta:hover {
	transform: translateY(-3px);
}

.arnsc-hero--button-hover-grow .arnsc-hero__cta:hover {
	transform: scale(1.045);
}

.arnsc-hero--button-hover-shrink .arnsc-hero__cta:hover {
	transform: scale(0.96);
}

.arnsc-hero--button-hover-glow .arnsc-hero__cta:hover {
	transform: none;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12), 0 12px 34px rgba(0, 0, 0, 0.24);
}
