@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
            /* Primary Colors (Warm Charcoal - Derived from Logo Text #2d2a2a) */
            --color-primary-50: #faf9f9;
            --color-primary-100: #f4f2f2;
            --color-primary-200: #e8e4e4;
            --color-primary-300: #d5cfcf;
            --color-primary-400: #b8b0b0;
            --color-primary-500: #908787;
            --color-primary-600: #706666;
            --color-primary-700: #534b4b;
            --color-primary-800: #2d2a2a; /* Exact Logo Text Match */
            --color-primary-900: #1a1818;

            /* Secondary Colors (Burgundy from Logo - Action, Conversion, Accent) */
            --color-secondary-50: #fdf8f8;
            --color-secondary-100: #f7edef;
            --color-secondary-200: #eed3d8;
            --color-secondary-300: #e0b0b9;
            --color-secondary-400: #cb8493;
            --color-secondary-500: #b45d70;
            --color-secondary-600: #9b4356;
            --color-secondary-700: #823243; /* Exact Logo Shield Match */
            --color-secondary-800: #6d2d3a;
            --color-secondary-900: #5c2934;

            /* Neutral Colors (Warm Grays matching Primary) */
            --color-neutral-50: #faf9f9;
            --color-neutral-100: #f4f2f2;
            --color-neutral-200: #e8e4e4;
            --color-neutral-300: #d5cfcf;
            --color-neutral-400: #b8b0b0;
            --color-neutral-500: #908787;
            --color-neutral-600: #706666;
            --color-neutral-700: #534b4b;
            --color-neutral-800: #2d2a2a;
            --color-neutral-900: #1a1818;

            /* Background Colors */
            --color-background-50: #ffffff;
            --color-background-100: #faf9f9;
            --color-background-200: #f4f2f2;
            --color-background-300: #e8e4e4;
            --color-background-400: #d5cfcf;
            --color-background-500: #b8b0b0;
            --color-background-600: #908787;
            --color-background-700: #706666;
            --color-background-800: #534b4b;
            --color-background-900: #2d2a2a;

            /* Typography */
            --font-heading-name: 'Inter';
            --font-body-name: 'Inter';
            --font-heading: 'Inter', sans-serif;
            --font-body: 'Inter', sans-serif;
            --letter-spacing-heading: -0.02em;
            --letter-spacing-body: 0px;
            
            /* Spacing */
            --space-base: 1rem;
            
            /* Borders */
            --radius-small: 0.375rem;
            --radius-large: 1rem;
            --border-width: 2px;
            
            /* Shadows */
            --shadow-color: 45 42 42; /* Warm Charcoal */
            --shadow-offset-x: 0px;
            --shadow-offset-y: 8px;
            --shadow-blur: 24px;
            --shadow-spread: -4px;
            --shadow-opacity: 0.12;
            --shadow-custom: var(--shadow-offset-x) var(--shadow-offset-y) var(--shadow-blur) var(--shadow-spread) rgba(var(--shadow-color), var(--shadow-opacity));
            --shadow-custom-hover: 0px 12px 30px -4px rgba(var(--shadow-color), 0.18);
        }

/*
 * New Frame Styles
 * Generated by UXMagic Copilot
 * 
 * Table of Contents:
 * 1. CSS Reset & Base Styles
 * 2. Typography
 * 3. Layout & Grid
 * 4. Components
 * 5. Utilities
 * 6. Responsive Design
 */

/* ==========================================================================
   1. CSS Reset & Base Styles
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   2. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin: 0 0 1rem 0;
}

a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* ==========================================================================
   3. Layout & Grid
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

.col {
  flex: 1;
  padding: 0 0.5rem;
}

/* ==========================================================================
   4. Components
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #007bff;
  color: white;
}

.btn:hover {
  background-color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.25);
}

.card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   5. Utilities
   ========================================================================== */

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

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* ==========================================================================
   6. Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .row {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 0.5rem;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}

/* ==========================================================================
   7. Project Specific Styles
   ========================================================================== */

.brand-radio:checked {
  background-color: var(--color-secondary-700);
  border-color: var(--color-secondary-700)
}

.brand-checkbox:checked {
  background-color: var(--color-secondary-700);
  border-color: var(--color-secondary-700)
}

