
:root {
	--raw-50: 255 248 241;
	--raw-100: 255 237 219;
	--raw-200: 255 200 150;
	--raw-300: 255 168 100;
	--raw-400: 230 110 20;
	--raw-500: 204 71 0;
	--raw-600: 170 59 0;
	--raw-800: 80 40 10;
	--raw-900: 50 28 12;
	--raw-950: 30 18 8;
	--raw-sage: 158 171 162;
	--raw-gold: 212 148 10;
	--raw-gold-light: 238 204 140;
	--raw-red: 197 48 48;
	--brand: var(--raw-500);
	--brand-hover: var(--raw-600);
	--brand-text: var(--raw-600);
	--surface: 255 255 255;
	--surface-alt: var(--raw-50);
	--surface-tint: var(--raw-100);
	--surface-dark: var(--raw-950);
	--surface-dark-alt: var(--raw-900);
	--surface-brand: var(--brand);
	--surface-brand-hover: var(--brand-hover);
	--text: var(--raw-800);
	--text-muted: var(--raw-500);
	--text-subtle: var(--raw-600);
	--text-on-dark: 255 255 255;
	--heading: var(--raw-950);
	--heading-on-dark: 255 255 255;
	--btn-bg: var(--brand);
	--btn-text: 255 255 255;
	--btn-bg-hover: var(--brand-hover);
	--btn-shadow: var(--brand);
	--btn-outline-border: var(--raw-900);
	--btn-outline-text: var(--raw-900);
	--btn-outline-bg-hover: var(--raw-900);
	--btn-outline-text-hover: 255 255 255;
	--btn-outline-dark-text: var(--raw-300);
	--btn-outline-dark-border: var(--raw-600);
	--btn-outline-dark-bg-hover: var(--raw-800);
	--btn-secondary-bg: var(--raw-900);
	--btn-secondary-text: 255 255 255;
	--btn-secondary-bg-hover: var(--raw-800);
	--btn-accent-bg: var(--raw-gold);
	--btn-accent-text: var(--raw-950);
	--input-bg: 255 255 255;
	--input-text: var(--raw-900);
	--input-border: var(--raw-200);
	--input-border-focus: var(--brand);
	--input-placeholder: var(--raw-500);
	--input-ring-focus: var(--brand);
	--label-text: var(--raw-800);
	--label-required: var(--brand);
	--state-error: var(--raw-red);
	--state-success: var(--raw-sage);
	--link: var(--brand-text);
	--link-hover: var(--brand-hover);
	--tag-text: var(--raw-600);
	--tag-text-on-dark: var(--raw-gold-light);
	--tag-bg: var(--brand);
	--tag-bg-accent: var(--raw-gold);
	--divider: var(--raw-100);
	--divider-strong: var(--raw-200);
	--divider-bold: var(--raw-300);
	--divider-dark: var(--raw-900);
	--card-bg: var(--surface);
	--card-border: var(--divider);
	--nav-bg: var(--raw-50);
	--nav-border: var(--raw-900);
	--overlay: var(--raw-950);
	--accent: var(--raw-gold);
	--accent-subtle: var(--raw-gold-light);
	--glow-primary: var(--brand);
	--glow-warm: var(--raw-200);
	--glow-accent: var(--raw-gold-light);
	--container-max-width: 90rem;
	--popup-heading-size: 2rem;
	--popup-spacing: 1rem;
	--popup-max-width-default: 80rem;
	--popup-max-width-sm: 480px;
	--popup-max-width-md: 640px;
	--popup-max-width-lg: 840px;
	--popup-max-width-xl: 1024px;
}

@media (min-width:425px) {
	:root {
		--popup-spacing: 1.5rem;
	}
}

@media (min-width:640px) {
	:root {
		--popup-spacing: 2rem;
	}
}

@keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

