/* Este arquivo serve para inserirmos css global afim de evitar 
edições no arquivo base.css */

/* =============================
   Cursor Customizado com GSAP
   ============================= */
* {
	outline: none;
}

/* Ocultar cursor padrão */
body,
html,
a,
button,
[role="button"],
input[type="submit"],
input[type="button"] {
	cursor: none !important;
}
/* Cursor customizado - avião animado */
.cursor-airplane {
	position: fixed;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	pointer-events: none;
	z-index: 99999;
	mix-blend-mode: difference;
	transition: mix-blend-mode 0.3s ease;
}

.cursor-airplane svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* Cores do cursor baseadas no tema */
.cursor-airplane {
	color: #0ea5e9;
}

.dark .cursor-airplane {
	color: #ffffff;
}

html,
body,
#root {
	height: 100%;
}

html,
body {
	color: var(--text);
}

.glass-header {
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: 0 12px 32px -26px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.18);
	overflow: hidden;
	isolation: isolate;
}

.glass-header::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.03) 46%, rgba(255, 255, 255, 0.14));
	opacity: 0.75;
	z-index: -1;
}

/* Header azul somente em /categorias/ (primeiro nivel) */
body.is-categorias-root #masthead .site-title > a,
body.is-categorias-root #masthead .site-description,
body.is-categorias-root #masthead .nav-link,
body.is-categorias-root #masthead #mobile-menu-toggle {
	color: #0ea5e9 !important;
}

body.is-categorias-root #masthead .site-title svg,
body.is-categorias-root #masthead .site-title svg g,
body.is-categorias-root #masthead .nav-link svg {
	fill: #0ea5e9 !important;
	stroke: #0ea5e9 !important;
}

body.is-categorias-root #masthead .nav-link:hover,
body.is-categorias-root #masthead .current-menu-item > a,
body.is-categorias-root #masthead .current-menu-parent > a {
	color: #1d4ed8 !important;
	font-weight: 600;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
	.glass-header {
		background: rgba(17, 24, 39, 0.72) !important;
	}
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	appearance: textfield;
	-moz-appearance: textfield;
}

@keyframes pulse-skeleton {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.pulse-skeleton {
	animation: pulse-skeleton 1.2s linear infinite alternate;
}

@keyframes blink {
	0%,
	100% {
		background-color: transparent;
	}
	50% {
		background-color: rgba(255, 0, 0, 0.1);
	}
}

.animate-blink {
	animation: blink 1s ease-in-out infinite;
}
[type="text"]:focus,
[type="email"]:focus,
[type="url"]:focus,
[type="password"]:focus,
[type="number"]:focus,
[type="date"]:focus,
[type="datetime-local"]:focus,
[type="month"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="time"]:focus,
[type="week"]:focus,
[multiple]:focus,
textarea:focus,
select:focus {
	outline: 0px !important;
	outline-offset: 0px !important;
	box-shadow: var(--input) !important;
}

.montserrat-font {
	font-family: "Montserrat", sans-serif !important;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin-slow 5s linear infinite;
}

.text-outline-blue {
	color: transparent;
	-webkit-text-stroke: 1px #2563EB;
	text-stroke: 1px #2563EB;
}


.hero-v-container {
	position: absolute;
	inset: auto 0 0;
	height: 100px;
	pointer-events: none;
}

.hero-v-shape {
	position: absolute;
	width: 100%;
	height: 100px;
}

.hero-planet {
	position: absolute;
	left: 50%;
	bottom: 96px;
	transform: translate(-50%, var(--hero-fall, 0px));
	color: #000;
	filter: drop-shadow(0 10px 20px rgba(15, 23, 42, 0.35));
	transition: transform 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
	.hero-planet {
		transition: none;
	}
}

.scroll-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal[data-reveal="left"] {
	transform: translateX(-28px);
}

.scroll-reveal[data-reveal="right"] {
	transform: translateX(28px);
}

.scroll-reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.map-reveal {
	position: relative;
}

.map-reveal__inner {
	transform-origin: 50% 40%;
	will-change: transform, opacity, filter;
}

/* .stats-section-bg::before,
.stats-section-bg::after {
	content: '';
	position: absolute;
	inset: -20% -10%;
	z-index: 0;
	background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.18), rgba(255, 255, 255, 0) 45%),
		radial-gradient(circle at 80% 30%, rgba(56, 189, 248, 0.2), rgba(255, 255, 255, 0) 40%),
		radial-gradient(circle at 30% 80%, rgba(14, 165, 233, 0.18), rgba(255, 255, 255, 0) 45%),
		radial-gradient(circle at 75% 75%, rgba(125, 211, 252, 0.22), rgba(255, 255, 255, 0) 50%);
	filter: blur(10px);
	opacity: 0.8;
	pointer-events: none;
	transform: translateZ(0);
	animation: stats-bg-drift 18s ease-in-out infinite alternate;
} */

.stats-section-bg > * {
	position: relative;
	z-index: 1;
}

/* .stats-section-bg::after {
	animation-duration: 26s;
	opacity: 0.6;
	mix-blend-mode: screen;
} */

@keyframes stats-bg-drift {
	0% {
		transform: translate3d(-2%, -1%, 0) scale(1);
	}
	50% {
		transform: translate3d(2%, 1%, 0) scale(1.05);
	}
	100% {
		transform: translate3d(-1%, 2%, 0) scale(1.02);
	}
}

.stats-bubbles {
	position: relative;
	min-height: 540px;
	width: 100%;
	z-index: 2;
}

@keyframes bubble-drift-a {
	0% {
		transform: translate(-50%, -50%) translate3d(0, 0, 0) rotate(0deg);
	}
	33% {
		transform: translate(-50%, -50%) translate3d(var(--drift-x1, 6vw), var(--drift-y1, -5vh), 0) rotate(1deg);
	}
	66% {
		transform: translate(-50%, -50%) translate3d(var(--drift-x2, -6vw), var(--drift-y2, 6vh), 0) rotate(-1deg);
	}
	100% {
		transform: translate(-50%, -50%) translate3d(var(--drift-x3, 4vw), var(--drift-y3, 3vh), 0) rotate(0deg);
	}
}

@keyframes bubble-drift-b {
	0% {
		transform: translate(-50%, -50%) translate3d(0, 0, 0) rotate(0deg);
	}
	30% {
		transform: translate(-50%, -50%) translate3d(var(--drift-x1, -7vw), var(--drift-y1, -4vh), 0) rotate(-1deg);
	}
	70% {
		transform: translate(-50%, -50%) translate3d(var(--drift-x2, 8vw), var(--drift-y2, 4vh), 0) rotate(1deg);
	}
	100% {
		transform: translate(-50%, -50%) translate3d(var(--drift-x3, -3vw), var(--drift-y3, 6vh), 0) rotate(0deg);
	}
}

@keyframes bubble-drift-c {
	0% {
		transform: translate(-50%, -50%) translate3d(0, 0, 0) rotate(0deg);
	}
	25% {
		transform: translate(-50%, -50%) translate3d(var(--drift-x1, 8vw), var(--drift-y1, 2vh), 0) rotate(1deg);
	}
	60% {
		transform: translate(-50%, -50%) translate3d(var(--drift-x2, -5vw), var(--drift-y2, -6vh), 0) rotate(-1deg);
	}
	100% {
		transform: translate(-50%, -50%) translate3d(var(--drift-x3, 2vw), var(--drift-y3, -3vh), 0) rotate(0deg);
	}
}

@keyframes bubble-drift-d {
	0% {
		transform: translate(-50%, -50%) translate3d(0, 0, 0) rotate(0deg);
	}
	28% {
		transform: translate(-50%, -50%) translate3d(var(--drift-x1, -8vw), var(--drift-y1, 3vh), 0) rotate(-1deg);
	}
	58% {
		transform: translate(-50%, -50%) translate3d(var(--drift-x2, 5vw), var(--drift-y2, -6vh), 0) rotate(1deg);
	}
	100% {
		transform: translate(-50%, -50%) translate3d(var(--drift-x3, -4vw), var(--drift-y3, 4vh), 0) rotate(0deg);
	}
}

.stat-orb {
	position: absolute;
	left: var(--bubble-x, 50%);
	top: var(--bubble-y, 50%);
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 9rem;
	height: 9rem;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(99, 102, 241, 0.08) 55%, rgba(59, 130, 246, 0.05) 75%, rgba(255, 255, 255, 0.15));
	box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.5),
		0 0 24px rgba(125, 211, 252, 0.35),
		0 0 60px rgba(59, 130, 246, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(6px);
	will-change: transform;
	user-select: none;
	cursor: grab;
	animation: bubble-drift-a 18s ease-in-out infinite;
	z-index: 2;
}

.stats-bubbles--gsap .stat-orb {
	animation: none;
}

.stats-static .stats-bubbles {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	min-height: auto;
	align-items: center;
	justify-content: center;
}

.stats-static .stat-orb {
	position: relative;
	left: auto;
	top: auto;
	transform: none;
	animation: none;
}

.stats-bubbles > .stat-orb:nth-child(1) {
	--bubble-x: 18%;
	--bubble-y: 28%;
	--drift-x1: clamp(-80px, -8vw, -50px);
	--drift-y1: clamp(-70px, -7vh, -45px);
	--drift-x2: clamp(70px, 7vw, 110px);
	--drift-y2: clamp(60px, 6vh, 90px);
	--drift-x3: clamp(-50px, -5vw, -20px);
	--drift-y3: clamp(40px, 4vh, 70px);
	animation-name: bubble-drift-b;
	animation-duration: 20s;
}

.stats-bubbles > .stat-orb:nth-child(2) {
	--bubble-x: 46%;
	--bubble-y: 18%;
	--drift-x1: clamp(80px, 8vw, 120px);
	--drift-y1: clamp(-60px, -6vh, -40px);
	--drift-x2: clamp(-70px, -7vw, -40px);
	--drift-y2: clamp(70px, 7vh, 100px);
	--drift-x3: clamp(50px, 5vw, 90px);
	--drift-y3: clamp(-40px, -4vh, -20px);
	animation-name: bubble-drift-c;
	animation-duration: 22s;
	animation-delay: -2s;
}

.stats-bubbles > .stat-orb:nth-child(3) {
	--bubble-x: 76%;
	--bubble-y: 30%;
	--drift-x1: clamp(-70px, -7vw, -40px);
	--drift-y1: clamp(50px, 5vh, 80px);
	--drift-x2: clamp(60px, 6vw, 100px);
	--drift-y2: clamp(-60px, -6vh, -30px);
	--drift-x3: clamp(-40px, -4vw, -10px);
	--drift-y3: clamp(50px, 5vh, 90px);
	animation-name: bubble-drift-d;
	animation-duration: 19s;
}

.stats-bubbles > .stat-orb:nth-child(4) {
	--bubble-x: 26%;
	--bubble-y: 58%;
	--drift-x1: clamp(60px, 6vw, 100px);
	--drift-y1: clamp(60px, 6vh, 90px);
	--drift-x2: clamp(-80px, -8vw, -50px);
	--drift-y2: clamp(-50px, -5vh, -30px);
	--drift-x3: clamp(70px, 7vw, 110px);
	--drift-y3: clamp(-40px, -4vh, -10px);
	animation-name: bubble-drift-c;
	animation-duration: 23s;
	animation-delay: -4s;
}