.hide-scrollbar::-webkit-scrollbar {
  display: none
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none
}

@keyframes float {
  0% {
    transform: translateY(0px)
  }

  50% {
    transform: translateY(-10px)
  }

  100% {
    transform: translateY(0px)
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite
}

.animate-float-delayed {
  animation: float 4s ease-in-out infinite;
  animation-delay: 2s
}

.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.callback-modal[aria-hidden="true"] {
  display: none;
}

.callback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 24, 0.58);
  backdrop-filter: blur(6px);
}

.callback-modal__layout {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.callback-modal__dialog {
  width: min(100%, 28rem);
  box-shadow: 0 24px 60px -16px rgba(45, 42, 42, 0.28);
  padding: 1.75rem;
}

.callback-modal__eyebrow {
  letter-spacing: 0.12em;
  line-height: 1;
}

.callback-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.callback-modal__close {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

.callback-modal__body {
  margin-bottom: 1.5rem;
}

.callback-modal__form {
  margin-top: 0.25rem;
}

.callback-modal__form > * + * {
  margin-top: 0.875rem;
}

.callback-modal__form button[type="submit"] {
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .callback-modal__dialog {
    padding: 2rem;
  }
}

.map-placeholder {
  background:
    linear-gradient(135deg, rgba(130, 50, 67, 0.08), rgba(130, 50, 67, 0.03)),
    #e8e1e4;
}

.contact-map {
  overflow: hidden;
  isolation: isolate;
}

.contact-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
  z-index: 1;
}

.contact-map-frame {
  filter: saturate(0.85) contrast(0.98) brightness(1.02);
}

.contact-map-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -66%);
  width: 44px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 2;
}

.contact-map-marker-ring {
  position: absolute;
  left: 50%;
  top: 68%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  background: rgba(130, 50, 67, 0.18);
  box-shadow: 0 0 0 8px rgba(130, 50, 67, 0.08);
}

.contact-map-marker-pin {
  position: relative;
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 8px 14px rgba(92, 41, 52, 0.24));
  border-radius: 9999px 9999px 9999px 0;
  background: linear-gradient(180deg, #9b4356 0%, #823243 100%);
  transform: rotate(-45deg);
}

.contact-map-marker-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1.5px rgba(130, 50, 67, 0.12);
}

@media (max-width: 768px) {
  .contact-map-marker {
    width: 38px;
    height: 48px;
    transform: translate(-50%, -62%);
  }

  .contact-map-marker-ring {
    width: 16px;
    height: 16px;
    box-shadow: 0 0 0 6px rgba(130, 50, 67, 0.08);
  }

  .contact-map-marker-pin {
    width: 26px;
    height: 26px;
  }

  .contact-map-marker-pin::before {
    width: 8px;
    height: 8px;
  }
}

.form-notice {
  margin-bottom: 0;
}

[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important
}

.aos-init[data-aos] {
  opacity: 1 !important;
  transform: none !important
}

.aos-animate {
  opacity: 1 !important;
  transform: none !important
}

*, ::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: 
}

*,::after,::before{
  box-sizing:border-box;
  border-width:0;
  border-style:solid;
  border-color:#e5e7eb
}

::after,::before{
  --tw-content:''
}

:host,html{
  line-height:1.5;
  -webkit-text-size-adjust:100%;
  -moz-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;
  padding:0
}

legend{
  padding:0
}

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

dialog{
  padding:0
}

textarea{
  resize:vertical
}

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
}

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

.fixed{
  position:fixed
}

.absolute{
  position:absolute
}

.relative{
  position:relative
}

.sticky{
  position:sticky
}

.-inset-2{
  inset:-0.5rem
}

.inset-0{
  inset:0px
}

.inset-y-0{
  top:0px;
  bottom:0px
}

.bottom-0{
  bottom:0px
}

.bottom-4{
  bottom:1rem
}

.left-0{
  left:0px
}

.right-0{
  right:0px
}

.top-0{
  top:0px
}

.top-8{
  top:2rem
}

.z-10{
  z-index:10
}

.z-20{
  z-index:20
}

.z-50{
  z-index:50
}

.z-\[60\]{
  z-index:60
}