@keyframes scaleIn {
	0% {
		opacity: 0;
		transform: scale(.96);
	}
	
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale(.88);
	}
	
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideInLeft {
	0% {
		opacity: 0;
		transform: translateX(-30px);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	0% {
		opacity: 0;
		transform: translateX(30px);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.reveal {
	visibility: hidden;
}

.reveal.visible {
	visibility: visible;
	animation: fadeUp .8s cubic-bezier(.22, 1, .36, 1);
}

.reveal.reveal-fade.visible {
	animation-name: fadeIn;
}

.reveal.reveal-zoom.visible {
	animation-name: zoomIn;
}

.reveal.reveal-left.visible {
	animation-name: slideInLeft;
}

.reveal.reveal-right.visible {
	animation-name: slideInRight;
}

.reveal.reveal-cascade.visible {
	animation: none !important;
}

.reveal.reveal-cascade.visible>* {
	animation: fadeUp .5s cubic-bezier(.22, 1, .36, 1) both;
}

.reveal.reveal-cascade.visible>:first-child {
	animation-delay: .05s;
}

.reveal.reveal-cascade.visible>:nth-child(2) {
	animation-delay: .1s;
}

.reveal.reveal-cascade.visible>:nth-child(3) {
	animation-delay: .15s;
}

.reveal.reveal-cascade.visible>:nth-child(4) {
	animation-delay: .2s;
}

.reveal.reveal-cascade.visible>:nth-child(5) {
	animation-delay: .25s;
}

.reveal.reveal-cascade.visible>:nth-child(n+6) {
	animation-delay: .3s;
}

.stagger>.s-child {
	visibility: hidden;
}

.stagger.visible>.s-child {
	visibility: visible;
	animation: fadeUp .7s cubic-bezier(.22, 1, .36, 1);
	animation-fill-mode: backwards;
}

.stagger.visible>.s-child:first-child {
	animation-delay: .1s;
}

.stagger.visible>.s-child:nth-child(2) {
	animation-delay: .2s;
}

.stagger.visible>.s-child:nth-child(3) {
	animation-delay: .3s;
}

.stagger.visible>.s-child:nth-child(4) {
	animation-delay: .4s;
}

.stagger.visible>.s-child:nth-child(5) {
	animation-delay: .5s;
}

.stagger.visible>.s-child:nth-child(6) {
	animation-delay: .6s;
}

.cascade .c-item {
	visibility: hidden;
}

.cascade.visible .c-item {
	visibility: visible;
	animation: fadeUp .7s cubic-bezier(.22, 1, .36, 1);
	animation-fill-mode: backwards;
	animation-delay: calc(.15s + var(--i, 0) * .12s);
}

.re-animate>* {
	animation: fadeUp .5s cubic-bezier(.22, 1, .36, 1) both;
}

.re-animate>:first-child {
	animation-delay: .05s;
}

.re-animate>:nth-child(2) {
	animation-delay: .1s;
}

.re-animate>:nth-child(3) {
	animation-delay: .15s;
}

.re-animate>:nth-child(4) {
	animation-delay: .2s;
}

.re-animate>:nth-child(5) {
	animation-delay: .25s;
}

.re-animate>:nth-child(n+6) {
	animation-delay: .3s;
}

.img-hover img {
	transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}

.img-hover:hover img {
	transform: scale(1.04);
}

.portfolio-item .overlay {
	opacity: 0;
	transition: opacity .35s ease;
}

.portfolio-item:hover .overlay {
	opacity: 1;
}

.bg-glow-primary {
	background: radial-gradient(ellipse at 30% 50%, rgb(var(--glow-primary)), transparent 60%);
}

.bg-glow-warm {
	background: radial-gradient(ellipse at 70% 40%, rgb(var(--glow-warm)) 0, transparent 50%);
}

.bg-glow-dual {
	background: radial-gradient(ellipse at 20% 50%, rgb(var(--glow-primary)), transparent 60%), radial-gradient(ellipse at 80% 50%, rgb(var(--glow-accent)), transparent 60%);
}

.nav-scrolled {
	backdrop-filter: blur(8px);
}

.container-main {
	width: 100%;
	max-width: var(--container-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

@media (min-width:1024px) {
	.container-main {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}

.container-main .container-main {
	padding: 0;
}

section:first-child {
	padding-top: 0;
}

.content-area {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

@media (max-width:767px) {
	.content-area {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
}

* {
	scrollbar-width: thin;
}

::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {}

.search-meta {
	display: inline-block;
	font-family: Poppins, sans-serif;
	font-size: .8125rem;
	font-weight: 400;
	color: rgb(var(--text-muted));
	background: rgb(var(--surface));
	padding: .375rem .75rem;
	border-radius: 2rem;
}

.pagination {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.pagination .nav-links {
	display: inline-flex;
	gap: .25rem;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	font-size: .8125rem;
	font-weight: 500;
	border-radius: .375rem;
	color: rgb(var(--text));
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}

.pagination .page-numbers:hover {
	background: rgb(var(--surface-alt));
	color: rgb(var(--brand));
}

.pagination .page-numbers.current {
	background: rgb(var(--brand));
	color: #fff;
	font-weight: 700;
}

.pagination .page-numbers.dots {
	pointer-events: none;
}

.pagination .next.page-numbers, .pagination .prev.page-numbers {
	width: auto;
	padding: 0 .75rem;
	font-family: Quicksand, sans-serif;
	font-weight: 700;
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 9998;
	backdrop-filter: blur(0);
	opacity: 0;
	pointer-events: none;
	transition: background .35s ease, backdrop-filter .35s ease, opacity .35s ease;
}

.popup-overlay.active {
	backdrop-filter: blur(4px);
	opacity: 1;
	pointer-events: auto;
}

.popup {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--popup-spacing);
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease;
}

.popup.active {
	opacity: 1;
	pointer-events: auto;
}

.popup.popup-behind {
	opacity: 0;
	pointer-events: none;
}

.popup.popup-behind .popup-panel {
	transform: translateY(0) scale(.92);
}

.popup-panel {
	position: relative;
	width: 100%;
	max-width: var(--popup-max-width-default);
	max-height: 85vh;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0 var(--popup-spacing) var(--popup-spacing);
	background: rgb(var(--surface-alt));
	border-radius: .75rem;
	transform: translateY(20px) scale(.97);
	transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.popup.active .popup-panel {
	transform: translateY(0) scale(1);
}

.popup-header {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	flex-wrap: wrap-reverse;
	align-items: flex-start;
	gap: .5rem;
	padding-top: var(--popup-spacing);
	padding-bottom: calc(var(--popup-spacing) / 2);
	background: rgb(var(--surface-alt));
}

.popup-header>:first-child {
	flex: 1 1 0;
	min-width: -moz-min-content;
	min-width: min-content;
	overflow-wrap: normal;
	align-self: center;
}

.popup-header .popup-close {
	position: static;
	flex-shrink: 0;
	margin-left: auto;
	align-self: start;
}

.popup-body {
	padding-top: calc(var(--popup-spacing) / 2);
}

.popup-body>* {
	min-width: 0;
	overflow-wrap: break-word;
}

.popup-close {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	z-index: 10;
	width: 1.5rem;
	height: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: rgb(var(--text));
	transition: background .2s ease, color .2s ease;
	cursor: pointer;
	border: none;
}

.popup-close:hover {
	color: rgb(var(--heading));
}

@media (min-width:425px) {
	.popup-close {
		width: 2.5rem;
		height: 2.5rem;
	}
}

.heading-popup {
	font-size: 15px;
}

@media (min-width:375px) {
	.heading-popup {
		font-size: 1rem;
	}
}

@media (min-width:425px) {
	.heading-popup {
		font-size: 1.125rem;
	}
}

@media (min-width:640px) {
	.popup-panel:not(.popup-sm) .heading-popup {
		font-size: 1.5rem;
	}
}

@media (min-width:768px) {
	.popup-panel:not(.popup-sm,.popup-md) .heading-popup {
		font-size: var(--popup-heading-size);
	}
}

.popup-panel.popup-sm {
	max-width: var(--popup-max-width-sm);
}

.popup-panel.popup-md {
	max-width: var(--popup-max-width-md);
}

.popup-panel.popup-lg {
	max-width: var(--popup-max-width-lg);
}

.popup-panel.popup-xl {
	max-width: var(--popup-max-width-xl);
}

.popup[data-popup-level="1"] {
	z-index: 10001;
}

.popup[data-popup-level="1"]~.popup-overlay[data-popup-level="1"] {
	z-index: 10000;
}

.popup[data-popup-level="2"] {
	z-index: 10003;
}

.popup[data-popup-level="2"]~.popup-overlay[data-popup-level="2"] {
	z-index: 10002;
}

.popup[data-popup-level="3"] {
	z-index: 10005;
}

.popup[data-popup-level="3"]~.popup-overlay[data-popup-level="3"] {
	z-index: 10004;
}

body.popup-open {
	overflow: hidden;
}

@media (prefers-reduced-motion:reduce) {
	.popup, .popup-close, .popup-overlay, .popup-panel {
		transition: none;
	}
	
	.popup-panel, .popup.popup-behind .popup-panel {
		transform: none;
	}
}

.prose, .standard-editor {
	overflow-wrap: break-word;
	word-break: break-word;
	font-family: Poppins, sans-serif;
}

.standard-editor {
	max-width: 980px;
}

.standard-editor>* {
	animation: fadeUp .7s cubic-bezier(.22, 1, .36, 1) backwards;
}

.standard-editor>:first-child {
	animation-delay: .1s;
}

.standard-editor>:nth-child(2) {
	animation-delay: .18s;
}

.standard-editor>:nth-child(3) {
	animation-delay: .26s;
}

.standard-editor>:nth-child(4) {
	animation-delay: .34s;
}

.standard-editor>:nth-child(5) {
	animation-delay: .42s;
}

.standard-editor>:nth-child(n+6) {
	animation-delay: .5s;
}

.prose time, .standard-editor time {
	display: inline-block;
	font-size: .8125rem;
	color: rgb(var(--text-muted));
	font-weight: 400;
	margin-bottom: 2rem;
}

.prose h2, .standard-editor h2 {
	font-size: 1.5rem;
	line-height: 1.25;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	padding-bottom: .5rem;
}

.prose h2, .prose h3, .standard-editor h2, .standard-editor h3 {
	font-family: Quicksand, sans-serif;
	font-weight: 700;
	color: rgb(var(--heading));
}

.prose h3, .standard-editor h3 {
	font-size: 1.1875rem;
	line-height: 1.3;
	margin-top: 2rem;
	margin-bottom: .75rem;
}

.prose p, .standard-editor p {
	font-size: .9375rem;
	font-weight: 300;
	line-height: 1.8;
	color: rgb(var(--text));
	margin-bottom: 1.25rem;
}

.prose a, .standard-editor a {
	color: rgb(var(--brand-text));
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color .2s;
}

.prose a:hover, .standard-editor a:hover {
	color: rgb(var(--brand-hover));
}

.prose a strong, .standard-editor a strong {
	color: inherit;
}

.prose strong, .standard-editor strong {
	font-weight: 700;
	color: rgb(var(--heading));
}

.prose ul, .standard-editor ul {
	margin: 0 0 1.5rem;
	padding-left: 0;
	list-style: none;
}

.prose ul li, .standard-editor ul li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: .2rem;
	font-size: .9375rem;
	font-weight: 300;
	line-height: 1.7;
	color: rgb(var(--text));
}

.prose ul li p, .standard-editor ul li p {
	margin-bottom: 0;
}

.prose ul li:before, .standard-editor ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: .6em;
	width: .375rem;
	height: .375rem;
	background: rgb(var(--brand));
	border-radius: 50%;
}

.prose ol, .standard-editor ol {
	margin: 0 0 1.5rem;
	padding-left: 0;
	list-style: none;
	counter-reset: prose-ol;
}

.prose ol li, .standard-editor ol li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: .2rem;
	font-size: .9375rem;
	font-weight: 300;
	line-height: 1.7;
	color: rgb(var(--text));
	counter-increment: prose-ol;
}

.prose ol li p, .standard-editor ol li p {
	margin-bottom: 0;
}

.prose ol li:before, .standard-editor ol li:before {
	content: counter(prose-ol) ".";
	position: absolute;
	left: 0;
	font-size: .9375rem;
	font-weight: 700;
	color: rgb(var(--brand));
}

.prose-heading {
	font-family: Quicksand, sans-serif;
	font-weight: 700;
	color: rgb(var(--heading));
	line-height: 1.25;
	margin-top: 2rem;
	margin-bottom: .75rem;
	font-size: 1.5rem;
}

h2.prose-heading {
	font-size: 2.25rem;
}

h3.prose-heading {
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	padding-bottom: .5rem;
}

h4.prose-heading, h5.prose-heading, h6.prose-heading {
	font-size: 1.1875rem;
	line-height: 1.3;
}

@media (max-width:767px) {
	h2.prose-heading {
		font-size: 1.75rem;
	}
}

.prose blockquote, .standard-editor blockquote {
	margin: 1.5rem 0;
	padding: .5rem .75rem;
	font-size: .8125rem;
	font-weight: 500;
	color: rgb(var(--brand-text));
	background: #fef9e7;
	border-left: 3px solid rgb(var(--brand));
	border-radius: .25rem;
}

.prose blockquote p, .standard-editor blockquote p {
	margin-bottom: 0;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}

.prose blockquote strong, .standard-editor blockquote strong {
	color: inherit;
}

.prose hr, .standard-editor hr {
	border: none;
	border-top: 1px solid rgb(var(--divider-strong));
	margin: 2.5rem 0;
}

.prose table, .standard-editor table {
	width: 100%;
	border-collapse: collapse;
	font-size: .8125rem;
	font-weight: 300;
	line-height: 1.6;
	color: rgb(var(--text));
	margin-bottom: 1.5rem;
}

.prose table thead, .standard-editor table thead {
	background: rgb(var(--surface-dark));
	color: rgb(var(--text-on-dark));
}

.prose table th, .standard-editor table th {
	font-family: Quicksand, sans-serif;
	font-weight: 700;
	font-size: .8125rem;
	text-align: left;
	padding: .75rem 1rem;
}

.prose table td, .standard-editor table td {
	padding: .75rem 1rem;
	border-bottom: 1px solid rgb(var(--divider));
	vertical-align: top;
}

.prose table tbody tr:last-child td, .standard-editor table tbody tr:last-child td {
	border-bottom: none;
}

.prose table tbody tr:nth-child(2n), .standard-editor table tbody tr:nth-child(2n) {
	background: rgb(var(--surface-alt));
}

.prose table tbody tr:hover, .standard-editor table tbody tr:hover {
	background: rgb(var(--surface-tint));
}

@media (max-width:767px) {
	.prose table, .standard-editor table {
		display: block;
		width: 100% !important;
	}
	
	.prose table td, .prose table th, .standard-editor table td, .standard-editor table th {
		width: auto !important;
	}
	
	.prose table thead, .standard-editor table thead {
		display: none;
	}
	
	.prose table tbody, .standard-editor table tbody {
		display: block;
	}
	
	.prose table tr, .standard-editor table tr {
		display: block;
		margin-bottom: 1rem;
		border: 1px solid rgb(var(--divider));
		border-radius: .5rem;
		overflow: hidden;
	}
	
	.prose table td, .standard-editor table td {
		display: block;
		border-bottom: 1px solid rgb(var(--divider));
		padding: .625rem 1rem;
		overflow-wrap: break-word;
		word-break: break-word;
	}
	
	.prose table td:first-child, .standard-editor table td:first-child {
		font-weight: 700;
		color: rgb(var(--heading));
		background: rgb(var(--surface-alt));
	}
	
	.prose table tr:last-child td:last-child, .standard-editor table tr:last-child td:last-child {
		border-bottom: none;
	}
	
	.prose table tbody tr:nth-child(2n), .standard-editor table tbody tr:nth-child(2n) {
		background: none;
	}
}

.form-input, .form-select, .form-textarea {
	width: 100%;
	padding: .875rem 1rem;
	font-family: Poppins, sans-serif;
	font-size: .875rem;
	font-weight: 300;
	color: rgb(var(--input-text));
	background: rgb(var(--input-bg));
	border: 1px solid rgb(var(--input-border));
	border-radius: .5rem;
	outline: none;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
	font-weight: 300;
}

.form-input::placeholder, .form-textarea::placeholder {
	font-weight: 300;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	border-color: rgb(var(--input-border-focus));
}

.form-textarea {
	min-height: 140px;
	resize: vertical;
}

.form-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'none\' stroke=\'%23cc4700\' stroke-width=\'2\' viewBox=\'0 0 24 24\'%3E%3Cpath stroke-linecap=\'round\' stroke-linejoin=\'round\' d=\'m19 9-7 7-7-7\'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right .875rem center;
	background-size: 1.25rem;
	padding-right: 2.75rem;
}

.custom-select {
	position: relative;
	width: 100%;
}

.custom-select .form-select {
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	overflow: hidden;
	white-space: nowrap;
	pointer-events: none;
}

.custom-select-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: .875rem 2.75rem .875rem 1rem;
	font-family: Poppins, sans-serif;
	font-size: .875rem;
	font-weight: 300;
	color: rgb(var(--input-text));
	background: rgb(var(--input-bg));
	border: 1px solid rgb(var(--input-border));
	border-radius: .5rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	position: relative;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.custom-select-trigger:after {
	content: "";
	position: absolute;
	right: .875rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1.25rem;
	height: 1.25rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'none\' stroke=\'%23cc4700\' stroke-width=\'2\' viewBox=\'0 0 24 24\'%3E%3Cpath stroke-linecap=\'round\' stroke-linejoin=\'round\' d=\'m19 9-7 7-7-7\'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	transition: transform .25s ease;
}

.custom-select.open .custom-select-trigger:after {
	transform: translateY(-50%) rotate(180deg);
}

.custom-select-trigger.is-placeholder {
	color: rgb(var(--input-placeholder));
}

.custom-select-trigger:focus, .custom-select.open .custom-select-trigger {
	border-color: rgb(var(--input-border-focus));
	outline: none;
}

.custom-select-dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	max-height: 240px;
	overflow-y: auto;
	background: rgb(var(--surface-alt));
	border: 1px solid rgb(var(--input-border));
	border-radius: .5rem;
	box-shadow: 0 8px 24px -4px rgba(0, 0, 0, .1);
	z-index: 50;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.custom-select.open .custom-select-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.custom-select-option {
	padding: .625rem 1rem;
	font-family: Poppins, sans-serif;
	font-size: .875rem;
	font-weight: 300;
	color: rgb(var(--input-text));
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
}

.custom-select-option:first-child {
	border-radius: .5rem .5rem 0 0;
}

.custom-select-option:last-child {
	border-radius: 0 0 .5rem .5rem;
}

.form-select.nitro-lazy {
	background-image: none !important;
}

.custom-select-option.is-focused, .custom-select-option:hover {
	background: rgb(var(--surface-tint));
}

.custom-select-option.is-selected {
	background: rgb(var(--brand));
	color: #fff;
	font-weight: 400;
}

.custom-select-option.is-selected.is-focused, .custom-select-option.is-selected:hover {
	background: rgb(var(--brand-hover));
}

.custom-select .custom-select-trigger.has-error {
	border-color: rgb(var(--state-error));
}

.custom-select .custom-select-trigger.has-success {
	border-color: rgb(var(--state-success));
}

.custom-select-dropdown::-webkit-scrollbar {
	width: 6px;
}

.custom-select-dropdown::-webkit-scrollbar-track {
	background: transparent;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
	background: rgb(var(--divider-strong));
	border-radius: 3px;
}

.form-checkbox, .form-radio {
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	width: 1.375rem;
	height: 1.375rem;
	border: 1.5px solid rgb(var(--input-border));
	background: #fff;
	cursor: pointer;
	flex-shrink: 0;
	position: relative;
	transition: border-color .3s cubic-bezier(.22, 1, .36, 1), background .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s cubic-bezier(.22, 1, .36, 1), transform .3s cubic-bezier(.22, 1, .36, 1);
}

.form-checkbox {
	border-radius: .3125rem;
}

.form-radio {
	border-radius: 50%;
}

.form-checkbox:hover, .form-radio:hover {
	border-color: rgb(var(--input-placeholder));
}

.form-checkbox:focus-visible, .form-radio:focus-visible {
	outline: none;
	border-color: rgb(var(--input-border-focus));
}

.form-checkbox:checked, .form-radio:checked {
	background: rgb(var(--brand));
	border-color: rgb(var(--brand));
	animation: checkBlobIn .4s cubic-bezier(.34, 1.56, .64, 1);
}

.form-checkbox:checked:hover, .form-radio:checked:hover {
	background: rgb(var(--brand-hover));
	border-color: rgb(var(--brand-hover));
}

.form-checkbox:after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'none\' stroke=\'%23fff\' stroke-linecap=\'round\' stroke-linejoin=\'round\' stroke-width=\'3\' viewBox=\'0 0 24 24\'%3E%3Cpath d=\'m6 12.5 4 4 8-9\'/%3E%3C/svg%3E");
	background-size: 75%;
	background-position: 50%;
	background-repeat: no-repeat;
	opacity: 0;
	transform: scale(.5);
	transition: opacity .2s ease, transform .25s cubic-bezier(.34, 1.56, .64, 1);
}

.form-checkbox:checked:after {
	opacity: 1;
	transform: scale(1);
	transition-delay: .05s;
}

.form-radio:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: .5rem;
	height: .5rem;
	border-radius: 50%;
	background: #fff;
	transform: translate(-50%, -50%) scale(0);
	transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.form-radio:checked:after {
	transform: translate(-50%, -50%) scale(1);
}

@keyframes checkBlobIn {
	0% {
		transform: scale(1);
	}
	
	30% {
		transform: scale(.85);
	}
	
	60% {
		transform: scale(1.1);
	}
	
	to {
		transform: scale(1);
	}
}

.form-label {
	display: block;
	font-family: Poppins, sans-serif;
	font-size: .875rem;
	font-weight: 500;
	color: rgb(var(--label-text));
	margin-bottom: .5rem;
}

.form-label-required:after {
	content: " *";
	color: rgb(var(--label-required));
}

.form-hint {
	font-family: Poppins, sans-serif;
	font-size: .75rem;
	font-weight: 300;
	color: rgb(var(--text-subtle));
	margin-top: .375rem;
}

.form-input.has-error, .form-select.has-error, .form-textarea.has-error {
	border-color: rgb(var(--state-error));
}

.form-error {
	font-family: Poppins, sans-serif;
	font-size: .75rem;
	font-weight: 400;
	color: rgb(var(--state-error));
	margin-top: .375rem;
	display: none;
}

.form-error.visible {
	display: block;
}

.form-input.has-success, .form-select.has-success, .form-textarea.has-success {
	border-color: rgb(var(--state-success));
}

.form-file-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: 1rem;
	font-family: Poppins, sans-serif;
	font-size: .875rem;
	font-weight: 400;
	color: rgb(var(--brand));
	border: 2px dashed rgb(var(--input-border));
	border-radius: .5rem;
	cursor: pointer;
	transition: all .25s ease;
}

.form-file-label:hover {
	border-color: rgb(var(--brand));
}

.form-range {
	width: 100%;
	height: 4px;
	background: rgb(var(--input-border));
	border-radius: 2px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
}

.form-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgb(var(--brand));
	border: 3px solid rgb(var(--surface-alt));
	box-shadow: 0 1px 4px rgba(0, 0, 0, .15);
	cursor: pointer;
	-webkit-transition: transform .2s ease;
	transition: transform .2s ease;
}

.form-range::-webkit-slider-thumb:hover {
	transform: scale(1.15);
}

.form-range::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgb(var(--brand));
	border: 3px solid rgb(var(--surface-alt));
	box-shadow: 0 1px 4px rgba(0, 0, 0, .15);
	cursor: pointer;
}

.form-toggle {
	position: relative;
	width: 3rem;
	height: 1.625rem;
	background: rgb(var(--input-border));
	border-radius: 999px;
	cursor: pointer;
	transition: background .3s ease;
	flex-shrink: 0;
}

.form-toggle:after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 1.25rem;
	height: 1.25rem;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
	transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.form-toggle.active {
	background: rgb(var(--brand));
}

.form-toggle.active:after {
	transform: translateX(1.375rem);
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s;
}

.lightbox.active {
	opacity: 1;
	visibility: visible;
}

.lightbox-img {
	max-width: 90vw;
	max-height: 85vh;
	-o-object-fit: contain;
	object-fit: contain;
	border-radius: .25rem;
	opacity: 0;
	transform: scale(.96);
	transition: opacity .2s ease, transform .2s ease;
}

.lightbox.active .lightbox-img {
	opacity: 1;
	transform: scale(1);
}

.lightbox-close {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	opacity: .7;
	transition: opacity .2s ease;
	background: none;
	border: none;
}

.lightbox-close:hover {
	opacity: 1;
}

.lightbox-next, .lightbox-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: 1.5px solid hsla(0, 0%, 100%, .3);
	background: hsla(0, 0%, 100%, .05);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: .7;
	transition: opacity .2s ease, background .2s ease, border-color .2s ease;
}

