@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap);
@tailwind base;
@tailwind components;
@tailwind utilities;
:root{
  --primary-color:#22489E;
  --secondary-color:#1E90FF;
  --tertiary-color:#D7EAF3;
  --soft-light-blue:#f6fbfe;
  --contrast-color:#f44336;
  --text-color:#444;
  --earth-color:#33cc33;
  --water-color:#00b7ff;
  --air-color:#b19cd9;
  --fire-color:#ffb347;
  --spacing-1:2px;
  --spacing-2:4px; 
  --spacing-3:6px;
  --spacing-4:8px;
  --spacing-5:12px;
  --spacing-6:16px;
  --spacing-8:24px;
  --spacing-10:32px;
  --spacing-12:40px;
  --spacing-16:56px;
  --spacing-20:72px;
  --spacing-24:88px;

  --inspiration-bg:hsl(210 20% 98%);
  --inspiration-fg:hsl(215 25% 27%);
  --inspiration-card-bg:hsl(0 0% 100%);
  --inspiration-card-fg:hsl(215 25% 27%);
  --inspiration-accent:hsl(224 76% 48%);
  --inspiration-accent-hover:hsl(214 82% 51%);
}
*{
  box-sizing:border-box;
  font-family:'Inter', sans-serif;
  margin:0;
  padding:0;
}
p{ 
  margin:0; 
}
body{
  color:#333;
  line-height:1.6;
  overflow-y:scroll;
}
@keyframes circle-animation{
  0%{
    opacity:1;
    transform:scale(0);
  }
  100%{
    opacity:0;
    transform:scale(5);
  }
}
.homepage-main-heading{
  color:#22489E !important;
  color:var(--primary-color) !important;
  font-size:1.75rem !important; 
  font-weight:600 !important;
  letter-spacing:-.01em !important;
  line-height:1.2 !important;
}
@media (min-width: 640px){
  .homepage-main-heading{
    font-size:2rem !important;
  }
}
.homepage-subtitle{
  color:#333333 !important;
  font-size:1.125rem !important;
  font-weight:400 !important;
  line-height:1.5 !important;
  margin-bottom:1rem !important;
  text-align:center !important;
}
.homepage-service-card{
  background-color:white !important;
  border-radius:8px !important;
  margin-bottom:16px !important;
  padding:16px !important;
  transition:all .3s ease !important;
}

.homepage-service-card:hover{
  box-shadow:0 10px 15px #D7EAF3 !important;
  box-shadow:0 10px 15px var(--tertiary-color) !important;
  transform:translateY(-5px) !important;
}

.homepage-card-title{
  color:#333 !important;
  font-size:1.25rem !important;
  font-weight:600 !important;
  margin-bottom:8px !important;
}

.homepage-card-description{
  color:#666 !important;
  font-size:.875rem !important;
}
.bg-soft-light-blue{
  background-color:#f6fbfe;
  background-color:var(--soft-light-blue);
}

.text-primary-color{
  color:#22489E;
  color:var(--primary-color);
}

.bg-tertiary-color{
  background-color:#D7EAF3;
  background-color:var(--tertiary-color);
}

.text-secondary-color{
  color:#1E90FF;
  color:var(--secondary-color);
}

.bg-contrast-color{
  background-color:#f44336;
  background-color:var(--contrast-color);
}

.text-tertiary-color{
  color:#D7EAF3;
  color:var(--tertiary-color);
}
.header-content{
  background:linear-gradient(45deg, #22489E, #1E90FF);
  background:linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius:10px;
  box-shadow:0 4px 6px rgba(0, 0, 0, .1);
  color:white;
  padding:16px;
  padding:var(--spacing-6);
}

.header-avatar{
  border:2px solid white;
  border-radius:50%;
  cursor:pointer;
  height:40px;
  height:var(--spacing-12);
  width:40px;
  width:var(--spacing-12);
}

.header-text{
  font-size:1.25rem;
  font-weight:500;
}

.header-subtext{
  color:#e3f2fd;
  font-size:1rem;
  font-style:italic;
}
.header-content{
  align-items:center;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  margin-bottom:16px;
  max-height:150px;
}
.header-content > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0;
  margin-bottom:calc(8px*var(--tw-space-y-reverse));
  margin-top:calc(8px*(1 - var(--tw-space-y-reverse)));
}
.header-content{
  text-align:center;
  --tw-text-opacity:1;
  color:rgb(255 255 255 / 1);
  color:rgb(255 255 255 / var(--tw-text-opacity, 1));
  --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:0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 640px){
  .header-content{
    flex-direction:row;
  }
  .header-content > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse:0;
    margin-left:calc(8px*(1 - var(--tw-space-x-reverse)));
    margin-right:calc(8px*var(--tw-space-x-reverse));
    --tw-space-y-reverse:0;
    margin-bottom:calc(0px*var(--tw-space-y-reverse));
    margin-top:calc(0px*(1 - var(--tw-space-y-reverse)));
  }
}

.header-text{
  text-align:left;
  width:100%;
}

@media (min-width: 640px){
  .header-text{
    width:66.666667%;
  }
}

.header-avatar{
  height:60px;
  width:60px;
}

@media (min-width: 640px){
  .header-avatar{
    height:90px;
    width:90px;
  }
}
body{
  background-color:#f5f5f5;
  font-family:'Inter', sans-serif;
}
.text-earth{
  color:#33cc33;
  color:var(--earth-color);
}

.text-water{
  color:#00b7ff;
  color:var(--water-color);
}

.text-air{
  color:#b19cd9;
  color:var(--air-color);
}

.text-fire{
  color:#ffb347;
  color:var(--fire-color);
}
.button-common{
  background:linear-gradient(45deg, #22489E, #1E90FF) !important;
  background:linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
  border:none;
  border-radius:4px;
  box-shadow:0 2px 4px rgba(0, 0, 0, .2);
  color:#fff !important;
  cursor:pointer;
  font-weight:normal;
  padding:6px 12px;
  padding:var(--spacing-3) var(--spacing-5); 
  text-transform:uppercase;
  transition:background-color .3s ease, box-shadow .3s ease;
}

.button-common:hover{
  box-shadow:0 4px 8px rgba(0, 0, 0, .3);
  opacity:.9;
}
.finish-submit-button{
  background:linear-gradient(45deg, #7B1FA2, #BA68C8) !important;
  border:2px solid #BA68C8;
  border-radius:8px;
  box-shadow:0 4px 10px rgba(0, 0, 0, .2);
  color:#fff !important;
  transition:all .3s ease;
}

.finish-submit-button:hover{
  background:linear-gradient(45deg, #A020F0, #C71585) !important;
  box-shadow:0 6px 14px rgba(0, 0, 0, .3);
  transform:translateY(-2px);
}
.landing-page{
  margin-top:0 !important;
}
.blue-dialog-header{
  background:linear-gradient(45deg, #22489E, #1E90FF);
  background:linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color:white;
  font-size:1.2rem;
  padding:12px 24px;
}
.dialog-cancel-button{
  color:#6c757d !important;
  color:var(--text-secondary-color, #6c757d) !important;
  text-transform:uppercase !important;
}
.dialog-delete-button{
  background-color:#f44336 !important;
  background-color:var(--contrast-color, #d32f2f) !important;
  border-radius:4px !important;
  box-shadow:0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12) !important;
  color:white !important;
  padding:6px 16px !important;
  text-transform:uppercase !important;
}

.dialog-delete-button:hover{
  background-color:#c62828 !important;
  box-shadow:0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12) !important;
}
.sidebar{
  align-items:center;
  background:#fff;
  box-shadow:2px 0 5px rgba(0, 0, 0, .1);
  display:flex;
  flex-direction:column;
  height:100%;
  left:0;
  padding:4px 0;
  padding:var(--spacing-2) 0;
  position:fixed;
  top:0;
  transition:width .3s ease !important;
  width:88px;
  width:var(--spacing-24);
  z-index:1300;
}

.sidebar.open{
  justify-content:flex-start;
  transition:width .3s ease !important;
  width:250px;
}

.sidebar.collapsed{
  transition:width .3s ease !important;
  width:88px;
  width:var(--spacing-24);
}

.sidebar .nav-list{
  width:100%;
}

.sidebar li a{
  align-items:center;
  background:#fff;
  border-radius:12px;
  display:flex;
  justify-content:center;
  text-decoration:none;
  transition:all .4s ease;
  width:100%;
}

.sidebar li a:hover{
  background:#f0f0f0;
}

.sidebar li a .links_name{
  color:#000;
  display:none;
  font-size:15px;
  font-weight:400;
  opacity:0;
  pointer-events:none;
  transition:opacity .4s ease;
  white-space:nowrap;
}

.sidebar.open li a .links_name{
  display:inline;
  opacity:1;
  pointer-events:auto;
}

.sidebar li a:hover .links_name,
.sidebar li a:hover i{
  color:#000;
  transition:all .5s ease;
}

.sidebar li i{
  align-items:center;
  border-radius:12px;
  color:#808080;
  display:flex;
  justify-content:center;
}

.sidebar li .tooltip{
  background:#fff;
  border-radius:4px;
  font-size:12px;
  font-weight:400;
  left:calc(100% + 15px);
  opacity:0;
  padding:4px 6px;
  padding:var(--spacing-2) var(--spacing-3);
  pointer-events:none;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  transition:opacity 0s;
  white-space:nowrap;
}

.sidebar li:hover .tooltip{
  opacity:1;
  pointer-events:auto;
  transition:opacity .4s ease;
}

.sidebar.open li .tooltip{
  display:none;
}

.sidebar li .MuiListItemIcon-root{
  justify-content:center;
  margin-right:0;
  min-width:88px;
  min-width:var(--spacing-24);
  width:88px;
  width:var(--spacing-24);
}

.sidebar.open li .MuiListItemIcon-root{
  justify-content:flex-start;
}

.sidebar.collapsed li .MuiListItemIcon-root{
  justify-content:center;
  margin-right:0;
}
.sidebar .MuiListItem-root{
  padding:6px 0;
  padding:var(--spacing-3) 0;
}

#menuButton{
  align-self:center;
  margin:4px 0;
  margin:var(--spacing-2) 0;
}

.sidebar.open #menuButton{
  align-self:flex-end;
  margin:4px 4px 0 0;
  margin:var(--spacing-2) var(--spacing-2) 0 0;
}

.main-content{
  box-sizing:border-box;
  flex:1 1;
  margin-left:88px;
  margin-left:var(--spacing-24);
  overflow-x:hidden;
  padding:10px;
  transition:margin-left .3s ease;
}

.sidebar-open .main-content{
  margin-left:250px;
  width:calc(100% - 250px);
}

.sidebar-icon{
  align-items:center;
  display:flex;
  height:100%;
  justify-content:center !important;
  min-width:88px;
  min-width:var(--spacing-24);
  transition:none !important;
  width:88px;
  width:var(--spacing-24);
}

.sidebar.open .sidebar-icon{
  justify-content:flex-start !important;
  margin-left:6px;
  margin-left:var(--spacing-3);
  width:auto;
}
.app-page .main-content{
  margin-left:64px;
  transition:margin-left .3s ease;
  width:calc(100% - 64px);
}

.app-page .sidebar-open .main-content{
  margin-left:250px;
  width:calc(100% - 250px);
}
.landing-page .landing-content{
  margin-left:0;
  width:100%;
}
.landing-page .App-container{
  max-width:none;
  padding-top:65px !important;
  width:100%;
}
@media (max-width: 768px){
  .main-content,
  .app-page .main-content,
  .sidebar-open .main-content,
  .app-page .sidebar-open .main-content,
  .landing-page .landing-content{
    margin-left:0;
    width:100%;
  }
}
.button-common.compact-button{
  font-size:.75rem;
  line-height:1rem;
  padding:.5rem .5rem;
}
@media (max-width: 768px){
  .button-common.compact-button{
    font-size:.7rem;
    padding:.2rem .4rem;
  }
}

@font-face{
  font-family:'Nunito';
  font-style:normal;
  font-weight:normal;
  src:url(/static/media/Nunito-Regular.9d7a6e03c6e3ed49c7ac.ttf) format('truetype');
}

@font-face{
  font-family:'Nunito';
  font-style:normal;
  font-weight:bold;
  src:url(/static/media/Nunito-Bold.275dd55e10ba966bcb9b.ttf) format('truetype');
}

@font-face{
  font-family:'Nunito';
  font-style:italic;
  font-weight:normal;
  src:url(/static/media/Nunito-Italic.cedc8a593d8ba361dcf4.ttf) format('truetype');
}
.fuseSoul-font{
  font-family:'Nunito', sans-serif;
  font-style:normal;
}
.nav-container{
  border-bottom-width:1px;
  left:0;
  position:fixed;
  right:0;
  top:0;
  width:100%;
  z-index:50;
  --tw-border-opacity:1;
  border-color:rgb(209 213 219 / 1);
  border-color:rgb(209 213 219 / var(--tw-border-opacity, 1));
  --tw-bg-opacity:1;
  background-color:rgb(255 255 255 / 1);
  background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.nav-content{
  width:100%;
}

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

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

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

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

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

.nav-content{
  align-items:center;
  display:flex;
  justify-content:space-between;
  margin-left:auto;
  margin-right:auto;
  padding:8px;
}

.nav-logo{
  align-items:center;
  display:flex;
  font-size:1.5rem;
  font-weight:700;
  line-height:2rem;
  --tw-text-opacity:1;
  color:rgb(33 150 243 / 1);
  color:rgb(33 150 243 / var(--tw-text-opacity, 1));
  color:#22489E;
  color:var(--primary-color);
  font-family:'Nunito', sans-serif;
  font-style:normal;
}

.nav-logo img{
  height:24px;
  margin-right:4px;
  width:24px;
}

.nav-menu{
  align-items:center;
  display:flex;
}

.nav-menu > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse:0;
  margin-left:calc(2.25rem*(1 - var(--tw-space-x-reverse)));
  margin-right:calc(2.25rem*var(--tw-space-x-reverse));
}

.nav-link{
  --tw-text-opacity:1;
  color:rgb(33 150 243 / 1);
  color:rgb(33 150 243 / var(--tw-text-opacity, 1));
  color:#22489E;
  color:var(--primary-color);
}

.nav-link:hover{
  --tw-text-opacity:1;
  color:rgb(25 118 210 / 1);
  color:rgb(25 118 210 / var(--tw-text-opacity, 1));
}
.mobile-menu-overlay{
  inset:0;
  position:fixed;
  --tw-bg-opacity:1;
  animation-duration:.3s;
  animation-timing-function:cubic-bezier(.4, 0, .2, 1);
  background-color:rgb(0 0 0 / 1);
  background-color:rgb(0 0 0 / var(--tw-bg-opacity, 1));
  transition-duration:.3s;
  transition-property:opacity;
  transition-timing-function:cubic-bezier(.4, 0, .2, 1);
}

.mobile-menu-overlay.open{
  opacity:.5;
  z-index:40;
}

.mobile-menu-overlay.closed{
  opacity:0;
  pointer-events:none;
  z-index:-1;
}

.mobile-menu{
  height:100%;
  position:fixed;
  right:0;
  top: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));
  width:18rem;
  z-index:50;
  --tw-bg-opacity:1;
  background-color:rgb(255 255 255 / 1);
  background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1));
  --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);
  animation-duration:.3s;
  animation-timing-function:cubic-bezier(.4, 0, .2, 1);
  box-shadow:0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-duration:.3s;
  transition-property:transform;
  transition-timing-function:cubic-bezier(.4, 0, .2, 1);
}

.mobile-menu.open{
  --tw-translate-x:0px;
  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));
}