.-mx-4{
  margin-left:-1rem;
  margin-right:-1rem
}

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

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

.-ml-10{
  margin-left:-2.5rem
}

.-mr-10{
  margin-right:-2.5rem
}

.-mt-10{
  margin-top:-2.5rem
}

.mb-1{
  margin-bottom:0.25rem
}

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

.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-3{
  margin-left:0.75rem
}

.mt-0\.5{
  margin-top:0.125rem
}

.mt-1{
  margin-top:0.25rem
}

.mt-3{
  margin-top:0.75rem
}

.mt-4{
  margin-top:1rem
}

.mt-6{
  margin-top:1.5rem
}

.mt-8{
  margin-top:2rem
}

.mt-auto{
  margin-top:auto
}

.block{
  display:block
}

.inline-block{
  display:inline-block
}

.flex{
  display:flex
}

.inline-flex{
  display:inline-flex
}

.grid{
  display:grid
}

.hidden{
  display:none
}

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

.h-1{
  height:0.25rem
}

.h-10{
  height:2.5rem
}

.h-12{
  height:3rem
}

.h-20{
  height:5rem
}

.h-3{
  height:0.75rem
}

.h-3\.5{
  height:0.875rem
}

.h-32{
  height:8rem
}

.h-4{
  height:1rem
}

.h-48{
  height:12rem
}

.h-5{
  height:1.25rem
}

.h-6{
  height:1.5rem
}

.h-64{
  height:16rem
}

.h-7{
  height:1.75rem
}

.h-8{
  height:2rem
}

.h-\[300px\]{
  height:300px
}

.h-\[800px\]{
  height:800px
}

.h-auto{
  height:auto
}

.h-full{
  height:100%
}

.max-h-\[1200px\]{
  max-height:1200px
}

.max-h-\[1400px\]{
  max-height:1400px
}

.max-h-\[1600px\]{
  max-height:1600px
}

.max-h-\[1800px\]{
  max-height:1800px
}

.max-h-\[2500px\]{
  max-height:2500px
}

.max-h-\[800px\]{
  max-height:800px
}

.w-1\/3{
  width:33.333333%
}

.w-10{
  width:2.5rem
}

.w-12{
  width:3rem
}

.w-16{
  width:4rem
}

.w-2\/3{
  width:66.666667%
}

.w-3{
  width:0.75rem
}

.w-3\.5{
  width:0.875rem
}

.w-32{
  width:8rem
}

.w-4{
  width:1rem
}

.w-48{
  width:12rem
}

.w-5{
  width:1.25rem
}

.w-6{
  width:1.5rem
}

.w-7{
  width:1.75rem
}

.w-8{
  width:2rem
}

.w-\[800px\]{
  width:800px
}

.w-auto{
  width:auto
}

.w-full{
  width:100%
}

.min-w-\[240px\]{
  min-width:240px
}

.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-7xl{
  max-width:80rem
}

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

.flex-1{
  flex:1 1 0%
}

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

.shrink-0{
  flex-shrink:0
}

.flex-grow{
  flex-grow:1
}

.-translate-y-12{
  --tw-translate-y:-3rem;
  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-1\/3{
  --tw-translate-x:33.333333%;
  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-2{
  --tw-rotate:2deg;
  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))
}

.cursor-pointer{
  cursor:pointer
}

.snap-x{
  scroll-snap-type:x var(--tw-scroll-snap-strictness)
}

.snap-mandatory{
  --tw-scroll-snap-strictness:mandatory
}

.snap-center{
  scroll-snap-align:center
}

.scroll-mt-20{
  scroll-margin-top:5rem
}

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

.flex-row{
  flex-direction:row
}

.flex-col{
  flex-direction:column
}

.flex-nowrap{
  flex-wrap:nowrap
}

.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-1{
  gap:0.25rem
}

.gap-2{
  gap:0.5rem
}

.gap-3{
  gap:0.75rem
}

.gap-4{
  gap:1rem
}

.gap-6{
  gap:1.5rem
}

.gap-8{
  gap:2rem
}

.gap-x-8{
  column-gap:2rem
}

.gap-y-8{
  row-gap:2rem
}