.lightbox-next:hover, .lightbox-prev:hover {
	opacity: 1;
	background: hsla(0, 0%, 100%, .1);
	border-color: hsla(0, 0%, 100%, .5);
}

.lightbox-prev {
	left: 1.25rem;
}

.lightbox-next {
	right: 1.25rem;
}

.lightbox-caption {
	position: absolute;
	bottom: 3.5rem;
	left: 50%;
	transform: translateX(-50%);
	color: hsla(0, 0%, 100%, .9);
	font-family: Quicksand, sans-serif;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
}

.lightbox-caption:empty {
	display: none;
}

.lightbox-counter {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	color: hsla(0, 0%, 100%, .6);
	font-size: .875rem;
	font-weight: 300;
	letter-spacing: .1em;
}

.video-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s;
}

.video-overlay.active {
	opacity: 1;
	visibility: visible;
}

.video-overlay-content {
	width: 90vw;
	max-width: 1200px;
	aspect-ratio: 16/9;
}

.video-overlay-player {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: .5rem;
	overflow: hidden;
	background: #000;
}

.video-overlay-player iframe, .video-overlay-player video {
	width: 100%;
	height: 100%;
	display: block;
}

.video-overlay-close {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	opacity: .7;
	transition: opacity .2s ease;
	background: none;
	border: none;
}