.stats-bubbles > .stat-orb:nth-child(5) {
	--bubble-x: 55%;
	--bubble-y: 52%;
	--drift-x1: clamp(-60px, -6vw, -30px);
	--drift-y1: clamp(-80px, -8vh, -50px);
	--drift-x2: clamp(80px, 8vw, 120px);
	--drift-y2: clamp(40px, 4vh, 70px);
	--drift-x3: clamp(-40px, -4vw, -10px);
	--drift-y3: clamp(60px, 6vh, 90px);
	animation-name: bubble-drift-b;
	animation-duration: 21s;
}

.stats-bubbles > .stat-orb:nth-child(6) {
	--bubble-x: 84%;
	--bubble-y: 58%;
	--drift-x1: clamp(-90px, -9vw, -60px);
	--drift-y1: clamp(40px, 4vh, 80px);
	--drift-x2: clamp(70px, 7vw, 110px);
	--drift-y2: clamp(-70px, -7vh, -40px);
	--drift-x3: clamp(-50px, -5vw, -20px);
	--drift-y3: clamp(50px, 5vh, 90px);
	animation-name: bubble-drift-d;
	animation-duration: 24s;
	animation-delay: -3s;
}

.stats-bubbles > .stat-orb:nth-child(7) {
	--bubble-x: 14%;
	--bubble-y: 78%;
	--drift-x1: clamp(70px, 7vw, 110px);
	--drift-y1: clamp(-50px, -5vh, -30px);
	--drift-x2: clamp(-60px, -6vw, -30px);
	--drift-y2: clamp(70px, 7vh, 100px);
	--drift-x3: clamp(40px, 4vw, 70px);
	--drift-y3: clamp(-60px, -6vh, -20px);
	animation-name: bubble-drift-a;
	animation-duration: 20.5s;
}

.stats-bubbles > .stat-orb:nth-child(8) {
	--bubble-x: 40%;
	--bubble-y: 78%;
	--drift-x1: clamp(-70px, -7vw, -40px);
	--drift-y1: clamp(60px, 6vh, 90px);
	--drift-x2: clamp(80px, 8vw, 120px);
	--drift-y2: clamp(-40px, -4vh, -10px);
	--drift-x3: clamp(-50px, -5vw, -20px);
	--drift-y3: clamp(50px, 5vh, 80px);
	animation-name: bubble-drift-b;
	animation-duration: 22.5s;
	animation-delay: -5s;
}

.stats-bubbles > .stat-orb:nth-child(9) {
	--bubble-x: 70%;
	--bubble-y: 76%;
	--drift-x1: clamp(60px, 6vw, 100px);
	--drift-y1: clamp(-70px, -7vh, -40px);
	--drift-x2: clamp(-80px, -8vw, -50px);
	--drift-y2: clamp(60px, 6vh, 90px);
	--drift-x3: clamp(50px, 5vw, 80px);
	--drift-y3: clamp(-40px, -4vh, -10px);
	animation-name: bubble-drift-c;
	animation-duration: 21.5s;
}

.stats-bubbles > .stat-orb:nth-child(10) {
	--bubble-x: 90%;
	--bubble-y: 82%;
	--drift-x1: clamp(-80px, -8vw, -50px);
	--drift-y1: clamp(-60px, -6vh, -30px);
	--drift-x2: clamp(70px, 7vw, 110px);
	--drift-y2: clamp(70px, 7vh, 100px);
	--drift-x3: clamp(-50px, -5vw, -20px);
	--drift-y3: clamp(50px, 5vh, 80px);
	animation-name: bubble-drift-d;
	animation-duration: 23.5s;
	animation-delay: -6s;
}

.stats-bubbles > .stat-orb:nth-child(11) {
	--bubble-x: 30%;
	--bubble-y: 40%;
	--drift-x1: clamp(60px, 6vw, 90px);
	--drift-y1: clamp(-70px, -7vh, -40px);
	--drift-x2: clamp(-70px, -7vw, -40px);
	--drift-y2: clamp(60px, 6vh, 90px);
	--drift-x3: clamp(40px, 4vw, 70px);
	--drift-y3: clamp(-50px, -5vh, -20px);
	animation-name: bubble-drift-b;
	animation-duration: 20s;
}

.stats-bubbles > .stat-orb:nth-child(12) {
	--bubble-x: 62%;
	--bubble-y: 36%;
	--drift-x1: clamp(-60px, -6vw, -30px);
	--drift-y1: clamp(50px, 5vh, 80px);
	--drift-x2: clamp(80px, 8vw, 120px);
	--drift-y2: clamp(-60px, -6vh, -30px);
	--drift-x3: clamp(-40px, -4vw, -10px);
	--drift-y3: clamp(60px, 6vh, 90px);
	animation-name: bubble-drift-c;
	animation-duration: 24s;
	animation-delay: -1s;
}

.stat-orb--stat {
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(125, 211, 252, 0.12) 55%, rgba(59, 130, 246, 0.08) 75%, rgba(255, 255, 255, 0.2));
	box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.5),
		0 0 28px rgba(14, 165, 233, 0.45),
		0 0 70px rgba(56, 189, 248, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.stat-orb--xs {
	width: 3.75rem;
	height: 3.75rem;
}

.stat-orb--xxs {
	width: 2.75rem;
	height: 2.75rem;
}

.stat-orb--sm {
	width: 5.25rem;
	height: 5.25rem;
}

.stat-orb--md {
	width: 6.75rem;
	height: 6.75rem;
}

.stat-orb--lg {
	width: 8.75rem;
	height: 8.75rem;
}

.stat-orb--xl {
	width: 11rem;
	height: 11rem;
}

.stat-orb--image {
	background-size: cover;
	background-position: center;
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: 0 18px 40px -26px rgba(15, 23, 42, 0.55),
		0 0 22px rgba(125, 211, 252, 0.35),
		0 0 55px rgba(59, 130, 246, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.stat-orb--image::after {
	content: '';
	position: absolute;
	inset: 8px;
	border-radius: inherit;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 55%);
	mix-blend-mode: screen;
}

.stat-orb:active {
	cursor: grabbing;
}

[data-section-overlay] {
	position: relative;
	z-index: 1;
	transform-origin: center top;
	will-change: transform, filter, opacity;
}

[data-section-overlay-target] {
	position: relative;
	z-index: 2;
	will-change: transform;
}

.fade::before {
	content: '';
	position: absolute;
	top: -20px;
	left: 0;
	z-index: 10;
	right: 0;
	height: 140px;
	background: linear-gradient(to top, rgba(255, 255, 255, 1), transparent)
}


.destinos-reveal {
	position: relative;
	background: #ffffff;
	min-height: 130vh;
}

.destinos-reveal__dot {
	position: absolute;
	left: 50%;
	top: var(--destinos-center-y, 50%);
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: #38bdf8;
	box-shadow: 0 0 0 10px rgba(56, 189, 248, 0.18), 0 0 30px rgba(56, 189, 248, 0.65);
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 3;
}

.destinos-reveal__content {
	width: 100%;
	background: #80d5fe;
	clip-path: circle(var(--destinos-radius, 0px) at 50% var(--destinos-center-y, 50%));
	will-change: clip-path;
}

@media (prefers-reduced-motion: reduce) {
	.destinos-reveal__content {
		clip-path: none;
	}

	.destinos-reveal__dot {
		display: none;
	}
}

.featured-swiper {
	position: relative;
	padding-bottom: 2.5rem;
}

.featured-swiper .swiper-wrapper {
	align-items: stretch;
}

.featured-swiper .swiper-slide {
	height: auto;
}

.featured-slide--text {
	padding: 2.5rem 2.75rem;
	border-radius: 1.5rem;
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 18px 40px -30px rgba(15, 23, 42, 0.35);
}

.featured-swiper__pagination .swiper-pagination-bullet {
	background: rgba(15, 23, 42, 0.35);
	opacity: 1;
}

.featured-swiper__pagination .swiper-pagination-bullet-active {
	background: rgba(15, 23, 42, 0.75);
}

.featured-swiper__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.9));
	box-shadow: 0 16px 30px -22px rgba(15, 23, 42, 0.55), 0 2px 8px rgba(15, 23, 42, 0.08);
	color: #0f172a;
	font-size: 30px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(8px);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.featured-swiper__nav--prev {
	left: 10px;
}

.featured-swiper__nav--next {
	right: 10px;
}

.featured-swiper__nav--prev ,
.featured-swiper__nav--next {
	width: 35px !important;
	height: 35px !important;
}

.featured-swiper__nav:hover {
	transform: translateY(-50%) scale(1.04);
	box-shadow: 0 20px 36px -24px rgba(15, 23, 42, 0.6), 0 3px 10px rgba(15, 23, 42, 0.12);
	background: linear-gradient(145deg, #ffffff, rgba(226, 232, 240, 0.95));
	border-color: rgba(15, 23, 42, 0.2);
}

.atlas-city-filter-panel {
	overflow: hidden;
	backdrop-filter: blur(8px);
}

.atlas-city-filter-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.atlas-city-filter-trigger:focus-visible,
.atlas-city-filter-search:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.75);
}

.atlas-city-filter-search::placeholder {
	color: rgba(255, 255, 255, 0.78);
}

.atlas-city-filter-options {
	list-style: none;
	margin: 0;
	padding: 6px;
}

.atlas-city-filter-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	margin-bottom: 4px;
	border-radius: 8px;
	color: #ffffff;
	cursor: pointer;
	transition: transform 0.15s ease, filter 0.15s ease;
}

.atlas-city-filter-option:hover {
	transform: translateY(-1px);
	filter: brightness(1.1);
}

.atlas-city-filter-option.is-active {
	outline: 1px solid rgba(255, 255, 255, 0.85);
}

.atlas-city-filter-option-empty {
	cursor: default;
	background: rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.9);
}

.atlas-city-filter-flag {
	font-size: 16px;
	line-height: 1;
}

.atlas-city-filter-text {
	font-size: 13px;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.featured-swiper__nav:active {
	transform: translateY(-50%) scale(0.98);
}

.featured-swiper__nav:focus-visible {
	outline: 2px solid rgba(56, 189, 248, 0.8);
	outline-offset: 2px;
}

.featured-swiper__nav::after {
	content: none;
}

.featured-swiper__nav::before {
	content: none;
}

.featured-swiper__icon {
	width: 22px;
	height: 22px;
}

.featured-slide__flag {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

.featured-slide__post-count {
	transform: scale(0.8);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.featured-slide:hover .featured-slide__post-count {
	transform: scale(1);
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
	display: none !important;
}

@media (max-width: 768px) {
	.featured-swiper__nav {
		display: none;
	}
}

@media (max-width: 767px) {
	.stats-bubbles {
		min-height: auto;
		display: flex;
		flex-wrap: wrap;
		gap: 16px;
		justify-content: center;
		align-items: center;
		padding: 1.5rem 0;
	}

	.stats-bubbles .stat-orb {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
		animation: none;
	}

	.stats-bubbles .stat-orb--xl  { width: 5.5rem;  height: 5.5rem;  }
	.stats-bubbles .stat-orb--lg  { width: 4.75rem; height: 4.75rem; }
	.stats-bubbles .stat-orb--md  { width: 4rem;    height: 4rem;    }
	.stats-bubbles .stat-orb--sm  { width: 3.25rem; height: 3.25rem; }
	.stats-bubbles .stat-orb--xs  { width: 2.75rem; height: 2.75rem; }
	.stats-bubbles .stat-orb--xxs { width: 2.25rem; height: 2.25rem; }
}

/* .hero-overlay-target::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 140px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 75%);
	pointer-events: none;
	transform: translateY(-100%);
} */

@media (prefers-reduced-motion: reduce) {
	.scroll-reveal,
	.scroll-reveal[data-reveal="left"],
	.scroll-reveal[data-reveal="right"] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Categories Grid Effect */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
	perspective: 1000px;
}

@media (min-width: 768px) {
	.categories-grid {
		grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
		gap: 2rem;
	}
}

@media (min-width: 1024px) {
	.categories-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 360px;
	border-radius: 1rem;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	transform-style: preserve-3d;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.category-card__image-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.category-card__image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	will-change: transform;
}

.category-card:hover .category-card__image {
	transform: scale(1.08);
}

.category-card__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
	transition: all 0.4s ease;
	z-index: 2;
}

.category-card:hover .category-card__overlay {
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.category-card__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	color: white;
	z-index: 3;
	transform: translateY(0);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	transform-origin: bottom;
}

.category-card__title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
	line-height: 1.2;
}

.category-card:hover .category-card__title {
	font-size: 1.75rem;
	letter-spacing: 0.08em;
}

.category-card__description {
	font-size: 0.875rem;
	line-height: 1.4;
	opacity: 0;
	margin: 0 0 1rem 0;
	transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	color: rgba(255, 255, 255, 0.9);
	max-height: 2.8rem;
	overflow: hidden;
}

.category-card:hover .category-card__description {
	opacity: 1;
}

.category-card__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.category-card:hover .category-card__meta {
	opacity: 1;
	transform: translateY(0);
}

.category-card__count {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.8);
}