.space-x-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse:0;
  margin-right:calc(1.5rem * var(--tw-space-x-reverse));
  margin-left:calc(1.5rem * calc(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 * calc(1 - var(--tw-space-x-reverse)))
}

.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0;
  margin-top:calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:calc(0.25rem * 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-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-hidden{
  overflow:hidden
}

.overflow-x-auto{
  overflow-x:auto
}

.scroll-smooth{
  scroll-behavior:smooth
}

.rounded{
  border-radius:0.25rem
}

.rounded-\[1\.5rem\]{
  border-radius:1.5rem
}

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

.rounded-large{
  border-radius:var(--radius-large)
}

.rounded-small{
  border-radius:var(--radius-small)
}

.border{
  border-width:1px
}

.border-2{
  border-width:2px
}

.border-b{
  border-bottom-width:1px
}

.border-t{
  border-top-width:1px
}

.border-none{
  border-style:none
}

.border-neutral-100{
  border-color:var(--color-neutral-100)
}

.border-neutral-200{
  border-color:var(--color-neutral-200)
}

.border-neutral-300{
  border-color:var(--color-neutral-300)
}

.border-primary-900{
  border-color:var(--color-primary-900)
}

.border-secondary-700{
  border-color:var(--color-secondary-700)
}

.border-white{
  --tw-border-opacity:1;
  border-color:rgb(255 255 255 / var(--tw-border-opacity, 1))
}

.bg-background-100{
  background-color:var(--color-background-100)
}

.bg-background-50{
  background-color:var(--color-background-50)
}

.bg-neutral-200{
  background-color:var(--color-neutral-200)
}

.bg-primary-700{
  background-color:var(--color-primary-700)
}

.bg-primary-800{
  background-color:var(--color-primary-800)
}

.bg-primary-900{
  background-color:var(--color-primary-900)
}

.bg-secondary-100{
  background-color:var(--color-secondary-100)
}

.bg-secondary-50{
  background-color:var(--color-secondary-50)
}

.bg-secondary-700{
  background-color:var(--color-secondary-700)
}

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

.bg-gradient-to-b{
  background-image:linear-gradient(to bottom, var(--tw-gradient-stops))
}

.from-secondary-400{
  --tw-gradient-from:var(--color-secondary-400) var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)
}

.fill-current{
  fill:currentColor
}

.to-secondary-700{
  --tw-gradient-to:var(--color-secondary-700) var(--tw-gradient-to-position)
}

.object-contain{
  object-fit:contain
}

.object-cover{
  object-fit:cover
}

.object-center{
  object-position:center
}

.object-top{
  object-position:top
}

.p-1{
  padding:0.25rem
}

.p-2\.5{
  padding:0.625rem
}

.p-3{
  padding:0.75rem
}

.p-4{
  padding:1rem
}

.p-5{
  padding:1.25rem
}

.p-6{
  padding:1.5rem
}

.px-2{
  padding-left:0.5rem;
  padding-right:0.5rem
}

.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:0.5rem;
  padding-bottom:0.5rem
}

.py-2\.5{
  padding-top:0.625rem;
  padding-bottom:0.625rem
}

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

.py-3\.5{
  padding-top:0.875rem;
  padding-bottom:0.875rem
}

.py-4{
  padding-top:1rem;
  padding-bottom:1rem
}

.py-8{
  padding-top:2rem;
  padding-bottom:2rem
}

.pb-12{
  padding-bottom:3rem
}

.pb-20{
  padding-bottom:5rem
}

.pb-4{
  padding-bottom:1rem
}

.pb-6{
  padding-bottom:1.5rem
}

.pl-14{
  padding-left:3.5rem
}

.pl-4{
  padding-left:1rem
}

.pr-4{
  padding-right:1rem
}

.pt-2{
  padding-top:0.5rem
}

.pt-4{
  padding-top:1rem
}

.pt-6{
  padding-top:1.5rem
}

.pt-16{
  padding-top:4rem
}

.text-center{
  text-align:center
}

.font-body{
  font-family:var(--font-body-name), sans-serif
}

.font-heading{
  font-family:var(--font-heading-name), sans-serif
}

.text-2xl{
  font-size:1.5rem;
  line-height:2rem
}

.text-3xl{
  font-size:1.875rem;
  line-height:2.25rem
}

