.aw-widget-placeholder {
	padding: 24px;
	border: 1px dashed #b9b9b9;
	background: #f7f7f7;
	color: #555;
	text-align: center;
}

.aw-wheel {
	width: 100%;
}

.aw-wheel__stage {
	--aw-pointer-offset: -12px;
	--aw-pointer-shift: 0px;
	position: relative;
	max-width: 100%;
	margin-inline: auto;
}

.aw-wheel__stage > img:not(.aw-wheel__pointer) {
	display: block;
	width: 100%;
	height: auto;
	transform-origin: 50% 50%;
	will-change: transform;
}

.aw-wheel__pointer {
	position: absolute;
	z-index: 2;
	display: block;
	max-width: none;
	height: auto;
	pointer-events: none;
}

.aw-wheel[data-pointer-position="bottom"] .aw-wheel__pointer {
	left: 50%;
	bottom: calc(var(--aw-pointer-offset) * -1);
	transform: translateX(calc(-50% + var(--aw-pointer-shift)));
}

.aw-wheel[data-pointer-position="top"] .aw-wheel__pointer {
	left: 50%;
	top: calc(var(--aw-pointer-offset) * -1);
	transform: translateX(calc(-50% + var(--aw-pointer-shift)));
}

.aw-wheel[data-pointer-position="left"] .aw-wheel__pointer {
	left: calc(var(--aw-pointer-offset) * -1);
	top: 50%;
	transform: translateY(calc(-50% + var(--aw-pointer-shift)));
}

.aw-wheel[data-pointer-position="right"] .aw-wheel__pointer {
	right: calc(var(--aw-pointer-offset) * -1);
	top: 50%;
	transform: translateY(calc(-50% + var(--aw-pointer-shift)));
}