.category-card__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	font-size: 1.25rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.category-card:hover .category-card__arrow {
	background: rgba(255, 255, 255, 0.4);
	transform: translateX(4px);
	border-color: rgba(255, 255, 255, 0.6);
}

@media (prefers-reduced-motion: reduce) {
	.category-card,
	.category-card__image,
	.category-card__overlay,
	.category-card__content,
	.category-card__description,
	.category-card__meta,
	.category-card__arrow {
		transition: none;
		animation: none;
	}
}

/* Carousel Background Effect */
.carousel-background-section {
	position: relative;
	width: 100%;
	min-height: 500px;
	overflow: hidden;
	border-radius: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-background-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.carousel-background-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 1;
	transition: opacity 0.4s ease;
}

.carousel-background-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0.3;
	z-index: 1;
	pointer-events: none;
}

.carousel-background-content {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.carousel-track {
	display: flex;
	gap: 1.5rem;
	overflow: hidden;
	width: 100%;
	max-width: 1200px;
	padding: 2rem 0;
	scroll-behavior: smooth;
}

.carousel-slide {
	flex: 0 0 auto;
	aspect-ratio: 16 / 10;
	width: 280px;
	border-radius: 1rem;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	opacity: 0.7;
	border: 3px solid transparent;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.carousel-slide.active {
	opacity: 1;
	border-color: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transform: scale(1.05);
}

.carousel-slide:hover {
	opacity: 0.9;
	transform: scale(1.02);
}

.carousel-nav {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.carousel-nav-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid rgba(255, 255, 255, 0.5);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #333;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-nav-btn:hover {
	background: white;
	border-color: white;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.carousel-nav-btn:active {
	transform: scale(0.95);
}

.carousel-indicators {
	position: absolute;
	bottom: 8rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}

.carousel-indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.carousel-indicator.active {
	background: white;
	width: 24px;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
	.carousel-background-section {
		min-height: 400px;
	}

	.carousel-slide {
		width: 220px;
	}

	.carousel-track {
		gap: 1rem;
		padding: 1.5rem 0;
	}

	.carousel-nav-btn {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.carousel-background-img,
	.carousel-background-overlay,
	.carousel-slide,
	.carousel-slide.active {
		transition: none;
		animation: none;
	}
}



.dots-container {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.dots-container > * {
	position: relative;
	z-index: 1;
}

.dots-container .py-24 {
	z-index: 2;
}

.dots-container .dots {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.dots-container .dots-blob {
	position: absolute;
	width: 350px;
	height: 350px;
	border-radius: 54% 46% 42% 58%/60% 58% 42% 40%;
	background-image: linear-gradient(45deg, #0ea5e9, #0185c2);
	opacity: 0.9;
	filter: blur(0.2px);
	will-change: transform, border-radius;
}

.dots-container .dots-blob--a {
	top: 0%;
	right: -10%;
}

.dots-container .dots-blob--b {
	bottom: 0%;
	left: -15%;
}

.dots-container .dots .dots-dot {
	position: absolute;
	border-radius: 38% 62% 55% 45%/32% 53% 47% 68%;
	background-image: linear-gradient(45deg, #0ea5e9, #0185c2);
	will-change: transform, border-radius;
	animation: float-dot 6s ease-in-out infinite;
}
.dots-container .dots .dots-dot:nth-of-type(1) {
  top: 10%;
  left: calc(100% - 360px);
  width: 75px;
  height: 75px;
  animation: float-dot-1 8s ease-in-out infinite;
}
.dots-container .dots .dots-dot:nth-of-type(2) {
  top: 15px;
  left: 180px;
  width: 50px;
  height: 50px;
  border-radius: 38% 62% 33% 67%/60% 53% 47% 40%;
  transform: rotate(90deg);
  animation: float-dot-2 7s ease-in-out infinite;
}
.dots-container .dots .dots-dot:nth-of-type(3) {
  right: 180px;
  bottom: 20px;
  width: 80px;
  height: 80px;
  border-radius: 38% 62% 55% 45%/52% 53% 47% 48%;
  animation: float-dot-3 9s ease-in-out infinite;
}
.dots-container .dots .dots-dot:nth-of-type(4) {
  bottom: 50px;
  left: 240px;
  width: 20px;
  height: 20px;
  border-radius: 38% 62% 55% 45%/52% 53% 47% 48%;
  animation: float-dot-4 6.5s ease-in-out infinite;
}
.dots-container .dots .dots-dot:nth-of-type(5) {
  right: 280px;
  bottom: 80px;
  width: 25px;
  height: 25px;
  border-radius: 38% 62% 55% 45%/52% 53% 47% 48%;
  animation: float-dot-5 7.5s ease-in-out infinite;
}
.dots-container .dots .dots-dot:nth-of-type(6) {
  top: 6%;
  left: calc(100% - 400px);
  width: 25px;
  height: 25px;
  animation: float-dot-6 8.5s ease-in-out infinite;
}

@media (max-width: 767px) {
	.dots-container .dots-blob {
		width: 120px;
		height: 120px;
	}

	.dots-container .dots .dots-dot:nth-of-type(1) {
		left: calc(100% - 120px);
	}
	.dots-container .dots .dots-dot:nth-of-type(2) {
		left: 20%;
	}
	.dots-container .dots .dots-dot:nth-of-type(3) {
		right: 20%;
	}
	.dots-container .dots .dots-dot:nth-of-type(4) {
		left: 50%;
	}
	.dots-container .dots .dots-dot:nth-of-type(5) {
		right: 10%;
	}
	.dots-container .dots .dots-dot:nth-of-type(6) {
		left: 5%;
	}
}

@keyframes vawe {
  20% {
    border-radius: 45% 55% 62% 38%/53% 51% 49% 47%;
  }
  40% {
    border-radius: 45% 55% 49% 51%/36% 51% 49% 64%;
  }
  60% {
    border-radius: 60% 40% 57% 43%/47% 62% 38% 53%;
  }
  80% {
    border-radius: 60% 40% 32% 68%/38% 36% 64% 62%;
  }
}

/* Float animations for dots */
@keyframes float-dot-1 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-15px) translateX(8px);
  }
  50% {
    transform: translateY(-25px) translateX(0px);
  }
  75% {
    transform: translateY(-10px) translateX(-8px);
  }
}

@keyframes float-dot-2 {
  0%, 100% {
    transform: rotate(90deg) translateY(0px) translateX(0px);
  }
  25% {
    transform: rotate(90deg) translateY(8px) translateX(-12px);
  }
  50% {
    transform: rotate(90deg) translateY(20px) translateX(0px);
  }
  75% {
    transform: rotate(90deg) translateY(10px) translateX(12px);
  }
}

@keyframes float-dot-3 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  30% {
    transform: translateY(-12px) translateX(-10px);
  }
  60% {
    transform: translateY(-20px) translateX(5px);
  }
}

@keyframes float-dot-4 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  20% {
    transform: translateY(-10px) translateX(6px);
  }
  40% {
    transform: translateY(-18px) translateX(0px);
  }
  60% {
    transform: translateY(-8px) translateX(-6px);
  }
  80% {
    transform: translateY(0px) translateX(0px);
  }
}

@keyframes float-dot-5 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-14px) translateX(-7px);
  }
  50% {
    transform: translateY(-22px) translateX(0px);
  }
  75% {
    transform: translateY(-12px) translateX(7px);
  }
}

@keyframes float-dot-6 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-16px) translateX(9px);
  }
  66% {
    transform: translateY(-24px) translateX(-4px);
  }
}


/* Categories Showcase Section - NEW Layout */
.categories-showcase {
	background: #0b0d1a;
	display: flex;
	align-items: stretch;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.categories-showcase__wrapper {
	width: 100%;
	height: auto;
	min-height: 100vh;
	grid-template-columns: 1fr minmax(280px, 38%);
	position: relative;
	z-index: 2;
}

.categories-showcase__slider-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	padding: 4rem 2.5rem;
	background: #0f1224;
	min-height: 100vh;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	order: 2;
}

.categories-showcase__content-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	min-height: 100vh;
	order: 1;
}

.categories-showcase__bg-wrapper {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.categories-showcase__bg {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1200&q=80');
	background-attachment: fixed;
}

.categoriesSwiper {
	width: 100%;
	padding: 1rem 0 2rem;
	height: 70vh;
	max-height: 720px;
}

.categories-showcase__bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.3), transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(245, 87, 108, 0.2), transparent 50%);
	pointer-events: none;
}

.categories-showcase__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(10, 14, 39, 0.7) 0%, rgba(26, 31, 58, 0.5) 100%);
	z-index: 1;
}

.categories-showcase__content {
	position: relative;
	z-index: 2;
	padding: 4.5rem;
	max-width: 680px;
	width: 100%;
	margin-left: 0;
}

.categories-showcase__content-inner {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
	align-items: flex-start;
}

.categories-showcase__title {
	font-size: clamp(2.6rem, 4vw, 4.2rem);
	font-weight: 700;
	color: white;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	min-height: 4.5rem;
}

.categories-showcase__description {
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	max-width: 560px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	min-height: 3.6rem;
}

.categories-showcase__button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
	width: fit-content;
	border: 2px solid transparent;
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(19, 23, 44, 0.4);
}


.categories-showcase__button:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 45px rgba(102, 126, 234, 0.55);
	background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.categories-showcase__button:active {
	transform: translateY(-1px);
}

.categories-showcase__button-text {
	display: block;
}

.categories-showcase__button-arrow {
	display: inline-block;
	font-size: 1.3rem;
	transition: transform 0.3s ease;
}

.categories-showcase__button:hover .categories-showcase__button-arrow {
	transform: translateX(6px);
}

/* New Category Card Showcase Style */

.category-card-showcase {
	width: 100%;
	height: 120px;
	border-radius: 0.9rem;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	background: #141833;
	border: none;
	cursor: pointer;
	padding: 0;
	position: relative;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
	text-align: left;
}

.category-card-showcase:hover {
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
	transform: translateY(-2px);
}

.swiper-slide-active .category-card-showcase {
	box-shadow: 0 20px 50px rgba(102, 126, 234, 0.45);
	border: 2px solid rgba(102, 126, 234, 0.8);
	transform: translateY(-4px);
}