.text-\[10px\]{
  font-size:10px
}

.text-\[9px\]{
  font-size:9px
}

.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
}

.leading-relaxed{
  line-height:1.625
}

.leading-tight{
  line-height:1.25
}

.text-amber-400{
  --tw-text-opacity:1;
  color:rgb(251 191 36 / var(--tw-text-opacity, 1))
}

.text-neutral-400{
  color:var(--color-neutral-400)
}

.text-neutral-500{
  color:var(--color-neutral-500)
}

.text-neutral-600{
  color:var(--color-neutral-600)
}

.text-neutral-700{
  color:var(--color-neutral-700)
}

.text-neutral-800{
  color:var(--color-neutral-800)
}

.text-neutral-900{
  color:var(--color-neutral-900)
}

.text-primary-200{
  color:var(--color-primary-200)
}

.text-primary-300{
  color:var(--color-primary-300)
}

.text-primary-600{
  color:var(--color-primary-600)
}

.text-primary-700{
  color:var(--color-primary-700)
}

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

.text-secondary-700{
  color:var(--color-secondary-700)
}

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

.antialiased{
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale
}

.opacity-10{
  opacity:0.1
}

.opacity-20{
  opacity:0.2
}

.opacity-50{
  opacity:0.5
}

.opacity-60{
  opacity:0.6
}

.opacity-80{
  opacity:0.8
}

.shadow-\[0_-10px_20px_rgba\(0\2c 0\2c 0\2c 0\.05\)\]{
  --tw-shadow:0 -10px 20px rgba(0,0,0,0.05);
  --tw-shadow-colored:0 -10px 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_10px_30px_-10px_rgba\(130\2c 50\2c 67\2c 0\.15\)\]{
  --tw-shadow:0 10px 30px -10px rgba(130,50,67,0.15);
  --tw-shadow-colored:0 10px 30px -10px 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_8px_30px_rgb\(0\2c 0\2c 0\2c 0\.12\)\]{
  --tw-shadow:0 8px 30px rgb(0,0,0,0.12);
  --tw-shadow-colored:0 8px 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-custom{
  --tw-shadow:var(--shadow-custom);
  --tw-shadow-colored:var(--shadow-custom);
  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-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)
}

.outline-none{
  outline:2px solid transparent;
  outline-offset:2px
}

.blur-2xl{
  --tw-blur:blur(40px);
  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)
}

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

.transition-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, fill, stroke, -webkit-text-decoration-color;
  transition-property:color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  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
}

.hover\:border-secondary-700:hover{
  border-color:var(--color-secondary-700)
}

.hover\:bg-secondary-800:hover{
  background-color:var(--color-secondary-800)
}

.hover\:text-secondary-700:hover{
  color:var(--color-secondary-700)
}

.hover\:text-secondary-800:hover{
  color:var(--color-secondary-800)
}

.hover\:text-white:hover{
  --tw-text-opacity:1;
  color:rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.hover\:shadow-custom-hover:hover{
  --tw-shadow:var(--shadow-custom-hover);
  --tw-shadow-colored:var(--shadow-custom-hover);
  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)
}

.focus\:border-secondary-700:focus{
  border-color:var(--color-secondary-700)
}

.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-secondary-700:focus{
  --tw-ring-color:var(--color-secondary-700)
}

.group:hover .group-hover\:-translate-y-1{
  --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))
}

.group:hover .group-hover\:translate-x-1{
  --tw-translate-x: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))
}

.group:hover .group-hover\:bg-secondary-700{
  background-color:var(--color-secondary-700)
}

.group:hover .group-hover\:text-primary-900{
  color:var(--color-primary-900)
}

.group:hover .group-hover\:text-white{
  --tw-text-opacity:1;
  color:rgb(255 255 255 / var(--tw-text-opacity, 1))
}

