@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Navigation z-index fix */
#mainNav {
        z-index: 9999;
}

#mainNav .group>div {
        z-index: 9999 !important;
}

/* Blob Shape Image */
.blob-shape {
        position: relative;
}

.blob-shape img {
        clip-path: path('M50,10 Q90,0 130,20 Q180,45 190,100 Q195,150 170,190 Q140,230 90,240 Q40,245 20,200 Q0,155 10,100 Q15,50 50,10');
        width: 100%;
        height: 100%;
        object-fit: cover;
}

.blob-shape::before {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        background: linear-gradient(135deg, #C5A54E, #B89940);
        clip-path: path('M54,6 Q98,-4 138,18 Q192,45 202,108 Q208,162 180,206 Q146,252 90,262 Q34,268 10,218 Q-14,168 0,104 Q10,46 54,6');
        z-index: -1;
}

/* Alternative simpler blob using border-radius with animation */
.blob-simple {
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
        border: 4px solid #C5A54E;
        overflow: hidden;
        transition: border-radius 0.5s ease-in-out;
}

.blob-simple:hover {
        border-radius: 48% 52% 52% 48% / 48% 52% 52% 48%;
}

.rotating-splash {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120%;
        height: 120%;
        background-image: url('../images/splash-mask.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
        opacity: 0.25;
        filter: brightness(0) saturate(100%) invert(77%) sepia(29%) saturate(885%) hue-rotate(9deg) brightness(91%) contrast(85%);
        /* amber-500 color */
        animation: splash-rotate 30s linear infinite;
}

@keyframes splash-rotate {
        from {
                transform: translate(-50%, -50%) rotate(0deg);
        }

        to {
                transform: translate(-50%, -50%) rotate(360deg);
        }
}

@keyframes blob-morph {

        0%,
        100% {
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        }

        25% {
                border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        }

        50% {
                border-radius: 40% 60% 60% 40% / 70% 30% 60% 40%;
        }

        75% {
                border-radius: 70% 30% 50% 50% / 30% 50% 70% 60%;
        }
}

/* Missing position utilities for floating buttons */
.bottom-6 {
        bottom: 1.5rem;
}

.left-6 {
        left: 1.5rem;
}

.right-6 {
        right: 1.5rem;
}

.translate-y-4 {
        transform: translateY(1rem);
}

.translate-y-0 {
        transform: translateY(0);
}

.scale-110 {
        transform: scale(1.1);
}

.hover\:scale-110:hover {
        transform: scale(1.1);
}

.animate-ping {
        animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

        75%,
        100% {
                transform: scale(2);
                opacity: 0;
        }
}

.bg-green-500 {
        background-color: #22c55e;
}

.bg-blue-500 {
        background-color: #3b82f6;
}

.bg-red-500 {
        background-color: #ef4444;
}

/* Flex utilities */
.flex-col {
        flex-direction: column;
}

.gap-3 {
        gap: 0.75rem;
}

.mb-3 {
        margin-bottom: 0.75rem;
}

/* Visibility utilities */
.invisible {
        visibility: hidden;
}

.visible {
        visibility: visible;
}

.opacity-0 {
        opacity: 0;
}

.opacity-100 {
        opacity: 1;
}

.opacity-30 {
        opacity: 0.3;
}

/* Inset for ping animation */
.inset-0 {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
}

.text-amber-400 {
        color: #C5A54E
}

.text-amber-300 {
        color: #D4B85A
}

/* Light gold wave for contact button */
.contact-wave-gold {
        background-color: rgba(212, 184, 90, 0.4) !important;
}

.text-amber-500 {
        color: #B89940
}

.text-amber-600 {
        color: #9A7F35
}

.bg-amber-50 {
        background-color: #fffbeb
}

.bg-amber-100 {
        background-color: #fef3c7
}

.bg-amber-200 {
        background-color: #fde68a
}

.bg-amber-500 {
        background-color: #C5A54E
}

.bg-amber-600 {
        background-color: #B89940
}

.hover\:text-amber-300:hover {
        color: #D4B85A
}

.hover\:text-amber-400:hover {
        color: #fbbf24
}

.hover\:bg-amber-50:hover {
        background-color: #fffbeb
}

.hover\:bg-amber-600:hover {
        background-color: #C5A54E
}

.from-amber-500 {
        --tw-gradient-from: #C5A54E var(--tw-gradient-from-position);
        --tw-gradient-to: rgba(197, 165, 78, 0) var(--tw-gradient-to-position);
        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-amber-100 {
        --tw-gradient-from: #fef3c7 var(--tw-gradient-from-position);
        --tw-gradient-to: rgba(254, 243, 199, 0) var(--tw-gradient-to-position);
        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.to-amber-200 {
        --tw-gradient-to: #fde68a var(--tw-gradient-to-position)
}

.to-amber-600 {
        --tw-gradient-to: #d97706 var(--tw-gradient-to-position)
}

.border-amber-200 {
        --tw-border-opacity: 1;
        border-color: rgb(253 230 138/var(--tw-border-opacity, 1))
}

.bg-gray-900\/95 {
        background-color: rgba(17, 24, 39, .95)
}

.gradient-text,
.hero-gradient {
        background: linear-gradient(135deg, #C5A54E 0, #1a1a1a 100%)
}

/* Gold Italic Title Text - matching reference image */
.gold-italic {
        color: #C5A54E;
        font-style: italic;
}

/* Silver Italic Title Text - for variety */
.silver-italic {
        color: #C0C0C0;
        font-style: italic;
}

/* Section Badge/Pill - matching reference image */
.section-badge {
        display: inline-block;
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: #C5A54E;
        border: 1px solid #C5A54E;
        border-radius: 9999px;
        margin-bottom: 1.5rem;
}

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Poppins, sans-serif
}

.gradient-text {
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
}

.nav-link {
        position: relative;
        transition: color .3s
}

.nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #C5A54E;
        transition: width .3s
}

.nav-link:hover::after {
        width: 100%
}

.nav-link.active::after {
        width: 100%;
        background: #C5A54E
}

.banner-slider {
        position: relative;
        height: 100vh;
        overflow: hidden
}

.banner-overlay,
.banner-slide {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        position: absolute
}

.banner-slide {
        opacity: 0;
        transition: opacity 1s ease-in-out;
        background-size: cover;
        background-position: center
}

.banner-slide.active {
        opacity: 1;
        z-index: 1
}

.banner-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, .85) 0, rgba(26, 26, 26, .85) 100%)
}

