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

.arnsc-shape-divider {
	--arnsc-divider-offset-y: 0px;
	--arnsc-divider-offset-x: 0px;
	position: relative;
	display: flex;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	overflow: visible;
	line-height: 0;
	pointer-events: none;
	transform: translate(var(--arnsc-divider-offset-x), var(--arnsc-divider-offset-y));
}

.arnsc-shape-divider--clip {
	overflow: clip;
}

@supports not(overflow:clip) {
  .arnsc-shape-divider--clip {
  overflow: hidden;
  }
}

.arnsc-shape-divider--viewport {
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
}

.arnsc-shape-divider--align-left {
	justify-content: flex-start;
}

.arnsc-shape-divider--align-center {
	justify-content: center;
}

.arnsc-shape-divider--align-right {
	justify-content: flex-end;
}

.arnsc-shape-divider__media {
	--arnsc-divider-flip-x: 1;
	--arnsc-divider-flip-y: 1;
	display: block;
	height: 100%;
	min-width: 0;
	transform: scale(var(--arnsc-divider-flip-x), var(--arnsc-divider-flip-y));
	transform-origin: center;
}

.arnsc-shape-divider--custom .arnsc-shape-divider__media {
	--arnsc-divider-position-x: 50%;
	--arnsc-divider-position-y: 50%;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	-webkit-mask-image: var(--arnsc-divider-mask);
	mask-image: var(--arnsc-divider-mask);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: var(--arnsc-divider-position-x) var(--arnsc-divider-position-y);
	mask-position: var(--arnsc-divider-position-x) var(--arnsc-divider-position-y);
}

.arnsc-shape-divider--fit-cover .arnsc-shape-divider__media {
	-webkit-mask-size: cover;
	mask-size: cover;
}

.arnsc-shape-divider--fit-contain .arnsc-shape-divider__media {
	-webkit-mask-size: contain;
	mask-size: contain;
}

.arnsc-shape-divider--fit-fill .arnsc-shape-divider__media {
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
}

.arnsc-shape-divider--custom .arnsc-shape-divider__image {
	position: relative;
	z-index: 1;
}

.arnsc-shape-divider--flip-x .arnsc-shape-divider__media {
	--arnsc-divider-flip-x: -1;
}

.arnsc-shape-divider--flip-y .arnsc-shape-divider__media {
	--arnsc-divider-flip-y: -1;
}