.video-overlay-close:hover {
	opacity: 1;
}

.video-overlay-playpause {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1;
}

*, :after, :before {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-scroll-snap-strictness: proximity;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgba(59, 130, 246, .5);
	--tw-ring-offset-shadow: 0 0 rgba(0, 0, 0, 0);
	--tw-ring-shadow: 0 0 rgba(0, 0, 0, 0);
	--tw-shadow: 0 0 rgba(0, 0, 0, 0);
	--tw-shadow-colored: 0 0 rgba(0, 0, 0, 0);
}

::backdrop {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-scroll-snap-strictness: proximity;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgba(59, 130, 246, .5);
	--tw-ring-offset-shadow: 0 0 rgba(0, 0, 0, 0);
	--tw-ring-shadow: 0 0 rgba(0, 0, 0, 0);
	--tw-shadow: 0 0 rgba(0, 0, 0, 0);
	--tw-shadow-colored: 0 0 rgba(0, 0, 0, 0);
}

/*! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com*/
*, :after, :before {
	box-sizing: border-box;
	border: 0 solid #e5e7eb;
}

:after, :before {
	--tw-content: "";
}

:host, html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
	font-feature-settings: normal;
	font-variation-settings: normal;
	-webkit-tap-highlight-color: transparent;
}

body {
	margin: 0;
	line-height: inherit;
}