.aw-wheel__control {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.aw-wheel__button {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	border: 2px solid #5b603e;
	border-radius: 999px;
	background: #fffced;
	color: #242619;
	cursor: pointer;
	line-height: 1.25;
	text-align: center;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.aw-wheel__button:hover {
	background: #f7f2db;
}

.aw-wheel__button:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 3px;
}

.aw-wheel__button:disabled {
	cursor: wait;
	opacity: .78;
}

.aw-wheel__button.is-spinning {
	transform: translateY(2px);
}

.aw-wheel__result {
	width: 100%;
	min-height: 1.5em;
	margin-bottom: 0;
	margin-inline: auto;
	white-space: pre-line;
}

.aw-wheel__result:not(.is-visible) {
	opacity: 0;
}

.aw-wheel__result.is-visible[data-animation="fade"] {
	animation: aw-result-fade var(--aw-result-duration, 500ms) ease both;
}

.aw-wheel__result.is-visible[data-animation="slide-up"] {
	animation: aw-result-slide var(--aw-result-duration, 500ms) cubic-bezier(.2, .75, .25, 1) both;
}

.aw-wheel__result.is-visible[data-animation="zoom"] {
	animation: aw-result-zoom var(--aw-result-duration, 500ms) ease both;
}

.aw-wheel__result.is-visible[data-animation="none"] {
	opacity: 1;
}

@keyframes aw-result-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes aw-result-slide {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes aw-result-zoom {
	from { opacity: 0; transform: scale(.94); }
	to { opacity: 1; transform: scale(1); }
}

.aw-gallery {
	position: relative;
	width: 100%;
	height: calc(100svh + 2300px);
	background: #242619;
}

/* Elementor containers can disable position:sticky when they use overflow. */
.aw-gallery-sticky-context {
	overflow: visible !important;
}

html.aw-gallery-page-context,
body.aw-gallery-page-context {
	overflow-x: clip !important;
	overflow-y: visible !important;
}

.aw-gallery--full-width {
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
}

.aw-gallery__sticky {
	position: sticky;
	top: 0;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100vh;
	height: 100svh;
	min-height: 420px;
	overflow: hidden;
	background: #242619;
}

.aw-gallery__scene {
	width: 100%;
}

.aw-gallery--scene .aw-gallery__sticky {
	align-items: stretch;
	padding-block: 0 !important;
}

.aw-gallery--scene .aw-gallery__scene {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	box-sizing: border-box;
	height: 100%;
	min-height: 0;
	padding-block: 48px;
}

.aw-gallery--scene .aw-gallery__header {
	grid-row: 1;
	margin-bottom: 28px;
}

.aw-gallery--scene .aw-gallery__viewport {
	grid-row: 2;
	align-self: center;
	min-height: 0;
}

.aw-gallery--scene .aw-gallery__footer {
	grid-row: 3;
	margin-top: 28px;
}

.aw-gallery__header,
.aw-gallery__footer {
	box-sizing: border-box;
	width: 100%;
	padding-inline: 56px;
}

.aw-gallery__fixed-content {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.aw-gallery__scene-title,
.aw-gallery__scene-footer {
	margin-block: 0;
}

.aw-gallery__viewport {
	width: 100%;
	overflow: hidden;
}

.aw-gallery__track {
	display: flex;
	align-items: flex-start;
	width: max-content;
	max-width: none;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

.aw-gallery__card {
	position: relative;
	display: block;
	flex: 0 0 auto;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
}

a.aw-gallery__card:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 4px;
}

.aw-gallery__image {
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	aspect-ratio: var(--aw-image-ratio, auto);
	object-fit: cover;
}

.aw-gallery--custom-height .aw-gallery__image {
	aspect-ratio: auto;
}

.aw-gallery__copy {
	display: flex;
	flex-direction: column;
}

.aw-gallery__text,
.aw-gallery__caption {
	margin: 0;
}

.aw-gallery--fit-content {
	background: transparent !important;
}

.aw-gallery--fit-content .aw-gallery__sticky {
	align-items: flex-start;
	height: auto;
	min-height: 0;
	padding-block: 0 !important;
}

.aw-gallery--fit-content .aw-gallery__card {
	padding: 0 !important;
}

.aw-gallery--fit-content .aw-gallery__image {
	height: auto !important;
	aspect-ratio: auto !important;
	object-fit: contain !important;
}

.aw-gallery.is-swipe {
	height: auto !important;
}

.aw-gallery.is-swipe .aw-gallery__sticky {
	position: relative;
	height: auto;
	min-height: 0;
}

.aw-gallery.is-swipe .aw-gallery__scene {
	display: block;
	height: auto;
	padding-block: 24px;
}

.aw-gallery.is-swipe .aw-gallery__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-inline: contain;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.aw-gallery.is-swipe .aw-gallery__viewport::-webkit-scrollbar {
	display: none;
}

.aw-gallery.is-swipe .aw-gallery__track {
	transform: none !important;
	will-change: auto;
}

.aw-gallery.is-swipe .aw-gallery__card {
	scroll-snap-align: start;
}

/* Shared carousel controls. */
.aw-carousel-arrow {
	position: absolute;
	top: 50%;
	z-index: 8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid currentColor;
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font: inherit;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background-color .2s ease, transform .2s ease;
}

.aw-carousel-arrow:hover {
	background: rgba(255, 255, 255, .18);
}

.aw-carousel-arrow:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 3px;
}

.aw-carousel-arrow--prev {
	left: 0;
}

.aw-carousel-arrow--next {
	right: 0;
}

.aw-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 9px;
	margin-top: 34px;
}

.aw-carousel-dots button.aw-carousel-dot {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: block !important;
	flex: 0 0 auto !important;
	box-sizing: border-box !important;
	width: 8px !important;
	height: 8px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	max-width: 8px !important;
	max-height: 8px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background-color: rgba(255, 255, 255, .28) !important;
	background-image: none !important;
	box-shadow: none !important;
	font-size: 0 !important;
	line-height: 0 !important;
	cursor: pointer;
	transition: background-color .25s ease, transform .25s ease;
}

.aw-carousel-dot.is-active {
	background-color: #d0af72 !important;
	transform: none;
}

.aw-carousel-dot:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

/* Testimonial carousel. */
.aw-testimonials {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	padding: 70px 48px;
	background: #2e2829;
	overflow: hidden;
	user-select: none;
	touch-action: pan-y;
}

.aw-testimonials__inner {
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin-inline: auto;
}

.aw-testimonials__slides {
	display: grid;
	align-items: center;
	min-height: 1px;
}

.aw-testimonials__slide {
	grid-area: 1 / 1;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--aw-testimonial-duration, 700ms) ease, visibility var(--aw-testimonial-duration, 700ms) step-end;
}

.aw-testimonials__slide.is-active {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transition: opacity var(--aw-testimonial-duration, 700ms) ease;
}

.aw-testimonials__quote {
	margin: 0;
	color: #fff;
	font-size: clamp(26px, 3vw, 42px);
	line-height: 1.34;
	text-wrap: balance;
}

.aw-testimonials__meta {
	margin-top: 28px;
	color: #e6c993;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	line-height: 1.5;
	text-transform: uppercase;
}

.aw-testimonials__source {
	color: #e6c993;
}

.aw-testimonials .aw-carousel-arrow--prev {
	left: -64px;
}

.aw-testimonials .aw-carousel-arrow--next {
	right: -64px;
}

/* Infinite programs carousel. */
.aw-programs {
	--aw-program-gap: 0px;
	position: relative;
	width: 100%;
	overflow: hidden;
}

.aw-programs__viewport {
	width: 100%;
	overflow: hidden;
	touch-action: pan-y;
	cursor: grab;
}

.aw-programs__viewport.is-dragging {
	cursor: grabbing;
}