.slider-dots {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 10
}

.slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .5);
        cursor: pointer;
        transition: .3s;
        border: none
}

.slider-arrow,
.testimonial-nav {
        transform: translateY(-50%);
        border-radius: 50%;
        display: flex;
        z-index: 10;
        cursor: pointer
}

.slider-dot.active {
        width: 40px;
        border-radius: 6px;
        background: #C5A54E
}

.slider-arrow {
        position: absolute;
        top: 50%;
        width: 50px;
        height: 50px;
        background: rgba(212, 175, 55, .3);
        align-items: center;
        justify-content: center;
        transition: .3s;
        backdrop-filter: blur(10px);
        border: none;
        color: #fff
}

.slider-arrow:hover {
        background: rgba(212, 175, 55, .5)
}

.slider-arrow.left {
        left: 30px
}

.slider-arrow.right {
        right: 30px
}

.property-card {
        transition: .4s cubic-bezier(.4, 0, .2, 1)
}

.property-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25)
}

.property-card img {
        transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.property-card:hover img {
        transform: scale(1.1)
}

.image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .7) 100%);
        opacity: 0;
        transition: opacity .4s
}

.property-card:hover .image-overlay {
        opacity: 1
}

.feature-icon,
.property-type-card {
        transition: .3s
}

.feature-card:hover .feature-icon {
        transform: scale(1.1) rotate(5deg)
}