hr {
	height: 0;
	color: inherit;
	border-top-width: 1px;
}

abbr:where([title]) {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: inherit;
}

a {
	color: inherit;
	text-decoration: inherit;
}

b, strong {
	font-weight: bolder;
}

code, kbd, pre, samp {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
	font-feature-settings: normal;
	font-variation-settings: normal;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse;
}

button, input, optgroup, select, textarea {
	font-family: inherit;
	font-feature-settings: inherit;
	font-variation-settings: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
}

button, select {
	text-transform: none;
}

button, input:where([type=button]), input:where([type=reset]), input:where([type=submit]) {
	-webkit-appearance: button;
	background-color: transparent;
	background-image: none;
}

button.nitro-lazy, input:where([type=button]).nitro-lazy, input:where([type=reset]).nitro-lazy, input:where([type=submit]).nitro-lazy {
	background-image: none !important;
}

:-moz-focusring {
	outline: auto;
}

:-moz-ui-invalid {
	box-shadow: none;
}

progress {
	vertical-align: baseline;
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
	height: auto;
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

summary {
	display: list-item;
}

blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
	margin: 0;
}

fieldset {
	margin: 0;
}

fieldset, legend {
	padding: 0;
}

menu, ol, ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

dialog {
	padding: 0;
}

textarea {
	resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
	opacity: 1;
	color: #9ca3af;
}