.mobile-menu.closed{
  --tw-translate-x:100%;
  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));
}

.mobile-menu-item{
  border-bottom-width:1px;
  display:block;
  --tw-border-opacity:1;
  border-color:rgb(229 231 235 / 1);
  border-color:rgb(229 231 235 / var(--tw-border-opacity, 1));
  padding-bottom:8px;
  padding-left:16px;
  padding-right:16px;
  padding-top:8px;
  --tw-text-opacity:1;
  color:rgb(33 150 243 / 1);
  color:rgb(33 150 243 / var(--tw-text-opacity, 1));
  color:#22489E;
  color:var(--primary-color);
}

.mobile-menu-item:hover{
  --tw-bg-opacity:1;
  background-color:rgb(246 251 254 / 1);
  background-color:rgb(246 251 254 / var(--tw-bg-opacity, 1));
}

.mobile-menu-header{
  align-items:center;
  border-bottom-width:1px;
  display:flex;
  justify-content:space-between;
  --tw-border-opacity:1;
  border-color:rgb(229 231 235 / 1);
  border-color:rgb(229 231 235 / var(--tw-border-opacity, 1));
  padding:16px;
}

.mobile-menu-title{
  font-size:1.25rem;
  font-weight:700;
  line-height:1.75rem;
  --tw-text-opacity:1;
  color:rgb(33 150 243 / 1);
  color:rgb(33 150 243 / var(--tw-text-opacity, 1));
  color:#22489E;
  color:var(--primary-color);
}

.mobile-menu-close{
  --tw-text-opacity:1;
  color:rgb(33 150 243 / 1);
  color:rgb(33 150 243 / var(--tw-text-opacity, 1));
  color:#22489E;
  color:var(--primary-color);
}
.button-landing{
  border-radius:.25rem;
  font-size:.875rem;
  font-weight:600;
  line-height:1.25rem;
  padding-bottom:4px;
  padding-left:8px;
  padding-right:8px;
  padding-top:4px;
  --tw-text-opacity:1;
  animation-duration:.3s;
  animation-timing-function:cubic-bezier(.4, 0, .2, 1);
  background:linear-gradient(to right, #1E90FF, #22489E);
  background:linear-gradient(to right, var(--secondary-color), var(--primary-color));
  color:rgb(255 255 255 / 1);
  color:rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-duration:.3s;
  transition-property:color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-timing-function:cubic-bezier(.4, 0, .2, 1);
}

.button-landing:hover{
  opacity:.9;
}

.backdrop-blur-overlay{
  align-items:center;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  background-color:rgba(0, 0, 0, .5);
  display:flex;
  inset:0;
  justify-content:center;
  position:fixed;
  z-index:50;
}
.App-container{
  box-sizing:border-box;
  display:flex;
  flex-direction:column;
  min-height:100vh;
  overflow-x:hidden;
  position:relative;
  width:100%;
}

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

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

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

html,
:host{
  line-height:1.5;
  -webkit-text-size-adjust:100%;
  font-family:Inter, system-ui, sans-serif;
  font-feature-settings:normal;
  font-variation-settings:normal;
  tab-size:4;
  -webkit-tap-highlight-color:transparent;
}

body{
  line-height:inherit;
}

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

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,
samp,
pre{
  font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-feature-settings:normal;
  font-size:1em;
  font-variation-settings:normal;
}

small{
  font-size:80%;
}

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

sub{
  bottom:-.25em;
}

sup{
  top:-.5em;
}

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

button,
input,
optgroup,
select,
textarea{
  color:inherit;
  font-family:inherit;
  font-feature-settings:inherit;
  font-size:100%;
  font-variation-settings:inherit;
  font-weight:inherit;
  letter-spacing:inherit;
  line-height: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,
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;
}

dialog{
  padding:0;
}

textarea{
  resize:vertical;
}

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

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

:disabled{
  cursor:default;
}

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

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

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

:root{
    --primary:262.1 83.3% 57.8%;
    --ring:262.1 83.3% 57.8%;
  }

.dark{
    --primary:263.4 70% 50.4%;
    --primary-foreground:210 40% 98%;
    --ring:263.4 70% 50.4%;
  }

:root{
    --background:0 0% 100%;
    --foreground:222.2 84% 4.9%;

    --card:0 0% 100%;
    --card-foreground:222.2 84% 4.9%;

    --popover:0 0% 100%;
    --popover-foreground:222.2 84% 4.9%;

    --primary:221.2 83.2% 53.3%;
    --primary-foreground:210 40% 98%;

    --secondary:210 40% 96.1%;
    --secondary-foreground:222.2 47.4% 11.2%;

    --muted:210 40% 96.1%;
    --muted-foreground:215.4 16.3% 46.9%;

    --accent:210 40% 96.1%;
    --accent-foreground:222.2 47.4% 11.2%;

    --destructive:0 84.2% 60.2%;
    --destructive-foreground:210 40% 98%;

    --border:214.3 31.8% 91.4%;
    --input:214.3 31.8% 91.4%;
    --ring:221.2 83.2% 53.3%;

    --radius:0.5rem;
  }

.dark{
    --background:222.2 84% 4.9%;
    --foreground:210 40% 98%;

    --card:222.2 84% 4.9%;
    --card-foreground:210 40% 98%;

    --popover:222.2 84% 4.9%;
    --popover-foreground:210 40% 98%;

    --primary:217.2 91.2% 59.8%;
    --primary-foreground:222.2 47.4% 11.2%;

    --secondary:217.2 32.6% 17.5%;
    --secondary-foreground:210 40% 98%;

    --muted:217.2 32.6% 17.5%;
    --muted-foreground:215 20.2% 65.1%;

    --accent:217.2 32.6% 17.5%;
    --accent-foreground:210 40% 98%;

    --destructive:0 62.8% 30.6%;
    --destructive-foreground:210 40% 98%;

    --border:217.2 32.6% 17.5%;
    --input:217.2 32.6% 17.5%;
    --ring:224.3 76.5% 48%;
  }

*{
  border-color:hsl(214.3 31.8% 91.4%);
  border-color:hsl(var(--border));
}

body{
  background-color:hsl(0 0% 100%);
  background-color:hsl(var(--background));
  color:hsl(222.2 84% 4.9%);
  color:hsl(var(--foreground));
}
.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;
  }
}
.cloud-shape{
    animation:float-cloud 8s infinite ease-in-out;
    background:white;
    border-radius:50px;
    filter:drop-shadow(0 5px 15px rgba(0, 0, 0, .1));
    height:40px;
    position:relative;
    transform-origin:center center;
    width:100px;
  }
.cloud-shape:before,
  .cloud-shape:after{
    background:white;
    border-radius:50%;
    content:"";
    height:50px;
    position:absolute;
    top:-20px;
    width:50px;
  }
.cloud-shape:before{
    left:15px;
  }
.cloud-shape:after{
    right:15px;
  }
@keyframes float-cloud{
    0%,
    100%{
      transform:translateY(0) scale(1);
    }
    50%{
      transform:translateY(-10px) scale(1.05);
    }
  }
@keyframes float-cloud-beautiful{
    0%,
    100%{
      transform:translateY(0) scale(1) rotate(0deg);
    }
    25%{
      transform:translateY(-5px) scale(1.02) rotate(.5deg);
    }
    50%{
      transform:translateY(-10px) scale(1.05) rotate(0deg);
    }
    75%{
      transform:translateY(-5px) scale(1.02) rotate(-.5deg);
    }
  }