.feature-card {
        background-color: #1f2937;
        padding: 3.5rem;
        border-radius: 50px;
        border: 1px solid #374151;
        text-align: center;
        transition: all 0.5s ease-in-out;
}

.feature-card:hover {
        border-color: rgba(197, 165, 78, 0.5);
        /* amber-500/50 */
        transform: translateY(-5px);
}

/* Card WITH Image and Background Color */
.feature-card-with-image {
        display: flex;
        flex-direction: column;
        background: #111827;
        border: 1px solid #374151;
        transition: all 0.5s ease-in-out;
}

.feature-card-with-image:hover {
        border-color: rgba(217, 119, 6, 0.5);
        transform: translateY(-4px);
}

.feature-card-with-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
}

/* Card WITHOUT Image and NO Background Color */
.feature-card-no-image {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: transparent;
        border: 1px solid #374151;
        transition: all 0.5s ease-in-out;
}

.feature-card-no-image:hover {
        border-color: rgba(217, 119, 6, 0.5);
        transform: translateY(-4px);
}

.testimonial-slider {
        position: relative;
        overflow: hidden;
        padding: 0 50px
}

.testimonial-track {
        display: flex;
        transition: transform .5s ease-in-out
}

.testimonial-slide {
        flex: 0 0 100%;
        padding: 0 10px
}

@media (min-width:768px) {
        .testimonial-slide {
                flex: 0 0 50%
        }
}

@media (min-width:1024px) {
        .testimonial-slide {
                flex: 0 0 33.333%
        }
}

.testimonial-nav {
        position: absolute;
        top: 50%;
        width: 40px;
        height: 40px;
        background: #fff;
        align-items: center;
        justify-content: center;
        transition: .3s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
        border: none;
        color: #C5A54E
}

.testimonial-nav:hover {
        background: #C5A54E;
        color: #fff
}

.testimonial-nav.left {
        left: 0
}

.testimonial-nav.right {
        right: 0
}

.testimonial-indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        transition: .3s
}

.mobile-menu {
        transform: translateX(-100%);
        transition: transform .3s
}

.mobile-menu.active {
        transform: translateX(0)
}

.submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s
}

.submenu.active {
        max-height: 300px
}

.property-type-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04)
}