input::placeholder, textarea::placeholder {
	opacity: 1;
	color: #9ca3af;
}

[role=button], button {
	cursor: pointer;
}

:disabled {
	cursor: default;
}

audio, canvas, embed, iframe, img, object, svg, video {
	display: block;
	vertical-align: middle;
}

img, video {
	max-width: 100%;
	height: auto;
}

[hidden]:where(:not([hidden=until-found])) {
	display: none;
}

.container {
	width: 100%;
}

@media (min-width:375px) {
	.container {
		max-width: 375px;
	}
}

@media (min-width:425px) {
	.container {
		max-width: 425px;
	}
}

@media (min-width:640px) {
	.container {
		max-width: 640px;
	}
}

@media (min-width:768px) {
	.container {
		max-width: 768px;
	}
}

@media (min-width:1024px) {
	.container {
		max-width: 1024px;
	}
}

@media (min-width:1280px) {
	.container {
		max-width: 1280px;
	}
}

@media (min-width:1536px) {
	.container {
		max-width: 1536px;
	}
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: 1rem 2.5rem;
	font-family: Poppins, sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	border-radius: .5rem;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all .3s cubic-bezier(.22, 1, .36, 1);
	text-decoration: none;
}

.btn-sm {
	padding: .875rem 2rem;
	font-size: .875rem;
}

.btn-primary {
	background: rgb(var(--btn-bg));
	color: rgb(var(--btn-text));
	border-color: rgb(var(--btn-bg));
}

.btn-primary:hover {
	background: rgb(var(--btn-bg-hover));
	border-color: rgb(var(--btn-bg-hover));
}

.heading-xl {
	font-family: Quicksand, sans-serif;
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 700;
	line-height: 1.2;
}

@media (min-width:640px) {
	.heading-xl {
		font-size: 2.25rem;
		line-height: 2.5rem;
		line-height: 1.2;
	}
}

@media (min-width:768px) {
	.heading-xl {
		font-size: 3rem;
		line-height: 1.2;
	}
}

@media (min-width:1024px) {
	.heading-xl {
		font-size: 2.75rem;
		line-height: 1.2;
	}
}

.heading-xl {
	color: rgb(var(--heading));
}

.heading-lg {
	font-family: Quicksand, sans-serif;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
	line-height: 1.2;
}