.category-card-showcase__image-wrapper {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.category-card-showcase__image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-card-showcase:hover .category-card-showcase__image {
	transform: scale(1.08);
}

.category-card-showcase__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(9, 12, 28, 0.4) 0%, rgba(9, 12, 28, 0.75) 100%);
	z-index: 2;
	transition: all 0.3s ease;
}

.category-card-showcase:hover .category-card-showcase__overlay {
	background: linear-gradient(135deg, rgba(9, 12, 28, 0.55) 0%, rgba(9, 12, 28, 0.85) 100%);
}

.category-card-showcase__content {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	padding: 1.25rem;
	z-index: 3;
}

.category-card-showcase__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: white;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.categories-showcase .swiper-slide {
	height: auto;
}

/* Swiper Custom Navigation */
.categories-slider__prev,

.categories-slider__next {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(255, 255, 255, 0.5);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	color: #333;
	z-index: 20;
	backdrop-filter: blur(10px);
	top: 50% !important;
	bottom: auto !important;
	transform: translateY(-50%);
}

.categories-slider__prev {
	left: -60px !important;
	right: auto !important;
}

.categories-slider__next {
	right: -60px !important;
	left: auto !important;
}

.categories-slider__prev:hover,
.categories-slider__next:hover {
	background: white;
	border-color: white;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
	transform: translateY(-50%) scale(1.08);
}

.categories-slider__prev::after,
.categories-slider__next::after {
	font-size: 18px;
	font-weight: bold;
	color: #333;
}

.categories-slider__pagination {
	position: relative !important;
	bottom: auto !important;
	margin-top: 2rem;
	display: flex !important;
	justify-content: center;
}

.categories-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	margin: 0 6px;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.categories-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
	background: white;
	width: 28px;
	border-radius: 5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
	.categories-showcase__wrapper {
		grid-template-columns: 1fr !important;
		min-height: auto;
	}

	.categoriesSwiper {
		height: auto;
		max-height: none;
	}

	.categories-showcase__bg {
		background-attachment: scroll;
	}

	.categories-showcase__slider-container {
		padding: 3rem 1.5rem;
	}

	.categories-showcase__content-container {
		min-height: 500px;
	}

	.categories-showcase__content {
		padding: 3rem 2rem;
		max-width: 100%;
	}

	.categories-showcase__title {
		font-size: 2.5rem;
	}

	.categories-showcase__description {
		font-size: 1rem;
	}

	.category-card-showcase {
		height: 160px;
	}

	.categories-slider__prev,
	.categories-slider__next {
		display: none;
	}
}

@media (max-width: 768px) {
	.categories-showcase {
		min-height: auto;
	}

	.categories-showcase__content {
		padding: 2rem 1.5rem;
	}

	.categories-showcase__title {
		font-size: 2rem;
	}

	.categories-showcase__description {
		font-size: 0.95rem;
	}

	.category-card-showcase {
		height: 140px;
	}

	.category-card-showcase__title {
		font-size: 1.1rem;
	}

	.categories-showcase__button {
		padding: 0.9rem 2rem;
		font-size: 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.category-card-showcase,
	.category-card-showcase__image,
	.category-card-showcase__overlay,
	.categories-showcase__button {
		transition: none;
		animation: none;
	}
}


@media (prefers-reduced-motion: reduce) {
	.categories-hero__bg,
	.category-card-slider,
	.category-card-slider__image,
	.category-card-slider__overlay,
	.category-card-slider__description,
	.category-card-slider__meta,
	.category-card-slider__arrow {
		transition: none;
		animation: none;
	}
}

@media (max-width: 768px) {
	.categories-hero {
		min-height: 300px;
		padding: 2rem 0;
	}

	#categoriesTitle {
		font-size: 2.5rem;
	}

	.category-card-slider {
		height: 350px;
	}

	.category-card-slider__title {
		font-size: 1.5rem;
	}

	.categories-slider__prev,
	.categories-slider__next {
		width: 40px;
		height: 40px;
	}

	.categories-slider__prev::after,
	.categories-slider__next::after {
		font-size: 16px;
	}
}

/* ===================================================================
   PÁGINA DE DICAS - DICAS COMPLETAS
   =================================================================== */

/* Animação blob para hero */
@keyframes blob {
	0% {
		transform: translate(0px, 0px) scale(1);
	}
	33% {
		transform: translate(30px, -50px) scale(1.1);
	}
	66% {
		transform: translate(-20px, 20px) scale(0.9);
	}
	100% {
		transform: translate(0px, 0px) scale(1);
	}
}

.animate-blob {
	animation: blob 7s infinite;
}

.animation-delay-2000 {
	animation-delay: 2s;
}

.animation-delay-4000 {
	animation-delay: 4s;
}

/* Hero Section Styles */
.dicas-hero {
	position: relative;
	background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #ecfeff 100%);
}

/* Dicas Grid */
.dicas-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

@media (min-width: 768px) {
	.dicas-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.dicas-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Card de Dica */
.dica-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: white;
	border-radius: 1rem;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 8px 30px -12px rgba(15, 23, 42, 0.25);
}

.dica-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.35);
	border-color: rgba(56, 189, 248, 0.3);
}

.dica-card__image-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(135deg, #f0f9ff 0%, #ecfeff 100%);
}

.dica-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dica-card:hover .dica-card__image {
	transform: scale(1.1);
}

.dica-card__content {
	position: relative;
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.dica-card__content time {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #64748b;
}

.dica-card__content h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.dica-card:hover h3 {
	color: #0ea5e9;
}

.dica-card__content p {
	font-size: 0.95rem;
	color: #475569;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dica-card__content .stretched-link::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: "";
}

/* Line clamp utility */
.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.dica-card,
	.dica-card__image,
	.animate-blob {
		transition: none;
		animation: none;
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.dicas-grid {
		gap: 1.5rem;
		grid-template-columns: 1fr;
	}

	.dica-card__content {
		padding: 1.25rem;
	}

	.dica-card__content h3 {
		font-size: 1.125rem;
	}
}

/* =============================================
   Dicas Page - Swiper Slider Customization
   ============================================= */
.dicas-sections .swiper {
	position: relative;
}

.dicas-sections .swiper-button-prev,
.dicas-sections .swiper-button-next {
	color: white;
	background: rgba(0, 0, 0, 0.5);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.dicas-sections .swiper-button-prev:after,
.dicas-sections .swiper-button-next:after {
	font-size: 18px;
}

.dicas-sections .swiper-button-prev:hover,
.dicas-sections .swiper-button-next:hover {
	background: rgba(0, 0, 0, 0.8);
}

.dicas-sections .swiper-pagination {
	bottom: 10px !important;
}

.dicas-sections .swiper-pagination-bullet {
	background: white;
	opacity: 0.7;
	width: 10px;
	height: 10px;
}

.dicas-sections .swiper-pagination-bullet-active {
	opacity: 1;
	background: white;
}

/* ==================== COMMENTS STYLES ==================== */

/* Comment List */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .children {
    list-style: none;
    padding-left: 2.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 640px) {
    .comment-list .children {
        padding-left: 1rem;
    }
}

/* Comment Item */
.comment-list > li {
    position: relative;
}

.comment-list .children > li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e5e7eb 0%, transparent 100%);
}

@media (max-width: 640px) {
    .comment-list .children > li::before {
        left: -0.5rem;
    }
}

/* Comment Depth Levels */
.comment-list .depth-1 { margin-bottom: 1.5rem; }
.comment-list .depth-2 { margin-top: 1.5rem; }
.comment-list .depth-3 { margin-top: 1rem; opacity: 0.95; }
.comment-list .depth-4 { margin-top: 1rem; opacity: 0.9; }

/* Comment Reply Link */
.comment-reply-link {
    transition: all 0.2s ease;
}
.comment-reply-title {
	display: none
}
.comment-reply-link:hover {
    transform: translateX(2px);
}

/* Comment Form */
.comment-form {
    position: relative;
}

.atlas-reply-only {
	display: none;
}

.comment-form .form-submit {
    border: none;
    padding: 0;
    background: none;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
}

/* Comment Notes */
.comment-notes {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
}