/* Used Tailwind CSS 3.4.0 */
*,
:after,
:before {
        --tw-border-spacing-x: 0;
        --tw-border-spacing-y: 0;
        --tw-translate-x: 0;
        --tw-translate-y: 0;
        --tw-rotate: 0;
        --tw-skew-x: 0;
        --tw-skew-y: 0;
        --tw-scale-x: 1;
        --tw-scale-y: 1;
        --tw-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: rgba(59, 130, 246, .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: rgba(59, 130, 246, .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.18 | MIT License | https://tailwindcss.com*/
*,
:after,
:before {
        box-sizing: border-box;
        border: 0 solid #e5e7eb
}

:after,
:before {
        --tw-content: ""
}

:host,
html {
        line-height: 1.5;
        -webkit-text-size-adjust: 100%;
        -moz-tab-size: 4;
        -o-tab-size: 4;
        tab-size: 4;
        font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
        font-feature-settings: normal;
        font-variation-settings: normal;
        -webkit-tap-highlight-color: transparent
}

body {
        margin: 0;
        line-height: inherit
}

hr {
        height: 0;
        color: inherit;
        border-top-width: 1px
}

abbr:where([title]) {
        -webkit-text-decoration: underline dotted;
        text-decoration: underline dotted
}

h1,
h2,
h3,
h4,
h5,
h6 {
        font-size: inherit;
        font-weight: inherit
}

a {
        color: inherit;
        text-decoration: inherit
}

b,
strong {
        font-weight: bolder
}

code,
kbd,
pre,
samp {
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
        font-feature-settings: normal;
        font-variation-settings: normal;
        font-size: 1em
}

small {
        font-size: 80%
}

sub,
sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline
}

sub {
        bottom: -.25em
}

sup {
        top: -.5em
}

table {
        text-indent: 0;
        border-color: inherit;
        border-collapse: collapse
}

button,
input,
optgroup,
select,
textarea {
        font-family: inherit;
        font-feature-settings: inherit;
        font-variation-settings: inherit;
        font-size: 100%;
        font-weight: inherit;
        line-height: inherit;
        letter-spacing: inherit;
        color: inherit;
        margin: 0;
        padding: 0
}

button,
select {
        text-transform: none
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
        -webkit-appearance: button;
        background-color: transparent;
        background-image: none
}

:-moz-focusring {
        outline: auto
}

:-moz-ui-invalid {
        box-shadow: none
}

progress {
        vertical-align: baseline
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
        height: auto
}

[type=search] {
        -webkit-appearance: textfield;
        outline-offset: -2px
}

::-webkit-search-decoration {
        -webkit-appearance: none
}

::-webkit-file-upload-button {
        -webkit-appearance: button;
        font: inherit
}

summary {
        display: list-item
}

blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
        margin: 0
}

fieldset {
        margin: 0
}

fieldset,
legend {
        padding: 0
}

menu,
ol,
ul {
        list-style: none;
        margin: 0;
        padding: 0
}

dialog {
        padding: 0
}

textarea {
        resize: vertical
}

input::-moz-placeholder,
textarea::-moz-placeholder {
        opacity: 1;
        color: #9ca3af
}

input::placeholder,
textarea::placeholder {
        opacity: 1;
        color: #9ca3af
}

[role=button],
button {
        cursor: pointer
}

:disabled {
        cursor: default
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
        display: block;
        vertical-align: middle
}

img,
video {
        max-width: 100%;
        height: auto
}

[hidden]:where(:not([hidden=until-found])) {
        display: none
}

.container {
        width: 100%
}

@media (min-width:640px) {
        .container {
                max-width: 640px
        }
}

@media (min-width:768px) {
        .container {
                max-width: 768px
        }
}

@media (min-width:1024px) {
        .container {
                max-width: 1024px
        }
}

@media (min-width:1280px) {
        .container {
                max-width: 1280px
        }
}

@media (min-width:1536px) {
        .container {
                max-width: 1536px
        }
}

.invisible {
        visibility: hidden
}

.fixed {
        position: fixed
}

.absolute {
        position: absolute
}

.relative {
        position: relative
}

.inset-0 {
        inset: 0
}

.left-0 {
        left: 0
}

.left-4 {
        left: 1rem
}

.right-4 {
        right: 1rem
}

.top-1\/2 {
        top: 50%
}

.top-4 {
        top: 1rem
}

.z-10 {
        z-index: 10
}

.z-20 {
        z-index: 20
}

.z-40 {
        z-index: 40
}

.z-50 {
        z-index: 50
}

.mx-auto {
        margin-left: auto;
        margin-right: auto
}

.-mt-20 {
        margin-top: -5rem
}

.mb-1 {
        margin-bottom: .25rem
}

.mb-12 {
        margin-bottom: 3rem
}

.mb-16 {
        margin-bottom: 4rem
}

.mb-2 {
        margin-bottom: .5rem
}

.mb-3 {
        margin-bottom: .75rem
}

.mb-4 {
        margin-bottom: 1rem
}

.mb-6 {
        margin-bottom: 1.5rem
}

.mb-8 {
        margin-bottom: 2rem
}

.ml-1 {
        margin-left: .25rem
}

.ml-2 {
        margin-left: .5rem
}

.mr-2 {
        margin-right: .5rem
}

.mr-3 {
        margin-right: .75rem
}

.mr-4 {
        margin-right: 1rem
}

.mt-1 {
        margin-top: .25rem
}

.mt-12 {
        margin-top: 3rem
}

.mt-2 {
        margin-top: .5rem
}

.mt-4 {
        margin-top: 1rem
}

.mt-6 {
        margin-top: 1.5rem
}

.block {
        display: block
}

.inline-block {
        display: inline-block
}

.flex {
        display: flex
}

.grid {
        display: grid
}

.hidden {
        display: none
}

.h-10 {
        height: 2.5rem
}

.h-12 {
        height: 3rem
}

.h-16 {
        height: 4rem
}

.h-20 {
        height: 5rem
}

.h-64 {
        height: 16rem
}

.h-full {
        height: 100%
}

.w-10 {
        width: 2.5rem
}

.w-12 {
        width: 3rem
}

.w-16 {
        width: 4rem
}

.w-20 {
        width: 5rem
}

.w-64 {
        width: 16rem
}

.w-full {
        width: 100%
}

.max-w-2xl {
        max-width: 42rem
}

.max-w-3xl {
        max-width: 48rem
}

.max-w-4xl {
        max-width: 56rem
}

.max-w-6xl {
        max-width: 72rem
}

.-translate-y-1\/2 {
        --tw-translate-y: -50%
}

.-translate-y-1\/2,
.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))
}

.grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr))
}

.grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
}

.flex-col {
        flex-direction: column
}

.flex-wrap {
        flex-wrap: wrap
}

.items-start {
        align-items: flex-start
}

.items-end {
        align-items: flex-end
}

.items-center {
        align-items: center
}

.justify-center {
        justify-content: center
}

.justify-between {
        justify-content: space-between
}

.gap-12 {
        gap: 3rem
}

.gap-4 {
        gap: 1rem
}

.gap-6 {
        gap: 1.5rem
}

.gap-8 {
        gap: 2rem
}

.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*(1 - var(--tw-space-x-reverse)))
}

.space-x-8>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(2rem*var(--tw-space-x-reverse));
        margin-left: calc(2rem*(1 - var(--tw-space-x-reverse)))
}

.space-y-2>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(.5rem*(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(.5rem*var(--tw-space-y-reverse))
}

.space-y-3>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(.75rem*(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(.75rem*var(--tw-space-y-reverse))
}

.space-y-6>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(1.5rem*(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1.5rem*var(--tw-space-y-reverse))
}

.overflow-hidden {
        overflow: hidden
}

.rounded-2xl {
        border-radius: 1rem
}

.rounded-full {
        border-radius: 9999px
}

.rounded-lg {
        border-radius: .5rem
}

.rounded-xl {
        border-radius: .75rem
}

.rounded-l-xl {
        border-top-left-radius: .75rem;
        border-bottom-left-radius: .75rem
}

.rounded-r-xl {
        border-top-right-radius: .75rem;
        border-bottom-right-radius: .75rem
}

.border-2 {
        border-width: 2px
}

.border-b {
        border-bottom-width: 1px
}

.border-t {
        border-top-width: 1px
}

.border-gray-200 {
        --tw-border-opacity: 1;
        border-color: rgb(229 231 235/var(--tw-border-opacity, 1))
}

.border-gray-800 {
        --tw-border-opacity: 1;
        border-color: rgb(31 41 55/var(--tw-border-opacity, 1))
}

.border-purple-600 {
        --tw-border-opacity: 1;
        border-color: rgb(147 51 234/var(--tw-border-opacity, 1))
}

.bg-gray-50 {
        --tw-bg-opacity: 1;
        background-color: rgb(249 250 251/var(--tw-bg-opacity, 1))
}

.bg-gray-800 {
        --tw-bg-opacity: 1;
        background-color: rgb(31 41 55/var(--tw-bg-opacity, 1))
}

.bg-gray-900 {
        --tw-bg-opacity: 1;
        background-color: rgb(17 24 39/var(--tw-bg-opacity, 1))
}

.bg-purple-50 {
        --tw-bg-opacity: 1;
        background-color: rgb(250 245 255/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: hsla(0, 0%, 100%, .1)
}

.bg-white\/20 {
        background-color: hsla(0, 0%, 100%, .2)
}

.bg-white\/95 {
        background-color: hsla(0, 0%, 100%, .95)
}

.bg-gradient-to-br {
        background-image: linear-gradient(to bottom right, var(--tw-gradient-stops))
}

.bg-gradient-to-r {
        background-image: linear-gradient(to right, var(--tw-gradient-stops))
}

.from-green-500 {
        --tw-gradient-from: #22c55e var(--tw-gradient-from-position);
        --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-purple-100 {
        --tw-gradient-from: #f3e8ff var(--tw-gradient-from-position);
        --tw-gradient-to: rgba(243, 232, 255, 0) var(--tw-gradient-to-position);
        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-purple-50 {
        --tw-gradient-from: #faf5ff var(--tw-gradient-from-position);
        --tw-gradient-to: rgba(250, 245, 255, 0) var(--tw-gradient-to-position);
        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-purple-600 {
        --tw-gradient-from: #9333ea var(--tw-gradient-from-position);
        --tw-gradient-to: rgba(147, 51, 234, 0) var(--tw-gradient-to-position);
        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.to-indigo-100 {
        --tw-gradient-to: #e0e7ff var(--tw-gradient-to-position)
}

.to-indigo-50 {
        --tw-gradient-to: #eef2ff var(--tw-gradient-to-position)
}

.to-indigo-600 {
        --tw-gradient-to: #4f46e5 var(--tw-gradient-to-position)
}

.to-indigo-700 {
        --tw-gradient-to: #4338ca var(--tw-gradient-to-position)
}

.to-teal-500 {
        --tw-gradient-to: #14b8a6 var(--tw-gradient-to-position)
}

.object-cover {
        -o-object-fit: cover;
        object-fit: cover
}

.p-4 {
        padding: 1rem
}

.p-6 {
        padding: 1.5rem
}

.p-8 {
        padding: 2rem
}

.px-4 {
        padding-left: 1rem;
        padding-right: 1rem
}

.px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem
}

.px-8 {
        padding-left: 2rem;
        padding-right: 2rem
}

.py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem
}

.py-2 {
        padding-top: .5rem;
        padding-bottom: .5rem
}

.py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem
}

.py-3 {
        padding-top: .75rem;
        padding-bottom: .75rem
}

.py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem
}

.pb-2 {
        padding-bottom: .5rem
}

.pb-20 {
        padding-bottom: 5rem
}

.pl-12 {
        padding-left: 3rem
}

.pl-4 {
        padding-left: 1rem
}

.pr-4 {
        padding-right: 1rem
}

.pt-20 {
        padding-top: 5rem
}

.pt-32 {
        padding-top: 8rem
}

.pt-4 {
        padding-top: 1rem
}

.pt-6 {
        padding-top: 1.5rem
}

.pt-8 {
        padding-top: 2rem
}

.text-center {
        text-align: center
}

.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-lg {
        font-size: 1.125rem;
        line-height: 1.75rem
}

.text-sm {
        font-size: .875rem;
        line-height: 1.25rem
}

.text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem
}

.text-xs {
        font-size: .75rem;
        line-height: 1rem
}

.font-bold {
        font-weight: 700
}

.font-medium {
        font-weight: 500
}

.font-semibold {
        font-weight: 600
}

.leading-tight {
        line-height: 1.25
}

.text-gray-100 {
        --tw-text-opacity: 1;
        color: rgb(243 244 246/var(--tw-text-opacity, 1))
}

.text-gray-200 {
        --tw-text-opacity: 1;
        color: rgb(229 231 235/var(--tw-text-opacity, 1))
}

.text-gray-300 {
        --tw-text-opacity: 1;
        color: rgb(255 255 255/var(--tw-text-opacity, 1))
}

.text-gray-400 {
        --tw-text-opacity: 1;
        color: rgb(255 255 255/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-purple-100 {
        --tw-text-opacity: 1;
        color: rgb(243 232 255/var(--tw-text-opacity, 1))
}

.text-purple-500 {
        --tw-text-opacity: 1;
        color: rgb(168 85 247/var(--tw-text-opacity, 1))
}

.text-purple-600 {
        --tw-text-opacity: 1;
        color: rgb(147 51 234/var(--tw-text-opacity, 1))
}

.text-white {
        --tw-text-opacity: 1;
        color: rgb(255 255 255/var(--tw-text-opacity, 1))
}

.text-yellow-300 {
        --tw-text-opacity: 1;
        color: rgb(253 224 71/var(--tw-text-opacity, 1))
}

.opacity-0 {
        opacity: 0
}

.shadow-2xl {
        --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
        --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color)
}

.shadow-2xl,
.shadow-lg {
        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 rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
        --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color)
}

.shadow-md {
        --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
        --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color)
}

.shadow-md,
.shadow-sm {
        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 rgba(0, 0, 0, .05);
        --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color)
}