@media (min-width:640px) {
	.heading-lg {
		font-size: 1.875rem;
		line-height: 2.25rem;
		line-height: 1.2;
	}
}

@media (min-width:768px) {
	.heading-lg {
		font-size: 2.25rem;
		line-height: 2.5rem;
		line-height: 1.2;
	}
}

@media (min-width:1024px) {
	.heading-lg {
		font-size: 3rem;
		line-height: 1.2;
	}
}

.heading-lg {
	color: rgb(var(--heading));
}

.heading-sm {
	font-family: Quicksand, sans-serif;
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	line-height: 1.2;
}

@media (min-width:640px) {
	.heading-sm {
		font-size: 1.5rem;
		line-height: 2rem;
		line-height: 1.2;
	}
}

@media (min-width:768px) {
	.heading-sm {
		font-size: 1.875rem;
		line-height: 2.25rem;
		line-height: 1.2;
	}
}

.heading-sm {
	color: rgb(var(--heading));
}

.heading-xs {
	font-family: Quicksand, sans-serif;
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	line-height: 1.2;
}

@media (min-width:640px) {
	.heading-xs {
		font-size: 1.5rem;
		line-height: 2rem;
		line-height: 1.2;
	}
}

.heading-popup, .heading-xs {
	color: rgb(var(--heading));
}

.heading-popup {
	font-family: Quicksand, sans-serif;
	font-weight: 700;
	line-height: 1.2;
}

.tag {
	display: inline-block;
	font-family: Poppins, sans-serif;
	font-size: .75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: rgb(var(--tag-text));
}

.pointer-events-none {
	pointer-events: none;
}

.visible {
	visibility: visible;
}

.collapse {
	visibility: collapse;
}

.static {
	position: static;
}

.fixed {
	position: fixed;
}

.absolute {
	position: absolute;
}

.relative {
	position: relative;
}

.sticky {
	position: sticky;
}

.inset-0 {
	inset: 0;
}

.left-1\/2 {
	left: 50%;
}