@media (min-width: 640px){
  .sm\:-left-6{
    left:-1.5rem
  }

  .sm\:-right-6{
    right:-1.5rem
  }

  .sm\:mx-0{
  margin-left:0px;
  margin-right:0px
}

.sm\:grid{
  display:grid
}

.sm\:h-6{
  height:1.5rem
}

.sm\:w-6{
  width:1.5rem
}

.sm\:w-auto{
  width:auto
}

.sm\:min-w-0{
  min-width:0px
}

.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\:overflow-visible{
  overflow:visible
}

.sm\:p-10{
  padding:2.5rem
}

.sm\:p-6{
  padding:1.5rem
}

.sm\:p-8{
  padding:2rem
}

.sm\:px-0{
  padding-left:0px;
  padding-right:0px
}

.sm\:px-6{
  padding-left:1.5rem;
  padding-right:1.5rem
}

.sm\:pb-0{
  padding-bottom:0px
}

.sm\:text-2xl{
  font-size:1.5rem;
  line-height:2rem
}

.sm\:text-5xl{
  font-size:3rem;
  line-height:1
}

.sm\:text-xl{
  font-size:1.25rem;
  line-height:1.75rem
}


}

@media (min-width: 768px){
  .md\:-inset-3{
  inset:-0.75rem
}

  .md\:-left-10{
    left:-2.5rem
  }

  .md\:-right-8{
    right:-2rem
  }

  .md\:bottom-10{
    bottom:2.5rem
  }

  .md\:top-16{
    top:4rem
  }

.md\:mx-0{
  margin-left:0px;
  margin-right:0px
}

.md\:mb-10{
  margin-bottom:2.5rem
}

.md\:mb-12{
  margin-bottom:3rem
}

.md\:mb-16{
  margin-bottom:4rem
}

.md\:mb-2{
  margin-bottom:0.5rem
}

.md\:mb-3{
  margin-bottom:0.75rem
}

.md\:mb-4{
  margin-bottom:1rem
}

.md\:mb-5{
  margin-bottom:1.25rem
}

.md\:mb-6{
  margin-bottom:1.5rem
}

.md\:mb-8{
  margin-bottom:2rem
}

.md\:mt-0{
  margin-top:0px
}

.md\:mt-1{
  margin-top:0.25rem
}

.md\:mt-10{
  margin-top:2.5rem
}

.md\:mt-12{
  margin-top:3rem
}

.md\:mt-4{
  margin-top:1rem
}

.md\:mt-6{
  margin-top:1.5rem
}

.md\:block{
  display:block
}

.md\:flex{
  display:flex
}

.md\:grid{
  display:grid
}

.md\:hidden{
  display:none
}

.md\:h-10{
  height:2.5rem
}

.md\:h-12{
  height:3rem
}

.md\:h-14{
  height:3.5rem
}

.md\:h-24{
  height:6rem
}

.md\:h-4{
  height:1rem
}

.md\:h-40{
  height:10rem
}

.md\:h-5{
  height:1.25rem
}

.md\:h-6{
  height:1.5rem
}

.md\:h-64{
  height:16rem
}

.md\:h-7{
  height:1.75rem
}

.md\:h-8{
  height:2rem
}

.md\:h-80{
  height:20rem
}

.md\:h-\[400px\]{
  height:400px
}

  .md\:max-h-\[1000px\]{
    max-height:1000px
  }

.md\:max-h-\[1200px\]{
  max-height:1200px
}

.md\:max-h-\[1600px\]{
  max-height:1600px
}

.md\:max-h-\[600px\]{
  max-height:600px
}

.md\:max-h-\[900px\]{
  max-height:900px
}

.md\:w-1\/3{
  width:33.333333%
}

.md\:w-10{
  width:2.5rem
}

.md\:w-12{
  width:3rem
}

.md\:w-14{
  width:3.5rem
}

.md\:w-20{
  width:5rem
}

.md\:w-4{
  width:1rem
}

.md\:w-40{
  width:10rem
}

.md\:w-5{
  width:1.25rem
}

.md\:w-6{
  width:1.5rem
}

.md\:w-64{
  width:16rem
}

.md\:w-7{
  width:1.75rem
}

.md\:w-8{
  width:2rem
}

.md\:w-auto{
  width:auto
}

.md\:w-full{
  width:100%
}

.md\:min-w-0{
  min-width:0px
}

.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\:flex-row{
  flex-direction:row
}

.md\:flex-col{
  flex-direction:column
}

.md\:items-stretch{
  align-items:stretch
}

.md\:gap-0{
  gap:0px
}

.md\:gap-12{
  gap:3rem
}

.md\:gap-2{
  gap:0.5rem
}

.md\:gap-3{
  gap:0.75rem
}

.md\:gap-4{
  gap:1rem
}

.md\:gap-5{
  gap:1.25rem
}

.md\:gap-6{
  gap:1.5rem
}

.md\:gap-8{
  gap:2rem
}

.md\:gap-y-12{
  row-gap:3rem
}

.md\: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))
}