.backdrop-blur-md {
        --tw-backdrop-blur: blur(12px)
}

.backdrop-blur-md,
.backdrop-blur-sm {
        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)
}

.transition {
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
        transition-timing-function: cubic-bezier(.4, 0, .2, 1);
        transition-duration: .15s
}

.transition-all {
        transition-property: all;
        transition-timing-function: cubic-bezier(.4, 0, .2, 1);
        transition-duration: .15s
}

.duration-300 {
        transition-duration: .3s
}

.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\:bg-purple-50:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(250 245 255/var(--tw-bg-opacity, 1))
}

.hover\:bg-purple-600:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(147 51 234/var(--tw-bg-opacity, 1))
}

.hover\:bg-white\/30:hover {
        background-color: hsla(0, 0%, 100%, .3)
}

.hover\:text-purple-400:hover {
        --tw-text-opacity: 1;
        color: rgb(192 132 252/var(--tw-text-opacity, 1))
}

.hover\:text-purple-600:hover {
        --tw-text-opacity: 1;
        color: rgb(147 51 234/var(--tw-text-opacity, 1))
}

.hover\:text-white:hover {
        --tw-text-opacity: 1;
        color: rgb(255 255 255/var(--tw-text-opacity, 1))
}

.hover\:shadow-2xl:hover {
        --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
        --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color)
}