.top-1\/2 {
	top: 50%;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.my-10 {
	margin-top: 2.5rem;
	margin-bottom: 2.5rem;
}

.my-12 {
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.mb-10 {
	margin-bottom: 2.5rem;
}

.mb-14 {
	margin-bottom: 3.5rem;
}

.mb-16 {
	margin-bottom: 4rem;
}

.mb-2 {
	margin-bottom: .5rem;
}

.mb-24 {
	margin-bottom: 6rem;
}

.mb-3 {
	margin-bottom: .75rem;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-5 {
	margin-bottom: 1.25rem;
}

.mb-6 {
	margin-bottom: 1.5rem;
}

.mb-8 {
	margin-bottom: 2rem;
}

.ml-1 {
	margin-left: .25rem;
}

.mt-12 {
	margin-top: 3rem;
}

.mt-2 {
	margin-top: .5rem;
}

.mt-3 {
	margin-top: .75rem;
}

.line-clamp-2 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.\!block {
	display: block !important;
}

.block {
	display: block;
}

.inline {
	display: inline;
}

.flex {
	display: flex;
}

.table {
	display: table;
}

.grid {
	display: grid;
}

.hidden {
	display: none;
}

.aspect-\[3\/2\] {
	aspect-ratio: 3/2;
}

.aspect-square {
	aspect-ratio: 1/1;
}

.aspect-video {
	aspect-ratio: 16/9;
}

.h-16 {
	height: 4rem;
}

.h-5 {
	height: 1.25rem;
}

.h-7 {
	height: 1.75rem;
}

.h-auto {
	height: auto;
}

.h-full {
	height: 100%;
}

.h-px {
	height: 1px;
}

.min-h-screen {
	min-height: 100vh;
}

.w-16 {
	width: 4rem;
}

.w-5 {
	width: 1.25rem;
}

.w-7 {
	width: 1.75rem;
}

.w-8 {
	width: 2rem;
}

.w-auto {
	width: auto;
}

.w-full {
	width: 100%;
}

.max-w-2xl {
	max-width: 42rem;
}

.max-w-3xl {
	max-width: 48rem;
}

.max-w-4xl {
	max-width: 56rem;
}

.max-w-\[80\%\] {
	max-width: 80%;
}

.max-w-\[980px\] {
	max-width: 980px;
}

.max-w-full {
	max-width: 100%;
}

.max-w-md {
	max-width: 28rem;
}

.flex-shrink {
	flex-shrink: 1;
}

.flex-shrink-0 {
	flex-shrink: 0;
}

.flex-grow {
	flex-grow: 1;
}

.-translate-x-1\/2 {
	--tw-translate-x: -50%;
}

.-translate-x-1\/2, .-translate-y-1\/2 {
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
	--tw-translate-y: -50%;
}

.transform {
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-pointer {
	cursor: pointer;
}

.resize {
	resize: both;
}

.columns-1 {
	-moz-columns: 1;
	column-count: 1;
}

.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.flex-col {
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

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

.items-start {
	align-items: flex-start;
}

.items-center {
	align-items: center;
}

.justify-center {
	justify-content: center;
}

.gap-10 {
	gap: 2.5rem;
}

.gap-12 {
	gap: 3rem;
}

.gap-16 {
	gap: 4rem;
}

.gap-3 {
	gap: .75rem;
}

.gap-4 {
	gap: 1rem;
}

.gap-6 {
	gap: 1.5rem;
}

.gap-8 {
	gap: 2rem;
}

.space-y-6>:not([hidden])~:not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(1.5rem * ( 1 - var(--tw-space-y-reverse) ));
	margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.space-y-7>:not([hidden])~:not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(1.75rem * ( 1 - var(--tw-space-y-reverse) ));
	margin-bottom: calc(1.75rem * var(--tw-space-y-reverse));
}

.space-y-8>:not([hidden])~:not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(2rem * ( 1 - var(--tw-space-y-reverse) ));
	margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.overflow-hidden {
	overflow: hidden;
}

.rounded-full {
	border-radius: 9999px;
}

.rounded-lg {
	border-radius: .5rem;
}

.border {
	border-width: 1px;
}

.bg-accent-400 {
	background-color: rgb(var(--raw-gold));
}

.bg-primary-50 {
	background-color: rgb(var(--raw-50));
}

.bg-primary-950\/0 {}

.bg-primary-950\/20 {}

.bg-white {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}

.object-cover {
	-o-object-fit: cover;
	object-fit: cover;
}

.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.py-28 {
	padding-top: 7rem;
	padding-bottom: 7rem;
}

.pt-8 {
	padding-top: 2rem;
}

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

.font-body {
	font-family: Poppins, sans-serif;
}

.font-display {
	font-family: Quicksand, sans-serif;
}

.text-base {
	font-size: 1rem;
	line-height: 1.5rem;
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.text-sm {
	font-size: .875rem;
	line-height: 1.25rem;
}

.text-xs {
	font-size: .75rem;
	line-height: 1rem;
}

.font-bold {
	font-weight: 700;
}

.font-light {
	font-weight: 300;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.uppercase {
	text-transform: uppercase;
}

.italic {
	font-style: italic;
}

.leading-relaxed {
	line-height: 1.625;
}

.leading-tight {
	line-height: 1.25;
}

.tracking-\[0\.25em\] {
	letter-spacing: .25em;
}

.tracking-\[0\.2em\] {
	letter-spacing: .2em;
}

.tracking-wider {
	letter-spacing: .05em;
}

.text-brand {
	color: rgb(var(--brand-text));
}

.text-brand-light {
	color: rgb(var(--brand));
}

.text-primary-800 {
	color: rgb(var(--raw-800));
}

.text-primary-900 {
	color: rgb(var(--raw-900));
}

.text-primary-950 {
	--tw-text-opacity: 1;
}

.text-white {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}

.underline {
	text-decoration-line: underline;
}

.opacity-\[0\.03\] {
	opacity: .03;
}

.shadow-2xl {
	--tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
	--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.outline {
	outline-style: solid;
}

.ring {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0, 0, 0, 0));
}

.drop-shadow {
	--tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, .1)) drop-shadow(0 1px 1px rgba(0, 0, 0, .06));
}

.drop-shadow, .filter {
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
}

.transition-colors {
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
}

.transition-transform {
	transition-property: transform;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
}

.duration-500 {
	transition-duration: .5s;
}

.duration-700 {
	transition-duration: .7s;
}

.ease-in-out {
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

[tabindex]:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
	outline: none;
}

body, html {
	overflow-x: clip;
}

.group:hover .group-hover\:scale-105 {
	--tw-scale-x: 1.05;
	--tw-scale-y: 1.05;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:bg-primary-950\/30 {}

.group:hover .group-hover\:text-brand {
	color: rgb(var(--brand-text));
}

@media (min-width:640px) {
	.sm\:columns-2 {
		-moz-columns: 2;
		column-count: 2;
	}
	
	.sm\:columns-3 {
		-moz-columns: 3;
		column-count: 3;
	}
	
	.sm\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width:768px) {
	.md\:my-24 {
		margin-top: 6rem;
		margin-bottom: 6rem;
	}
	
	.md\:my-36 {
		margin-top: 9rem;
		margin-bottom: 9rem;
	}
	
	.md\:mb-10 {
		margin-bottom: 2.5rem;
	}
	
	.md\:mb-14 {
		margin-bottom: 3.5rem;
	}
	
	.md\:mb-20 {
		margin-bottom: 5rem;
	}
	
	.md\:mb-32 {
		margin-bottom: 8rem;
	}
	
	.md\:flex {
		display: flex;
	}
	
	.md\:max-w-\[60\%\] {
		max-width: 60%;
	}
	
	.md\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.md\:flex-row {
		flex-direction: row;
	}
	
	.md\:items-end {
		align-items: flex-end;
	}
	
	.md\:justify-center {
		justify-content: center;
	}
	
	.md\:justify-between {
		justify-content: space-between;
	}
	
	.md\:gap-6 {
		gap: 1.5rem;
	}
	
	.md\:py-24 {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
	
	.md\:py-36 {
		padding-top: 9rem;
		padding-bottom: 9rem;
	}
	
	.md\:pt-16 {
		padding-top: 4rem;
	}
	
	.md\:text-xl {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
}

@media (min-width:1024px) {
	.lg\:mb-20 {
		margin-bottom: 5rem;
	}
	
	.lg\:mb-40 {
		margin-bottom: 10rem;
	}
	
	.lg\:flex {
		display: flex;
	}
	
	.lg\:h-20 {
		height: 5rem;
	}
	
	.lg\:h-8 {
		height: 2rem;
	}
	
	.lg\:w-20 {
		width: 5rem;
	}
	
	.lg\:w-8 {
		width: 2rem;
	}
	
	.lg\:max-w-3xl {
		max-width: 48rem;
	}
	
	.lg\:max-w-4xl {
		max-width: 56rem;
	}
	
	.lg\:max-w-none {
		max-width: none;
	}
	
	.lg\:columns-3 {
		-moz-columns: 3;
		column-count: 3;
	}
	
	.lg\:columns-4 {
		-moz-columns: 4;
		column-count: 4;
	}
	
	.lg\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.lg\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	
	.lg\:grid-cols-\[2fr_3fr\] {
		grid-template-columns: 2fr 3fr;
	}
	
	.lg\:justify-end {
		justify-content: flex-end;
	}
	
	.lg\:gap-16 {
		gap: 4rem;
	}
	
	.lg\:gap-24 {
		gap: 6rem;
	}
	
	.lg\:py-44 {
		padding-top: 11rem;
		padding-bottom: 11rem;
	}
	
	.lg\:\!text-5xl {
		font-size: 3rem !important;
		line-height: 1 !important;
	}
	
	.lg\:text-2xl {
		font-size: 1.5rem;
		line-height: 2rem;
	}
}

@media (min-width:1280px) {
	.xl\:columns-4 {
		-moz-columns: 4;
		column-count: 4;
	}
}