.required-field-message {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Comment Pagination */
.pagination-comments {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.pagination-comments a,
.pagination-comments span {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-comments a {
    color: #1E5D6B;
    background: white;
}

.pagination-comments a:hover {
    background: #1E5D6B;
    color: white;
    border-color: #1E5D6B;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pagination-comments .current {
    background: #1E5D6B;
    color: white;
    border-color: #1E5D6B;
}

/* Comment Awaiting Moderation */
.comment-awaiting-moderation {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Comment Edit Link */
.edit-link a {
    transition: all 0.2s ease;
}

.edit-link a:hover {
    transform: translateX(2px);
}

/* Logged In As */
.logged-in-as {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
		display: none;
}

.logged-in-as a {
    color: #1E5D6B;
    text-decoration: underline;
    font-weight: 500;
}

.logged-in-as a:hover {
    color: #15454f;
}

/* No Comments Message */
.no-comments {
    text-align: center;
    padding: 3rem;
    font-style: italic;
}

/* Comment Form Submit Button Animation */
.comment-form button[type="submit"] {
    position: relative;
    overflow: hidden;
		background-color: #0185c2;
		border-radius: 30px;
}

.comment-form button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.comment-form button[type="submit"]:hover::before {
    width: 300px;
    height: 300px;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .comment-body .comment-author-avatar {
        display: none;
    }
    
    .comment-body .comment-content {
        margin-left: 0 !important;
    }
    
    .comment-body .edit-link {
        margin-left: 0 !important;
    }
}

/* Reply Reference */
.reply-to-reference {
    position: relative;
    transition: all 0.2s ease;
}

.reply-to-reference:hover {
    background: #f9fafb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.reply-to-reference .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640px) {
    .reply-to-reference {
        margin-left: 0 !important;
    }
}

/* Reply Jumbotron */
.reply-jumbotron {
    position: relative;
    transition: all 0.3s ease;
}

.reply-jumbotron:hover {
    box-shadow: 0 8px 16px rgba(30, 93, 107, 0.1);
    transform: translateY(-2px);
}

.reply-jumbotron blockquote {
    quotes: none;
}

.reply-jumbotron blockquote::before,
.reply-jumbotron blockquote::after {
    content: '';
}

.reply-jumbotron .border-l-3 {
    border-left-width: 3px;
}

@media (max-width: 640px) {
    .reply-jumbotron {
        margin-left: 0 !important;
        margin-right: 0;
    }
    
    .reply-jumbotron .p-4 {
        padding: 1rem;
    }
}

article[id*="post-"] .post-content a,
article[id*="post-"] .post-content h1,
article[id*="post-"] .post-content h1 a,
article[id*="post-"] .post-content h2,
article[id*="post-"] .post-content h2 a,
article[id*="post-"] .post-content h3,
article[id*="post-"] .post-content h3 a,
article[id*="post-"] .post-content h4,
article[id*="post-"] .post-content h4 a,
article[id*="post-"] .post-content h5,
article[id*="post-"] .post-content h5 a,
article[id*="post-"] .post-content h6,
article[id*="post-"] .post-content h6 a
{	
		color: #38bdf8;
}

#mobile-menu-toggle svg {
	stroke: #fff !important
}

button:focus, button:focus-visible, button:focus-within {
	background: none
}
/* =============================
   Tailwind base, components e utilities
   ============================= */
/* 
 * Main CSS - Atlas a Dois Theme
 * Este arquivo é processado pelo Tailwind CSS
 */

/* Importar utilities do Tailwind */
*, ::before, ::after {
  --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-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::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-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
input:where([type='text']),input:where(:not([type])),input:where([type='email']),input:where([type='url']),input:where([type='password']),input:where([type='number']),input:where([type='date']),input:where([type='datetime-local']),input:where([type='month']),input:where([type='search']),input:where([type='tel']),input:where([type='time']),input:where([type='week']),select:where([multiple]),textarea,select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
input:where([type='text']):focus, input:where(:not([type])):focus, input:where([type='email']):focus, input:where([type='url']):focus, input:where([type='password']):focus, input:where([type='number']):focus, input:where([type='date']):focus, input:where([type='datetime-local']):focus, input:where([type='month']):focus, input:where([type='search']):focus, input:where([type='tel']):focus, input:where([type='time']):focus, input:where([type='week']):focus, select:where([multiple]):focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}
input::placeholder,textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}
::-webkit-date-and-time-value {
  min-height: 1.5em;
  text-align: inherit;
}
::-webkit-datetime-edit {
  display: inline-flex;
}
::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}
select {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
select:where([multiple]),select:where([size]:not([size="1"])) {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}
input:where([type='checkbox']),input:where([type='radio']) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}
input:where([type='checkbox']) {
  border-radius: 0px;
}
input:where([type='radio']) {
  border-radius: 100%;
}
input:where([type='checkbox']):focus,input:where([type='radio']):focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
input:where([type='checkbox']):checked,input:where([type='radio']):checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
input:where([type='checkbox']):checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z%27/%3e%3c/svg%3e");
}
@media (forced-colors: active)  {
  input:where([type='checkbox']):checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
input:where([type='radio']):checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%278%27 cy=%278%27 r=%273%27/%3e%3c/svg%3e");
}
@media (forced-colors: active)  {
  input:where([type='radio']):checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
input:where([type='checkbox']):checked:hover,input:where([type='checkbox']):checked:focus,input:where([type='radio']):checked:hover,input:where([type='radio']):checked:focus {
  border-color: transparent;
  background-color: currentColor;
}
input:where([type='checkbox']):indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 16 16%27%3e%3cpath stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M4 8h8%27/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (forced-colors: active)  {
  input:where([type='checkbox']):indeterminate {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
input:where([type='checkbox']):indeterminate:hover,input:where([type='checkbox']):indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}
input:where([type='file']) {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}
input:where([type='file']):focus {
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}
body {
    background-color: var(--background, white);
    font-family: var(--font-sans);
  }
html {
    font-family: var(--font-sans);
    scroll-behavior: smooth;
  }
::-moz-selection {
    background-color: #60a5fa;
    color: white;
  }
::selection {
    background-color: #60a5fa;
    color: white;
  }
::-moz-selection {
    background-color: #60a5fa;
    color: white;
  }
/* Scrollbar */
::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
  }
::-webkit-scrollbar-track {
    background-color: transparent;
  }
::-webkit-scrollbar-thumb {
    background-color: #065f46;
    border-radius: 9999px;
  }
::-webkit-scrollbar-thumb:hover {
    background-color: #10b981;
  }
.\!container {
  width: 100% !important;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .\!container {
    max-width: 640px !important;
  }
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .\!container {
    max-width: 768px !important;
  }
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .\!container {
    max-width: 1024px !important;
  }
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .\!container {
    max-width: 1280px !important;
  }
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .\!container {
    max-width: 1536px !important;
  }
  .container {
    max-width: 1536px;
  }
}
.prose {
  color: #374151;
  max-width: none;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)):hover {
  color: #1d4ed8;
  text-decoration: underline;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
  border-left-color: #e5e7eb;
  background-color: #f9fafb;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: #111827;
  font-weight: 800;
  font-size: 2.25rem;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: #111827;
  font-weight: 700;
  font-size: 1.875rem;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: #111827;
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: #111827;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
  font-size: 1.25rem;
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: #dc2626;
  font-weight: 500;
  font-size: 0.875em;
  background-color: #fef2f2;
  padding: 0.25rem 0.375rem;
  border-radius: 0.25rem;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: #f9fafb;
  background-color: #1f2937;
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.5rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
  padding: 1rem 1.5rem;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: rgb(17 24 39 / 10%);
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.7;
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.prose :where(h1, h2, h3, h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.prose :where(ul, ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.prose-sm {
  font-size: 0.875rem;
  line-height: 1.7142857;
}
.prose-sm :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}
.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2857143em;
  line-height: 1.5555556;
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-sm :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.1111111em;
}
.prose-sm :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 2.1428571em;
  margin-top: 0;
  margin-bottom: 0.8em;
  line-height: 1.2;
}
.prose-sm :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.4285714em;
  margin-top: 1.6em;
  margin-bottom: 0.8em;
  line-height: 1.4;
}
.prose-sm :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2857143em;
  margin-top: 1.5555556em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}