.hover\:shadow-2xl:hover,
.hover\:shadow-lg:hover {
        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 rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
        --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color)
}

.hover\:shadow-xl:hover {
        --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(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)
}

.focus\:border-purple-600:focus {
        --tw-border-opacity: 1;
        border-color: rgb(147 51 234/var(--tw-border-opacity, 1))
}

.focus\:outline-none:focus {
        outline: 2px solid transparent;
        outline-offset: 2px
}

.group:hover .group-hover\:visible {
        visibility: visible
}

.group:hover .group-hover\:opacity-100 {
        opacity: 1
}

@media (min-width:640px) {
        .sm\:flex-row {
                flex-direction: row
        }
}

@media (min-width:768px) {
        .md\:block {
                display: block
        }

        .md\:flex {
                display: flex
        }

        .md\:hidden {
                display: none
        }

        .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-4 {
                grid-template-columns: repeat(4, minmax(0, 1fr))
        }

        .md\:text-2xl {
                font-size: 1.5rem;
                line-height: 2rem
        }

        .md\:text-5xl {
                font-size: 3rem;
                line-height: 1
        }

        .md\:text-6xl {
                font-size: 3.75rem;
                line-height: 1
        }

        .md\:text-7xl {
                font-size: 4.5rem;
                line-height: 1
        }
}

@media (min-width:1024px) {
        .lg\:w-1\/2 {
                width: 50%
        }

        .lg\:grid-cols-2 {
                grid-template-columns: repeat(2, minmax(0, 1fr))
        }

        .lg\:grid-cols-3 {
                grid-template-columns: repeat(3, minmax(0, 1fr))
        }

        .lg\:grid-cols-4 {
                grid-template-columns: repeat(4, minmax(0, 1fr))
        }

        .lg\:flex-row {
                flex-direction: row
        }

        .lg\:flex-row-reverse {
                flex-direction: row-reverse
        }
}