.arnsc-shape-divider__svg,
.arnsc-shape-divider__image {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* ARN Visual Slot:shared by Responsive Image and CTA. */
.arnsc-visual-slot {
	--arnsc-visual-slot-height: 560px;
	--arnsc-visual-width: 100%;
	--arnsc-visual-max-width: 100%;
	--arnsc-visual-image-height: auto;
	--arnsc-visual-fit: contain;
	--arnsc-visual-object-x: 50%;
	--arnsc-visual-object-y: 50%;
	--arnsc-visual-max-height: none;
	--arnsc-visual-x: center;
	--arnsc-visual-y: flex-end;
	--arnsc-visual-offset-x: 0px;
	--arnsc-visual-offset-y: 0px;
	--arnsc-visual-rotate: 0deg;
	position: relative;
	isolation: isolate;
	display: flex;
	width: 100%;
	min-width: 0;
	height: var(--arnsc-visual-slot-height);
	direction: ltr;
	align-items: var(--arnsc-visual-y);
	justify-content: var(--arnsc-visual-x);
}

.arnsc-visual-slot__stage {
	position: relative;
	display: block;
	min-width: 0;
	flex: 0 1 auto;
	width: var(--arnsc-visual-width);
	max-width: min(100%, var(--arnsc-visual-max-width));
	transform: translate(var(--arnsc-visual-offset-x), var(--arnsc-visual-offset-y));
}

.arnsc-visual-slot__stage > a,
.arnsc-visual-slot__stage picture {
	display: block;
	width: 100%;
}

/* Keep linked images clickable above decorative and header layers. */
.arnsc-visual-slot:not(.arnsc-visual-slot--no-pointer) .arnsc-responsive-image__link {
	position: relative;
	z-index: 2;
	pointer-events: auto !important;
	cursor: pointer;
}

.arnsc-responsive-image__link picture,
.arnsc-responsive-image__link .arnsc-responsive-image__image {
	pointer-events: none;
}

.arnsc-visual-slot--no-pointer .arnsc-responsive-image__link {
	pointer-events: none !important;
}

.arnsc-visual-slot__image {
	display: block;
	width: 100%;
	height: var(--arnsc-visual-image-height);
	max-width: 100%;
	max-height: var(--arnsc-visual-max-height);
	object-fit: var(--arnsc-visual-fit);
	object-position: var(--arnsc-visual-object-x) var(--arnsc-visual-object-y);
	transform: rotate(var(--arnsc-visual-rotate));
	transform-origin: center;
}

/*
 * Proportional mode is the safe default for responsive illustrations.
 * The image follows the widget container, keeps its intrinsic ratio and
 * cannot turn into a cropped strip when an Elementor breakpoint changes.
 */
.arnsc-visual-slot--proportional {
	height: auto !important;
}

.arnsc-visual-slot--proportional .arnsc-visual-slot__stage,
.arnsc-visual-slot--proportional .arnsc-visual-slot__stage > a,
.arnsc-visual-slot--proportional .arnsc-visual-slot__stage picture {
	height: auto;
}

.arnsc-visual-slot--proportional .arnsc-visual-slot__image {
	width: 100% !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: none !important;
	object-fit: contain !important;
}

/* Fixed slots always establish a real height for percentage based images. */
.arnsc-visual-slot--contain .arnsc-visual-slot__stage,
.arnsc-visual-slot--contain .arnsc-visual-slot__stage > a,
.arnsc-visual-slot--contain .arnsc-visual-slot__stage picture,
.arnsc-visual-slot--cover .arnsc-visual-slot__stage,
.arnsc-visual-slot--cover .arnsc-visual-slot__stage > a,
.arnsc-visual-slot--cover .arnsc-visual-slot__stage picture {
	height: 100%;
}

.arnsc-visual-slot--contain .arnsc-visual-slot__image,
.arnsc-visual-slot--cover .arnsc-visual-slot__image {
	width: 100% !important;
	height: 100% !important;
	max-height: 100% !important;
}

.arnsc-visual-slot--contain .arnsc-visual-slot__image {
	object-fit: contain !important;
}

.arnsc-visual-slot--cover .arnsc-visual-slot__image {
	object-fit: cover !important;
}

.arnsc-visual-slot--flip-x .arnsc-visual-slot__image {
	transform: scaleX(-1) rotate(var(--arnsc-visual-rotate));
}

.arnsc-visual-slot--flip-y .arnsc-visual-slot__image {
	transform: scaleY(-1) rotate(var(--arnsc-visual-rotate));
}

.arnsc-visual-slot--flip-x.arnsc-visual-slot--flip-y .arnsc-visual-slot__image {
	transform: scale(-1, -1) rotate(var(--arnsc-visual-rotate));
}

.arnsc-visual-slot--no-pointer {
	pointer-events: none;
}

@media(prefers-reduced-motion:reduce) {
  .arnsc-visual-slot__stage {
  animation: none !important;
  }
}

/* ARN Edge Image:preserves the column's inner edge and extends only outward. */
.arnsc-edge-image {
	--arnsc-edge-direction: right;
	--arnsc-edge-extension: 0px;
	--arnsc-edge-height: 560px;
	--arnsc-edge-fit: cover;
	--arnsc-edge-fit-tablet: var(--arnsc-edge-fit);
	--arnsc-edge-fit-mobile: var(--arnsc-edge-fit-tablet);
	--arnsc-edge-position-x: 50%;
	--arnsc-edge-position-y: 50%;
	--arnsc-edge-opacity: 100%;
	width: calc(100% + var(--arnsc-edge-extension));
	min-width: 0;
}

.arnsc-edge-image.is-edge-left {
	margin-left: calc(-1 * var(--arnsc-edge-extension));
}

.arnsc-edge-image__frame,
.arnsc-edge-image__link,
.arnsc-edge-image picture {
	display: block;
	width: 100%;
	height: var(--arnsc-edge-height);
}

.arnsc-edge-image__frame {
	position: relative;
	overflow: hidden;
}

.arnsc-edge-image .arnsc-edge-image__frame .arnsc-edge-image__image {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: var(--arnsc-edge-fit) !important;
	object-position: var(--arnsc-edge-position-x) var(--arnsc-edge-position-y) !important;
	opacity: var(--arnsc-edge-opacity);
}

.arnsc-edge-image--no-pointer {
	pointer-events: none;
}

.arnsc-responsive-image__link:focus-visible,
.arnsc-edge-image__link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

@media(max-width:1024px) {
  .arnsc-edge-image .arnsc-edge-image__frame .arnsc-edge-image__image {
  object-fit: var(--arnsc-edge-fit-tablet) !important;
  }
}

@media(max-width:767px) {
  .arnsc-edge-image .arnsc-edge-image__frame .arnsc-edge-image__image {
  object-fit: var(--arnsc-edge-fit-mobile) !important;
  }
}

.arnsc-split-image {
	display: grid;
	grid-template-columns: repeat(var(--cols),minmax(0,1fr));
	grid-template-rows: repeat(var(--rows),minmax(0,1fr));
	gap: 8px;
	height: 500px;
	perspective: 900px;
}

.arnsc-split-image__piece {
	background-image: var(--image);
	background-repeat: no-repeat;
	background-size: calc(var(--cols)*100%) calc(var(--rows)*100%);
	background-position: var(--x) var(--y);
	transition: transform .35s,filter .35s,opacity .35s;
}

.arnsc-split-image--lift:hover .arnsc-split-image__piece {
	transform: translateY(calc(var(--dy)*-.45));
}

.arnsc-split-image--zoom:hover .arnsc-split-image__piece {
	transform: scale(.94);
}

.arnsc-split-image--scatter:hover .arnsc-split-image__piece {
	transform: translate(var(--dx),var(--dy)) rotate(var(--rotation));
}

.arnsc-split-image--animate:not(.is-visible) .arnsc-split-image__piece {
	opacity: 0;
	transform: translateY(18px) scale(.96);
}

.arnsc-split-image--animate .arnsc-split-image__piece {
	transition-delay: calc(var(--i)*var(--stagger));
}

.arnsc-interactive-card {
	position: relative;
	display: grid;
	overflow: hidden;
	min-height: 420px;
	color: #fff;
	text-decoration: none;
	isolation: isolate;
}

.arnsc-interactive-card__image,
.arnsc-interactive-card__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.arnsc-interactive-card__image {
	object-fit: cover;
	z-index: -2;
	transition: transform .55s ease,filter .55s ease;
}

.arnsc-interactive-card__overlay {
	z-index: -1;
	background: linear-gradient(180deg,transparent 20%,rgba(0,0,0,.78));
	transition: opacity .35s;
}

.arnsc-interactive-card__content {
	display: flex;
	flex-direction: column;
	align-self: end;
	padding: 28px;
	transition: transform .4s,opacity .4s;
}

.arnsc-interactive-card--top-left .arnsc-interactive-card__content,
.arnsc-interactive-card--top-center .arnsc-interactive-card__content,
.arnsc-interactive-card--top-right .arnsc-interactive-card__content {
	align-self: start;
}

.arnsc-interactive-card--center .arnsc-interactive-card__content {
	align-self: center;
	text-align: center;
}

.arnsc-interactive-card--top-center .arnsc-interactive-card__content,
.arnsc-interactive-card--bottom-center .arnsc-interactive-card__content {
	text-align: center;
}

.arnsc-interactive-card--top-right .arnsc-interactive-card__content,
.arnsc-interactive-card--bottom-right .arnsc-interactive-card__content {
	text-align: end;
}

.arnsc-interactive-card__label {
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.arnsc-interactive-card__title {
	margin: 4px 0;
}

.arnsc-interactive-card__description,
.arnsc-interactive-card__link {
	margin-block-start: 10px;
}

.arnsc-interactive-card__link {
	color: inherit;
}

.arnsc-interactive-card--rise .arnsc-interactive-card__description,
.arnsc-interactive-card--rise .arnsc-interactive-card__link {
	opacity: 0;
	transform: translateY(18px);
	transition: .35s;
}

.arnsc-interactive-card--rise:hover .arnsc-interactive-card__description,
.arnsc-interactive-card--rise:focus-within .arnsc-interactive-card__description,
.arnsc-interactive-card--rise:hover .arnsc-interactive-card__link,
.arnsc-interactive-card--rise:focus-within .arnsc-interactive-card__link {
	opacity: 1;
	transform: none;
}

.arnsc-interactive-card--slide-left .arnsc-interactive-card__content {
	transform: translateX(-18px);
	opacity: .78;
}

.arnsc-interactive-card--slide-left:hover .arnsc-interactive-card__content,
.arnsc-interactive-card--slide-left:focus-within .arnsc-interactive-card__content {
	transform: none;
	opacity: 1;
}

.arnsc-interactive-card--zoom:hover .arnsc-interactive-card__image,
.arnsc-interactive-card--zoom:focus-within .arnsc-interactive-card__image {
	transform: scale(1.1);
}

.arnsc-interactive-card--minimal .arnsc-interactive-card__overlay {
	opacity: .55;
}

.arnsc-interactive-card--minimal:hover .arnsc-interactive-card__overlay {
	opacity: 1;
}

.arnsc-interactive-card--frame:after {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid currentColor;
	opacity: 0;
	transform: scale(.96);
	transition: .35s;
}

.arnsc-interactive-card--frame:hover:after,
.arnsc-interactive-card--frame:focus-within:after {
	opacity: .75;
	transform: none;
}

.arnsc-interactive-card--split .arnsc-interactive-card__overlay {
	clip-path: inset(50% 0 50%);
	transition: clip-path .45s;
}

.arnsc-interactive-card--split:hover .arnsc-interactive-card__overlay,
.arnsc-interactive-card--split:focus-within .arnsc-interactive-card__overlay {
	clip-path: inset(0);
}

@media(max-width:767px) {
  .arnsc-interactive-card--mobile-visible .arnsc-interactive-card__description,
  .arnsc-interactive-card--mobile-visible .arnsc-interactive-card__link {
  opacity: 1!important;
  		transform: none!important;
  }
}

@media(prefers-reduced-motion:reduce) {
  .arnsc-split-image__piece,
  .arnsc-interactive-card * {
  transition: none!important;
  }

  .arnsc-split-image--animate:not(.is-visible) .arnsc-split-image__piece {
  opacity: 1;
  		transform: none;
  }
}

/* Corporate widget group. */
.arnsc-before-after {
	--arnsc-accent: #d8b25b;
	--arnsc-ba-handle: 44px;
	position: relative;
	overflow: hidden;
	min-height: 240px;
	background: #eee;
	touch-action: none;
	user-select: none;
}

.arnsc-before-after__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.arnsc-before-after__clip {
	position: absolute;
	inset: 0;
	overflow: hidden;
	clip-path: inset(0 calc(100% - var(--arnsc-position)) 0 0);
}

.arnsc-before-after--vertical .arnsc-before-after__clip {
	clip-path: inset(0 0 calc(100% - var(--arnsc-position)) 0);
}

.arnsc-before-after__label {
	position: absolute;
	top: 18px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.arnsc-before-after__label--before {
	inset-inline-start: 18px;
}

.arnsc-before-after__label--after {
	inset-inline-end: 18px;
}

.arnsc-before-after__handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--arnsc-position);
	width: 3px;
	padding: 0;
	border: 0;
	background: var(--arnsc-accent);
	transform: translateX(-50%);
	cursor: ew-resize;
}

.arnsc-before-after__handle:after {
	content: "↔";
	display: grid;
	place-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	width: var(--arnsc-ba-handle);
	height: var(--arnsc-ba-handle);
	border-radius: 50%;
	background: var(--arnsc-accent);
	color: #111;
	transform: translate(-50%, -50%);
	font-size: 20px;
}

.arnsc-before-after--vertical .arnsc-before-after__handle {
	top: var(--arnsc-position);
	bottom: auto;
	left: 0;
	right: 0;
	width: auto;
	height: 3px;
	transform: translateY(-50%);
	cursor: ns-resize;
}

.arnsc-before-after--vertical .arnsc-before-after__handle:after {
	content: "↕";
}

.arnsc-before-after--split .arnsc-before-after__handle:after {
	content: "◀ ▶";
	font-size: 11px;
}

/* Corporate widgets:additional visual layouts. */
.arnsc-before-after--framed {
	border: 12px solid #fff;
	border-radius: 4px;
	box-shadow: 0 18px 55px rgba(16, 24, 40, 0.18);
}

.arnsc-before-after--framed:before {
	content: "";
	position: absolute;
	inset: 10px;
	z-index: 3;
	border: 1px solid rgba(255, 255, 255, 0.65);
	pointer-events: none;
}

.arnsc-before-after--soft {
	border-radius: 32px;
	box-shadow: 0 20px 60px rgba(16, 24, 40, 0.14);
}

.arnsc-before-after--soft .arnsc-before-after__label {
	top: auto;
	bottom: 18px;
	background: rgba(255, 255, 255, 0.88);
	color: #111827;
	backdrop-filter: blur(10px);
}

.arnsc-before-after--framed .arnsc-before-after__handle:after {
	border: 4px solid #fff;
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
}

@media(max-width:767px) {
  .arnsc-before-after--framed {
  border-width: 7px;
  }

  .arnsc-before-after--soft {
  border-radius: 20px;
  }
}

/* Responsive, RTL and theme-resilient corrections. */
.arnsc-before-after {
	min-width: 0;
	max-width: 100%;
}

.arnsc-before-after * {
	box-sizing: border-box;
}

.arnsc-before-after__handle {
	min-width: 44px;
	min-height: 44px;
	touch-action: manipulation;
}

.arnsc-before-after__handle:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 3px;
}