.prose-sm :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.4285714em;
  margin-bottom: 0.5714286em;
  line-height: 1.4285714;
}
.prose-sm :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-sm :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  border-radius: 0.3125rem;
  padding-top: 0.1428571em;
  padding-inline-end: 0.3571429em;
  padding-bottom: 0.1428571em;
  padding-inline-start: 0.3571429em;
}
.prose-sm :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
}
.prose-sm :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.9em;
}
.prose-sm :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
}
.prose-sm :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.6666667;
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  border-radius: 0.25rem;
  padding-top: 0.6666667em;
  padding-inline-end: 1em;
  padding-bottom: 0.6666667em;
  padding-inline-start: 1em;
}
.prose-sm :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
  padding-inline-start: 1.5714286em;
}
.prose-sm :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
  padding-inline-start: 1.5714286em;
}
.prose-sm :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.2857143em;
  margin-bottom: 0.2857143em;
}
.prose-sm :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4285714em;
}
.prose-sm :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4285714em;
}
.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}
.prose-sm :where(.prose-sm > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.prose-sm :where(.prose-sm > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.1428571em;
}
.prose-sm :where(.prose-sm > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.prose-sm :where(.prose-sm > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.1428571em;
}
.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}
.prose-sm :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}
.prose-sm :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.prose-sm :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.2857143em;
  padding-inline-start: 1.5714286em;
}
.prose-sm :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2.8571429em;
  margin-bottom: 2.8571429em;
}
.prose-sm :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.5;
}
.prose-sm :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 1em;
  padding-bottom: 0.6666667em;
  padding-inline-start: 1em;
}
.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.6666667em;
  padding-inline-end: 1em;
  padding-bottom: 0.6666667em;
  padding-inline-start: 1em;
}
.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose-sm :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-sm :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.3333333;
  margin-top: 0.6666667em;
}
.prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.prose-lg {
  font-size: 1.125rem;
  line-height: 1.7777778;
}
.prose-lg :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2222222em;
  line-height: 1.4545455;
  margin-top: 1.0909091em;
  margin-bottom: 1.0909091em;
}
.prose-lg :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  padding-inline-start: 1em;
}
.prose-lg :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 2.6666667em;
  margin-top: 0;
  margin-bottom: 0.8333333em;
  line-height: 1;
}
.prose-lg :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.6666667em;
  margin-top: 1.8666667em;
  margin-bottom: 1.0666667em;
  line-height: 1.3333333;
}
.prose-lg :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.3333333em;
  margin-top: 1.6666667em;
  margin-bottom: 0.6666667em;
  line-height: 1.5;
}
.prose-lg :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}
.prose-lg :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  border-radius: 0.3125rem;
  padding-top: 0.2222222em;
  padding-inline-end: 0.4444444em;
  padding-bottom: 0.2222222em;
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
}
.prose-lg :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8666667em;
}
.prose-lg :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.875em;
}
.prose-lg :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.75;
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 0.375rem;
  padding-top: 1em;
  padding-inline-end: 1.5em;
  padding-bottom: 1em;
  padding-inline-start: 1.5em;
}
.prose-lg :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.6666667em;
  margin-bottom: 0.6666667em;
}
.prose-lg :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}
.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}
.prose-lg :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.6666667em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 3.1111111em;
  margin-bottom: 3.1111111em;
}
.prose-lg :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.5;
}
.prose-lg :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0.75em;
  padding-bottom: 0.75em;
  padding-inline-start: 0.75em;
}
.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.75em;
  padding-inline-end: 0.75em;
  padding-bottom: 0.75em;
  padding-inline-start: 0.75em;
}
.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose-lg :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.5;
  margin-top: 1em;
}
.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.prose-invert {
  --tw-prose-body: var(--tw-prose-invert-body);
  --tw-prose-headings: var(--tw-prose-invert-headings);
  --tw-prose-lead: var(--tw-prose-invert-lead);
  --tw-prose-links: var(--tw-prose-invert-links);
  --tw-prose-bold: var(--tw-prose-invert-bold);
  --tw-prose-counters: var(--tw-prose-invert-counters);
  --tw-prose-bullets: var(--tw-prose-invert-bullets);
  --tw-prose-hr: var(--tw-prose-invert-hr);
  --tw-prose-quotes: var(--tw-prose-invert-quotes);
  --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);
  --tw-prose-captions: var(--tw-prose-invert-captions);
  --tw-prose-kbd: var(--tw-prose-invert-kbd);
  --tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);
  --tw-prose-code: var(--tw-prose-invert-code);
  --tw-prose-pre-code: var(--tw-prose-invert-pre-code);
  --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);
  --tw-prose-th-borders: var(--tw-prose-invert-th-borders);
  --tw-prose-td-borders: var(--tw-prose-invert-td-borders);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0px;
}
.-left-20 {
  left: -5rem;
}
.-left-24 {
  left: -6rem;
}
.-top-6 {
  top: -1.5rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-5 {
  bottom: 1.25rem;
}
.bottom-6 {
  bottom: 1.5rem;
}
.bottom-8 {
  bottom: 2rem;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.left-1\/3 {
  left: 33.333333%;
}
.left-2 {
  left: 0.5rem;
}
.left-5 {
  left: 1.25rem;
}
.left-6 {
  left: 1.5rem;
}
.left-\[60px\] {
  left: 60px;
}
.left-\[clamp\(20px\2c 5vw\2c 60px\)\] {
  left: clamp(20px, 5vw, 60px);
}
.right-0 {
  right: 0px;
}
.right-2 {
  right: 0.5rem;
}
.right-3 {
  right: 0.75rem;
}
.right-5 {
  right: 1.25rem;
}
.right-6 {
  right: 1.5rem;
}
.top-0 {
  top: 0px;
}
.top-1\/2 {
  top: 50%;
}
.top-12 {
  top: 3rem;
}
.top-16 {
  top: 4rem;
}
.top-3 {
  top: 0.75rem;
}
.top-5 {
  top: 1.25rem;
}
.top-6 {
  top: 1.5rem;
}
.top-\[140px\] {
  top: 140px;
}
.top-\[clamp\(140px\2c 18vh\2c 200px\)\] {
  top: clamp(140px, 18vh, 200px);
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-\[100\] {
  z-index: 100;
}
.z-\[1\] {
  z-index: 1;
}
.z-\[22\] {
  z-index: 22;
}
.z-\[25\] {
  z-index: 25;
}
.z-\[55\] {
  z-index: 55;
}
.col-span-full {
  grid-column: 1 / -1;
}
.m-0 {
  margin: 0px;
}
.m-2 {
  margin: 0.5rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.-mb-5 {
  margin-bottom: -1.25rem;
}
.-mt-5 {
  margin-top: -1.25rem;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-0 {
  margin-left: 0px;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-16 {
  margin-left: 4rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-auto {
  margin-left: auto;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-auto {
  margin-right: auto;
}
.mt-0 {
  margin-top: 0px;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-1\.5 {
  margin-top: 0.375rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-18 {
  margin-top: 4.5rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-32 {
  margin-top: 8rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-auto {
  margin-top: auto;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.\!block {
  display: block !important;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}
.\!h-7 {
  height: 1.75rem !important;
}
.h-1 {
  height: 0.25rem;
}
.h-10 {
  height: 2.5rem;
}
.h-11 {
  height: 2.75rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-24 {
  height: 6rem;
}
.h-3 {
  height: 0.75rem;
}
.h-3\.5 {
  height: 0.875rem;
}
.h-32 {
  height: 8rem;
}
.h-4 {
  height: 1rem;
}
.h-40 {
  height: 10rem;
}
.h-48 {
  height: 12rem;
}
.h-5 {
  height: 1.25rem;
}
.h-56 {
  height: 14rem;
}
.h-6 {
  height: 1.5rem;
}
.h-64 {
  height: 16rem;
}
.h-7 {
  height: 1.75rem;
}
.h-72 {
  height: 18rem;
}
.h-8 {
  height: 2rem;
}
.h-80 {
  height: 20rem;
}
.h-9 {
  height: 2.25rem;
}
.h-96 {
  height: 24rem;
}
.h-\[260px\] {
  height: 260px;
}
.h-\[280px\] {
  height: 280px;
}
.h-\[3px\] {
  height: 3px;
}
.h-\[46px\] {
  height: 46px;
}
.h-\[500px\] {
  height: 500px;
}
.h-\[54px\] {
  height: 54px;
}
.h-\[5px\] {
  height: 5px;
}
.h-\[calc\(100vh\+200px\)\] {
  height: calc(100vh + 200px);
}
.h-\[calc\(100vh-96px\)\] {
  height: calc(100vh - 96px);
}
.h-auto {
  height: auto;
}
.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}
.h-full {
  height: 100%;
}
.h-px {
  height: 1px;
}
.h-screen {
  height: 100vh;
}
.max-h-52 {
  max-height: 13rem;
}
.max-h-80 {
  max-height: 20rem;
}
.min-h-64 {
  min-height: 16rem;
}
.min-h-screen {
  min-height: 100vh;
}
.\!w-7 {
  width: 1.75rem !important;
}
.w-10 {
  width: 2.5rem;
}
.w-11 {
  width: 2.75rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-24 {
  width: 6rem;
}
.w-3 {
  width: 0.75rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-4 {
  width: 1rem;
}
.w-44 {
  width: 11rem;
}
.w-48 {
  width: 12rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-7 {
  width: 1.75rem;
}
.w-72 {
  width: 18rem;
}
.w-8 {
  width: 2rem;
}
.w-80 {
  width: 20rem;
}
.w-9 {
  width: 2.25rem;
}
.w-96 {
  width: 24rem;
}
.w-\[30px\] {
  width: 30px;
}
.w-\[54px\] {
  width: 54px;
}
.w-\[90\%\] {
  width: 90%;
}
.w-\[clamp\(240px\2c 38vw\2c 500px\)\] {
  width: clamp(240px, 38vw, 500px);
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-\[220px\] {
  min-width: 220px;
}
.min-w-\[280px\] {
  min-width: 280px;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-\[280px\] {
  max-width: 280px;
}
.max-w-\[420px\] {
  max-width: 420px;
}
.max-w-\[500px\] {
  max-width: 500px;
}
.max-w-\[96vw\] {
  max-width: 96vw;
}
.max-w-\[clamp\(260px\2c 55vw\2c 700px\)\] {
  max-width: clamp(260px, 55vw, 700px);
}
.max-w-full {
  max-width: 100%;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-none {
  max-width: none;
}
.max-w-screen-2xl {
  max-width: 1536px;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-xs {
  max-width: 20rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink-0 {
  flex-shrink: 0;
}
.border-collapse {
  border-collapse: collapse;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  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-x-8 {
  --tw-translate-x: -2rem;
  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: 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-x-8 {
  --tw-translate-x: 2rem;
  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));
}
.rotate-180 {
  --tw-rotate: 180deg;
  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));
}
.rotate-90 {
  --tw-rotate: 90deg;
  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));
}
.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));
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}
.animate-bounce {
  animation: bounce 1s infinite;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}
.cursor-pointer {
  cursor: pointer;
}
.resize-none {
  resize: none;
}
.resize {
  resize: both;
}
.snap-x {
  scroll-snap-type: x var(--tw-scroll-snap-strictness);
}
.snap-mandatory {
  --tw-scroll-snap-strictness: mandatory;
}
.snap-start {
  scroll-snap-align: start;
}
.list-none {
  list-style-type: none;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.place-items-center {
  place-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-stretch {
  align-items: stretch;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-2\.5 {
  gap: 0.625rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-10 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.scroll-smooth {
  scroll-behavior: smooth;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.\!rounded-full {
  border-radius: 9999px !important;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-\[22px\] {
  border-radius: 22px;
}
.rounded-\[24px\] {
  border-radius: 24px;
}
.rounded-\[26px\] {
  border-radius: 26px;
}
.rounded-\[28px\] {
  border-radius: 28px;
}
.rounded-\[30px\] {
  border-radius: 30px;
}
.rounded-\[32px\] {
  border-radius: 32px;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-dashed {
  border-style: dashed;
}
.border-\[\#0ea5e9\] {
  --tw-border-opacity: 1;
  border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
}
.border-\[\#1E5D6B\] {
  --tw-border-opacity: 1;
  border-color: rgb(30 93 107 / var(--tw-border-opacity, 1));
}
.border-\[\#1E5D6B\]\/30 {
  border-color: rgb(30 93 107 / 0.3);
}
.border-\[\#38bdf8\]\/20 {
  border-color: rgb(56 189 248 / 0.2);
}
.border-black\/10 {
  border-color: rgb(0 0 0 / 0.1);
}
.border-blue-600 {
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-gray-300\/50 {
  border-color: rgb(209 213 219 / 0.5);
}
.border-gray-600 {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.border-sky-100 {
  --tw-border-opacity: 1;
  border-color: rgb(224 242 254 / var(--tw-border-opacity, 1));
}
.border-sky-200 {
  --tw-border-opacity: 1;
  border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
}
.border-sky-500 {
  --tw-border-opacity: 1;
  border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
}
.border-sky-600 {
  --tw-border-opacity: 1;
  border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
}
.border-transparent {
  border-color: transparent;
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/20 {
  border-color: rgb(255 255 255 / 0.2);
}
.border-white\/25 {
  border-color: rgb(255 255 255 / 0.25);
}
.border-white\/30 {
  border-color: rgb(255 255 255 / 0.3);
}
.border-white\/35 {
  border-color: rgb(255 255 255 / 0.35);
}
.border-white\/40 {
  border-color: rgb(255 255 255 / 0.4);
}
.border-white\/45 {
  border-color: rgb(255 255 255 / 0.45);
}
.border-white\/50 {
  border-color: rgb(255 255 255 / 0.5);
}
.border-white\/60 {
  border-color: rgb(255 255 255 / 0.6);
}
.\!bg-white\/85 {
  background-color: rgb(255 255 255 / 0.85) !important;
}
.bg-\[\#0b3b5a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(11 59 90 / var(--tw-bg-opacity, 1));
}
.bg-\[\#0b6c95\] {
  --tw-bg-opacity: 1;
  background-color: rgb(11 108 149 / var(--tw-bg-opacity, 1));
}
.bg-\[\#0ea5e9\] {
  --tw-bg-opacity: 1;
  background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1E5D6B\] {
  --tw-bg-opacity: 1;
  background-color: rgb(30 93 107 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1a1a1a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(26 26 26 / var(--tw-bg-opacity, 1));
}
.bg-\[\#38bdf8\] {
  --tw-bg-opacity: 1;
  background-color: rgb(56 189 248 / var(--tw-bg-opacity, 1));
}
.bg-\[\#38bdf8\]\/10 {
  background-color: rgb(56 189 248 / 0.1);
}
.bg-\[\#f5fbff\] {
  --tw-bg-opacity: 1;
  background-color: rgb(245 251 255 / var(--tw-bg-opacity, 1));
}
.bg-black\/0 {
  background-color: rgb(0 0 0 / 0);
}
.bg-black\/25 {
  background-color: rgb(0 0 0 / 0.25);
}
.bg-black\/30 {
  background-color: rgb(0 0 0 / 0.3);
}
.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-current {
  background-color: currentColor;
}
.bg-cyan-100\/20 {
  background-color: rgb(207 250 254 / 0.2);
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-gray-50\/50 {
  background-color: rgb(249 250 251 / 0.5);
}
.bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.bg-primary-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-sky-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
}
.bg-sky-100\/15 {
  background-color: rgb(224 242 254 / 0.15);
}
.bg-sky-100\/20 {
  background-color: rgb(224 242 254 / 0.2);
}
.bg-sky-200\/30 {
  background-color: rgb(186 230 253 / 0.3);
}
.bg-sky-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
}
.bg-sky-50\/60 {
  background-color: rgb(240 249 255 / 0.6);
}
.bg-sky-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
}
.bg-sky-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(2 132 199 / var(--tw-bg-opacity, 1));
}
.bg-sky-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(7 89 133 / var(--tw-bg-opacity, 1));
}
.bg-slate-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/25 {
  background-color: rgb(255 255 255 / 0.25);
}
.bg-white\/30 {
  background-color: rgb(255 255 255 / 0.3);
}
.bg-white\/70 {
  background-color: rgb(255 255 255 / 0.7);
}
.bg-white\/80 {
  background-color: rgb(255 255 255 / 0.8);
}
.bg-white\/85 {
  background-color: rgb(255 255 255 / 0.85);
}
.bg-white\/90 {
  background-color: rgb(255 255 255 / 0.9);
}
.bg-yellow-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
.bg-\[linear-gradient\(135deg\2c \#082f49_0\%\2c \#0ea5e9_46\%\2c \#38bdf8_100\%\)\] {
  background-image: linear-gradient(135deg,#082f49 0%,#0ea5e9 46%,#38bdf8 100%);
}
.bg-\[linear-gradient\(135deg\2c \#0ea5e9_0\%\2c \#38bdf8_100\%\)\] {
  background-image: linear-gradient(135deg,#0ea5e9 0%,#38bdf8 100%);
}
.bg-\[linear-gradient\(135deg\2c \#0ea5e9_0\%\2c \#7dd3fc_100\%\)\] {
  background-image: linear-gradient(135deg,#0ea5e9 0%,#7dd3fc 100%);
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-\[\#082f49\]\/70 {
  --tw-gradient-from: rgb(8 47 73 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 47 73 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#38bdf8\]\/5 {
  --tw-gradient-from: rgb(56 189 248 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(56 189 248 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-black\/70 {
  --tw-gradient-from: rgb(0 0 0 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-black\/80 {
  --tw-gradient-from: rgb(0 0 0 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-200 {
  --tw-gradient-from: #e5e7eb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(229 231 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-primary-100 {
  --tw-gradient-from: #DBEAFE var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 234 254 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-sky-100 {
  --tw-gradient-from: #e0f2fe var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(224 242 254 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-sky-300 {
  --tw-gradient-from: #7dd3fc var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(125 211 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-sky-50 {
  --tw-gradient-from: #f0f9ff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(240 249 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-slate-900\/60 {
  --tw-gradient-from: rgb(15 23 42 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(15 23 42 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-slate-950\/55 {
  --tw-gradient-from: rgb(2 6 23 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(2 6 23 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-transparent {
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-black\/20 {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.2) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-black\/30 {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.3) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-slate-900\/20 {
  --tw-gradient-to: rgb(15 23 42 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(15 23 42 / 0.2) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-slate-900\/45 {
  --tw-gradient-to: rgb(15 23 42 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(15 23 42 / 0.45) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-transparent {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-white {
  --tw-gradient-to: rgb(255 255 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #fff var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-amber-50 {
  --tw-gradient-to: #fffbeb var(--tw-gradient-to-position);
}
.to-blue-50 {
  --tw-gradient-to: #eff6ff var(--tw-gradient-to-position);
}
.to-gray-100 {
  --tw-gradient-to: #f3f4f6 var(--tw-gradient-to-position);
}
.to-gray-50 {
  --tw-gradient-to: #f9fafb var(--tw-gradient-to-position);
}
.to-secondary-100 {
  --tw-gradient-to: #CFFAFE var(--tw-gradient-to-position);
}
.to-sky-500 {
  --tw-gradient-to: #0ea5e9 var(--tw-gradient-to-position);
}
.to-slate-950\/50 {
  --tw-gradient-to: rgb(2 6 23 / 0.5) var(--tw-gradient-to-position);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0 {
  padding: 0px;
}
.p-12 {
  padding: 3rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-18 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-9 {
  padding-bottom: 2.25rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pr-12 {
  padding-right: 3rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-display {
  font-family: Fredoka, Poppins, sans-serif;
}
.font-heading {
  font-family: Poppins, Outfit, sans-serif;
}
.font-inter {
  font-family: Inter, sans-serif;
}
.font-montserrat {
  font-family: Montserrat, sans-serif;
}
.font-oswald {
  font-family: Oswald, sans-serif;
}
.\!text-5xl {
  font-size: 3rem !important;
  line-height: 1 !important;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[11px\] {
  font-size: 11px;
}
.text-\[12px\] {
  font-size: 12px;
}
.text-\[clamp\(0\.8rem\2c 1\.2vw\2c 1rem\)\] {
  font-size: clamp(0.8rem, 1.2vw, 1rem);
}
.text-\[clamp\(0\.8rem\2c 1\.5vw\2c 1\.25rem\)\] {
  font-size: clamp(0.8rem, 1.5vw, 1.25rem);
}
.text-\[clamp\(13px\2c 1\.5vw\2c 20px\)\] {
  font-size: clamp(13px, 1.5vw, 20px);
}
.text-\[clamp\(2\.5rem\2c 6vw\2c 5\.5rem\)\] {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}
.text-\[clamp\(2\.8rem\2c 6vw\2c 5\.5rem\)\] {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}
.text-\[clamp\(2\.8rem\2c 7vw\2c 6rem\)\] {
  font-size: clamp(2.8rem, 7vw, 6rem);
}
.text-\[clamp\(2rem\2c 5\.5vw\2c 4\.5rem\)\] {
  font-size: clamp(2rem, 5.5vw, 4.5rem);
}
.text-\[clamp\(3\.4rem\2c 9vw\2c 7\.4rem\)\] {
  font-size: clamp(3.4rem, 9vw, 7.4rem);
}
.text-\[clamp\(6rem\2c 22vw\2c 13rem\)\] {
  font-size: clamp(6rem, 22vw, 13rem);
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
.leading-\[0\.95\] {
  line-height: 0.95;
}
.leading-none {
  line-height: 1;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-\[0\.02em\] {
  letter-spacing: 0.02em;
}
.tracking-\[0\.03em\] {
  letter-spacing: 0.03em;
}
.tracking-\[0\.14em\] {
  letter-spacing: 0.14em;
}
.tracking-\[0\.15em\] {
  letter-spacing: 0.15em;
}
.tracking-\[0\.16em\] {
  letter-spacing: 0.16em;
}
.tracking-\[0\.18em\] {
  letter-spacing: 0.18em;
}
.tracking-\[0\.1em\] {
  letter-spacing: 0.1em;
}
.tracking-\[0\.24em\] {
  letter-spacing: 0.24em;
}
.tracking-\[0\.25em\] {
  letter-spacing: 0.25em;
}
.tracking-\[0\.28em\] {
  letter-spacing: 0.28em;
}
.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}
.tracking-\[0\.35em\] {
  letter-spacing: 0.35em;
}
.tracking-\[0\.3em\] {
  letter-spacing: 0.3em;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.\!text-slate-700 {
  --tw-text-opacity: 1 !important;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1)) !important;
}
.text-\[\#0b3b5a\] {
  --tw-text-opacity: 1;
  color: rgb(11 59 90 / var(--tw-text-opacity, 1));
}
.text-\[\#0ea5e9\] {
  --tw-text-opacity: 1;
  color: rgb(14 165 233 / var(--tw-text-opacity, 1));
}
.text-\[\#1E5D6B\] {
  --tw-text-opacity: 1;
  color: rgb(30 93 107 / var(--tw-text-opacity, 1));
}
.text-\[\#38bdf8\] {
  --tw-text-opacity: 1;
  color: rgb(56 189 248 / var(--tw-text-opacity, 1));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-700 {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-primary-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-purple-300 {
  --tw-text-opacity: 1;
  color: rgb(216 180 254 / var(--tw-text-opacity, 1));
}
.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-sky-400 {
  --tw-text-opacity: 1;
  color: rgb(56 189 248 / var(--tw-text-opacity, 1));
}
.text-sky-50\/90 {
  color: rgb(240 249 255 / 0.9);
}
.text-sky-500 {
  --tw-text-opacity: 1;
  color: rgb(14 165 233 / var(--tw-text-opacity, 1));
}
.text-sky-600 {
  --tw-text-opacity: 1;
  color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}
.text-sky-700 {
  --tw-text-opacity: 1;
  color: rgb(3 105 161 / var(--tw-text-opacity, 1));
}
.text-sky-800 {
  --tw-text-opacity: 1;
  color: rgb(7 89 133 / var(--tw-text-opacity, 1));
}
.text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-slate-600 {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.text-slate-800 {
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity, 1));
}
.text-slate-900 {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/60 {
  color: rgb(255 255 255 / 0.6);
}
.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}
.text-white\/80 {
  color: rgb(255 255 255 / 0.8);
}
.text-white\/85 {
  color: rgb(255 255 255 / 0.85);
}
.text-white\/90 {
  color: rgb(255 255 255 / 0.9);
}
.text-white\/95 {
  color: rgb(255 255 255 / 0.95);
}
.text-yellow-600 {
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.text-yellow-800 {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.placeholder-gray-500::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(107 114 128 / var(--tw-placeholder-opacity, 1));
}
.placeholder-gray-500::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(107 114 128 / var(--tw-placeholder-opacity, 1));
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-15 {
  opacity: 0.15;
}
.opacity-25 {
  opacity: 0.25;
}
.opacity-90 {
  opacity: 0.9;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_12px_30px_-20px_rgba\(15\2c 23\2c 42\2c 0\.4\)\] {
  --tw-shadow: 0 12px 30px -20px rgba(15,23,42,0.4);
  --tw-shadow-colored: 0 12px 30px -20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_12px_30px_-24px_rgba\(14\2c 165\2c 233\2c 0\.5\)\] {
  --tw-shadow: 0 12px 30px -24px rgba(14,165,233,0.5);
  --tw-shadow-colored: 0 12px 30px -24px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_18px_40px_-24px_rgba\(15\2c 23\2c 42\2c 0\.5\)\] {
  --tw-shadow: 0 18px 40px -24px rgba(15,23,42,0.5);
  --tw-shadow-colored: 0 18px 40px -24px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_18px_40px_-28px_rgba\(14\2c 165\2c 233\2c 0\.6\)\] {
  --tw-shadow: 0 18px 40px -28px rgba(14,165,233,0.6);
  --tw-shadow-colored: 0 18px 40px -28px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_20px_45px_-30px_rgba\(14\2c 165\2c 233\2c 0\.45\)\] {
  --tw-shadow: 0 20px 45px -30px rgba(14,165,233,0.45);
  --tw-shadow-colored: 0 20px 45px -30px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_20px_45px_-32px_rgba\(14\2c 165\2c 233\2c 0\.35\)\] {
  --tw-shadow: 0 20px 45px -32px rgba(14,165,233,0.35);
  --tw-shadow-colored: 0 20px 45px -32px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_24px_60px_-28px_rgba\(8\2c 47\2c 73\2c 0\.7\)\] {
  --tw-shadow: 0 24px 60px -28px rgba(8,47,73,0.7);
  --tw-shadow-colored: 0 24px 60px -28px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_24px_60px_-28px_rgba\(8\2c 47\2c 73\2c 0\.75\)\] {
  --tw-shadow: 0 24px 60px -28px rgba(8,47,73,0.75);
  --tw-shadow-colored: 0 24px 60px -28px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_24px_60px_-36px_rgba\(14\2c 165\2c 233\2c 0\.35\)\] {
  --tw-shadow: 0 24px 60px -36px rgba(14,165,233,0.35);
  --tw-shadow-colored: 0 24px 60px -36px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_30px_60px_-40px_rgba\(15\2c 23\2c 42\2c 0\.6\)\] {
  --tw-shadow: 0 30px 60px -40px rgba(15,23,42,0.6);
  --tw-shadow-colored: 0 30px 60px -40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_30px_80px_-36px_rgba\(8\2c 47\2c 73\2c 0\.85\)\] {
  --tw-shadow: 0 30px 80px -36px rgba(8,47,73,0.85);
  --tw-shadow-colored: 0 30px 80px -36px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[6px_6px_10px_2px_rgba\(0\2c 0\2c 0\2c 0\.6\)\] {
  --tw-shadow: 6px 6px 10px 2px rgba(0,0,0,0.6);
  --tw-shadow-colored: 6px 6px 10px 2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline {
  outline-style: solid;
}
.ring-2 {
  --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(2px + 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 #0000);
}
.ring-\[\#38bdf8\]\/20 {
  --tw-ring-color: rgb(56 189 248 / 0.2);
}
.blur {
  --tw-blur: blur(8px);
  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);
}
.blur-3xl {
  --tw-blur: blur(64px);
  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);
}
.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  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);
}
.drop-shadow-lg {
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  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);
}
.\!invert {
  --tw-invert: invert(100%) !important;
  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) !important;
}
.invert {
  --tw-invert: invert(100%);
  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);
}
.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);
}
.backdrop-blur-md {
  --tw-backdrop-blur: blur(12px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-filter {
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.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(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[color\2c box-shadow\] {
  transition-property: color,box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.duration-700 {
  transition-duration: 700ms;
}
.content-none {
  --tw-content: none;
  content: var(--tw-content);
}

/* Custom Styles */
html, body {
    margin: 0;
    padding: 0;
    background-color: var(--background, white);
  font-family: var(--font-sans);
}

html {
    scroll-behavior: smooth;
}

/* Smooth scrolling */
:focus-visible {
    outline: 2px solid #FFB6D9;
    outline-offset: 2px;
}

/* =============================
   Variáveis CSS customizadas
   ============================= */
:root {
  --font-sans: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, sans-serif;
  --radius: 0.5rem;
  --background: #1a0033;
  --foreground: oklch(0.95 0 0);
  --card: #2d1b4e;
  --card-foreground: oklch(0.95 0 0);
  --popover: #2d1b4e;
  --popover-foreground: oklch(0.95 0 0);
  --primary: #a855f7;
  --primary-foreground: oklch(0.95 0 0);
  --secondary: #9333ea;
  --secondary-foreground: oklch(0.95 0 0);
  --muted: #6b21a8;
  --muted-foreground: oklch(0.95 0 0);
  --accent: #a855f7;
  --accent-foreground: oklch(0.95 0 0);
  --destructive: #ef4444;
  --border: #4c1d95;
  --input: #2d1b4e;
  --ring: #a855f7;
  --chart-1: #a855f7;
  --chart-2: #d946ef;
  --chart-3: #9333ea;
  --chart-4: #7e22ce;
  --chart-5: #6b21a8;
  --sidebar: #2d1b4e;
  --sidebar-foreground: oklch(0.95 0 0);
  --sidebar-primary: #a855f7;
  --sidebar-primary-foreground: oklch(0.95 0 0);
  --sidebar-accent: #6b21a8;
  --sidebar-accent-foreground: oklch(0.95 0 0);
  --sidebar-border: #4c1d95;
  --sidebar-ring: #a855f7;
  --text: #ffffff;
  --button: #a855f7;
  --shadow-teste: rgba(88, 28, 135, 0.3) 0px 6px 12px -2px, rgba(0, 0, 0, 0.5) 0px 3px 7px -3px;
}

/* =============================
   Dark mode
   ============================= */
.dark {
  --background: #252525;
  --foreground: oklch(0.985 0 0);
  --card: #2c2c2c;
  --card-foreground: oklch(0.985 0 0);
  --primary-foreground: oklch(0.393 0.095 152.535);
  --secondary: oklch(0.274 0.006 286.033);
  --secondary-foreground: oklch(0.985 0 0);
  --text: #ffffff;
  --primary: oklch(96.34% 0.005 328.78);
}

/* =============================
   Custom Utilities
   ============================= */

/* =============================
   Import custom CSS extra
   ============================= */
.placeholder\:text-slate-500::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.placeholder\:text-slate-500::placeholder {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.before\:absolute::before {
  content: var(--tw-content);
  position: absolute;
}
.before\:inset-0::before {
  content: var(--tw-content);
  inset: 0px;
}
.before\:-bottom-1::before {
  content: var(--tw-content);
  bottom: -0.25rem;
}
.before\:left-0::before {
  content: var(--tw-content);
  left: 0px;
}
.before\:right-0::before {
  content: var(--tw-content);
  right: 0px;
}
.before\:h-1::before {
  content: var(--tw-content);
  height: 0.25rem;
}
.before\:origin-left::before {
  content: var(--tw-content);
  transform-origin: left;
}
.before\:scale-x-0::before {
  content: var(--tw-content);
  --tw-scale-x: 0;
  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));
}
.before\:bg-\[\#0ea5e9\]::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
}
.before\:bg-black::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.before\:bg-opacity-60::before {
  content: var(--tw-content);
  --tw-bg-opacity: 0.6;
}
.before\:transition-transform::before {
  content: var(--tw-content);
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.after\:\!text-\[10px\]::after {
  content: var(--tw-content);
  font-size: 10px !important;
}
.after\:\!font-bold::after {
  content: var(--tw-content);
  font-weight: 700 !important;
}
.hover\:-translate-y-1:hover {
  --tw-translate-y: -0.25rem;
  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));
}
.hover\:scale-105:hover {
  --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));
}
.hover\:border-\[\#0ea5e9\]:hover {
  --tw-border-opacity: 1;
  border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
}
.hover\:border-blue-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}
.hover\:border-gray-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.hover\:border-gray-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}
.hover\:bg-\[\#082f49\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(8 47 73 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#0ea5e9\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#0ea5e9\]\/80:hover {
  background-color: rgb(14 165 233 / 0.8);
}
.hover\:bg-\[\#1E5D6B\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(30 93 107 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#22b8f5\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(34 184 245 / var(--tw-bg-opacity, 1));
}
.hover\:bg-black\/40:hover {
  background-color: rgb(0 0 0 / 0.4);
}
.hover\:bg-blue-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.hover\:bg-greenVibrant:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-primary-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.hover\:bg-sky-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
}
.hover\:bg-sky-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-sky-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
}
.hover\:bg-transparent:hover {
  background-color: transparent;
}
.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-white\/10:hover {
  background-color: rgb(255 255 255 / 0.1);
}
.hover\:bg-white\/20:hover {
  background-color: rgb(255 255 255 / 0.2);
}
.hover\:bg-white\/5:hover {
  background-color: rgb(255 255 255 / 0.05);
}
.hover\:text-\[\#38bdf8\]:hover {
  --tw-text-opacity: 1;
  color: rgb(56 189 248 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-400:hover {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-600:hover {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-700:hover {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-800:hover {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-600:hover {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-700:hover {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-800:hover {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.hover\:text-green-700:hover {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.hover\:text-primary-700:hover {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.hover\:text-purple-300:hover {
  --tw-text-opacity: 1;
  color: rgb(216 180 254 / var(--tw-text-opacity, 1));
}
.hover\:text-sky-600:hover {
  --tw-text-opacity: 1;
  color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}
.hover\:text-sky-800:hover {
  --tw-text-opacity: 1;
  color: rgb(7 89 133 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:opacity-75:hover {
  opacity: 0.75;
}
.hover\:shadow-2xl:hover {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-\[0_24px_46px_-28px_rgba\(14\2c 165\2c 233\2c 0\.75\)\]:hover {
  --tw-shadow: 0 24px 46px -28px rgba(14,165,233,0.75);
  --tw-shadow-colored: 0 24px 46px -28px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-\[0_28px_55px_-28px_rgba\(14\2c 165\2c 233\2c 0\.5\)\]:hover {
  --tw-shadow: 0 28px 55px -28px rgba(14,165,233,0.5);
  --tw-shadow-colored: 0 28px 55px -28px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-sm:hover {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-xl:hover {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:before\:scale-x-100:hover::before {
  content: var(--tw-content);
  --tw-scale-x: 1;
  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));
}
.focus\:border-gray-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
.focus\:border-primary-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.focus\:border-transparent:focus {
  border-color: transparent;
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-2:focus {
  --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(2px + 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 #0000);
}
.focus\:ring-\[\#38bdf8\]:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(56 189 248 / var(--tw-ring-opacity, 1));
}
.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
}
.focus\:ring-primary-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}
.group:hover .group-hover\:block {
  display: block;
}
.group:hover .group-hover\:translate-x-0\.5 {
  --tw-translate-x: 0.125rem;
  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\: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\:scale-\[1\.03\] {
  --tw-scale-x: 1.03;
  --tw-scale-y: 1.03;
  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-black\/20 {
  background-color: rgb(0 0 0 / 0.2);
}
.group:hover .group-hover\:bg-black\/40 {
  background-color: rgb(0 0 0 / 0.4);
}
.group:hover .group-hover\:text-\[\#0ea5e9\] {
  --tw-text-opacity: 1;
  color: rgb(14 165 233 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-\[\#1E5D6B\] {
  --tw-text-opacity: 1;
  color: rgb(30 93 107 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
.group:hover .group-hover\:opacity-25 {
  opacity: 0.25;
}
.prose-headings\:text-white :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.prose-p\:text-sky-50\/90 :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  color: rgb(240 249 255 / 0.9);
}
.prose-a\:text-sky-200 :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  --tw-text-opacity: 1;
  color: rgb(186 230 253 / var(--tw-text-opacity, 1));
}
.prose-strong\:text-white :is(:where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
@media (min-width: 640px) {
  .sm\:-top-\[30px\] {
    top: -30px;
  }
  .sm\:h-\[340px\] {
    height: 340px;
  }
  .sm\:h-\[400px\] {
    height: 400px;
  }
  .sm\:min-w-\[320px\] {
    min-width: 320px;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:flex-wrap {
    flex-wrap: wrap;
  }
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 768px) {
  .md\:-top-\[50px\] {
    top: -50px;
  }
  .md\:order-1 {
    order: 1;
  }
  .md\:order-2 {
    order: 2;
  }
  .md\:col-start-2 {
    grid-column-start: 2;
  }
  .md\:mb-24 {
    margin-bottom: 6rem;
  }
  .md\:mt-16 {
    margin-top: 4rem;
  }
  .md\:mt-24 {
    margin-top: 6rem;
  }
  .md\:mt-8 {
    margin-top: 2rem;
  }
  .md\:block {
    display: block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
  .md\:h-80 {
    height: 20rem;
  }
  .md\:h-96 {
    height: 24rem;
  }
  .md\:h-\[460px\] {
    height: 460px;
  }
  .md\:h-\[600px\] {
    height: 600px;
  }
  .md\:w-32 {
    width: 8rem;
  }
  .md\:w-56 {
    width: 14rem;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-\[minmax\(0\2c 0\.9fr\)_minmax\(0\2c 1\.1fr\)\] {
    grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:items-end {
    align-items: flex-end;
  }
  .md\:justify-between {
    justify-content: space-between;
  }
  .md\:gap-10 {
    gap: 2.5rem;
  }
  .md\:gap-16 {
    gap: 4rem;
  }
  .md\:gap-6 {
    gap: 1.5rem;
  }
  .md\:gap-8 {
    gap: 2rem;
  }
  .md\:rounded-none {
    border-radius: 0px;
  }
  .md\:p-10 {
    padding: 2.5rem;
  }
  .md\:p-12 {
    padding: 3rem;
  }
  .md\:p-5 {
    padding: 1.25rem;
  }
  .md\:p-6 {
    padding: 1.5rem;
  }
  .md\:p-8 {
    padding: 2rem;
  }
  .md\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .md\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .md\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .md\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .md\:pb-0 {
    padding-bottom: 0px;
  }
  .md\:pb-20 {
    padding-bottom: 5rem;
  }
  .md\:pt-0 {
    padding-top: 0px;
  }
  .md\:pt-28 {
    padding-top: 7rem;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .md\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
@media (min-width: 1024px) {
  .lg\:-top-\[90px\] {
    top: -90px;
  }
  .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .lg\:col-span-8 {
    grid-column: span 8 / span 8;
  }
  .lg\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .lg\:h-\[600px\] {
    height: 600px;
  }
  .lg\:min-w-\[360px\] {
    min-width: 360px;
  }
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-\[minmax\(0\2c 1\.05fr\)_minmax\(320px\2c 0\.95fr\)\] {
    grid-template-columns: minmax(0,1.05fr) minmax(320px,0.95fr);
  }
  .lg\:grid-cols-\[minmax\(0\2c 1\.15fr\)_minmax\(340px\2c 0\.85fr\)\] {
    grid-template-columns: minmax(0,1.15fr) minmax(340px,0.85fr);
  }
  .lg\:grid-cols-\[minmax\(0\2c 1\.1fr\)_minmax\(340px\2c 0\.9fr\)\] {
    grid-template-columns: minmax(0,1.1fr) minmax(340px,0.9fr);
  }
  .lg\:items-start {
    align-items: flex-start;
  }
  .lg\:items-end {
    align-items: flex-end;
  }
  .lg\:items-center {
    align-items: center;
  }
  .lg\:p-8 {
    padding: 2rem;
  }
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:text-left {
    text-align: left;
  }
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}
@media (min-width: 1280px) {
  .xl\:h-\[700px\] {
    height: 700px;
  }
  .xl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (min-width: 1536px) {
  .\32xl\:h-\[800px\] {
    height: 800px;
  }
}



/*# sourceMappingURL=main.css.map*/