.md\: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))
}

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

.md\:overflow-visible{
  overflow:visible
}

.md\:p-10{
  padding:2.5rem
}

.md\:p-12{
  padding:3rem
}

  .md\:p-3{
    padding:0.75rem
  }

.md\:p-4{
  padding:1rem
}

.md\:p-5{
  padding:1.25rem
}

.md\:p-6{
  padding:1.5rem
}

.md\:p-8{
  padding:2rem
}

.md\:px-0{
  padding-left:0px;
  padding-right:0px
}

.md\:px-4{
  padding-left:1rem;
  padding-right:1rem
}

.md\:px-5{
  padding-left:1.25rem;
  padding-right:1.25rem
}

.md\:px-6{
  padding-left:1.5rem;
  padding-right:1.5rem
}

.md\:px-8{
  padding-left:2rem;
  padding-right:2rem
}

.md\:py-0{
  padding-top:0px;
  padding-bottom:0px
}

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

.md\:py-20{
  padding-top:5rem;
  padding-bottom:5rem
}

.md\:py-24{
  padding-top:6rem;
  padding-bottom:6rem
}

.md\:py-4{
  padding-top:1rem;
  padding-bottom:1rem
}

.md\:py-5{
  padding-top:1.25rem;
  padding-bottom:1.25rem
}

.md\:pb-0{
  padding-bottom:0px
}

.md\:pb-24{
  padding-bottom:6rem
}

.md\:pr-5{
  padding-right:1.25rem
}

.md\:pt-28{
  padding-top:7rem
}

.md\:pt-4{
  padding-top:1rem
}

.md\:pt-8{
  padding-top:2rem
}

.md\:text-left{
  text-align:left
}

.md\:text-right{
  text-align:right
}

.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-\[11px\]{
  font-size:11px
}

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

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

.md\:text-sm{
  font-size:0.875rem;
  line-height:1.25rem
}

.md\:text-xl{
  font-size:1.25rem;
  line-height:1.75rem
}

.md\:text-xs{
  font-size:0.75rem;
  line-height:1rem
}

.md\:shadow-\[0_20px_50px_-12px_rgba\(130\2c 50\2c 67\2c 0\.15\)\]{
  --tw-shadow:0 20px 50px -12px rgba(130,50,67,0.15);
  --tw-shadow-colored:0 20px 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)
}


}

@media (min-width: 1024px){
  .lg\:col-span-5{
  grid-column:span 5 / span 5
}

.lg\:col-span-7{
  grid-column:span 7 / span 7
}

.lg\:ml-auto{
  margin-left:auto
}

.lg\:block{
  display:block
}

.lg\:hidden{
  display:none
}

.lg\:h-auto{
  height:auto
}

.lg\:max-w-lg{
  max-width:32rem
}

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

.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\:grid-cols-5{
  grid-template-columns:repeat(5, minmax(0, 1fr))
}

.lg\:gap-10{
  gap:2.5rem
}

.lg\:p-16{
  padding:4rem
}

.lg\:px-8{
  padding-left:2rem;
  padding-right:2rem
}

.lg\:pr-4{
  padding-right:1rem
}

.lg\:pt-32{
  padding-top:8rem
}

.lg\:text-4xl{
  font-size:2.25rem;
  line-height:2.5rem
}

.lg\:text-6xl{
  font-size:3.75rem;
  line-height:1
}


}

@keyframes uxmagic-asset-highlight-blink {
  0%, 100% {
  border-color: #2A0DBA;
  opacity: 1
}

50% {
  border-color: rgba(42, 13, 186, 0.35);
  opacity: 0.6
}


}

.uxmagic-asset-highlight {
  border: 3px dashed #2A0DBA;
  box-sizing: border-box;
  animation: uxmagic-asset-highlight-blink 1.2s ease-in-out infinite
}