.pointer-events-none{
  pointer-events:none;
}
.visible{
  visibility:visible;
}
.invisible{
  visibility:hidden;
}
.static{
  position:static;
}
.fixed{
  position:fixed;
}
.\!absolute{
  position:absolute !important;
}
.absolute{
  position:absolute;
}
.relative{
  position:relative;
}
.sticky{
  position:-webkit-sticky;
  position:sticky;
}
.inset-0{
  inset:0;
}
.inset-4{
  inset:8px;
}
.inset-\[3px\]{
  inset:3px;
}
.inset-x-0{
  left:0;
  right:0;
}
.inset-y-0{
  bottom:0;
  top:0;
}
.\!right-2{
  right:4px !important;
}
.\!top-2{
  top:4px !important;
}
.-top-10{
  top:-32px;
}
.bottom-0{
  bottom:0;
}
.bottom-2{
  bottom:4px;
}
.bottom-4{
  bottom:8px;
}
.bottom-8{
  bottom:24px;
}
.bottom-\[15\%\]{
  bottom:15%;
}
.bottom-\[18\%\]{
  bottom:18%;
}
.bottom-\[20\%\]{
  bottom:20%;
}
.bottom-\[22\%\]{
  bottom:22%;
}
.bottom-\[24\%\]{
  bottom:24%;
}
.bottom-\[25\%\]{
  bottom:25%;
}
.bottom-\[30\%\]{
  bottom:30%;
}
.bottom-\[35\%\]{
  bottom:35%;
}
.bottom-\[40\%\]{
  bottom:40%;
}
.bottom-\[5\%\]{
  bottom:5%;
}
.left-0{
  left:0;
}
.left-1\/2{
  left:50%;
}
.left-10{
  left:32px;
}
.left-3{
  left:6px;
}
.left-4{
  left:8px;
}
.left-6{
  left:16px;
}
.left-8{
  left:24px;
}
.left-\[-10\%\]{
  left:-10%;
}
.left-\[-15\%\]{
  left:-15%;
}
.left-\[-5\%\]{
  left:-5%;
}
.left-\[0\%\]{
  left:0;
}
.left-\[10\%\]{
  left:10%;
}
.left-\[15\%\]{
  left:15%;
}
.left-\[20\%\]{
  left:20%;
}
.left-\[25\%\]{
  left:25%;
}
.left-\[30\%\]{
  left:30%;
}
.left-\[40\%\]{
  left:40%;
}
.left-\[5\%\]{
  left:5%;
}
.left-\[50\%\]{
  left:50%;
}
.left-\[70\%\]{
  left:70%;
}
.left-\[85\%\]{
  left:85%;
}
.right-0{
  right:0;
}
.right-10{
  right:32px;
}
.right-16{
  right:56px;
}
.right-3{
  right:6px;
}
.right-4{
  right:8px;
}
.right-6{
  right:16px;
}
.right-\[-10\%\]{
  right:-10%;
}
.right-\[-15\%\]{
  right:-15%;
}
.right-\[10\%\]{
  right:10%;
}
.right-\[15\%\]{
  right:15%;
}
.right-\[25\%\]{
  right:25%;
}
.right-\[35\%\]{
  right:35%;
}
.right-\[5\%\]{
  right:5%;
}
.top-0{
  top:0;
}
.top-1\/2{
  top:50%;
}
.top-10{
  top:32px;
}
.top-12{
  top:40px;
}
.top-16{
  top:56px;
}
.top-2{
  top:4px;
}
.top-24{
  top:88px;
}
.top-3{
  top:6px;
}
.top-32{
  top:8rem;
}
.top-4{
  top:8px;
}
.top-40{
  top:10rem;
}
.top-5{
  top:12px;
}
.top-6{
  top:16px;
}
.top-7{
  top:1.75rem;
}
.top-8{
  top:24px;
}
.top-9{
  top:2.25rem;
}
.top-\[10\%\]{
  top:10%;
}
.top-\[100\%\]{
  top:100%;
}
.top-\[15\%\]{
  top:15%;
}
.top-\[25\%\]{
  top:25%;
}
.top-\[30\%\]{
  top:30%;
}
.top-\[35\%\]{
  top:35%;
}
.top-\[40\%\]{
  top:40%;
}
.top-\[5\%\]{
  top:5%;
}
.top-\[50\%\]{
  top:50%;
}
.-z-10{
  z-index:-10;
}
.z-0{
  z-index:0;
}
.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-\[9999\]{
  z-index:9999;
}
.m-4{
  margin:8px;
}
.mx-0{
  margin-left:0;
  margin-right:0;
}
.mx-auto{
  margin-left:auto;
  margin-right:auto;
}
.-ml-\[10\%\]{
  margin-left:-10%;
}
.-ml-\[5\%\]{
  margin-left:-5%;
}
.mb-1{
  margin-bottom:2px;
}
.mb-10{
  margin-bottom:32px;
}
.mb-12{
  margin-bottom:40px;
}
.mb-2{
  margin-bottom:4px;
}
.mb-24{
  margin-bottom:88px;
}
.mb-3{
  margin-bottom:6px;
}
.mb-4{
  margin-bottom:8px;
}
.mb-5{
  margin-bottom:12px;
}
.mb-6{
  margin-bottom:16px;
}
.mb-8{
  margin-bottom:24px;
}
.ml-6{
  margin-left:16px;
}
.mr-1{
  margin-right:2px;
}
.mr-2{
  margin-right:4px;
}
.mr-3{
  margin-right:6px;
}
.mt-0{
  margin-top:0;
}
.mt-1{
  margin-top:2px;
}
.mt-10{
  margin-top:32px;
}
.mt-12{
  margin-top:40px;
}
.mt-16{
  margin-top:56px;
}
.mt-2{
  margin-top:4px;
}
.mt-3{
  margin-top:6px;
}
.mt-4{
  margin-top:8px;
}
.mt-6{
  margin-top:16px;
}
.mt-8{
  margin-top:24px;
}
.mt-\[1px\]{
  margin-top:1px;
}
.mt-auto{
  margin-top:auto;
}
.box-border{
  box-sizing:border-box;
}
.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;
}
.list-item{
  display:list-item;
}
.hidden{
  display:none;
}
.aspect-\[16\/10\]{
  aspect-ratio:16/10;
}
.aspect-square{
  aspect-ratio:1 / 1;
}
.h-0{
  height:0;
}
.h-1{
  height:2px;
}
.h-1\.5{
  height:.375rem;
}
.h-1\/2{
  height:50%;
}
.h-1\/3{
  height:33.333333%;
}
.h-1\/4{
  height:25%;
}
.h-10{
  height:32px;
}
.h-11{
  height:2.75rem;
}
.h-12{
  height:40px;
}
.h-14{
  height:3.5rem;
}
.h-16{
  height:56px;
}
.h-2{
  height:4px;
}
.h-2\.5{
  height:.625rem;
}
.h-20{
  height:72px;
}
.h-24{
  height:88px;
}
.h-3{
  height:6px;
}
.h-3\/4{
  height:75%;
}
.h-4{
  height:8px;
}
.h-48{
  height:12rem;
}
.h-5{
  height:12px;
}
.h-52{
  height:13rem;
}
.h-56{
  height:14rem;
}
.h-6{
  height:16px;
}
.h-64{
  height:16rem;
}
.h-7{
  height:1.75rem;
}
.h-72{
  height:18rem;
}
.h-8{
  height:24px;
}
.h-9{
  height:2.25rem;
}
.h-\[10\%\]{
  height:10%;
}
.h-\[12\%\]{
  height:12%;
}
.h-\[13\%\]{
  height:13%;
}
.h-\[14\%\]{
  height:14%;
}
.h-\[15\%\]{
  height:15%;
}
.h-\[15px\]{
  height:15px;
}
.h-\[16\%\]{
  height:16%;
}
.h-\[18\%\]{
  height:18%;
}
.h-\[1px\]{
  height:1px;
}
.h-\[20\%\]{
  height:20%;
}
.h-\[25\%\]{
  height:25%;
}
.h-\[2px\]{
  height:2px;
}
.h-\[30\%\]{
  height:30%;
}
.h-\[3px\]{
  height:3px;
}
.h-\[40\%\]{
  height:40%;
}
.h-\[5\%\]{
  height:5%;
}
.h-\[60\%\]{
  height:60%;
}
.h-\[600px\]{
  height:600px;
}
.h-\[7\%\]{
  height:7%;
}
.h-\[75\%\]{
  height:75%;
}
.h-\[8\%\]{
  height:8%;
}
.h-\[80\%\]{
  height:80%;
}
.h-auto{
  height:auto;
}
.h-full{
  height:100%;
}
.h-px{
  height:1px;
}
.max-h-\[60vh\]{
  max-height:60vh;
}
.max-h-\[75vh\]{
  max-height:75vh;
}
.max-h-\[80vh\]{
  max-height:80vh;
}
.max-h-\[90vh\]{
  max-height:90vh;
}
.max-h-\[calc\(100vh-3rem\)\]{
  max-height:calc(100vh - 3rem);
}
.max-h-screen{
  max-height:100vh;
}
.min-h-\[220px\]{
  min-height:220px;
}
.min-h-\[40px\]{
  min-height:40px;
}
.min-h-screen{
  min-height:100vh;
}
.w-0{
  width:0;
}
.w-1{
  width:2px;
}
.w-1\.5{
  width:.375rem;
}
.w-1\/2{
  width:50%;
}
.w-1\/3{
  width:33.333333%;
}
.w-10{
  width:32px;
}
.w-12{
  width:40px;
}
.w-16{
  width:56px;
}
.w-2{
  width:4px;
}
.w-2\.5{
  width:.625rem;
}
.w-20{
  width:72px;
}
.w-28{
  width:7rem;
}
.w-3{
  width:6px;
}
.w-32{
  width:8rem;
}
.w-36{
  width:9rem;
}
.w-4{
  width:8px;
}
.w-40{
  width:10rem;
}
.w-44{
  width:11rem;
}
.w-48{
  width:12rem;
}
.w-5{
  width:12px;
}
.w-56{
  width:14rem;
}
.w-6{
  width:16px;
}
.w-64{
  width:16rem;
}
.w-7{
  width:1.75rem;
}
.w-8{
  width:24px;
}
.w-80{
  width:20rem;
}
.w-\[100\%\]{
  width:100%;
}
.w-\[110\%\]{
  width:110%;
}
.w-\[120\%\]{
  width:120%;
}
.w-\[15px\]{
  width:15px;
}
.w-\[20\%\]{
  width:20%;
}
.w-\[2px\]{
  width:2px;
}
.w-\[40\%\]{
  width:40%;
}
.w-\[70\%\]{
  width:70%;
}
.w-\[800px\]{
  width:800px;
}
.w-\[8px\]{
  width:8px;
}
.w-\[90\%\]{
  width:90%;
}
.w-\[90vw\]{
  width:90vw;
}
.w-full{
  width:100%;
}
.w-px{
  width:1px;
}
.min-w-\[180px\]{
  min-width:180px;
}
.min-w-full{
  min-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;
}
.max-w-\[800px\]{
  max-width:800px;
}
.max-w-full{
  max-width:100%;
}
.max-w-lg{
  max-width:32rem;
}
.max-w-md{
  max-width:28rem;
}
.max-w-xl{
  max-width:36rem;
}
.max-w-xs{
  max-width:20rem;
}
.flex-1{
  flex:1 1;
}
.flex-shrink-0{
  flex-shrink:0;
}
.shrink{
  flex-shrink:1;
}
.shrink-0{
  flex-shrink:0;
}
.flex-grow{
  flex-grow:1;
}
.grow{
  flex-grow:1;
}
.origin-center{
  transform-origin:center;
}
.origin-left{
  transform-origin:left;
}
.origin-right{
  transform-origin:right;
}
.-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-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-y-2{
  --tw-translate-y:-4px;
  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-\[1px\]{
  --tw-translate-y:-1px;
  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-0{
  --tw-translate-y:0px;
  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));
}
.-rotate-\[30deg\]{
  --tw-rotate:-30deg;
  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-45{
  --tw-rotate:45deg;
  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-\[30deg\]{
  --tw-rotate:30deg;
  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));
}
.scale-x-\[1\.1\]{
  --tw-scale-x:1.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));
}
.scale-x-\[1\.2\]{
  --tw-scale-x:1.2;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-x-\[1\.5\]{
  --tw-scale-x:1.5;
  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));
}
.scale-x-\[1\.6\]{
  --tw-scale-x:1.6;
  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));
}
.scale-y-75{
  --tw-scale-y:.75;
  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-not-allowed{
  cursor:not-allowed;
}
.cursor-pointer{
  cursor:pointer;
}
.select-none{
  -webkit-user-select:none;
          user-select:none;
}
.resize{
  resize:both;
}
.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));
}
.grid-cols-\[repeat\(auto-fit\2c minmax\(260px\2c 1fr\)\)\]{
  grid-template-columns:repeat(auto-fit,minmax(260px,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;
}
.justify-end{
  justify-content:flex-end;
}
.justify-center{
  justify-content:center;
}
.justify-between{
  justify-content:space-between;
}
.gap-1{
  gap:2px;
}
.gap-1\.5{
  gap:.375rem;
}
.gap-2{
  gap:4px;
}
.gap-3{
  gap:6px;
}
.gap-4{
  gap:8px;
}
.gap-6{
  gap:16px;
}
.gap-8{
  gap:24px;
}
.gap-x-12{
  column-gap:40px;
}
.gap-y-6{
  row-gap:16px;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse:0;
  margin-left:calc(2px*(1 - var(--tw-space-x-reverse)));
  margin-right:calc(2px*var(--tw-space-x-reverse));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse:0;
  margin-left:calc(4px*(1 - var(--tw-space-x-reverse)));
  margin-right:calc(4px*var(--tw-space-x-reverse));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse:0;
  margin-left:calc(6px*(1 - var(--tw-space-x-reverse)));
  margin-right:calc(6px*var(--tw-space-x-reverse));
}
.space-x-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse:0;
  margin-left:calc(16px*(1 - var(--tw-space-x-reverse)));
  margin-right:calc(16px*var(--tw-space-x-reverse));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0;
  margin-bottom:calc(2px*var(--tw-space-y-reverse));
  margin-top:calc(2px*(1 - var(--tw-space-y-reverse)));
}
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0;
  margin-bottom:calc(.375rem*var(--tw-space-y-reverse));
  margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0;
  margin-bottom:calc(4px*var(--tw-space-y-reverse));
  margin-top:calc(4px*(1 - var(--tw-space-y-reverse)));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0;
  margin-bottom:calc(6px*var(--tw-space-y-reverse));
  margin-top:calc(6px*(1 - var(--tw-space-y-reverse)));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0;
  margin-bottom:calc(8px*var(--tw-space-y-reverse));
  margin-top:calc(8px*(1 - var(--tw-space-y-reverse)));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0;
  margin-bottom:calc(24px*var(--tw-space-y-reverse));
  margin-top:calc(24px*(1 - var(--tw-space-y-reverse)));
}
.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse:0;
  border-bottom-width:calc(1px*var(--tw-divide-y-reverse));
  border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)));
}
.divide-gray-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity:1;
  border-color:rgb(229 231 235 / 1);
  border-color:rgb(229 231 235 / var(--tw-divide-opacity, 1));
}
.overflow-hidden{
  overflow:hidden;
}
.overflow-visible{
  overflow:visible;
}
.overflow-x-auto{
  overflow-x:auto;
}
.overflow-y-auto{
  overflow-y:auto;
}
.overflow-x-hidden{
  overflow-x:hidden;
}
.truncate{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.whitespace-nowrap{
  white-space:nowrap;
}
.rounded{
  border-radius:.25rem;
}
.rounded-2xl{
  border-radius:1rem;
}
.rounded-3xl{
  border-radius:1.5rem;
}
.rounded-\[28\%\]{
  border-radius:28%;
}
.rounded-full{
  border-radius:9999px;
}
.rounded-lg{
  border-radius:.5rem;
  border-radius:var(--radius);
}
.rounded-md{
  border-radius:calc(.5rem - 2px);
  border-radius:calc(var(--radius) - 2px);
}
.rounded-sm{
  border-radius:calc(.5rem - 4px);
  border-radius:calc(var(--radius) - 4px);
}
.rounded-xl{
  border-radius:.75rem;
}
.rounded-l-full{
  border-bottom-left-radius:9999px;
  border-top-left-radius:9999px;
}
.rounded-r-full{
  border-bottom-right-radius:9999px;
  border-top-right-radius:9999px;
}
.rounded-r-sm{
  border-bottom-right-radius:calc(.5rem - 4px);
  border-bottom-right-radius:calc(var(--radius) - 4px);
  border-top-right-radius:calc(.5rem - 4px);
  border-top-right-radius:calc(var(--radius) - 4px);
}
.rounded-t-\[100\%\]{
  border-top-left-radius:100%;
  border-top-right-radius:100%;
}
.rounded-t-\[120\%\]{
  border-top-left-radius:120%;
  border-top-right-radius:120%;
}
.rounded-t-\[150\%\]{
  border-top-left-radius:150%;
  border-top-right-radius:150%;
}
.rounded-t-full{
  border-top-left-radius:9999px;
  border-top-right-radius:9999px;
}
.rounded-t-sm{
  border-top-left-radius:calc(.5rem - 4px);
  border-top-left-radius:calc(var(--radius) - 4px);
  border-top-right-radius:calc(.5rem - 4px);
  border-top-right-radius:calc(var(--radius) - 4px);
}
.rounded-bl-full{
  border-bottom-left-radius:9999px;
}
.rounded-bl-xl{
  border-bottom-left-radius:.75rem;
}
.rounded-br-full{
  border-bottom-right-radius:9999px;
}
.rounded-br-xl{
  border-bottom-right-radius:.75rem;
}
.rounded-tl-full{
  border-top-left-radius:9999px;
}
.rounded-tl-xl{
  border-top-left-radius:.75rem;
}
.rounded-tr-full{
  border-top-right-radius:9999px;
}
.rounded-tr-xl{
  border-top-right-radius:.75rem;
}
.border{
  border-width:1px;
}
.border-0{
  border-width:0;
}
.border-2{
  border-width:2px;
}
.border-4{
  border-width:4px;
}
.border-b{
  border-bottom-width:1px;
}
.border-b-2{
  border-bottom-width:2px;
}
.border-b-\[120px\]{
  border-bottom-width:120px;
}
.border-b-\[200px\]{
  border-bottom-width:200px;
}
.border-l{
  border-left-width:1px;
}
.border-l-2{
  border-left-width:2px;
}
.border-l-\[140px\]{
  border-left-width:140px;
}
.border-l-\[80px\]{
  border-left-width:80px;
}
.border-r{
  border-right-width:1px;
}
.border-r-2{
  border-right-width:2px;
}
.border-r-\[140px\]{
  border-right-width:140px;
}
.border-r-\[80px\]{
  border-right-width:80px;
}
.border-t{
  border-top-width:1px;
}
.border-t-2{
  border-top-width:2px;
}
.border-amber-300\/50{
  border-color:rgb(252 211 77 / .5);
}
.border-amber-400{
  --tw-border-opacity:1;
  border-color:rgb(251 191 36 / 1);
  border-color:rgb(251 191 36 / var(--tw-border-opacity, 1));
}
.border-amber-500{
  --tw-border-opacity:1;
  border-color:rgb(245 158 11 / 1);
  border-color:rgb(245 158 11 / var(--tw-border-opacity, 1));
}
.border-blue-400{
  --tw-border-opacity:1;
  border-color:rgb(96 165 250 / 1);
  border-color:rgb(96 165 250 / var(--tw-border-opacity, 1));
}
.border-blue-500{
  --tw-border-opacity:1;
  border-color:rgb(59 130 246 / 1);
  border-color:rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.border-blue-600{
  --tw-border-opacity:1;
  border-color:rgb(37 99 235 / 1);
  border-color:rgb(37 99 235 / var(--tw-border-opacity, 1));
}
.border-emerald-400{
  --tw-border-opacity:1;
  border-color:rgb(52 211 153 / 1);
  border-color:rgb(52 211 153 / var(--tw-border-opacity, 1));
}
.border-emerald-500{
  --tw-border-opacity:1;
  border-color:rgb(16 185 129 / 1);
  border-color:rgb(16 185 129 / var(--tw-border-opacity, 1));
}
.border-gray-200{
  --tw-border-opacity:1;
  border-color:rgb(229 231 235 / 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 / 1);
  border-color:rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-gray-300\/50{
  border-color:rgb(209 213 219 / .5);
}
.border-green-400{
  --tw-border-opacity:1;
  border-color:rgb(74 222 128 / 1);
  border-color:rgb(74 222 128 / var(--tw-border-opacity, 1));
}
.border-green-500{
  --tw-border-opacity:1;
  border-color:rgb(34 197 94 / 1);
  border-color:rgb(34 197 94 / var(--tw-border-opacity, 1));
}
.border-input{
  border-color:hsl(214.3 31.8% 91.4%);
  border-color:hsl(var(--input));
}
.border-lime-500{
  --tw-border-opacity:1;
  border-color:rgb(132 204 22 / 1);
  border-color:rgb(132 204 22 / var(--tw-border-opacity, 1));
}
.border-pink-300\/50{
  border-color:rgb(249 168 212 / .5);
}
.border-primary\/50{
  border-color:hsl(221.2 83.2% 53.3% / .5);
  border-color:hsl(var(--primary) / .5);
}
.border-purple-400{
  --tw-border-opacity:1;
  border-color:rgb(192 132 252 / 1);
  border-color:rgb(192 132 252 / var(--tw-border-opacity, 1));
}
.border-red-400{
  --tw-border-opacity:1;
  border-color:rgb(248 113 113 / 1);
  border-color:rgb(248 113 113 / var(--tw-border-opacity, 1));
}
.border-sky-200{
  --tw-border-opacity:1;
  border-color:rgb(186 230 253 / 1);
  border-color:rgb(186 230 253 / var(--tw-border-opacity, 1));
}
.border-teal-300\/30{
  border-color:rgb(94 234 212 / .3);
}
.border-teal-400{
  --tw-border-opacity:1;
  border-color:rgb(45 212 191 / 1);
  border-color:rgb(45 212 191 / var(--tw-border-opacity, 1));
}
.border-teal-500{
  --tw-border-opacity:1;
  border-color:rgb(20 184 166 / 1);
  border-color:rgb(20 184 166 / var(--tw-border-opacity, 1));
}
.border-teal-500\/80{
  border-color:rgb(20 184 166 / .8);
}
.border-white{
  --tw-border-opacity:1;
  border-color:rgb(255 255 255 / 1);
  border-color:rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/10{
  border-color:rgb(255 255 255 / .1);
}
.border-white\/20{
  border-color:rgb(255 255 255 / .2);
}
.border-white\/30{
  border-color:rgb(255 255 255 / .3);
}
.border-white\/50{
  border-color:rgb(255 255 255 / .5);
}
.border-white\/70{
  border-color:rgb(255 255 255 / .7);
}
.border-b-blue-900{
  --tw-border-opacity:1;
  border-bottom-color:rgb(30 58 138 / 1);
  border-bottom-color:rgb(30 58 138 / var(--tw-border-opacity, 1));
}
.border-b-indigo-900{
  --tw-border-opacity:1;
  border-bottom-color:rgb(49 46 129 / 1);
  border-bottom-color:rgb(49 46 129 / var(--tw-border-opacity, 1));
}
.border-l-transparent{
  border-left-color:transparent;
}
.border-r-transparent{
  border-right-color:transparent;
}
.bg-\[\#99CCFF\]{
  --tw-bg-opacity:1;
  background-color:rgb(153 204 255 / 1);
  background-color:rgb(153 204 255 / var(--tw-bg-opacity, 1));
}
.bg-\[\#CC99FF\]{
  --tw-bg-opacity:1;
  background-color:rgb(204 153 255 / 1);
  background-color:rgb(204 153 255 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FF9999\]{
  --tw-bg-opacity:1;
  background-color:rgb(255 153 153 / 1);
  background-color:rgb(255 153 153 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FFD699\]{
  --tw-bg-opacity:1;
  background-color:rgb(255 214 153 / 1);
  background-color:rgb(255 214 153 / var(--tw-bg-opacity, 1));
}
.bg-\[\#e0e0e0\]{
  --tw-bg-opacity:1;
  background-color:rgb(224 224 224 / 1);
  background-color:rgb(224 224 224 / var(--tw-bg-opacity, 1));
}
.bg-amber-100{
  --tw-bg-opacity:1;
  background-color:rgb(254 243 199 / 1);
  background-color:rgb(254 243 199 / var(--tw-bg-opacity, 1));
}
.bg-amber-400{
  --tw-bg-opacity:1;
  background-color:rgb(251 191 36 / 1);
  background-color:rgb(251 191 36 / var(--tw-bg-opacity, 1));
}
.bg-amber-500{
  --tw-bg-opacity:1;
  background-color:rgb(245 158 11 / 1);
  background-color:rgb(245 158 11 / var(--tw-bg-opacity, 1));
}
.bg-background{
  background-color:hsl(0 0% 100%);
  background-color:hsl(var(--background));
}
.bg-black{
  --tw-bg-opacity:1;
  background-color:rgb(0 0 0 / 1);
  background-color:rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-black\/20{
  background-color:rgb(0 0 0 / .2);
}
.bg-black\/30{
  background-color:rgb(0 0 0 / .3);
}
.bg-black\/40{
  background-color:rgb(0 0 0 / .4);
}
.bg-blue-100{
  --tw-bg-opacity:1;
  background-color:rgb(219 234 254 / 1);
  background-color:rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-300{
  --tw-bg-opacity:1;
  background-color:rgb(147 197 253 / 1);
  background-color:rgb(147 197 253 / var(--tw-bg-opacity, 1));
}
.bg-blue-400{
  --tw-bg-opacity:1;
  background-color:rgb(96 165 250 / 1);
  background-color:rgb(96 165 250 / var(--tw-bg-opacity, 1));
}
.bg-blue-50{
  --tw-bg-opacity:1;
  background-color:rgb(239 246 255 / 1);
  background-color:rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.bg-blue-500{
  --tw-bg-opacity:1;
  background-color:rgb(59 130 246 / 1);
  background-color:rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.bg-blue-600{
  --tw-bg-opacity:1;
  background-color:rgb(37 99 235 / 1);
  background-color:rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-blue-700{
  --tw-bg-opacity:1;
  background-color:rgb(29 78 216 / 1);
  background-color:rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.bg-blue-900\/50{
  background-color:rgb(30 58 138 / .5);
}
.bg-card{
  background-color:hsl(0 0% 100%);
  background-color:hsl(var(--card));
}
.bg-destructive{
  background-color:hsl(0 84.2% 60.2%);
  background-color:hsl(var(--destructive));
}
.bg-destructive\/90{
  background-color:hsl(0 84.2% 60.2% / .9);
  background-color:hsl(var(--destructive) / .9);
}
.bg-emerald-100\/40{
  background-color:rgb(209 250 229 / .4);
}
.bg-emerald-400{
  --tw-bg-opacity:1;
  background-color:rgb(52 211 153 / 1);
  background-color:rgb(52 211 153 / var(--tw-bg-opacity, 1));
}
.bg-emerald-500{
  --tw-bg-opacity:1;
  background-color:rgb(16 185 129 / 1);
  background-color:rgb(16 185 129 / var(--tw-bg-opacity, 1));
}
.bg-emerald-500\/20{
  background-color:rgb(16 185 129 / .2);
}
.bg-emerald-500\/70{
  background-color:rgb(16 185 129 / .7);
}
.bg-emerald-500\/80{
  background-color:rgb(16 185 129 / .8);
}
.bg-emerald-600\/50{
  background-color:rgb(5 150 105 / .5);
}
.bg-emerald-600\/60{
  background-color:rgb(5 150 105 / .6);
}
.bg-emerald-600\/70{
  background-color:rgb(5 150 105 / .7);
}
.bg-emerald-700{
  --tw-bg-opacity:1;
  background-color:rgb(4 120 87 / 1);
  background-color:rgb(4 120 87 / var(--tw-bg-opacity, 1));
}
.bg-emerald-700\/40{
  background-color:rgb(4 120 87 / .4);
}
.bg-emerald-700\/90{
  background-color:rgb(4 120 87 / .9);
}
.bg-emerald-800{
  --tw-bg-opacity:1;
  background-color:rgb(6 95 70 / 1);
  background-color:rgb(6 95 70 / var(--tw-bg-opacity, 1));
}
.bg-emerald-800\/30{
  background-color:rgb(6 95 70 / .3);
}
.bg-emerald-800\/40{
  background-color:rgb(6 95 70 / .4);
}
.bg-emerald-800\/90{
  background-color:rgb(6 95 70 / .9);
}
.bg-emerald-900\/70{
  background-color:rgb(6 78 59 / .7);
}
.bg-emerald-900\/90{
  background-color:rgb(6 78 59 / .9);
}
.bg-emerald-950\/30{
  background-color:rgb(2 44 34 / .3);
}
.bg-emerald-950\/60{
  background-color:rgb(2 44 34 / .6);
}
.bg-gray-100{
  --tw-bg-opacity:1;
  background-color:rgb(243 244 246 / 1);
  background-color:rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-300{
  --tw-bg-opacity:1;
  background-color:rgb(209 213 219 / 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 / 1);
  background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-gray-500{
  --tw-bg-opacity:1;
  background-color:rgb(107 114 128 / 1);
  background-color:rgb(107 114 128 / var(--tw-bg-opacity, 1));
}
.bg-gray-600{
  --tw-bg-opacity:1;
  background-color:rgb(75 85 99 / 1);
  background-color:rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.bg-green-100{
  --tw-bg-opacity:1;
  background-color:rgb(220 252 231 / 1);
  background-color:rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.bg-green-50{
  --tw-bg-opacity:1;
  background-color:rgb(240 253 244 / 1);
  background-color:rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.bg-green-500{
  --tw-bg-opacity:1;
  background-color:rgb(34 197 94 / 1);
  background-color:rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-green-500\/20{
  background-color:rgb(34 197 94 / .2);
}
.bg-green-600{
  --tw-bg-opacity:1;
  background-color:rgb(22 163 74 / 1);
  background-color:rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.bg-green-700{
  --tw-bg-opacity:1;
  background-color:rgb(21 128 61 / 1);
  background-color:rgb(21 128 61 / var(--tw-bg-opacity, 1));
}
.bg-indigo-500{
  --tw-bg-opacity:1;
  background-color:rgb(99 102 241 / 1);
  background-color:rgb(99 102 241 / var(--tw-bg-opacity, 1));
}
.bg-lime-500{
  --tw-bg-opacity:1;
  background-color:rgb(132 204 22 / 1);
  background-color:rgb(132 204 22 / var(--tw-bg-opacity, 1));
}
.bg-lime-500\/20{
  background-color:rgb(132 204 22 / .2);
}
.bg-muted{
  background-color:hsl(210 40% 96.1%);
  background-color:hsl(var(--muted));
}
.bg-orange-300{
  --tw-bg-opacity:1;
  background-color:rgb(253 186 116 / 1);
  background-color:rgb(253 186 116 / var(--tw-bg-opacity, 1));
}
.bg-pink-300{
  --tw-bg-opacity:1;
  background-color:rgb(249 168 212 / 1);
  background-color:rgb(249 168 212 / var(--tw-bg-opacity, 1));
}
.bg-primary{
  background-color:hsl(221.2 83.2% 53.3%);
  background-color:hsl(var(--primary));
}
.bg-primary-color{
  --tw-bg-opacity:1;
  background-color:rgb(33 150 243 / 1);
  background-color:rgb(33 150 243 / var(--tw-bg-opacity, 1));
}
.bg-primary\/90{
  background-color:hsl(221.2 83.2% 53.3% / .9);
  background-color:hsl(var(--primary) / .9);
}
.bg-purple-400{
  --tw-bg-opacity:1;
  background-color:rgb(192 132 252 / 1);
  background-color:rgb(192 132 252 / var(--tw-bg-opacity, 1));
}
.bg-purple-50{
  --tw-bg-opacity:1;
  background-color:rgb(250 245 255 / 1);
  background-color:rgb(250 245 255 / var(--tw-bg-opacity, 1));
}
.bg-purple-500{
  --tw-bg-opacity:1;
  background-color:rgb(168 85 247 / 1);
  background-color:rgb(168 85 247 / var(--tw-bg-opacity, 1));
}
.bg-purple-600{
  --tw-bg-opacity:1;
  background-color:rgb(147 51 234 / 1);
  background-color:rgb(147 51 234 / var(--tw-bg-opacity, 1));
}
.bg-red-100{
  --tw-bg-opacity:1;
  background-color:rgb(254 226 226 / 1);
  background-color:rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-red-50{
  --tw-bg-opacity:1;
  background-color:rgb(254 242 242 / 1);
  background-color:rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.bg-red-500{
  --tw-bg-opacity:1;
  background-color:rgb(239 68 68 / 1);
  background-color:rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-rose-400{
  --tw-bg-opacity:1;
  background-color:rgb(251 113 133 / 1);
  background-color:rgb(251 113 133 / var(--tw-bg-opacity, 1));
}
.bg-secondary{
  background-color:hsl(210 40% 96.1%);
  background-color:hsl(var(--secondary));
}
.bg-secondary\/80{
  background-color:hsl(210 40% 96.1% / .8);
  background-color:hsl(var(--secondary) / .8);
}
.bg-sky-500{
  --tw-bg-opacity:1;
  background-color:rgb(14 165 233 / 1);
  background-color:rgb(14 165 233 / var(--tw-bg-opacity, 1));
}
.bg-slate-700{
  --tw-bg-opacity:1;
  background-color:rgb(51 65 85 / 1);
  background-color:rgb(51 65 85 / var(--tw-bg-opacity, 1));
}
.bg-soft-light-blue{
  --tw-bg-opacity:1;
  background-color:rgb(246 251 254 / 1);
  background-color:rgb(246 251 254 / var(--tw-bg-opacity, 1));
}
.bg-soft-light-green{
  --tw-bg-opacity:1;
  background-color:rgb(167 243 208 / 1);
  background-color:rgb(167 243 208 / var(--tw-bg-opacity, 1));
}
.bg-stone-800\/90{
  background-color:rgb(41 37 36 / .9);
}
.bg-teal-500{
  --tw-bg-opacity:1;
  background-color:rgb(20 184 166 / 1);
  background-color:rgb(20 184 166 / var(--tw-bg-opacity, 1));
}
.bg-teal-500\/20{
  background-color:rgb(20 184 166 / .2);
}
.bg-teal-500\/50{
  background-color:rgb(20 184 166 / .5);
}
.bg-transparent{
  background-color:transparent;
}
.bg-white{
  --tw-bg-opacity:1;
  background-color:rgb(255 255 255 / 1);
  background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/10{
  background-color:rgb(255 255 255 / .1);
}
.bg-white\/15{
  background-color:rgb(255 255 255 / .15);
}
.bg-white\/20{
  background-color:rgb(255 255 255 / .2);
}
.bg-white\/30{
  background-color:rgb(255 255 255 / .3);
}
.bg-white\/40{
  background-color:rgb(255 255 255 / .4);
}
.bg-white\/5{
  background-color:rgb(255 255 255 / .05);
}
.bg-white\/50{
  background-color:rgb(255 255 255 / .5);
}
.bg-white\/60{
  background-color:rgb(255 255 255 / .6);
}
.bg-white\/70{
  background-color:rgb(255 255 255 / .7);
}
.bg-white\/80{
  background-color:rgb(255 255 255 / .8);
}
.bg-white\/90{
  background-color:rgb(255 255 255 / .9);
}
.bg-yellow-100{
  --tw-bg-opacity:1;
  background-color:rgb(254 249 195 / 1);
  background-color:rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
.bg-yellow-300{
  --tw-bg-opacity:1;
  background-color:rgb(253 224 71 / 1);
  background-color:rgb(253 224 71 / var(--tw-bg-opacity, 1));
}
.bg-yellow-400{
  --tw-bg-opacity:1;
  background-color:rgb(250 204 21 / 1);
  background-color:rgb(250 204 21 / var(--tw-bg-opacity, 1));
}
.bg-opacity-50{
  --tw-bg-opacity:0.5;
}
.bg-opacity-90{
  --tw-bg-opacity:0.9;
}
.bg-gradient-to-b{
  background-image:linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-bl{
  background-image:linear-gradient(to bottom left, var(--tw-gradient-stops));
}
.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));
}
.bg-gradient-to-t{
  background-image:linear-gradient(to top, var(--tw-gradient-stops));
}
.from-\[\#0c1445\]{
  --tw-gradient-from:#0c1445 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(12 20 69 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#f5f5f5\]{
  --tw-gradient-from:#f5f5f5 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(245 245 245 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-amber-200{
  --tw-gradient-from:#fde68a var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(253 230 138 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-amber-300\/20{
  --tw-gradient-from:rgb(252 211 77 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(252 211 77 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-amber-500{
  --tw-gradient-from:#f59e0b var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(245 158 11 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-300{
  --tw-gradient-from:#93c5fd var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(147 197 253 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-400{
  --tw-gradient-from:#60a5fa var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(96 165 250 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-50{
  --tw-gradient-from:#eff6ff var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(239 246 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500{
  --tw-gradient-from:#3b82f6 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500\/30{
  --tw-gradient-from:rgb(59 130 246 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-800{
  --tw-gradient-from:#1e40af var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(30 64 175 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-900{
  --tw-gradient-from:#1e3a8a var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(30 58 138 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500{
  --tw-gradient-from:#06b6d4 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/10{
  --tw-gradient-from:rgb(6 182 212 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-400{
  --tw-gradient-from:#34d399 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(52 211 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-500{
  --tw-gradient-from:#10b981 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(16 185 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-500\/10{
  --tw-gradient-from:rgb(16 185 129 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(16 185 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-700{
  --tw-gradient-from:#047857 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(4 120 87 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-800{
  --tw-gradient-from:#065f46 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(6 95 70 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-950{
  --tw-gradient-from:#022c22 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(2 44 34 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-fuchsia-500{
  --tw-gradient-from:#d946ef var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(217 70 239 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-50{
  --tw-gradient-from:#f9fafb var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(249 250 251 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-500{
  --tw-gradient-from:#6b7280 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(107 114 128 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-400{
  --tw-gradient-from:#4ade80 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(74 222 128 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500{
  --tw-gradient-from:#22c55e var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500\/10{
  --tw-gradient-from:rgb(34 197 94 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-600{
  --tw-gradient-from:#16a34a var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(22 163 74 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-500{
  --tw-gradient-from:#6366f1 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(99 102 241 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-900{
  --tw-gradient-from:#312e81 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(49 46 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-lime-200{
  --tw-gradient-from:#d9f99d var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(217 249 157 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-lime-400{
  --tw-gradient-from:#a3e635 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(163 230 53 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-neutral-100{
  --tw-gradient-from:#f5f5f5 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(245 245 245 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-300{
  --tw-gradient-from:#f9a8d4 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(249 168 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400{
  --tw-gradient-from:#f472b6 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500{
  --tw-gradient-from:#ec4899 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-primary-color{
  --tw-gradient-from:#2196f3 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(33 150 243 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-200\/40{
  --tw-gradient-from:rgb(233 213 255 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(233 213 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500{
  --tw-gradient-from:#a855f7 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-red-600{
  --tw-gradient-from:#dc2626 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(220 38 38 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-rose-300{
  --tw-gradient-from:#fda4af var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(253 164 175 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-sky-200{
  --tw-gradient-from:#bae6fd var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(186 230 253 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-sky-400{
  --tw-gradient-from:#38bdf8 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-sky-500{
  --tw-gradient-from:#0ea5e9 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(14 165 233 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-sky-500\/30{
  --tw-gradient-from:rgb(14 165 233 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(14 165 233 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-slate-600\/40{
  --tw-gradient-from:rgb(71 85 105 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(71 85 105 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-slate-700\/30{
  --tw-gradient-from:rgb(51 65 85 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(51 65 85 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-100\/30{
  --tw-gradient-from:rgb(204 251 241 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(204 251 241 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400{
  --tw-gradient-from:#2dd4bf var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500{
  --tw-gradient-from:#14b8a6 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/10{
  --tw-gradient-from:rgb(20 184 166 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-800{
  --tw-gradient-from:#115e59 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(17 94 89 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-white{
  --tw-gradient-from:#fff 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);
}
.from-white\/10{
  --tw-gradient-from:rgb(255 255 255 / 0.1) 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);
}
.from-white\/50{
  --tw-gradient-from:rgb(255 255 255 / 0.5) 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);
}
.from-yellow-100{
  --tw-gradient-from:#fef9c3 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(254 249 195 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-yellow-200{
  --tw-gradient-from:#fef08a var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(254 240 138 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-yellow-300{
  --tw-gradient-from:#fde047 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(253 224 71 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-yellow-800{
  --tw-gradient-from:#854d0e var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(133 77 14 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-\[\#1a237e\]{
  --tw-gradient-to:rgb(26 35 126 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #1a237e var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-amber-100{
  --tw-gradient-to:rgb(254 243 199 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #fef3c7 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-blue-400{
  --tw-gradient-to:rgb(96 165 250 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #60a5fa var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-blue-500{
  --tw-gradient-to:rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #3b82f6 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-cyan-500{
  --tw-gradient-to:rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #06b6d4 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-emerald-400{
  --tw-gradient-to:rgb(52 211 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #34d399 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-emerald-900{
  --tw-gradient-to:rgb(6 78 59 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #064e3b var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-fuchsia-700{
  --tw-gradient-to:rgb(162 28 175 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #a21caf var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-indigo-200\/20{
  --tw-gradient-to:rgb(199 210 254 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), rgb(199 210 254 / 0.2) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-lime-500{
  --tw-gradient-to:rgb(132 204 22 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #84cc16 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-orange-300{
  --tw-gradient-to:rgb(253 186 116 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #fdba74 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-orange-500{
  --tw-gradient-to:rgb(249 115 22 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #f97316 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-pink-500{
  --tw-gradient-to:rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #ec4899 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-purple-50{
  --tw-gradient-to:rgb(250 245 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #faf5ff var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-purple-500{
  --tw-gradient-to:rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #a855f7 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-red-500{
  --tw-gradient-to:rgb(239 68 68 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #ef4444 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-rose-500{
  --tw-gradient-to:rgb(244 63 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #f43f5e var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-sky-100{
  --tw-gradient-to:rgb(224 242 254 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #e0f2fe var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-sky-400{
  --tw-gradient-to:rgb(56 189 248 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #38bdf8 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-slate-500{
  --tw-gradient-to:rgb(100 116 139 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #64748b var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-teal-900{
  --tw-gradient-to:rgb(19 78 74 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), #134e4a 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-\[\#283593\]{
  --tw-gradient-to:#283593 var(--tw-gradient-to-position);
}
.to-\[\#e0e0e0\]{
  --tw-gradient-to:#e0e0e0 var(--tw-gradient-to-position);
}
.to-amber-100\/80{
  --tw-gradient-to:rgb(254 243 199 / 0.8) var(--tw-gradient-to-position);
}
.to-amber-200{
  --tw-gradient-to:#fde68a var(--tw-gradient-to-position);
}
.to-amber-300{
  --tw-gradient-to:#fcd34d var(--tw-gradient-to-position);
}
.to-blue-100{
  --tw-gradient-to:#dbeafe var(--tw-gradient-to-position);
}
.to-blue-300{
  --tw-gradient-to:#93c5fd var(--tw-gradient-to-position);
}
.to-blue-500{
  --tw-gradient-to:#3b82f6 var(--tw-gradient-to-position);
}
.to-blue-500\/10{
  --tw-gradient-to:rgb(59 130 246 / 0.1) var(--tw-gradient-to-position);
}
.to-blue-500\/30{
  --tw-gradient-to:rgb(59 130 246 / 0.3) var(--tw-gradient-to-position);
}
.to-blue-600{
  --tw-gradient-to:#2563eb var(--tw-gradient-to-position);
}
.to-blue-700{
  --tw-gradient-to:#1d4ed8 var(--tw-gradient-to-position);
}
.to-cyan-200\/30{
  --tw-gradient-to:rgb(165 243 252 / 0.3) var(--tw-gradient-to-position);
}
.to-cyan-300{
  --tw-gradient-to:#67e8f9 var(--tw-gradient-to-position);
}
.to-cyan-400{
  --tw-gradient-to:#22d3ee var(--tw-gradient-to-position);
}
.to-cyan-500\/10{
  --tw-gradient-to:rgb(6 182 212 / 0.1) var(--tw-gradient-to-position);
}
.to-emerald-300{
  --tw-gradient-to:#6ee7b7 var(--tw-gradient-to-position);
}
.to-emerald-400{
  --tw-gradient-to:#34d399 var(--tw-gradient-to-position);
}
.to-emerald-400\/80{
  --tw-gradient-to:rgb(52 211 153 / 0.8) var(--tw-gradient-to-position);
}
.to-emerald-500{
  --tw-gradient-to:#10b981 var(--tw-gradient-to-position);
}
.to-emerald-600{
  --tw-gradient-to:#059669 var(--tw-gradient-to-position);
}
.to-emerald-800\/80{
  --tw-gradient-to:rgb(6 95 70 / 0.8) var(--tw-gradient-to-position);
}
.to-emerald-900{
  --tw-gradient-to:#064e3b var(--tw-gradient-to-position);
}
.to-gray-100{
  --tw-gradient-to:#f3f4f6 var(--tw-gradient-to-position);
}
.to-gray-200{
  --tw-gradient-to:#e5e7eb var(--tw-gradient-to-position);
}
.to-gray-700{
  --tw-gradient-to:#374151 var(--tw-gradient-to-position);
}
.to-green-400{
  --tw-gradient-to:#4ade80 var(--tw-gradient-to-position);
}
.to-green-500{
  --tw-gradient-to:#22c55e var(--tw-gradient-to-position);
}
.to-green-500\/10{
  --tw-gradient-to:rgb(34 197 94 / 0.1) var(--tw-gradient-to-position);
}
.to-green-600{
  --tw-gradient-to:#16a34a var(--tw-gradient-to-position);
}
.to-green-900{
  --tw-gradient-to:#14532d var(--tw-gradient-to-position);
}
.to-indigo-100{
  --tw-gradient-to:#e0e7ff var(--tw-gradient-to-position);
}
.to-indigo-400{
  --tw-gradient-to:#818cf8 var(--tw-gradient-to-position);
}
.to-indigo-50{
  --tw-gradient-to:#eef2ff var(--tw-gradient-to-position);
}
.to-indigo-50\/90{
  --tw-gradient-to:rgb(238 242 255 / 0.9) var(--tw-gradient-to-position);
}
.to-indigo-500{
  --tw-gradient-to:#6366f1 var(--tw-gradient-to-position);
}
.to-indigo-600{
  --tw-gradient-to:#4f46e5 var(--tw-gradient-to-position);
}
.to-indigo-800{
  --tw-gradient-to:#3730a3 var(--tw-gradient-to-position);
}
.to-lime-600{
  --tw-gradient-to:#65a30d var(--tw-gradient-to-position);
}
.to-orange-300{
  --tw-gradient-to:#fdba74 var(--tw-gradient-to-position);
}
.to-orange-400{
  --tw-gradient-to:#fb923c var(--tw-gradient-to-position);
}
.to-orange-500{
  --tw-gradient-to:#f97316 var(--tw-gradient-to-position);
}
.to-pink-500{
  --tw-gradient-to:#ec4899 var(--tw-gradient-to-position);
}
.to-purple-400{
  --tw-gradient-to:#c084fc var(--tw-gradient-to-position);
}
.to-purple-500{
  --tw-gradient-to:#a855f7 var(--tw-gradient-to-position);
}
.to-purple-500\/30{
  --tw-gradient-to:rgb(168 85 247 / 0.3) var(--tw-gradient-to-position);
}
.to-purple-600{
  --tw-gradient-to:#9333ea var(--tw-gradient-to-position);
}
.to-red-400{
  --tw-gradient-to:#f87171 var(--tw-gradient-to-position);
}
.to-rose-400{
  --tw-gradient-to:#fb7185 var(--tw-gradient-to-position);
}
.to-rose-500{
  --tw-gradient-to:#f43f5e var(--tw-gradient-to-position);
}
.to-secondary-color{
  --tw-gradient-to:#1976d2 var(--tw-gradient-to-position);
}
.to-sky-200{
  --tw-gradient-to:#bae6fd var(--tw-gradient-to-position);
}
.to-slate-700\/50{
  --tw-gradient-to:rgb(51 65 85 / 0.5) var(--tw-gradient-to-position);
}
.to-slate-800\/40{
  --tw-gradient-to:rgb(30 41 59 / 0.4) var(--tw-gradient-to-position);
}
.to-teal-500\/10{
  --tw-gradient-to:rgb(20 184 166 / 0.1) var(--tw-gradient-to-position);
}
.to-teal-600{
  --tw-gradient-to:#0d9488 var(--tw-gradient-to-position);
}
.to-transparent{
  --tw-gradient-to:transparent var(--tw-gradient-to-position);
}
.to-white\/10{
  --tw-gradient-to:rgb(255 255 255 / 0.1) var(--tw-gradient-to-position);
}
.to-yellow-200{
  --tw-gradient-to:#fef08a var(--tw-gradient-to-position);
}
.to-yellow-500{
  --tw-gradient-to:#eab308 var(--tw-gradient-to-position);
}
.to-yellow-700{
  --tw-gradient-to:#a16207 var(--tw-gradient-to-position);
}
.to-yellow-900{
  --tw-gradient-to:#713f12 var(--tw-gradient-to-position);
}
.bg-\[length\:200px_150px\]{
  background-size:200px 150px;
}
.bg-\[length\:300px_100px\]{
  background-size:300px 100px;
}
.bg-repeat-x{
  background-repeat:repeat-x;
}
.object-cover{
  object-fit:cover;
}
.object-center{
  object-position:center;
}
.p-1{
  padding:2px;
}
.p-2{
  padding:4px;
}
.p-2\.5{
  padding:.625rem;
}
.p-3{
  padding:6px;
}
.p-4{
  padding:8px;
}
.p-5{
  padding:12px;
}
.p-6{
  padding:16px;
}
.p-8{
  padding:24px;
}
.px-1{
  padding-left:2px;
  padding-right:2px;
}
.px-2{
  padding-left:4px;
  padding-right:4px;
}
.px-3{
  padding-left:6px;
  padding-right:6px;
}
.px-4{
  padding-left:8px;
  padding-right:8px;
}
.px-5{
  padding-left:12px;
  padding-right:12px;
}
.px-6{
  padding-left:16px;
  padding-right:16px;
}
.px-8{
  padding-left:24px;
  padding-right:24px;
}
.py-1{
  padding-bottom:2px;
  padding-top:2px;
}
.py-1\.5{
  padding-bottom:.375rem;
  padding-top:.375rem;
}
.py-10{
  padding-bottom:32px;
  padding-top:32px;
}
.py-12{
  padding-bottom:40px;
  padding-top:40px;
}
.py-14{
  padding-bottom:3.5rem;
  padding-top:3.5rem;
}
.py-2{
  padding-bottom:4px;
  padding-top:4px;
}
.py-28{
  padding-bottom:7rem;
  padding-top:7rem;
}
.py-3{
  padding-bottom:6px;
  padding-top:6px;
}
.py-4{
  padding-bottom:8px;
  padding-top:8px;
}
.py-8{
  padding-bottom:24px;
  padding-top:24px;
}
.pb-16{
  padding-bottom:56px;
}
.pb-4{
  padding-bottom:8px;
}
.pb-8{
  padding-bottom:24px;
}
.pr-3{
  padding-right:6px;
}
.pt-0{
  padding-top:0;
}
.pt-12{
  padding-top:40px;
}
.pt-4{
  padding-top:8px;
}
.pt-6{
  padding-top:16px;
}
.pt-8{
  padding-top:24px;
}
.text-left{
  text-align:left;
}
.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-8xl{
  font-size:6rem;
  line-height:1;
}
.text-\[10px\]{
  font-size:10px;
}
.text-\[12px\]{
  font-size:12px;
}
.text-\[14px\]{
  font-size:14px;
}
.text-\[15px\]{
  font-size:15px;
}
.text-\[16px\]{
  font-size:16px;
}
.text-\[20px\]{
  font-size:20px;
}
.text-base{
  font-size:1rem;
  line-height:1.5rem;
}
.text-headline-large{
  font-size:24px;
  letter-spacing:-.25px;
  line-height:30px;
}
.text-headline-small{
  font-size:18px;
  line-height:24px;
}
.text-lg{
  font-size:1.125rem;
  line-height:1.75rem;
}
.text-sm{
  font-size:.875rem;
  line-height:1.25rem;
}
.text-title-large{
  font-size:16px;
  letter-spacing:.1px;
  line-height:22px;
}
.text-xl{
  font-size:1.25rem;
  line-height:1.75rem;
}
.text-xs{
  font-size:.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;
}
.lowercase{
  text-transform:lowercase;
}
.italic{
  font-style:italic;
}
.ordinal{
  --tw-ordinal:ordinal;
  font-feature-settings:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.tabular-nums{
  --tw-numeric-spacing:tabular-nums;
  font-feature-settings:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.leading-none{
  line-height:1;
}
.leading-relaxed{
  line-height:1.625;
}
.tracking-tight{
  letter-spacing:-.025em;
}
.tracking-wider{
  letter-spacing:.05em;
}
.text-accent-foreground{
  color:hsl(222.2 47.4% 11.2%);
  color:hsl(var(--accent-foreground));
}
.text-air{
  --tw-text-opacity:1;
  color:rgb(177 156 217 / 1);
  color:rgb(177 156 217 / var(--tw-text-opacity, 1));
}
.text-amber-100{
  --tw-text-opacity:1;
  color:rgb(254 243 199 / 1);
  color:rgb(254 243 199 / var(--tw-text-opacity, 1));
}
.text-amber-500{
  --tw-text-opacity:1;
  color:rgb(245 158 11 / 1);
  color:rgb(245 158 11 / var(--tw-text-opacity, 1));
}
.text-amber-600{
  --tw-text-opacity:1;
  color:rgb(217 119 6 / 1);
  color:rgb(217 119 6 / var(--tw-text-opacity, 1));
}
.text-black{
  --tw-text-opacity:1;
  color:rgb(0 0 0 / 1);
  color:rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-100{
  --tw-text-opacity:1;
  color:rgb(219 234 254 / 1);
  color:rgb(219 234 254 / var(--tw-text-opacity, 1));
}
.text-blue-200{
  --tw-text-opacity:1;
  color:rgb(191 219 254 / 1);
  color:rgb(191 219 254 / var(--tw-text-opacity, 1));
}
.text-blue-300{
  --tw-text-opacity:1;
  color:rgb(147 197 253 / 1);
  color:rgb(147 197 253 / var(--tw-text-opacity, 1));
}
.text-blue-500{
  --tw-text-opacity:1;
  color:rgb(59 130 246 / 1);
  color:rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.text-blue-600{
  --tw-text-opacity:1;
  color:rgb(37 99 235 / 1);
  color:rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-700{
  --tw-text-opacity:1;
  color:rgb(29 78 216 / 1);
  color:rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.text-blue-800{
  --tw-text-opacity:1;
  color:rgb(30 64 175 / 1);
  color:rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.text-card-foreground{
  color:hsl(222.2 84% 4.9%);
  color:hsl(var(--card-foreground));
}
.text-destructive-foreground{
  color:hsl(210 40% 98%);
  color:hsl(var(--destructive-foreground));
}
.text-earth{
  --tw-text-opacity:1;
  color:rgb(51 204 51 / 1);
  color:rgb(51 204 51 / var(--tw-text-opacity, 1));
}
.text-emerald-100{
  --tw-text-opacity:1;
  color:rgb(209 250 229 / 1);
  color:rgb(209 250 229 / var(--tw-text-opacity, 1));
}
.text-emerald-700{
  --tw-text-opacity:1;
  color:rgb(4 120 87 / 1);
  color:rgb(4 120 87 / var(--tw-text-opacity, 1));
}
.text-emerald-800{
  --tw-text-opacity:1;
  color:rgb(6 95 70 / 1);
  color:rgb(6 95 70 / var(--tw-text-opacity, 1));
}
.text-emerald-900{
  --tw-text-opacity:1;
  color:rgb(6 78 59 / 1);
  color:rgb(6 78 59 / var(--tw-text-opacity, 1));
}
.text-fire{
  --tw-text-opacity:1;
  color:rgb(255 179 71 / 1);
  color:rgb(255 179 71 / var(--tw-text-opacity, 1));
}
.text-foreground{
  color:hsl(222.2 84% 4.9%);
  color:hsl(var(--foreground));
}
.text-gray-400{
  --tw-text-opacity:1;
  color:rgb(156 163 175 / 1);
  color:rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500{
  --tw-text-opacity:1;
  color:rgb(107 114 128 / 1);
  color:rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600{
  --tw-text-opacity:1;
  color:rgb(75 85 99 / 1);
  color:rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700{
  --tw-text-opacity:1;
  color:rgb(55 65 81 / 1);
  color:rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800{
  --tw-text-opacity:1;
  color:rgb(31 41 55 / 1);
  color:rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900{
  --tw-text-opacity:1;
  color:rgb(17 24 39 / 1);
  color:rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-500{
  --tw-text-opacity:1;
  color:rgb(34 197 94 / 1);
  color:rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-green-600{
  --tw-text-opacity:1;
  color:rgb(22 163 74 / 1);
  color:rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-green-700{
  --tw-text-opacity:1;
  color:rgb(21 128 61 / 1);
  color:rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.text-indigo-500{
  --tw-text-opacity:1;
  color:rgb(99 102 241 / 1);
  color:rgb(99 102 241 / var(--tw-text-opacity, 1));
}
.text-indigo-900{
  --tw-text-opacity:1;
  color:rgb(49 46 129 / 1);
  color:rgb(49 46 129 / var(--tw-text-opacity, 1));
}
.text-muted-foreground{
  color:hsl(215.4 16.3% 46.9%);
  color:hsl(var(--muted-foreground));
}
.text-primary-color{
  --tw-text-opacity:1;
  color:rgb(33 150 243 / 1);
  color:rgb(33 150 243 / var(--tw-text-opacity, 1));
}
.text-primary-foreground{
  color:hsl(210 40% 98%);
  color:hsl(var(--primary-foreground));
}
.text-purple-100{
  --tw-text-opacity:1;
  color:rgb(243 232 255 / 1);
  color:rgb(243 232 255 / var(--tw-text-opacity, 1));
}
.text-purple-200{
  --tw-text-opacity:1;
  color:rgb(233 213 255 / 1);
  color:rgb(233 213 255 / var(--tw-text-opacity, 1));
}
.text-purple-300{
  --tw-text-opacity:1;
  color:rgb(216 180 254 / 1);
  color:rgb(216 180 254 / var(--tw-text-opacity, 1));
}
.text-purple-600{
  --tw-text-opacity:1;
  color:rgb(147 51 234 / 1);
  color:rgb(147 51 234 / var(--tw-text-opacity, 1));
}
.text-red-500{
  --tw-text-opacity:1;
  color:rgb(239 68 68 / 1);
  color:rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-600{
  --tw-text-opacity:1;
  color:rgb(220 38 38 / 1);
  color:rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-red-700{
  --tw-text-opacity:1;
  color:rgb(185 28 28 / 1);
  color:rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.text-red-800{
  --tw-text-opacity:1;
  color:rgb(153 27 27 / 1);
  color:rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.text-secondary-foreground{
  color:hsl(222.2 47.4% 11.2%);
  color:hsl(var(--secondary-foreground));
}
.text-slate-500{
  --tw-text-opacity:1;
  color:rgb(100 116 139 / 1);
  color:rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-slate-600{
  --tw-text-opacity:1;
  color:rgb(71 85 105 / 1);
  color:rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.text-slate-800{
  --tw-text-opacity:1;
  color:rgb(30 41 59 / 1);
  color:rgb(30 41 59 / var(--tw-text-opacity, 1));
}
.text-teal-100{
  --tw-text-opacity:1;
  color:rgb(204 251 241 / 1);
  color:rgb(204 251 241 / var(--tw-text-opacity, 1));
}
.text-teal-300{
  --tw-text-opacity:1;
  color:rgb(94 234 212 / 1);
  color:rgb(94 234 212 / var(--tw-text-opacity, 1));
}
.text-teal-500{
  --tw-text-opacity:1;
  color:rgb(20 184 166 / 1);
  color:rgb(20 184 166 / var(--tw-text-opacity, 1));
}
.text-teal-600{
  --tw-text-opacity:1;
  color:rgb(13 148 136 / 1);
  color:rgb(13 148 136 / var(--tw-text-opacity, 1));
}
.text-teal-700{
  --tw-text-opacity:1;
  color:rgb(15 118 110 / 1);
  color:rgb(15 118 110 / var(--tw-text-opacity, 1));
}
.text-text-color{
  --tw-text-opacity:1;
  color:rgb(68 68 68 / 1);
  color:rgb(68 68 68 / var(--tw-text-opacity, 1));
}
.text-water{
  --tw-text-opacity:1;
  color:rgb(0 183 255 / 1);
  color:rgb(0 183 255 / var(--tw-text-opacity, 1));
}
.text-white{
  --tw-text-opacity:1;
  color:rgb(255 255 255 / 1);
  color:rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/70{
  color:rgb(255 255 255 / .7);
}
.text-white\/80{
  color:rgb(255 255 255 / .8);
}
.text-white\/90{
  color:rgb(255 255 255 / .9);
}
.text-yellow-800{
  --tw-text-opacity:1;
  color:rgb(133 77 14 / 1);
  color:rgb(133 77 14 / var(--tw-text-opacity, 1));
}
.underline{
  -webkit-text-decoration-line:underline;
          text-decoration-line:underline;
}
.overline{
  -webkit-text-decoration-line:overline;
          text-decoration-line:overline;
}
.line-through{
  -webkit-text-decoration-line:line-through;
          text-decoration-line:line-through;
}
.opacity-0{
  opacity:0;
}
.opacity-10{
  opacity:.1;
}
.opacity-100{
  opacity:1;
}
.opacity-20{
  opacity:.2;
}
.opacity-30{
  opacity:.3;
}
.opacity-40{
  opacity:.4;
}
.opacity-50{
  opacity:.5;
}
.opacity-60{
  opacity:.6;
}
.opacity-70{
  opacity:.7;
}
.opacity-80{
  opacity:.8;
}
.opacity-90{
  opacity:.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:0 0 #0000, 0 0 #0000, var(--tw-shadow);
  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:0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-inner{
  --tw-shadow:inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);
  box-shadow:0 0 #0000, 0 0 #0000, var(--tw-shadow);
  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:0 0 #0000, 0 0 #0000, var(--tw-shadow);
  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:0 0 #0000, 0 0 #0000, var(--tw-shadow);
  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:0 0 #0000, 0 0 #0000, var(--tw-shadow);
  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:0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-yellow-300\/50{
  --tw-shadow-color:rgb(253 224 71 / 0.5);
  --tw-shadow:var(--tw-shadow-colored);
}
.outline{
  outline-style:solid;
}
.ring{
  --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-offset-background{
  --tw-ring-offset-color:hsl(var(--background));
}
.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);
}
.blur-\[1px\]{
  --tw-blur:blur(1px);
  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-\[2px\]{
  --tw-blur:blur(2px);
  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-lg{
  --tw-blur:blur(16px);
  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-md{
  --tw-blur:blur(12px);
  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-sm{
  --tw-blur:blur(4px);
  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);
}
.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);
}
.drop-shadow-md{
  --tw-drop-shadow:drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px 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-sm{
  --tw-drop-shadow:drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
  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-\[2px\]{
  --tw-backdrop-blur:blur(2px);
  -webkit-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: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-lg{
  --tw-backdrop-blur:blur(16px);
  -webkit-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: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-md{
  --tw-backdrop-blur:blur(12px);
  -webkit-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: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);
  -webkit-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: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{
  -webkit-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: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-duration:.15s;
  transition-property:color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-timing-function:cubic-bezier(.4, 0, .2, 1);
}
.transition-all{
  transition-duration:.15s;
  transition-property:all;
  transition-timing-function:cubic-bezier(.4, 0, .2, 1);
}
.transition-colors{
  transition-duration:.15s;
  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(.4, 0, .2, 1);
}
.transition-opacity{
  transition-duration:.15s;
  transition-property:opacity;
  transition-timing-function:cubic-bezier(.4, 0, .2, 1);
}
.transition-transform{
  transition-duration:.15s;
  transition-property:transform;
  transition-timing-function:cubic-bezier(.4, 0, .2, 1);
}
.duration-100{
  transition-duration:.1s;
}
.duration-1000{
  transition-duration:1s;
}
.duration-200{
  transition-duration:.2s;
}
.duration-300{
  transition-duration:.3s;
}
.duration-700{
  transition-duration:.7s;
}
.ease-in-out{
  transition-timing-function:cubic-bezier(.4, 0, .2, 1);
}
.ease-linear{
  transition-timing-function:linear;
}
.ease-out{
  transition-timing-function:cubic-bezier(0, 0, .2, 1);
}
@keyframes enter{
  from{
    opacity:1;
    opacity:var(--tw-enter-opacity, 1);
    transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotate(0);
    transform:translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}
@keyframes exit{
  to{
    opacity:1;
    opacity:var(--tw-exit-opacity, 1);
    transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotate(0);
    transform:translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}
.fade-out{
  --tw-exit-opacity:0;
}
.duration-100{
  animation-duration:.1s;
}
.duration-1000{
  animation-duration:1s;
}
.duration-200{
  animation-duration:.2s;
}
.duration-300{
  animation-duration:.3s;
}
.duration-700{
  animation-duration:.7s;
}
.ease-in-out{
  animation-timing-function:cubic-bezier(.4, 0, .2, 1);
}
.ease-linear{
  animation-timing-function:linear;
}
.ease-out{
  animation-timing-function:cubic-bezier(0, 0, .2, 1);
}
.running{
  animation-play-state:running;
}
.paused{
  animation-play-state:paused;
}
@keyframes twinkle{
  0%{
    opacity:.2;
    transform:scale(.8);
  }
  50%{
    opacity:.7;
    transform:scale(1.2);
  }
  100%{
    opacity:.2;
    transform:scale(.8);
  }
}
.dialog-container-styled{
  border-radius:8px !important;
  box-shadow:0 4px 6px rgba(0, 0, 0, .1) !important;
  max-width:90vw !important;
  min-width:300px !important;
  overflow:hidden !important;
  width:auto !important;
}
.feature-sentence-animation{
  animation:fadeSentence 1s ease-in-out !important;
  color:#333333 !important;
  font-size:1.125rem !important;
  font-weight:400 !important;
  line-height:1.5 !important;
  margin-bottom:1rem !important;
  max-width:100% !important;
  opacity:1 !important;
  overflow-wrap:break-word !important;
  padding-bottom:8px !important;
  text-align:center !important;
  transition:opacity .5s ease-in-out !important;
}
.MuiDrawer-paper.dialog-container-styled{
  border-radius:12px 0 0 12px;
}
.file\:border-0::-webkit-file-upload-button{
  border-width:0;
}
.file\:border-0::file-selector-button{
  border-width:0;
}
.file\:bg-transparent::-webkit-file-upload-button{
  background-color:transparent;
}
.file\:bg-transparent::file-selector-button{
  background-color:transparent;
}
.file\:text-sm::-webkit-file-upload-button{
  font-size:.875rem;
  line-height:1.25rem;
}
.file\:text-sm::file-selector-button{
  font-size:.875rem;
  line-height:1.25rem;
}
.file\:font-medium::-webkit-file-upload-button{
  font-weight:500;
}
.file\:font-medium::file-selector-button{
  font-weight:500;
}
.placeholder\:text-muted-foreground::placeholder{
  color:hsl(215.4 16.3% 46.9%);
  color:hsl(var(--muted-foreground));
}
.hover\:-translate-y-1:hover{
  --tw-translate-y:-2px;
  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\:-translate-y-2:hover{
  --tw-translate-y:-4px;
  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\:scale-110:hover{
  --tw-scale-x:1.1;
  --tw-scale-y:1.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));
}
.hover\:bg-accent:hover{
  background-color:hsl(210 40% 96.1%);
  background-color:hsl(var(--accent));
}
.hover\:bg-amber-50:hover{
  --tw-bg-opacity:1;
  background-color:rgb(255 251 235 / 1);
  background-color:rgb(255 251 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-amber-600:hover{
  --tw-bg-opacity:1;
  background-color:rgb(217 119 6 / 1);
  background-color:rgb(217 119 6 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-100:hover{
  --tw-bg-opacity:1;
  background-color:rgb(219 234 254 / 1);
  background-color:rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-500:hover{
  --tw-bg-opacity:1;
  background-color:rgb(59 130 246 / 1);
  background-color:rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-600:hover{
  --tw-bg-opacity:1;
  background-color:rgb(37 99 235 / 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 / 1);
  background-color:rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-800:hover{
  --tw-bg-opacity:1;
  background-color:rgb(30 64 175 / 1);
  background-color:rgb(30 64 175 / var(--tw-bg-opacity, 1));
}
.hover\:bg-destructive\/90:hover{
  background-color:hsl(0 84.2% 60.2% / .9);
  background-color:hsl(var(--destructive) / .9);
}
.hover\:bg-gray-100:hover{
  --tw-bg-opacity:1;
  background-color:rgb(243 244 246 / 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 / 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 / 1);
  background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-600:hover{
  --tw-bg-opacity:1;
  background-color:rgb(75 85 99 / 1);
  background-color:rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-800:hover{
  --tw-bg-opacity:1;
  background-color:rgb(31 41 55 / 1);
  background-color:rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-600:hover{
  --tw-bg-opacity:1;
  background-color:rgb(22 163 74 / 1);
  background-color:rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-700:hover{
  --tw-bg-opacity:1;
  background-color:rgb(21 128 61 / 1);
  background-color:rgb(21 128 61 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-600:hover{
  --tw-bg-opacity:1;
  background-color:rgb(79 70 229 / 1);
  background-color:rgb(79 70 229 / var(--tw-bg-opacity, 1));
}
.hover\:bg-muted:hover{
  background-color:hsl(210 40% 96.1%);
  background-color:hsl(var(--muted));
}
.hover\:bg-primary\/90:hover{
  background-color:hsl(221.2 83.2% 53.3% / .9);
  background-color:hsl(var(--primary) / .9);
}
.hover\:bg-purple-600:hover{
  --tw-bg-opacity:1;
  background-color:rgb(147 51 234 / 1);
  background-color:rgb(147 51 234 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-600:hover{
  --tw-bg-opacity:1;
  background-color:rgb(220 38 38 / 1);
  background-color:rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.hover\:bg-secondary-color:hover{
  --tw-bg-opacity:1;
  background-color:rgb(25 118 210 / 1);
  background-color:rgb(25 118 210 / var(--tw-bg-opacity, 1));
}
.hover\:bg-secondary\/80:hover{
  background-color:hsl(210 40% 96.1% / .8);
  background-color:hsl(var(--secondary) / .8);
}
.hover\:bg-sky-600:hover{
  --tw-bg-opacity:1;
  background-color:rgb(2 132 199 / 1);
  background-color:rgb(2 132 199 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-100:hover{
  --tw-bg-opacity:1;
  background-color:rgb(241 245 249 / 1);
  background-color:rgb(241 245 249 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-600:hover{
  --tw-bg-opacity:1;
  background-color:rgb(71 85 105 / 1);
  background-color:rgb(71 85 105 / var(--tw-bg-opacity, 1));
}
.hover\:bg-soft-light-blue:hover{
  --tw-bg-opacity:1;
  background-color:rgb(246 251 254 / 1);
  background-color:rgb(246 251 254 / var(--tw-bg-opacity, 1));
}
.hover\:bg-white\/10:hover{
  background-color:rgb(255 255 255 / .1);
}
.hover\:bg-white\/30:hover{
  background-color:rgb(255 255 255 / .3);
}
.hover\:bg-gradient-to-r:hover{
  background-image:linear-gradient(to right, var(--tw-gradient-stops));
}
.hover\:from-amber-600:hover{
  --tw-gradient-from:#d97706 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(217 119 6 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-blue-500:hover{
  --tw-gradient-from:#3b82f6 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-blue-600:hover{
  --tw-gradient-from:#2563eb var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-gray-100:hover{
  --tw-gradient-from:#f3f4f6 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(243 244 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-green-600:hover{
  --tw-gradient-from:#16a34a var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(22 163 74 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-indigo-600:hover{
  --tw-gradient-from:#4f46e5 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(79 70 229 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-teal-600:hover{
  --tw-gradient-from:#0d9488 var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:to-emerald-600:hover{
  --tw-gradient-to:#059669 var(--tw-gradient-to-position);
}
.hover\:to-green-700:hover{
  --tw-gradient-to:#15803d var(--tw-gradient-to-position);
}
.hover\:to-indigo-50:hover{
  --tw-gradient-to:#eef2ff var(--tw-gradient-to-position);
}
.hover\:to-indigo-600:hover{
  --tw-gradient-to:#4f46e5 var(--tw-gradient-to-position);
}
.hover\:to-orange-600:hover{
  --tw-gradient-to:#ea580c var(--tw-gradient-to-position);
}
.hover\:to-purple-600:hover{
  --tw-gradient-to:#9333ea var(--tw-gradient-to-position);
}
.hover\:text-accent-foreground:hover{
  color:hsl(222.2 47.4% 11.2%);
  color:hsl(var(--accent-foreground));
}
.hover\:text-black:hover{
  --tw-text-opacity:1;
  color:rgb(0 0 0 / 1);
  color:rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-800:hover{
  --tw-text-opacity:1;
  color:rgb(30 64 175 / 1);
  color:rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-700:hover{
  --tw-text-opacity:1;
  color:rgb(55 65 81 / 1);
  color:rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.hover\:text-muted-foreground:hover{
  color:hsl(215.4 16.3% 46.9%);
  color:hsl(var(--muted-foreground));
}
.hover\:text-red-800:hover{
  --tw-text-opacity:1;
  color:rgb(153 27 27 / 1);
  color:rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.hover\:text-slate-800:hover{
  --tw-text-opacity:1;
  color:rgb(30 41 59 / 1);
  color:rgb(30 41 59 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover{
  --tw-text-opacity:1;
  color:rgb(255 255 255 / 1);
  color:rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:opacity-100:hover{
  opacity:1;
}
.hover\:opacity-90:hover{
  opacity:.9;
}
.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:0 0 #0000, 0 0 #0000, var(--tw-shadow);
  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:0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:border-blue-500:focus{
  --tw-border-opacity:1;
  border-color:rgb(59 130 246 / 1);
  border-color:rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.focus\:outline-none:focus{
  outline:2px solid transparent;
  outline-offset:2px;
}
.focus\:ring: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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.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), 0 0 #0000;
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-blue-200:focus{
  --tw-ring-opacity:1;
  --tw-ring-color:rgb(191 219 254 / 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-opacity-50:focus{
  --tw-ring-opacity:0.5;
}
.focus-visible\:outline-none:focus-visible{
  outline:2px solid transparent;
  outline-offset:2px;
}
.focus-visible\:ring-2:focus-visible{
  --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), 0 0 #0000;
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-4:focus-visible{
  --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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-blue-300:focus-visible{
  --tw-ring-opacity:1;
  --tw-ring-color:rgb(147 197 253 / var(--tw-ring-opacity, 1));
}
.focus-visible\:ring-blue-400:focus-visible{
  --tw-ring-opacity:1;
  --tw-ring-color:rgb(96 165 250 / var(--tw-ring-opacity, 1));
}
.focus-visible\:ring-indigo-300:focus-visible{
  --tw-ring-opacity:1;
  --tw-ring-color:rgb(165 180 252 / var(--tw-ring-opacity, 1));
}
.focus-visible\:ring-ring:focus-visible{
  --tw-ring-color:hsl(var(--ring));
}
.focus-visible\:ring-offset-2:focus-visible{
  --tw-ring-offset-width:2px;
}
.disabled\:pointer-events-none:disabled{
  pointer-events:none;
}
.disabled\:cursor-not-allowed:disabled{
  cursor:not-allowed;
}
.disabled\:bg-gray-100:disabled{
  --tw-bg-opacity:1;
  background-color:rgb(243 244 246 / 1);
  background-color:rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.disabled\:bg-gray-400:disabled{
  --tw-bg-opacity:1;
  background-color:rgb(156 163 175 / 1);
  background-color:rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.disabled\:opacity-50:disabled{
  opacity:.5;
}
.group:hover .group-hover\:text-slate-900{
  --tw-text-opacity:1;
  color:rgb(15 23 42 / 1);
  color:rgb(15 23 42 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-white{
  --tw-text-opacity:1;
  color:rgb(255 255 255 / 1);
  color:rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-white\/90{
  color:rgb(255 255 255 / .9);
}
.group:focus .group-focus\:translate-y-0{
  --tw-translate-y:0px;
  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:focus .group-focus\:opacity-100{
  opacity:1;
}
@media (prefers-reduced-motion: no-preference){
  .motion-safe\:transition{
    transition-duration:.15s;
    transition-property:color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function:cubic-bezier(.4, 0, .2, 1);
  }
  .motion-safe\:duration-200{
    transition-duration:.2s;
  }
  .motion-safe\:duration-300{
    transition-duration:.3s;
  }
  .motion-safe\:duration-500{
    transition-duration:.5s;
  }
  .motion-safe\:duration-200{
    animation-duration:.2s;
  }
  .motion-safe\:duration-300{
    animation-duration:.3s;
  }
  .motion-safe\:duration-500{
    animation-duration:.5s;
  }
  .group\/icon:hover .motion-safe\:group-hover\/icon\:scale-110{
    --tw-scale-x:1.1;
    --tw-scale-y:1.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));
  }
}
@media (min-width: 640px){
  .sm\:mt-8{
    margin-top:24px;
  }
  .sm\:block{
    display:block;
  }
  .sm\:hidden{
    display:none;
  }
  .sm\:h-12{
    height:40px;
  }
  .sm\:h-20{
    height:72px;
  }
  .sm\:h-64{
    height:16rem;
  }
  .sm\:h-8{
    height:24px;
  }
  .sm\:h-9{
    height:2.25rem;
  }
  .sm\:h-96{
    height:24rem;
  }
  .sm\:h-\[10px\]{
    height:10px;
  }
  .sm\:max-h-\[90vh\]{
    max-height:90vh;
  }
  .sm\:w-12{
    width:40px;
  }
  .sm\:w-20{
    width:72px;
  }
  .sm\:w-8{
    width:24px;
  }
  .sm\:w-9{
    width:2.25rem;
  }
  .sm\:w-\[10px\]{
    width:10px;
  }
  .sm\:w-\[540px\]{
    width:540px;
  }
  .sm\:max-w-lg{
    max-width:32rem;
  }
  .sm\:grid-cols-2{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .sm\:flex-row{
    flex-direction:row;
  }
  .sm\:items-center{
    align-items:center;
  }
  .sm\:gap-2{
    gap:4px;
  }
  .sm\:rounded-2xl{
    border-radius:1rem;
  }
  .sm\:p-8{
    padding:24px;
  }
  .sm\:pt-16{
    padding-top:56px;
  }
  .sm\:text-2xl{
    font-size:1.5rem;
    line-height:2rem;
  }
  .sm\:text-3xl{
    font-size:1.875rem;
    line-height:2.25rem;
  }
  .sm\:text-base{
    font-size:1rem;
    line-height:1.5rem;
  }
  .sm\:text-xl{
    font-size:1.25rem;
    line-height:1.75rem;
  }
  .sm\: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:0 0 #0000, 0 0 #0000, var(--tw-shadow);
    box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}
@media (min-width: 768px){
  .md\:mb-0{
    margin-bottom:0;
  }
  .md\:mb-4{
    margin-bottom:8px;
  }
  .md\:mb-6{
    margin-bottom:16px;
  }
  .md\:mr-3{
    margin-right:6px;
  }
  .md\:h-12{
    height:40px;
  }
  .md\:h-6{
    height:16px;
  }
  .md\:h-72{
    height:18rem;
  }
  .md\:h-80{
    height:20rem;
  }
  .md\:w-1\/2{
    width:50%;
  }
  .md\:w-12{
    width:40px;
  }
  .md\:w-3\/4{
    width:75%;
  }
  .md\:w-6{
    width:16px;
  }
  .md\:w-72{
    width:18rem;
  }
  .md\:w-auto{
    width:auto;
  }
  .md\:translate-y-6{
    --tw-translate-y:16px;
    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));
  }
  .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\:flex-row{
    flex-direction:row;
  }
  .md\:gap-y-0{
    row-gap:0;
  }
  .md\:p-6{
    padding:16px;
  }
  .md\:p-8{
    padding:24px;
  }
  .md\:px-8{
    padding-left:24px;
    padding-right:24px;
  }
  .md\:py-16{
    padding-bottom:56px;
    padding-top:56px;
  }
  .md\:py-36{
    padding-bottom:9rem;
    padding-top:9rem;
  }
  .md\:pl-10{
    padding-left:32px;
  }
  .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-9xl{
    font-size:8rem;
    line-height:1;
  }
  .md\:text-\[16px\]{
    font-size:16px;
  }
  .md\:text-\[17px\]{
    font-size:17px;
  }
  .md\:text-\[18px\]{
    font-size:18px;
  }
  .md\:text-\[24px\]{
    font-size:24px;
  }
  .md\:text-base{
    font-size:1rem;
    line-height:1.5rem;
  }
  .md\:text-display-small{
    font-size:30px;
    line-height:36px;
  }
  .md\:text-headline-medium{
    font-size:20px;
    line-height:26px;
  }
  .md\:text-xl{
    font-size:1.25rem;
    line-height:1.75rem;
  }
  .md\:text-slate-600{
    --tw-text-opacity:1;
    color:rgb(71 85 105 / 1);
    color:rgb(71 85 105 / var(--tw-text-opacity, 1));
  }
  .md\:text-slate-800{
    --tw-text-opacity:1;
    color:rgb(30 41 59 / 1);
    color:rgb(30 41 59 / var(--tw-text-opacity, 1));
  }
  .md\:opacity-0{
    opacity:0;
  }
  .group:hover .md\:group-hover\:translate-y-0{
    --tw-translate-y:0px;
    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 .md\:group-hover\:text-slate-900\/90{
    color:rgb(15 23 42 / .9);
  }
  .group:hover .md\:group-hover\:text-white\/90{
    color:rgb(255 255 255 / .9);
  }
  .group:hover .md\:group-hover\:opacity-100{
    opacity:1;
  }
  @media (prefers-reduced-motion: no-preference){
    .md\:motion-safe\: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);
    }
  }
}
@media (min-width: 1024px){
  .lg\:flex-row{
    flex-direction:row;
  }
  .lg\:gap-8{
    gap:24px;
  }
  .lg\:text-5xl{
    font-size:3rem;
    line-height:1;
  }
  .lg\:text-\[18px\]{
    font-size:18px;
  }
  .lg\:text-\[19px\]{
    font-size:19px;
  }
  .lg\:text-\[20px\]{
    font-size:20px;
  }
  .lg\:text-\[28px\]{
    font-size:28px;
  }
}
@media (prefers-color-scheme: dark){
  .dark\:bg-slate-800\/60{
    background-color:rgb(30 41 59 / .6);
  }
  .dark\:from-neutral-900{
    --tw-gradient-from:#171717 var(--tw-gradient-from-position);
    --tw-gradient-to:rgb(23 23 23 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
  }
  .dark\:to-gray-800{
    --tw-gradient-to:#1f2937 var(--tw-gradient-to-position);
  }
}
@media (min-width: 768px){
  @media (prefers-color-scheme: dark){
    .md\:dark\:text-slate-100{
      --tw-text-opacity:1;
      color:rgb(241 245 249 / 1);
      color:rgb(241 245 249 / var(--tw-text-opacity, 1));
    }
    .md\:dark\:text-slate-300{
      --tw-text-opacity:1;
      color:rgb(203 213 225 / 1);
      color:rgb(203 213 225 / var(--tw-text-opacity, 1));
    }
  }
}
.landing-page .landing-section-title,
.landing-page .about-section-title,
.landing-page .contact-section-title{
  color:var(--primary-color) !important;
  font-size:20px !important;
  font-weight:bold !important;
  margin-bottom:12px !important;
}
.landing-page .landing-section-title.text-left,
.landing-page .about-section-title{
  text-align:left !important;
}
.landing-page .landing-section-title.text-center,
.landing-page .contact-section-title{
  text-align:center !important;
}
.fusesoul-heading.MuiTypography-root{
  color:var(--primary-color) !important;
  font-size:20px !important;
  font-weight:bold !important;
  margin-bottom:12px !important;
}
@keyframes gradientFlow{
  0%{
    background-position:0 50%;
  }
  50%{
    background-position:100% 50%;
  }
  100%{
    background-position:0 50%;
  }
}
.landing-hero-section{
  animation:gradientFlow 20s ease infinite;
  background-color:#22489E;
  background-size:300% 300%;
  height:55vh;
  margin-bottom:0;
  overflow:hidden;
  position:relative;
}

.landing-hero-image{
  animation:fadeIn .8s ease-in-out .3s forwards;
  -webkit-backface-visibility:hidden;
          backface-visibility:hidden;
  height:100%;
  object-fit:cover;
  object-position:center;
  opacity:0;
  transform:translateZ(0);
  transition:opacity .8s ease-in-out;
  width:100%;
  will-change:opacity;
}
.landing-hero-image.loading{
  opacity:0;
}

.landing-hero-overlay{
  align-items:center;
  background:rgba(0, 0, 0, .4);
  color:#fff;
  display:flex;
  flex-direction:column;
  height:100%;
  justify-content:center;
  left:0;
  position:absolute;
  text-align:center;
  top:0;
  width:100%;
  z-index:2;
}

.landing-hero-title{
  animation:fadeIn .8s ease-in-out;
  font-size:3rem;
  margin-bottom:.5rem;
  text-shadow:0 2px 4px rgba(0, 0, 0, .3);
}

.landing-hero-subtitle{
  animation:fadeIn .8s ease-in-out .2s forwards;
  font-size:1.5rem;
  opacity:0;
  text-shadow:0 1px 2px rgba(0, 0, 0, .3);
}
.landing-section{
  padding-bottom:4rem;
  padding-top:2.5rem;
}
.landing-page .landing-section:first-of-type{
  margin-top:0;
  padding-top:2rem;
}
.landing-hero-section + .landing-section,
.about-hero-section + .section,
.contact-hero-section + .section{
  margin-top:0;
  padding-top:1.5rem;
}
.content-after-hero{
  margin-top:0 !important;
  padding-top:1rem !important;
}
.about-hero-section{
  background-color:#22489E;
  background-image:linear-gradient(135deg, 
    #22489E,  
    #3a5fcc,  
    #7b5fd9,  
    #9b4fd9,  
    #7b5fd9,  
    #3a5fcc,  
    #22489E   
  ); 
}
.contact-hero-section{
  background-color:#22489E;
  background-image:linear-gradient(135deg, 
    #9b4fd9,  
    #7b5fd9,  
    #5a7fe7,  
    #4a6fd7,  
    #5a7fe7,  
    #7b5fd9,  
    #9b4fd9   
  );
}

@media (min-width: 768px){
  .landing-section{
    padding-bottom:6rem;
    padding-top:3.5rem;
  }
  .landing-page .landing-section:first-of-type{
    padding-top:3rem;
  }
  .landing-hero-section + .landing-section,
  .about-hero-section + .section,
  .contact-hero-section + .section{
    padding-top:2rem;
  }
  .content-after-hero{
    padding-top:1.5rem !important;
  }
}
@media (max-width: 768px){
  button, 
  .MuiButton-root,
  .MuiIconButton-root{
    min-height:44px;
    min-width:44px;
  }
  body{
    font-size:16px;
  }
  .MuiTextField-root input,
  .MuiOutlinedInput-input{
    font-size:16px;
    padding:14px 12px;
  }
  form{
    width:100%;
  }
  .full-width-mobile{
    width:100% !important;
  }
  .MuiFormControl-root{
    margin-bottom:16px;
  }
  .auth-container{
    border-radius:0;
    box-shadow:none;
    margin:0;
    max-width:100%;
    padding:16px;
    width:100%;
  }
}
.mobile-welcome-banner{
  background:linear-gradient(135deg, #22489E, #3a5fcc);
  border-radius:8px;
  box-shadow:0 2px 4px rgba(0, 0, 0, .1);
  color:white;
  margin-bottom:20px;
  padding:16px;
  text-align:center;
}

.mobile-welcome-banner h2{
  font-size:1.25rem;
  font-weight:500;
  margin:0;
}

.mobile-welcome-banner p{
  font-size:.875rem;
  margin:8px 0 0;
  opacity:.9;
}
@media (max-width: 768px){
  .inspiration-title{
    margin-bottom:80px !important;
  }
  
  .tabs-container{
    margin-top:80px !important;
  }
  .tabs-list{
    display:grid !important;
    grid-template-columns:repeat(2, 1fr) !important;
    grid-gap:12px !important;
    gap:12px !important;
  }
  .tabs-trigger{
    height:48px !important;
    min-height:48px !important;
  }
}
@media (min-width: 769px){
  .tabs-list{
    display:flex !important;
    flex-direction:row !important;
    gap:12px !important;
    justify-content:space-between !important;
  }
  .tabs-trigger{
    flex:1 1 !important;
  }
}
@keyframes fadeIn{
  from{ opacity:0; }
  to{ opacity:1; }
}

.mobile-fade-in{
  animation:fadeIn .5s ease-in-out;
}
@media (max-width: 768px){
  button,
  .MuiButton-root,
  .MuiIconButton-root,
  a.MuiButtonBase-root{
    min-height:44px;
    min-width:44px;
  }
  .MuiListItem-root,
  .MuiMenuItem-root,
  .MuiTab-root{
    padding:12px 16px;
  }
  .MuiInputBase-root,
  .MuiOutlinedInput-root,
  .MuiSelect-root,
  .MuiCheckbox-root,
  .MuiRadio-root,
  .MuiSwitch-root{
    margin:8px 0;
  }
  input, 
  textarea, 
  select{
    font-size:16px;
  }
  button:active,
  .MuiButton-root:active,
  .MuiIconButton-root:active,
  a:active{
    transform:scale(.97);
    transition:transform .1s ease-in-out;
  }
  .no-tap-transform:active{
    transform:none !important;
  }
  *{
    -webkit-overflow-scrolling:touch;
  }
  .pull-to-refresh-indicator{
    align-items:center;
    color:#666;
    display:flex;
    font-size:14px;
    height:50px;
    justify-content:center;
  }
  button, 
  .MuiButton-root, 
  .MuiIconButton-root,
  a.MuiButtonBase-root,
  .MuiListItem-root{
    user-select:none;
    -webkit-user-select:none;
    -webkit-tap-highlight-color:transparent;
  }
  .tap-highlight{
    overflow:hidden;
    position:relative;
  }

  .tap-highlight::after{
    background-image:radial-gradient(circle, #fff 10%, transparent 10.01%);
    background-position:50%;
    background-repeat:no-repeat;
    content:'';
    display:block;
    height:100%;
    left:0;
    opacity:0;
    pointer-events:none;
    position:absolute;
    top:0;
    transform:scale(10, 10);
    transition:transform .3s, opacity .5s;
    width:100%;
  }

  .tap-highlight:active::after{
    opacity:.3;
    transform:scale(0, 0);
    transition:0s;
  }
  .full-height{
    height:100vh;
    height:-webkit-fill-available;
    height:-moz-available;
    height:stretch;
  }
  .bottom-nav-spacer{
    height:env(safe-area-inset-bottom, 0);
    width:100%;
  }
}
@media (max-width: 480px){
  button,
  .MuiButton-root,
  .MuiIconButton-root{
    min-height:48px;
  }
  .MuiListItem-root,
  .MuiMenuItem-root{
    padding:14px 16px;
  }
}
@media (max-width: 900px) and (orientation: landscape){
  .landscape-adjust{
    flex-direction:row !important;
  }
  .landscape-scroll{
    max-height:80vh;
    overflow-y:auto;
  }
}

.avatar-creation-container{
  align-items:center;
  background-color:#f5f5f5;
  display:flex;
  flex-direction:column;
  min-height:auto;
  padding:20px;
  padding-bottom:0;
}

.avatar-display{
  align-items:center;
  background:white;
  border-radius:8px;
  box-shadow:0 2px 4px rgba(0,0,0,.1);
  display:flex;
  flex-direction:column;
  justify-content:center;
  margin:0 auto 20px;
  max-width:350px;
  padding:20px;
  text-align:center;
  width:100%;
}

.avatar-display svg{
  display:block;
  margin:0 auto;
}

.message{
  color:#666;
  font-style:italic;
  margin-top:10px;
}

.options-grid{
  margin:0 auto;
  max-width:1200px;
  width:100%;
}

.features-carousel{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding:20px 0;
  scrollbar-width:none;
  -ms-overflow-style:none;
}

.features-carousel::-webkit-scrollbar{
  display:none;
}

.feature-card{
  margin-right:16px;
  min-width:200px;
  position:relative;
}

.feature-card h6{
  text-transform:capitalize;
}

.feature-title{
  display:block;
  font-size:1rem !important;
  margin-top:4px !important;
  padding-left:4px;
  padding-right:4px;
  text-align:center;
  width:100%;
}

.feature-number{
  align-items:center;
  background-color:#1976d2;
  border-radius:50%;
  color:white;
  display:flex;
  font-size:.8rem;
  font-weight:bold;
  height:20px;
  justify-content:center;
  left:8px;
  position:absolute;
  top:8px;
  width:20px;
  z-index:1;
}

.feature-description{
  color:#666;
  margin-bottom:12px;
}

.options-carousel-container{
  padding:0 20px;
  position:relative;
}

.carousel-arrow{
  align-items:center;
  background-color:rgba(255, 255, 255, .9);
  border-radius:50%;
  box-shadow:0 2px 4px rgba(0,0,0,.2);
  cursor:pointer;
  display:flex;
  height:32px;
  justify-content:center;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  transition:all .2s ease;
  width:32px;
  z-index:10;
}

.carousel-arrow:hover{
  background-color:#1976d2;
  color:white;
}

.carousel-arrow.left{
  left:5px;
}

.carousel-arrow.right{
  right:5px;
}

.options-carousel{
  display:flex;
  gap:12px;
  overflow-x:auto;
  padding:5px 0;
  scrollbar-width:none;
  -ms-overflow-style:none;
}

.options-carousel::-webkit-scrollbar{
  display:none;
}

.option-card{
  min-width:120px;
  text-align:center;
}

.option-card .MuiTypography-root{
  display:block;
  font-size:.8rem;
  margin-bottom:0;
  margin-top:2px;
  padding:2px 0;
  text-align:center;
  text-transform:capitalize;
  width:100%;
  word-break:break-word;
}
@media (max-width: 768px){
  .avatar-creation-container{
    padding:10px;
  }

  .feature-card{
    margin-right:12px;
    min-width:160px;
  }

  .feature-card .MuiCardContent-root{
    padding-bottom:8px !important;
  }

  .mini-avatar-preview{
    height:80px;
    width:80px;
  }

  .feature-number{
    font-size:.75rem;
    height:18px;
    left:8px;
    top:8px;
    width:18px;
  }
  
  .feature-title{
    font-size:.85rem !important;
    margin-bottom:4px !important;
    margin-left:0 !important;
    padding-bottom:4px !important;
    padding-top:8px !important;
    text-align:center !important;
  }
}

.mini-avatar-preview{
  background-color:rgba(240, 245, 255, .5);
  border-radius:50%;
  height:100px;
  margin:0 auto;
  overflow:hidden;
  position:relative;
  width:100px;
}
.feature-card .mini-avatar-preview{
  box-shadow:0 0 8px rgba(25, 118, 210, .25);
  transition:transform .2s, box-shadow .2s;
}

.feature-card:hover .mini-avatar-preview{
  box-shadow:0 0 12px rgba(25, 118, 210, .4);
  transform:scale(1.05);
}

.back-button-container{
  align-items:center;
  display:flex;
  justify-content:space-between;
  margin:8px 0;
  padding:0 10px;
  position:relative;
  width:100%;
}

.back-button{
  font-size:.875rem !important;
  justify-content:flex-start !important;
  max-width:150px;
  min-height:32px !important;
  padding:4px 12px !important;
  position:relative;
  width:auto;
  z-index:2;
}

.category-title{
  color:#333;
  font-weight:500;
  left:0;
  pointer-events:none;
  position:absolute;
  right:0;
  text-align:center;
  text-transform:capitalize;
  z-index:1;
}

.options-title{
  color:#333;
  margin:16px 0;
  text-align:center;
}

.feature-section{
  margin-bottom:24px;
}
.feature-card .MuiTypography-caption{
  background-color:rgba(25, 118, 210, .05);
  border-radius:4px;
  color:#1976d2;
  color:var(--primary-color, #1976d2);
  display:inline-block;
  font-size:.75rem;
  padding:2px 8px;
}
.reset-avatar-button{
  font-size:.875rem !important;
  padding:6px 12px !important;
}
@media (max-width: 768px){
  .back-button{
    font-size:.75rem !important;
    max-width:120px;
    padding:4px 8px !important;
  }
  
  .back-button svg{
    font-size:.75rem !important;
    margin-right:.25em !important;
  }
  
  .category-title{
    font-size:.9rem;
  }
  
  .reset-avatar-button{
    font-size:.75rem !important;
    margin-left:auto !important;
    margin-right:auto !important;
    min-width:0 !important;
    min-width:initial !important;
    padding:3px 8px !important;
  }
}
@media (max-width: 768px){
  .feature-card .MuiTypography-caption{
    font-size:.7rem;
    margin-bottom:6px !important;
    margin-top:0 !important;
    padding:1px 6px;
  }
}

.loading-avatar{
  align-items:center;
  animation:pulse 1.5s infinite;
  display:flex;
  height:100%;
  justify-content:center;
  opacity:.6;
  width:100%;
}

.loading-avatar img{
  height:200px;
  object-fit:contain;
  width:200px;
}

@keyframes pulse{
  0%{
    opacity:.6;
  }
  50%{
    opacity:.3;
  }
  100%{
    opacity:.6;
  }
}
body{
  box-sizing:border-box;
  margin:0;
  overflow-x:hidden;
  padding:0;
  position:relative;
  width:100%;
}

html{
  overflow-x:hidden;
  width:100%;
}

.App-content{
  overflow-x:hidden;
  padding-top:65px !important;
}
.MuiTooltip-popper,
.MuiTooltip-root,
[role="tooltip"]{
  display:block !important;
  opacity:1 !important;
  pointer-events:auto !important;
  visibility:visible !important;
}
.MuiTooltip-tooltip{
  background-color:rgba(33, 33, 33, .9) !important;
  border-radius:4px !important;
  color:white !important;
  font-size:.75rem !important;
  font-weight:500 !important;
  max-width:200px !important;
  padding:8px 12px !important;
  word-wrap:break-word !important;
  box-shadow:0 2px 8px rgba(0, 0, 0, .15) !important;
  margin:0 !important;
}
.MuiTooltip-arrow{
  color:rgba(33, 33, 33, .9) !important;
  font-size:16px !important;
}
.challenge-action-button,
.MuiIconButton-root{
  cursor:pointer !important;
  margin-right:4px;
  padding:8px;
  pointer-events:auto !important;
}
.challenge-card{
  box-shadow:0 3px 6px rgba(0, 0, 0, .16);
  display:flex;
  flex-direction:column;
  height:auto;
  justify-content:space-between;
  min-height:175px;
  transition:transform .3s ease-in-out, box-shadow .3s ease-in-out;
}

.challenge-card:hover{
  box-shadow:0 6px 12px rgba(0, 0, 0, .2);
  transform:translateY(-5px);
}
.challenge-progress-bar{
  background-color:var(--tertiary-color);
  border-radius:5px;
  height:10px;
}

.challenge-progress-bar .MuiLinearProgress-bar{
  background-color:var(--primary-color);
}
.challenge-dialog-title{
  color:var(--primary-color);
  font-weight:500;
}
.emoji-picker-container{
  border:1px solid #e0e0e0;
  border-radius:12px;
  overflow:hidden;
  position:relative;
}

@media (max-width: 600px){
  .challenge-action-button{
    padding:12px;
  }
  
  .challenge-card{
    min-height:175px;
  }
  
  .challenge-card:hover{
    transform:none;
  }
  
  .challenge-card:active{
    background-color:rgba(0, 0, 0, .05);
  }
} 

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