.aw-programs__track {
	display: flex;
	align-items: stretch;
	width: max-content;
	max-width: none;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

.aw-programs__group {
	display: flex;
	align-items: stretch;
	flex: 0 0 auto;
	gap: var(--aw-program-gap);
	padding-right: var(--aw-program-gap);
}

.aw-programs__card {
	position: relative;
	display: block;
	flex: 0 0 auto;
	width: 420px;
	height: 600px;
	overflow: hidden;
	background: #584c4d;
	outline: none;
}

.aw-programs__image,
.aw-programs__image-placeholder {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	min-width: 100%;
	min-height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

.aw-programs__image-placeholder {
	background: linear-gradient(135deg, #897f89, #584c4d);
}

.aw-programs__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, transparent 45%, rgba(0, 0, 0, .62) 100%);
	pointer-events: none;
}

.aw-programs__code {
	position: absolute;
	top: 22px;
	left: 24px;
	z-index: 2;
	color: #fff;
	font-size: 11px;
	letter-spacing: .2em;
	line-height: 1.4;
	pointer-events: none;
	transition: opacity .35s ease;
}

.aw-programs__summary {
	position: absolute;
	right: 24px;
	bottom: 26px;
	left: 24px;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	transition: opacity .35s ease;
}

.aw-programs__label {
	min-width: 0;
	margin: 0;
	color: #fff;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.05;
	pointer-events: none;
}

.aw-programs__summary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: 12px 24px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .18);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	line-height: 1.2;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: color .2s ease, background-color .2s ease;
}

.aw-programs__overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	box-sizing: border-box;
	padding: 36px 34px;
	background: rgba(88, 76, 77, .78);
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
	opacity: 0;
	pointer-events: none;
	transition: opacity .45s ease;
}

.aw-programs__overlay-code {
	display: block;
	margin-bottom: 14px;
	color: #e6c993;
	font-size: 11px;
	letter-spacing: .2em;
	line-height: 1.4;
}

.aw-programs__card:hover .aw-programs__overlay,
.aw-programs__card:focus-within .aw-programs__overlay,
.aw-programs__card:focus .aw-programs__overlay,
.aw-programs__card.is-open .aw-programs__overlay {
	opacity: 1;
	pointer-events: auto;
}

.aw-programs__card:hover .aw-programs__code,
.aw-programs__card:hover .aw-programs__summary,
.aw-programs__card:focus-within .aw-programs__code,
.aw-programs__card:focus-within .aw-programs__summary,
.aw-programs__card:focus .aw-programs__code,
.aw-programs__card:focus .aw-programs__summary,
.aw-programs__card.is-open .aw-programs__code,
.aw-programs__card.is-open .aw-programs__summary {
	opacity: 0;
	pointer-events: none;
}

.aw-programs__title {
	margin: 0 0 16px;
	color: #fff;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.05;
}

.aw-programs__description {
	margin: 0 0 24px;
	color: rgba(255, 255, 255, .92);
	font-size: 14px;
	line-height: 1.65;
}

.aw-programs__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: 8px;
	background: #d0af72;
	color: #2e2829;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	line-height: 1.2;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.aw-programs a.aw-programs__summary-button,
.aw-programs a.aw-programs__summary-button:hover,
.aw-programs a.aw-programs__summary-button:focus,
.aw-programs a.aw-programs__summary-button:visited,
.aw-programs a.aw-programs__button,
.aw-programs a.aw-programs__button:hover,
.aw-programs a.aw-programs__button:focus,
.aw-programs a.aw-programs__button:visited {
	border-bottom: 0 !important;
	background-image: none !important;
	box-shadow: none !important;
	text-decoration: none !important;
	text-decoration-line: none !important;
}

.aw-programs__button:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 3px;
}

.aw-programs__summary-button:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 3px;
}

.aw-programs .aw-carousel-arrow {
	background: rgba(244, 239, 231, .82);
	color: #584c4d;
}

.aw-programs .aw-carousel-arrow--prev {
	left: 18px;
}

.aw-programs .aw-carousel-arrow--next {
	right: 18px;
}

.aw-programs .aw-carousel-dots {
	margin-block: 22px 0;
}

@media (max-width: 767px) {
	.aw-testimonials {
		padding: 54px 24px;
	}

	.aw-testimonials .aw-carousel-arrow {
		top: auto;
		bottom: -8px;
		transform: none;
	}

	.aw-testimonials .aw-carousel-arrow--prev {
		left: 0;
	}

	.aw-testimonials .aw-carousel-arrow--next {
		right: 0;
	}

	.aw-programs__overlay {
		padding: 28px 24px;
	}

	.aw-programs__summary {
		right: 20px;
		bottom: 22px;
		left: 20px;
		gap: 14px;
	}

	.aw-programs__code {
		top: 20px;
		left: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.aw-wheel__stage > img:not(.aw-wheel__pointer),
	.aw-wheel__result,
	.aw-gallery__track,
	.aw-testimonials__slide,
	.aw-programs__track,
	.aw-programs__overlay {
		animation: none !important;
		transition: none !important;
	}
}
