
/* Consultation Section Styles */
.consultation-section {
  max-width: 800px;
  min-height: 420px;
}
.consultation-image {
  background: #fff;
  border-radius: 1.5rem 0 0 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
}
.consultation-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 420px;
}
#our-process .step:nth-child(n+8) .step-content {
  margin-left: auto;
  /* align-items: flex-end; */
}
/* Align steps 8-11 to the right for zigzag effect */
/* Neon Dots for Stepper Line */
#our-process .neon-dot {
  position: absolute;
  left: 27px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00ffe7;
  box-shadow: 0 0 16px 6px #00ffe7, 0 0 32px 12px #00ffe744;
  z-index: 2;
  transform: translate(-8px, 0);
}
#our-process .neon-dot.top {
  top: 0;
}
#our-process .neon-dot.bottom {
  bottom: -15px;
}
/* Simple Vertical Stepper for Process Section */
#our-process .process-vertical-stepper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 0 0 0;
}
#our-process .process-vertical-stepper::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #e0eaf3;
  z-index: 0;
  border-radius: 2px;
}
#our-process .step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
#our-process .step:last-child {
  margin-bottom: 0;
}
#our-process .step-circle {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #178d72;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(30, 149, 121, 0.10);
  position: relative;
  z-index: 2;
  margin-right: 32px;
  border: 6px solid #fff;
}
#our-process .step-content {
  background: #f6fbf9;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(30, 149, 121, 0.08);
  padding: 1.2rem 1.5rem;
  min-width: 0;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#our-process .step-icon {
  margin-bottom: 0.5rem;
}
#our-process .step-label {
  font-size: 1.15rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  #our-process .process-vertical-stepper {
      max-width: 350px;
    padding-left: 0;
    padding-right: 0;
  }
  #our-process .step-circle {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-right: 18px;
  }
  #our-process .step-content {
    padding: 1rem 1rem;
  }
}
#our-process .process-vertical-stepper::before {

  left: 22px;
  
}
#our-process .neon-dot {
  
  left: 22px;
  
}

/* True Zigzag Process Flow Grid */
#our-process .process-zigzag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 140px;
  gap: 36px 48px;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#our-process .process-step {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(30, 149, 121, 0.08);
  padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 120px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
#our-process .process-step:hover {
  box-shadow: 0 8px 40px 0 rgba(30, 149, 121, 0.13);
  transform: translateY(-6px) scale(1.02);
}
#our-process .step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #178d72;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(30, 149, 121, 0.10);
  z-index: 3;
}
#our-process .process-icon {
  background: linear-gradient(135deg, #e6f7f3 0%, #caffc6 100%);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(30, 149, 121, 0.10);
  margin-bottom: 0.5rem;
}
#our-process .process-icon svg {
  width: 28px;
  height: 28px;
  color: #178d72;
  stroke: #178d72;
}
#our-process .process-label {
  margin-top: 0.5rem;
  font-size: 1.08rem;
  color: #222;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
/* Responsive for zigzag grid */
@media (max-width: 900px) {
  #our-process .process-zigzag-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 120px;
    gap: 28px 18px;
  }
  #our-process .process-step {
    min-height: 100px;
  }
}
@media (max-width: 600px) {
  #our-process .process-zigzag-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 100px;
    gap: 18px 0;
  }
  #our-process .process-step {
    grid-column: 1 !important;
    width: 100%;
    min-width: 0;
  }
}
/* Modern Process Flow Grid (Zigzag) */
#our-process .process-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 140px;
  gap: 36px 48px;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#our-process .process-step {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(30, 149, 121, 0.08);
  padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 120px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
#our-process .process-step:hover {
  box-shadow: 0 8px 40px 0 rgba(30, 149, 121, 0.13);
  transform: translateY(-6px) scale(1.02);
}
#our-process .process-icon {
  background: linear-gradient(135deg, #e6f7f3 0%, #caffc6 100%);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(30, 149, 121, 0.10);
  margin-bottom: 0.5rem;
}
#our-process .process-icon svg {
  width: 28px;
  height: 28px;
  color: #178d72;
  stroke: #178d72;
}
#our-process .process-label {
  margin-top: 0.5rem;
  font-size: 1.08rem;
  color: #222;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
/* Zigzag grid placement for steps */
#our-process .step-1 { grid-column: 1; grid-row: 1; }
#our-process .step-2 { grid-column: 2; grid-row: 1; }
#our-process .step-3 { grid-column: 3; grid-row: 1; }
#our-process .step-4 { grid-column: 3; grid-row: 2; }
#our-process .step-5 { grid-column: 2; grid-row: 2; }
#our-process .step-center { grid-column: 2; grid-row: 3; z-index: 2; background: #fff; border-radius: 2rem; box-shadow: 0 6px 32px 0 rgba(30, 149, 121, 0.10); padding: 1.2rem 1.5rem; }
#our-process .step-6 { grid-column: 1; grid-row: 2; }
#our-process .step-7 { grid-column: 1; grid-row: 3; }
#our-process .step-8 { grid-column: 3; grid-row: 3; }
#our-process .step-9 { grid-column: 1; grid-row: 4; }
#our-process .step-10 { grid-column: 2; grid-row: 4; }

@media (max-width: 900px) {
  #our-process .process-flow-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 120px;
    gap: 28px 18px;
  }
  #our-process .step-1 { grid-column: 1; grid-row: 1; }
  #our-process .step-2 { grid-column: 2; grid-row: 1; }
  #our-process .step-3 { grid-column: 2; grid-row: 2; }
  #our-process .step-4 { grid-column: 1; grid-row: 2; }
  #our-process .step-5 { grid-column: 1; grid-row: 3; }
  #our-process .step-center { grid-column: 2; grid-row: 3; }
  #our-process .step-6 { grid-column: 2; grid-row: 4; }
  #our-process .step-7 { grid-column: 1; grid-row: 4; }
  #our-process .step-8 { grid-column: 1; grid-row: 5; }
  #our-process .step-9 { grid-column: 2; grid-row: 5; }
  #our-process .step-10 { grid-column: 2; grid-row: 6; }
}
@media (max-width: 600px) {
  #our-process .process-flow-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 100px;
    gap: 18px 0;
  }
  #our-process .process-step, #our-process .step-center {
    grid-column: 1 !important;
    width: 100%;
    min-width: 0;
  }
}
#our-process .step-num {
  position: absolute;
  top: -14px;
  left: -14px;
  background: #178d72;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(30, 149, 121, 0.10);
  z-index: 3;
}
@import url(https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,600;1,400;1,600&family=IBM+Plex+Sans+Arabic:wght@400;700&display=swap);
:root {
  --font-family-primary: "Sunsive", "IBM Plex Sans Arabic", sans-serif;
  --font-family-secondary: "Sunsive", "IBM Plex Sans Arabic", serif;
  --font-family-tertiary: "Sunsive", "IBM Plex Sans Arabic", serif;
  --font-family-serif: serif, "IBM Plex Sans Arabic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
  --font-family-script: Segoe Script, "IBM Plex Sans Arabic", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-mono: monospace, "IBM Plex Sans Arabic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
  --font-weight-ultralight: 100;
  --font-weight-lighter: 200;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-bolder: 800;
  --font-weight-ultrabold: 900;
  --font-text-family: var(--font-family-primary);

  --font-text-weight: 400;
  --font-heading-family: var(--font-family-secondary);
  --font-heading-weight: 700;
  --font-display-family: var(--font-family-secondary);
  --font-display-weight: 700;
  --font-code-family: var(--font-family-code);
  --font-code-weight: 400;
  --root-size: 1rem;
  --radius: 4px;
  --border-size: 1px;
  --border-color: rgba(131, 131, 131, 0.25);
  --shadow-color: rgba(0, 0, 0, 0.15);
  --contrast-ratio: 2;
  --breakpoints-xs: 0;
  --breakpoints-sm: 576px;
  --breakpoints-md: 768px;
  --breakpoints-lg: 992px;
  --breakpoints-xl: 1200px;
  --breakpoints-xxl: 1400px;
  --color-gray: #45454c;
  --color-gray-10: rgb(249.42, 249.42, 249.63);
  --color-gray-25: rgb(245.7, 245.7, 246.05);
  --color-gray-50: rgb(236.4, 236.4, 237.1);
  --color-gray-100: rgb(217.8, 217.8, 219.2);
  --color-gray-200: rgb(180.6, 180.6, 183.4);
  --color-gray-300: rgb(143.4, 143.4, 147.6);
  --color-gray-400: rgb(106.2, 106.2, 111.8);
  --color-gray-500: #45454c;
  --color-gray-600: rgb(55.2, 55.2, 60.8);
  --color-gray-700: rgb(41.4, 41.4, 45.6);
  --color-gray-800: rgb(27.6, 27.6, 30.4);
  --color-gray-900: rgb(13.8, 13.8, 15.2);
  --color-slate: #6b7280;
  --color-slate-10: rgb(250.56, 250.77, 251.19);
  --color-slate-25: rgb(247.6, 247.95, 248.65);
  --color-slate-50: rgb(240.2, 240.9, 242.3);
  --color-slate-100: rgb(225.4, 226.8, 229.6);
  --color-slate-200: rgb(195.8, 198.6, 204.2);
  --color-slate-300: rgb(166.2, 170.4, 178.8);
  --color-slate-400: rgb(136.6, 142.2, 153.4);
  --color-slate-500: #6b7280;
  --color-slate-600: rgb(85.6, 91.2, 102.4);
  --color-slate-700: rgb(64.2, 68.4, 76.8);
  --color-slate-800: rgb(42.8, 45.6, 51.2);
  --color-slate-900: rgb(21.4, 22.8, 25.6);
  --color-primary: #1e9579;
  --color-primary-10: rgb(248.25, 251.82, 250.98);
  --color-primary-25: rgb(243.75, 249.7, 248.3);
  --color-primary-50: rgb(232.5, 244.4, 241.6);
  --color-primary-100: rgb(210, 233.8, 228.2);
  --color-primary-200: rgb(165, 212.6, 201.4);
  --color-primary-300: rgb(120, 191.4, 174.6);
  --color-primary-400: rgb(75, 170.2, 147.8);
  --color-primary-500: #1e9579;
  --color-primary-600: rgb(24, 119.2, 96.8);
  --color-primary-700: rgb(18, 89.4, 72.6);
  --color-primary-800: rgb(12, 59.6, 48.4);
  --color-primary-900: rgb(6, 29.8, 24.2);
  --color-secondary: #f5eee9;
  --color-secondary-10: rgb(254.7, 254.49, 254.34);
  --color-secondary-25: rgb(254.5, 254.15, 253.9);
  --color-secondary-50: rgb(254, 253.3, 252.8);
  --color-secondary-100: rgb(253, 251.6, 250.6);
  --color-secondary-200: rgb(251, 248.2, 246.2);
  --color-secondary-300: rgb(249, 244.8, 241.8);
  --color-secondary-400: rgb(247, 241.4, 237.4);
  --color-secondary-500: #f5eee9;
  --color-secondary-600: rgb(196, 190.4, 186.4);
  --color-secondary-700: rgb(147, 142.8, 139.8);
  --color-secondary-800: rgb(98, 95.2, 93.2);
  --color-secondary-900: rgb(49, 47.6, 46.6);
  --color-info: #09c;
  --color-info-10: rgb(247.35, 251.94, 253.47);
  --color-info-25: rgb(242.25, 249.9, 252.45);
  --color-info-50: rgb(229.5, 244.8, 249.9);
  --color-info-100: rgb(204, 234.6, 244.8);
  --color-info-200: rgb(153, 214.2, 234.6);
  --color-info-300: rgb(102, 193.8, 224.4);
  --color-info-400: rgb(51, 173.4, 214.2);
  --color-info-500: #09c;
  --color-info-600: hsl(195, 100%, 32%);
  --color-info-700: rgb(0, 91.8, 122.4);
  --color-info-800: rgb(0, 61.2, 81.6);
  --color-info-900: rgb(0, 30.6, 40.8);
  --color-success: #4caf50;
  --color-success-10: rgb(249.63, 252.6, 249.75);
  --color-success-25: rgb(246.05, 251, 246.25);
  --color-success-50: rgb(237.1, 247, 237.5);
  --color-success-100: rgb(219.2, 239, 220);
  --color-success-200: rgb(183.4, 223, 185);
  --color-success-300: rgb(147.6, 207, 150);
  --color-success-400: rgb(111.8, 191, 115);
  --color-success-500: #4caf50;
  --color-success-600: rgb(60.8, 140, 64);
  --color-success-700: rgb(45.6, 105, 48);
  --color-success-800: rgb(30.4, 70, 32);
  --color-success-900: rgb(15.2, 35, 16);
  --color-warning: #ffb307;
  --color-warning-10: rgb(255, 252.72, 247.56);
  --color-warning-25: rgb(255, 251.2, 242.6);
  --color-warning-50: rgb(255, 247.4, 230.2);
  --color-warning-100: rgb(255, 239.8, 205.4);
  --color-warning-200: rgb(255, 224.6, 155.8);
  --color-warning-300: rgb(255, 209.4, 106.2);
  --color-warning-400: rgb(255, 194.2, 56.6);
  --color-warning-500: #ffb307;
  --color-warning-600: rgb(204, 143.2, 5.6);
  --color-warning-700: rgb(153, 107.4, 4.2);
  --color-warning-800: rgb(102, 71.6, 2.8);
  --color-warning-900: rgb(51, 35.8, 1.4);
  --color-danger: #e44b4b;
  --color-danger-10: rgb(254.19, 249.6, 249.6);
  --color-danger-25: rgb(253.65, 246, 246);
  --color-danger-50: rgb(252.3, 237, 237);
  --color-danger-100: rgb(249.6, 219, 219);
  --color-danger-200: rgb(244.2, 183, 183);
  --color-danger-300: rgb(238.8, 147, 147);
  --color-danger-400: rgb(233.4, 111, 111);
  --color-danger-500: #e44b4b;
  --color-danger-600: rgb(182.4, 60, 60);
  --color-danger-700: rgb(136.8, 45, 45);
  --color-danger-800: rgb(91.2, 30, 30);
  --color-danger-900: rgb(45.6, 15, 15);
  --color-blue: #078af3;
  --color-blue-10: rgb(247.56, 251.49, 254.64);
  --color-blue-25: rgb(242.6, 249.15, 254.4);
  --color-blue-50: rgb(230.2, 243.3, 253.8);
  --color-blue-100: rgb(205.4, 231.6, 252.6);
  --color-blue-200: rgb(155.8, 208.2, 250.2);
  --color-blue-300: rgb(106.2, 184.8, 247.8);
  --color-blue-400: rgb(56.6, 161.4, 245.4);
  --color-blue-500: #078af3;
  --color-blue-600: rgb(5.6, 110.4, 194.4);
  --color-blue-700: rgb(4.2, 82.8, 145.8);
  --color-blue-800: rgb(2.8, 55.2, 97.2);
  --color-blue-900: rgb(1.4, 27.6, 48.6);
  --color-indigo: #553cdf;
  --color-indigo-10: rgb(249.9, 249.15, 254.04);
  --color-indigo-25: rgb(246.5, 245.25, 253.4);
  --color-indigo-50: rgb(238, 235.5, 251.8);
  --color-indigo-100: rgb(221, 216, 248.6);
  --color-indigo-200: rgb(187, 177, 242.2);
  --color-indigo-300: rgb(153, 138, 235.8);
  --color-indigo-400: rgb(119, 99, 229.4);
  --color-indigo-500: #553cdf;
  --color-indigo-600: rgb(68, 48, 178.4);
  --color-indigo-700: rgb(51, 36, 133.8);
  --color-indigo-800: rgb(34, 24, 89.2);
  --color-indigo-900: rgb(17, 12, 44.6);
  --color-purple: #8921e4;
  --color-purple-10: rgb(251.46, 248.34, 254.19);
  --color-purple-25: rgb(249.1, 243.9, 253.65);
  --color-purple-50: rgb(243.2, 232.8, 252.3);
  --color-purple-100: rgb(231.4, 210.6, 249.6);
  --color-purple-200: rgb(207.8, 166.2, 244.2);
  --color-purple-300: rgb(184.2, 121.8, 238.8);
  --color-purple-400: rgb(160.6, 77.4, 233.4);
  --color-purple-500: #8921e4;
  --color-purple-600: rgb(109.6, 26.4, 182.4);
  --color-purple-700: rgb(82.2, 19.8, 136.8);
  --color-purple-800: rgb(54.8, 13.2, 91.2);
  --color-purple-900: rgb(27.4, 6.6, 45.6);
  --color-red: #ea4335;
  --color-red-10: rgb(254.37, 249.36, 248.94);
  --color-red-25: rgb(253.95, 245.6, 244.9);
  --color-red-50: rgb(252.9, 236.2, 234.8);
  --color-red-100: rgb(250.8, 217.4, 214.6);
  --color-red-200: rgb(246.6, 179.8, 174.2);
  --color-red-300: rgb(242.4, 142.2, 133.8);
  --color-red-400: rgb(238.2, 104.6, 93.4);
  --color-red-500: #ea4335;
  --color-red-600: rgb(187.2, 53.6, 42.4);
  --color-red-700: rgb(140.4, 40.2, 31.8);
  --color-red-800: rgb(93.6, 26.8, 21.2);
  --color-red-900: rgb(46.8, 13.4, 10.6);
  --color-rose: #d20e4f;
  --color-rose-10: rgb(253.65, 247.77, 249.72);
  --color-rose-25: rgb(252.75, 242.95, 246.2);
  --color-rose-50: rgb(250.5, 230.9, 237.4);
  --color-rose-100: rgb(246, 206.8, 219.8);
  --color-rose-200: rgb(237, 158.6, 184.6);
  --color-rose-300: rgb(228, 110.4, 149.4);
  --color-rose-400: rgb(219, 62.2, 114.2);
  --color-rose-500: #d20e4f;
  --color-rose-600: rgb(168, 11.2, 63.2);
  --color-rose-700: rgb(126, 8.4, 47.4);
  --color-rose-800: rgb(84, 5.6, 31.6);
  --color-rose-900: rgb(42, 2.8, 15.8);
  --color-pink: #f06b9d;
  --color-pink-10: rgb(254.55, 250.56, 252.06);
  --color-pink-25: rgb(254.25, 247.6, 250.1);
  --color-pink-50: rgb(253.5, 240.2, 245.2);
  --color-pink-100: rgb(252, 225.4, 235.4);
  --color-pink-200: rgb(249, 195.8, 215.8);
  --color-pink-300: rgb(246, 166.2, 196.2);
  --color-pink-400: rgb(243, 136.6, 176.6);
  --color-pink-500: #f06b9d;
  --color-pink-600: rgb(192, 85.6, 125.6);
  --color-pink-700: rgb(144, 64.2, 94.2);
  --color-pink-800: rgb(96, 42.8, 62.8);
  --color-pink-900: rgb(48, 21.4, 31.4);
  --color-orange: #fb6b1e;
  --color-orange-10: rgb(254.88, 250.56, 248.25);
  --color-orange-25: rgb(254.8, 247.6, 243.75);
  --color-orange-50: rgb(254.6, 240.2, 232.5);
  --color-orange-100: rgb(254.2, 225.4, 210);
  --color-orange-200: rgb(253.4, 195.8, 165);
  --color-orange-300: rgb(252.6, 166.2, 120);
  --color-orange-400: rgb(251.8, 136.6, 75);
  --color-orange-500: #fb6b1e;
  --color-orange-600: rgb(200.8, 85.6, 24);
  --color-orange-700: rgb(150.6, 64.2, 18);
  --color-orange-800: rgb(100.4, 42.8, 12);
  --color-orange-900: rgb(50.2, 21.4, 6);
  --color-yellow: #fcbc05;
  --color-yellow-10: rgb(254.91, 252.99, 247.5);
  --color-yellow-25: rgb(254.85, 251.65, 242.5);
  --color-yellow-50: rgb(254.7, 248.3, 230);
  --color-yellow-100: rgb(254.4, 241.6, 205);
  --color-yellow-200: rgb(253.8, 228.2, 155);
  --color-yellow-300: rgb(253.2, 214.8, 105);
  --color-yellow-400: rgb(252.6, 201.4, 55);
  --color-yellow-500: #fcbc05;
  --color-yellow-600: rgb(201.6, 150.4, 4);
  --color-yellow-700: rgb(151.2, 112.8, 3);
  --color-yellow-800: rgb(100.8, 75.2, 2);
  --color-yellow-900: rgb(50.4, 37.6, 1);
  --color-green: #34a853;
  --color-green-10: rgb(248.91, 252.39, 249.84);
  --color-green-25: rgb(244.85, 250.65, 246.4);
  --color-green-50: rgb(234.7, 246.3, 237.8);
  --color-green-100: rgb(214.4, 237.6, 220.6);
  --color-green-200: rgb(173.8, 220.2, 186.2);
  --color-green-300: rgb(133.2, 202.8, 151.8);
  --color-green-400: rgb(92.6, 185.4, 117.4);
  --color-green-500: #34a853;
  --color-green-600: rgb(41.6, 134.4, 66.4);
  --color-green-700: rgb(31.2, 100.8, 49.8);
  --color-green-800: rgb(20.8, 67.2, 33.2);
  --color-green-900: rgb(10.4, 33.6, 16.6);
  --color-lime: #aef359;
  --color-lime-10: rgb(252.57, 254.64, 250.02);
  --color-lime-25: rgb(250.95, 254.4, 246.7);
  --color-lime-50: rgb(246.9, 253.8, 238.4);
  --color-lime-100: rgb(238.8, 252.6, 221.8);
  --color-lime-200: rgb(222.6, 250.2, 188.6);
  --color-lime-300: rgb(206.4, 247.8, 155.4);
  --color-lime-400: rgb(190.2, 245.4, 122.2);
  --color-lime-500: #aef359;
  --color-lime-600: rgb(139.2, 194.4, 71.2);
  --color-lime-700: rgb(104.4, 145.8, 53.4);
  --color-lime-800: rgb(69.6, 97.2, 35.6);
  --color-lime-900: rgb(34.8, 48.6, 17.8);
  --color-teal: #06f6c6;
  --color-teal-10: rgb(247.53, 254.73, 253.29);
  --color-teal-25: rgb(242.55, 254.55, 252.15);
  --color-teal-50: rgb(230.1, 254.1, 249.3);
  --color-teal-100: rgb(205.2, 253.2, 243.6);
  --color-teal-200: rgb(155.4, 251.4, 232.2);
  --color-teal-300: rgb(105.6, 249.6, 220.8);
  --color-teal-400: rgb(55.8, 247.8, 209.4);
  --color-teal-500: #06f6c6;
  --color-teal-600: rgb(4.8, 196.8, 158.4);
  --color-teal-700: rgb(3.6, 147.6, 118.8);
  --color-teal-800: rgb(2.4, 98.4, 79.2);
  --color-teal-900: rgb(1.2, 49.2, 39.6);
  --color-cyan: #38e1ff;
  --color-cyan-10: rgb(249.03, 254.1, 255);
  --color-cyan-25: rgb(245.05, 253.5, 255);
  --color-cyan-50: rgb(235.1, 252, 255);
  --color-cyan-100: rgb(215.2, 249, 255);
  --color-cyan-200: rgb(175.4, 243, 255);
  --color-cyan-300: rgb(135.6, 237, 255);
  --color-cyan-400: rgb(95.8, 231, 255);
  --color-cyan-500: #38e1ff;
  --color-cyan-600: rgb(44.8, 180, 204);
  --color-cyan-700: rgb(33.6, 135, 153);
  --color-cyan-800: rgb(22.4, 90, 102);
  --color-cyan-900: rgb(11.2, 45, 51);
  --color-tertiary: #ddff9a;
  --color-tertiary-10: rgb(253.98, 255, 251.97);
  --color-tertiary-25: rgb(253.3, 255, 249.95);
  --color-tertiary-50: rgb(251.6, 255, 244.9);
  --color-tertiary-100: rgb(248.2, 255, 234.8);
  --color-tertiary-200: rgb(241.4, 255, 214.6);
  --color-tertiary-300: rgb(234.6, 255, 194.4);
  --color-tertiary-400: rgb(227.8, 255, 174.2);
  --color-tertiary-500: #ddff9a;
  --color-tertiary-600: rgb(176.8, 204, 123.2);
  --color-tertiary-700: rgb(132.6, 153, 92.4);
  --color-tertiary-800: rgb(88.4, 102, 61.6);
  --color-tertiary-900: rgb(44.2, 51, 30.8);
  --colors-accent-primary: var(--color-primary);
  --colors-accent-secondary: var(--color-secondary);
  --colors-accent-success: var(--color-success);
  --colors-accent-warning: var(--color-warning);
  --colors-accent-danger: var(--color-danger);
  --colors-accent-muted: var(--color-gray-400);
  --colors-button-primary: var(--color-primary);
  --colors-button-secondary: var(--color-secondary);
  --colors-button-success: var(--color-success);
  --colors-button-warning: var(--color-warning);
  --colors-button-danger: var(--color-danger);
  --colors-button-muted: var(--color-muted);
  --colors-button-primary-hover: var(--color-primary-600);
  --colors-button-secondary-hover: var(--color-secondary-600);
  --colors-button-success-hover: var(--color-success-600);
  --colors-button-warning-hover: var(--color-warning-600);
  --colors-button-danger-hover: var(--color-danger-600);
  --colors-button-muted-hover: var(--color-muted-600);
  --colors-form-primary: var(--color-primary);
  --colors-form-secondary: var(--color-secondary);
  --colors-form-success: var(--color-success);
  --colors-form-warning: var(--color-warning);
  --colors-form-danger: var(--color-danger);
  --colors-form-muted: var(--color-muted);
  --colors-card-primary: var(--color-primary);
  --colors-card-secondary: var(--color-secondary);
  --colors-card-success: var(--color-success);
  --colors-card-warning: var(--color-warning);
  --colors-card-danger: var(--color-danger);
  --colors-card-muted: var(--color-muted);
  --colors-background-primary: var(--color-primary);
  --colors-background-secondary: var(--color-secondary);
  --colors-background-success: var(--color-success);
  --colors-background-warning: var(--color-warning);
  --colors-background-danger: var(--color-danger);
  --colors-background-muted: var(--color-muted);
  --colors-text-primary: var(--color-primary);
  --colors-text-secondary: var(--color-secondary);
  --colors-text-success: var(--color-success);
  --colors-text-warning: var(--color-warning);
  --colors-text-danger: var(--color-danger);
  --colors-text-muted: var(--color-muted);
  --colors-label-primary: var(--color-primary);
  --colors-label-secondary: var(--color-secondary);
  --colors-label-success: var(--color-success);
  --colors-label-warning: var(--color-warning);
  --colors-label-danger: var(--color-danger);
  --colors-label-muted: var(--color-muted);
  --colors-alert-primary: var(--color-primary);
  --colors-alert-secondary: var(--color-secondary);
  --colors-alert-success: var(--color-success);
  --colors-alert-warning: var(--color-warning);
  --colors-alert-danger: var(--color-danger);
  --colors-alert-muted: var(--color-muted);
  --sizes-text-3xs-size: 0.75rem;
  --sizes-text-3xs-lh: 1.5;
  --sizes-text-3xs-lp: 0rem;
  --sizes-text-2xs-size: 0.875rem;
  --sizes-text-2xs-lh: 1.5;
  --sizes-text-2xs-lp: 0rem;
  --sizes-text-xs-size: 1rem;
  --sizes-text-xs-lh: 1.5;
  --sizes-text-xs-lp: 0rem;
  --sizes-text-sm-size: 1.125rem;
  --sizes-text-sm-lh: 1.5;
  --sizes-text-sm-lp: 0rem;
  --sizes-text-md-size: 1.25rem;
  --sizes-text-md-lh: 1.5;
  --sizes-text-md-lp: 0rem;
  --sizes-text-lg-size: 1.5rem;
  --sizes-text-lg-lh: 1.5;
  --sizes-text-lg-lp: 0rem;
  --sizes-text-xl-size: 1.75rem;
  --sizes-text-xl-lh: 1.5;
  --sizes-text-xl-lp: 0rem;
  --sizes-text-2xl-size: 2rem;
  --sizes-text-2xl-lh: 1.5;
  --sizes-text-2xl-lp: 0rem;
  --sizes-heading-display-1-size: 8rem;
  --sizes-heading-display-1-lh: 1;
  --sizes-heading-display-1-lp: -0.32rem;
  --sizes-heading-display-2-size: 6rem;
  --sizes-heading-display-2-lh: 1;
  --sizes-heading-display-2-lp: -0.24rem;
  --sizes-heading-display-3-size: 5rem;
  --sizes-heading-display-3-lh: 1;
  --sizes-heading-display-3-lp: -0.2rem;
  --sizes-heading-display-4-size: 4.5rem;
  --sizes-heading-display-4-lh: 1;
  --sizes-heading-display-4-lp: -0.18rem;
  --sizes-heading-display-5-size: 4rem;
  --sizes-heading-display-5-lh: 1;
  --sizes-heading-display-5-lp: -0.16rem;
  --sizes-heading-display-6-size: 3.5rem;
  --sizes-heading-display-6-lh: 1;
  --sizes-heading-display-6-lp: -0.14rem;
  --sizes-heading-h1-size: 3rem;
  --sizes-heading-h1-lh: 1.1;
  --sizes-heading-h1-lp: -0.12rem;
  --sizes-heading-h2-size: 2.5rem;
  --sizes-heading-h2-lh: 1.1;
  --sizes-heading-h2-lp: -0.08rem;
  --sizes-heading-h3-size: 2rem;
  --sizes-heading-h3-lh: 1.1;
  --sizes-heading-h3-lp: -0.07rem;
  --sizes-heading-h4-size: 1.5rem;
  --sizes-heading-h4-lh: 1.2;
  --sizes-heading-h4-lp: -0.06rem;
  --sizes-heading-h5-size: 1.25rem;
  --sizes-heading-h5-lh: 1.2;
  --sizes-heading-h5-lp: -0.05rem;
  --sizes-heading-h6-size: 1rem;
  --sizes-heading-h6-lh: 1.2;
  --sizes-heading-h6-lp: -0.004rem;
  --sizes-container-xs: 784px;
  --sizes-container-sm: 992px;
  --sizes-container-md: 1200px;
  --sizes-container-lg: 1376px;
  --sizes-container-xl: 1600px;
  --sizes-grid-narrow: 0.25rem;
  --sizes-grid-2xs: 0.5rem;
  --sizes-grid-xs: 1rem;
  --sizes-grid-sm: 1.5rem;
  --sizes-grid-md: 2rem;
  --sizes-grid-lg: 2.5rem;
  --sizes-grid-xl: 3rem;
  --sizes-grid-2xl: 3.5rem;
  --sizes-grid-3xl: 4rem;
  --sizes-grid-4xl: 5rem;
  --sizes-grid-5xl: 8rem;
  --sizes-spacing-narrow: 0.25rem;
  --sizes-spacing-2xs: 0.5rem;
  --sizes-spacing-xs: 1rem;
  --sizes-spacing-sm: 1.5rem;
  --sizes-spacing-md: 2rem;
  --sizes-spacing-lg: 2.5rem;
  --sizes-spacing-xl: 3rem;
  --sizes-spacing-2xl: 3.5rem;
  --sizes-spacing-3xl: 4rem;
  --sizes-spacing-4xl: 6rem;
  --sizes-spacing-5xl: 8rem;
  --sizes-button-height: 48px;
  --sizes-button-px: 1rem;
  --sizes-button-text: 1rem;
  --sizes-button-radius: var(--radius);
  --sizes-button-2xs-height: 24px;
  --sizes-button-2xs-px: 0.25rem;
  --sizes-button-2xs-text: 0.8rem;
  --sizes-button-2xs-radius: var(--radius);
  --sizes-button-xs-height: 32px;
  --sizes-button-xs-px: 0.5rem;
  --sizes-button-xs-text: 0.825rem;
  --sizes-button-xs-radius: var(--radius);
  --sizes-button-sm-height: 40px;
  --sizes-button-sm-px: 0.75rem;
  --sizes-button-sm-text: 1rem;
  --sizes-button-sm-radius: var(--radius);
  --sizes-button-md-height: 48px;
  --sizes-button-md-px: 1rem;
  --sizes-button-md-text: 1rem;
  --sizes-button-md-radius: var(--radius);
  --sizes-button-lg-height: 56px;
  --sizes-button-lg-px: 1.5rem;
  --sizes-button-lg-text: 1.125rem;
  --sizes-button-lg-radius: var(--radius);
  --sizes-button-xl-height: 64px;
  --sizes-button-xl-px: 2rem;
  --sizes-button-xl-text: 1.25rem;
  --sizes-button-xl-radius: var(--radius);
  --sizes-button-2xl-height: 80px;
  --sizes-button-2xl-px: 3rem;
  --sizes-button-2xl-text: 1.5rem;
  --sizes-button-2xl-radius: var(--radius);
  --sizes-form-height: 48px;
  --sizes-form-px: 1rem;
  --sizes-form-text: 1rem;
  --sizes-form-2xs-height: 24px;
  --sizes-form-2xs-px: 0.5rem;
  --sizes-form-2xs-text: 0.75rem;
  --sizes-form-xs-height: 32px;
  --sizes-form-xs-px: 0.5rem;
  --sizes-form-xs-text: 0.875rem;
  --sizes-form-sm-height: 40px;
  --sizes-form-sm-px: 0.75rem;
  --sizes-form-sm-text: 1rem;
  --sizes-form-md-height: 48px;
  --sizes-form-md-px: 1rem;
  --sizes-form-md-text: 1rem;
  --sizes-form-lg-height: 56px;
  --sizes-form-lg-px: 1.5rem;
  --sizes-form-lg-text: 1.125rem;
  --sizes-form-xl-height: 64px;
  --sizes-form-xl-px: 1.25rem;
  --sizes-form-xl-text: 1.25rem;
  --sizes-form-2xl-height: 80px;
  --sizes-form-2xl-px: 1.5rem;
  --sizes-form-2xl-text: 1.5rem;
  --sizes-icon-2xs: 16px;
  --sizes-icon-xs: 20px;
  --sizes-icon-sm: 24px;
  --sizes-icon-md: 32px;
  --sizes-icon-lg: 48px;
  --sizes-icon-xl: 64px;
  --sizes-icon-2xl: 80px;
  --sizes-rouneded-: var(--radius);
  --sizes-rouneded-1: 4px;
  --sizes-rouneded-2: 16px;
  --sizes-rouneded-3: 24px;
  --sizes-rouneded-4: 32px;
  --sizes-rouneded-5: 40px;
  --sizes-rouneded-6: 48px;
  --sizes-rouneded-7: 56px;
  --sizes-rouneded-8: 64px;
  --sizes-blur-1: 4px;
  --sizes-blur-2: 8px;
  --sizes-blur-3: 16px;
  --sizes-blur-4: 24px;
  --sizes-blur-5: 32px;
  --sizes-blur-6: 48px;
  --sizes-blur-7: 64px;
  --sizes-blur-8: 80px;
  --sizes-blur-9: 96px;
  --sizes-blur-10: 128px;
  --sizes-shadow-xs: 0 0.125rem 0.25rem -0.1rem var(--shadow-color);
  --sizes-shadow-sm: 0 0.25rem 0.5rem -0.1rem var(--shadow-color);
  --sizes-shadow: 0 0.5rem 1rem -0.1rem var(--shadow-color);
  --sizes-shadow-lg: 0 1rem 1.5rem -0.1rem var(--shadow-color);
  --sizes-shadow-xl: 0 1.5rem 2rem -0.1rem var(--shadow-color);
  --sizes-shadow-2xl: 0 2rem 2.5rem -0.1rem var(--shadow-color);
  --sizes-table-xs: 0.5rem;
  --sizes-table-sm: 0.75rem;
  --sizes-table: 1rem;
  --sizes-table-md: 1.25rem;
  --sizes-table-lg: 1.5rem;
  --body-font-typeface: var(--font-text-family);
  --body-font-size: var(--root-size);
  --body-font-weight: var(--font-text-weight);
  --body-font-spacing: normal;
  --body-color-background: rgba(0, 0, 0, 0);
  --body-color-text: var(--color-gray-900);
  --heading-font-typeface: var(--font-heading-family);
  --heading-font-weight: var(--font-heading-weight);
  --heading-font-style: normal;
  --heading-font-spacing: normal;
  --heading-font-transform: initial;
  --heading-color-text: inherit;
  --link-color-text: var(--color-primary);
  --link-color-text-hover: var(--color-primary-60);
  --button-font-typeface: var(--font-family-tertiary);
  --button-font-weight: 500;
  --button-font-line-height: initial;
  --button-font-spacing: normal;
  --button-font-transform: initial;
  --button-border-width: 2px;
  --button-border-radius: var(--radius);
  --button-color-text: #fff;
  --button-radius: 0;
  --form-font-typeface: var(--font-text-family);
  --form-font-size: var(--sizes-form-medium-text);
  --form-font-weight: 400;
  --form-font-line-height: 1.25rem;
  --form-font-spacing: normal;
  --form-font-transform: initial;
  --form-color-text: var(--color-gray-900);
  --form-color-background: rgba(155, 155, 155, 0.15);
  --form-color-background-hover: rgba(155, 155, 155, 0.2);
  --form-color-background-disable: rgba(155, 155, 155, 0.4);
  --form-color-background-primary: var(--color-primary);
  --form-color-background-primary-hover: var(--color-primary-60);
  --form-color-placeholder: rgba(155, 155, 155, 0.7);
  --form-border-width: 0;
  --form-border-color: var(--border-color);
  --form-border-radius: var(--radius);
  --form-shadow-default: 0 0 0 1px var(--border-color);
  --form-shadow-hover: 0 0 0 1px var(--border-color);
  --form-shadow-focus: 0 0 0 2px var(--color-primary);
  --form-height: var(--sizes-form-medium-height);
  --form-dark-color-text: var(--color-white);
  --form-dark-color-background: rgba(155, 155, 155, 0.15);
  --form-dark-color-background-hover: rgba(155, 155, 155, 0.2);
  --form-dark-color-background-disable: rgba(155, 155, 155, 0.4);
  --form-dark-color-background-primary: var(--color-primary);
  --form-dark-color-background-primary-hover: var(--color-primary-60);
  --form-dark-color-placeholder: rgba(155, 155, 155, 0.5);
  --tab-font-size: var(--sizes-form-medium-text);
  --tab-font-weight: 700;
  --tab-font-spacing: normal;
  --tab-font-transform: initial;
  --tab-color-text: var(--color-gray-700);
  --tab-color-text-hover: var(--color-gray-800);
  --tab-color-text-active: var(--color-gray-900);
  --tab-border-width: 4px;
  --tab-border-color: var(--color-primary);
  --tab-border-radius: var(--radius);
  --tab-display: inline-flex;
  --tab-align-text: center;
  --tab-margin: 0;
  --tab-padding: 5px;
  --accordion-font-size: var(--sizes-form-large-text);
  --accordion-font-weight: 700;
  --accordion-font-spacing: normal;
  --accordion-font-transform: initial;
  --accordion-color-text: var(--color-gray-900);
  --accordion-color-text-active: var(--color-primary);
  --accordion-border-width: 1px;
  --accordion-border-color: var(--border-color);
  --accordion-margin: 20px;
  --accordion-padding: 20px;
  --alert-font-size: var(--sizes-form-medium-text);
  --alert-font-weight: 400;
  --alert-font-style: normal;
  --alert-font-spacing: normal;
  --alert-font-transform: initial;
  --alert-color-background: var(--color-gray-100);
  --alert-color-text: var(--color-gray-900);
  --alert-border-width: 0;
  --alert-border-radius: var(--radius);
  --alert-padding: 15px;
}
html {
  font-family: var(--body-font-typeface);
  font-size: var(--body-font-size, 1rem);
  font-weight: var(--body-font-weight, 400);
  letter-spacing: var(--body-font-spacing, normal);
  background-color: var(--body-color-background, inherit);
  color: var(--body-color-text, inherit);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-variant-numeric: lining-nums;
  scroll-behavior: smooth;
}
body {
  font-family: var(--body-font-typeface);
  font-size: var(--body-font-size, 1rem);
  font-weight: var(--body-font-weight, 400);
  letter-spacing: var(--body-font-spacing, normal);
  background-color: var(--body-color-background, inherit);
  color: var(--body-color-text, inherit);
}
.link,
a {
  color: var(--link-color-text);
}
.link:hover,
a:hover {
  color: var(--link-color-text-hover);
}
.link {
  display: inline-flex;
  align-items: center;
  line-height: 16px;
}
.display-5,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-typeface, sans-serif) !important;
  font-weight: var(--heading-font-weight, 700);
  letter-spacing: var(--heading-font-spacing, normal);
  font-style: var(--heading-font-style, normal);
  text-transform: var(--heading-font-transform, initial);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--color-gray-900);
}
.display-5:where(.uc-dark),
.h1:where(.uc-dark),
.h2:where(.uc-dark),
.h3:where(.uc-dark),
.h4:where(.uc-dark),
.h5:where(.uc-dark),
.h6:where(.uc-dark),
:where(.uc-dark) .display-5,
:where(.uc-dark) .h1,
:where(.uc-dark) .h2,
:where(.uc-dark) .h3,
:where(.uc-dark) .h4,
:where(.uc-dark) .h5,
:where(.uc-dark) .h6,
:where(.uc-dark) h1,
:where(.uc-dark) h2,
:where(.uc-dark) h3,
:where(.uc-dark) h4,
:where(.uc-dark) h5,
:where(.uc-dark) h6,
h1:where(.uc-dark),
h2:where(.uc-dark),
h3:where(.uc-dark),
h4:where(.uc-dark),
h5:where(.uc-dark),
h6:where(.uc-dark) {
  color: #fff;
}
.ft-primary {
  font-family: var(--font-family-primary) !important;
}
.ft-secondary {
  font-family: var(--font-family-secondary) !important;
}
.ft-tertiary {
  font-family: var(--font-family-tertiary) !important;
}
.ft-serif {
  font-family: var(--font-family-serif) !important;
}
.ft-script {
  font-family: var(--font-family-script) !important;
}
.cstack {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.backtotop-wrap {
  transform: translateY(40px);
  transition: 0.2s;
}
.backtotop-wrap [data-uc-backtotop] {
  opacity: 0;
}
.backtotop-wrap.uc-active {
  gap: 0.5rem;
  transform: translateY(0);
}
.backtotop-wrap.uc-active [data-uc-backtotop] {
  opacity: 1;
}
.uc-icon {
  margin: 0;
  border: none;
  border-radius: 0;
  overflow: visible;
  font: inherit;
  color: inherit;
  text-transform: none;
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  display: inline-block;
  fill: currentcolor;
  line-height: 0;
}
.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
:not(pre) > code,
:not(pre) > samp,
pre {
  font-family: var(--font-code-family) !important;
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.5rem;
  padding: 1px 4px;
  border-radius: 4px;
  background-color: var(--color-gray-25) !important;
  border-color: var(--color-gray-800) !important;
}
:not(pre) > code:where(.uc-dark),
:not(pre) > samp:where(.uc-dark),
:where(.uc-dark) :not(pre) > code,
:where(.uc-dark) :not(pre) > samp,
:where(.uc-dark) pre,
pre:where(.uc-dark) {
  background-color: var(--color-gray-700) !important;
  border-color: var(--color-gray-300) !important;
}
:not(pre) > code,
:not(pre) > samp {
  --font-code-family: "IBM Plex Mono", monospace;
  position: relative;
  display: inline;
  font-size: 0.875rem;
  font-style: italic;
  background-color: rgba(136, 136, 136, 0.1);
}
:not(pre) > samp {
  color: inherit;
}
pre code {
  font-family: var(--font-code-family) !important;
  background: rgba(136, 136, 136, 0.15);
  border-radius: 3px;
  padding: 1px 4px 1px 2px;
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
.swiper:not(.swiper-initialized) > * {
  display: none;
}
.panel {
  display: flow-root;
  position: relative;
  box-sizing: border-box;
}
.panel > :last-child {
  margin-bottom: 0;
}
.section {
  display: flow-root;
  position: relative;
  box-sizing: border-box;
}
.media-cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  object-fit: cover;
}
.position-cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.hr,
.vr,
hr {
  display: inline-block;
  align-self: stretch;
  background-color: currentcolor;
  opacity: 0.25;
  margin: 0;
}
.hr,
hr {
  height: 1px;
  min-width: 1em;
  border-top-color: var(--border-color);
}
.hr.border,
hr.border {
  border-bottom: 0 !important;
}
.vr {
  width: 1px !important;
  min-height: 1em !important;
  border-left: 1px solid var(--border-color);
}
.vr.border {
  border-left: 0 !important;
}
.link-gradient,
.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.link-gradient {
  border-bottom: 1px solid;
  border-color: var(--border-color);
}
.hstack,
html.bp-lg .lg\:hstack,
html.bp-md .md\:hstack,
html.bp-sm .hstack-sm,
html.bp-sm .sm\:hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}
.vstack {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-self: stretch;
}
.cstack {
  display: flex;
  justify-content: center;
  align-items: center;
}
[class*="ratio-"] {
  position: relative;
  width: 100%;
}
[class*="ratio-"]::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
[class*="ratio-"] > * {
  object-fit: cover;
}
svg {
  color: currentColor;
}
/* svg :not([fill="none"]) {
  fill: currentColor;
} */
.uc-offcanvas-bar .uc-link:hover,
.uc-offcanvas-bar a:hover {
  transition: color 0.2s;
  color: var(--color-gray-900);
}
.uc-offcanvas-bar .uc-link:hover:where(.uc-dark),
.uc-offcanvas-bar a:hover:where(.uc-dark),
:where(.uc-dark) .uc-offcanvas-bar .uc-link:hover,
:where(.uc-dark) .uc-offcanvas-bar a:hover {
  color: #fff;
}
.uc-link {
  color: var(--color-primary);
  font-weight: 500;
}
.uc-link:hover {
  color: var(--color-primary-600);
}
.uc-list-divider > :nth-child(n + 2) {
  border-top: 1px solid var(--border-color);
}
.form-icon-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.form-icon-group .form-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  background: 0 0;
  border: 0;
  outline: 0;
  text-decoration: none;
  user-select: none;
}
.form-icon-group .form-control + .form-icon,
.form-icon-group .form-control-plaintext + .form-icon {
  width: 3rem !important;
}
.form-icon-group .form-control-plaintext.form-control-lg + .form-icon,
.form-icon-group .form-control.form-control-lg + .form-icon {
  width: 3.5rem !important;
}
.form-icon-group .form-control-plaintext.form-control-sm + .form-icon,
.form-icon-group .form-control.form-control-sm + .form-icon {
  width: 2.5rem !important;
}
.form-icon-group .form-control-plaintext.form-control-xs + .form-icon,
.form-icon-group .form-control.form-control-xs + .form-icon {
  width: 2rem !important;
}
.form-icon-group:not(.form-icon-flip) .form-control,
.form-icon-group:not(.form-icon-flip) .form-control-plaintext {
  padding-left: 2.75rem !important;
}
[dir="rtl"] .form-icon-group:not(.form-icon-flip) .form-control,
[dir="rtl"] .form-icon-group:not(.form-icon-flip) .form-control-plaintext {
  padding-left: 1rem !important;
  padding-right: 2.75rem !important;
}
.form-icon-group:not(.form-icon-flip) .form-control-plaintext.form-control-lg,
.form-icon-group:not(.form-icon-flip) .form-control.form-control-lg {
  padding-left: 3.25rem !important;
}
[dir="rtl"] .form-icon-group:not(.form-icon-flip) .form-control-plaintext.form-control-lg,
[dir="rtl"] .form-icon-group:not(.form-icon-flip) .form-control.form-control-lg {
  padding-left: 1rem !important;
  padding-right: 3.25rem !important;
}
.form-icon-group:not(.form-icon-flip) .form-control-plaintext.form-control-sm,
.form-icon-group:not(.form-icon-flip) .form-control.form-control-sm {
  padding-left: 2.25rem !important;
}
[dir="rtl"] .form-icon-group:not(.form-icon-flip) .form-control-plaintext.form-control-sm,
[dir="rtl"] .form-icon-group:not(.form-icon-flip) .form-control.form-control-sm {
  padding-left: 1rem !important;
  padding-right: 2.25rem !important;
}
.form-icon-group:not(.form-icon-flip) .form-control-plaintext.form-control-xs,
.form-icon-group:not(.form-icon-flip) .form-control.form-control-xs {
  padding-left: 1.75rem !important;
}
[dir="rtl"] .form-icon-group:not(.form-icon-flip) .form-control-plaintext.form-control-xs,
[dir="rtl"] .form-icon-group:not(.form-icon-flip) .form-control.form-control-xs {
  padding-left: 1rem !important;
  padding-right: 1.75rem !important;
}
.form-icon-group.form-icon-flip .form-icon {
  right: 0;
}
.form-icon-group.form-icon-flip .form-control,
.form-icon-group.form-icon-flip .form-control-plaintext {
  padding-right: 2.75rem !important;
}
[dir="rtl"] .form-icon-group.form-icon-flip .form-control,
[dir="rtl"] .form-icon-group.form-icon-flip .form-control-plaintext {
  padding-right: 1rem !important;
  padding-left: 2.75rem !important;
}
.form-icon-group.form-icon-flip .form-control-plaintext.form-control-lg,
.form-icon-group.form-icon-flip .form-control.form-control-lg {
  padding-right: 3.25rem !important;
}
[dir="rtl"] .form-icon-group.form-icon-flip .form-control-plaintext.form-control-lg,
[dir="rtl"] .form-icon-group.form-icon-flip .form-control.form-control-lg {
  padding-right: 1rem !important;
  padding-left: 3.25rem !important;
}
.form-icon-group.form-icon-flip .form-control-plaintext.form-control-sm,
.form-icon-group.form-icon-flip .form-control.form-control-sm {
  padding-right: 2.25rem !important;
}
[dir="rtl"] .form-icon-group.form-icon-flip .form-control-plaintext.form-control-sm,
[dir="rtl"] .form-icon-group.form-icon-flip .form-control.form-control-sm {
  padding-right: 1rem !important;
  padding-left: 2.25rem !important;
}
.form-icon-group.form-icon-flip .form-control-plaintext.form-control-xs,
.form-icon-group.form-icon-flip .form-control.form-control-xs {
  padding-right: 1.75rem !important;
}
[dir="rtl"] .form-icon-group.form-icon-flip .form-control-plaintext.form-control-xs,
[dir="rtl"] .form-icon-group.form-icon-flip .form-control.form-control-xs {
  padding-right: 1rem !important;
  padding-left: 1.75rem !important;
}
.form-control-xs {
  padding: 0 0.5rem !important;
  min-height: 32px !important;
  font-size: 0.875rem !important;
}
.form-control-sm,
html.bp-sm .sm\:form-control-sm {
  padding: 0 0.75rem !important;
  min-height: 40px !important;
  font-size: 1rem !important;
}
.form-control-md,
html.bp-lg .lg\:form-control-md {
  padding: 0 1rem !important;
  min-height: 48px !important;
  font-size: 1rem !important;
}
.form-control-lg {
  padding: 0 1.5rem !important;
  min-height: 56px !important;
  font-size: 1.125rem !important;
}
.form-control {
  border-color: var(--border-color) !important;
  background-color: #fff !important;
  color: var(--color-gray-900) !important;
}
.form-control:where(.uc-dark),
:where(.uc-dark) .form-control {
  background-color: rgba(0, 0, 0, 0) !important;
  color: #fff !important;
}
.form-check-input:focus,
.form-control:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 0.25rem var(--shadow-color) !important;
  --shadow-color: rgba(0, 0, 0, 0.05);
}
.form-check-input:focus:where(.uc-dark),
.form-control:focus:where(.uc-dark),
:where(.uc-dark) .form-check-input:focus,
:where(.uc-dark) .form-control:focus {
  --shadow-color: hsla(0, 0%, 100%, 0.1);
}
.form-check-input:checked {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}
[dir="rtl"] .form-check {
  padding-left: 0;
  padding-right: 1.5em;
}
[dir="rtl"] .form-check .form-check-input {
  float: right;
  margin-left: 0;
  margin-right: -1.5em;
}
[dir="rtl"] .form-select {
  background-position: left 0.75rem center;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: inherit !important;
  opacity: 0.65 !important;
}
:where(.uc-dark) input::placeholder,
:where(.uc-dark) select::placeholder,
:where(.uc-dark) textarea::placeholder,
input:where(.uc-dark)::placeholder,
select:where(.uc-dark)::placeholder,
textarea:where(.uc-dark)::placeholder {
  opacity: 0.45 !important;
}
.btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: var(--bs-btn-height);
  text-transform: var(--button-font-transform);
  border-radius: var(--bs-btn-border-radius);
}
.btn.btn-text {
  position: relative;
  padding: 0 0 8px;
  border: 0;
  border-radius: 0;
  margin: 0;
  line-height: 1;
}
.btn.btn-text::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  width: 0%;
  background-color: var(--color-primary);
  transition: width 350ms cubic-bezier(0.38, 0.01, 0.43, 0.16);
}
.btn.btn-text:hover::after {
  width: 100%;
}
.btn- {
  --bs-btn-height: 48px !important;
  --bs-btn-padding-y: 0px !important;
  --bs-btn-padding-x: 1rem !important;
  --bs-btn-font-size: 1rem !important;
}
.btn-2xs {
  --bs-btn-height: 24px !important;
  --bs-btn-padding-y: 0px !important;
  --bs-btn-padding-x: 0.25rem !important;
  --bs-btn-font-size: 0.8rem !important;
}
.btn-xs {
  --bs-btn-height: 32px !important;
  --bs-btn-padding-y: 0px !important;
  --bs-btn-padding-x: 0.5rem !important;
  --bs-btn-font-size: 0.825rem !important;
}
.btn-sm,
html.bp-lg .lg\:btn-sm,
html.bp-sm .sm\:btn-sm {
  --bs-btn-height: 40px !important;
  --bs-btn-padding-y: 0px !important;
  --bs-btn-padding-x: 0.75rem !important;
  --bs-btn-font-size: 1rem !important;
}
.btn-md,
html.bp-lg .lg\:btn-md,
html.bp-md .md\:btn-md,
html.bp-sm .sm\:btn-md,
html.bp-xl .xl\:btn-md {
  --bs-btn-height: 48px !important;
  --bs-btn-padding-y: 0px !important;
  --bs-btn-padding-x: 1rem !important;
  --bs-btn-font-size: 1rem !important;
}
.btn-lg,
html.bp-lg .lg\:btn-lg,
html.bp-md .md\:btn-lg,
html.bp-xl .xl\:btn-lg {
  --bs-btn-height: 56px !important;
  --bs-btn-padding-y: 0px !important;
  --bs-btn-padding-x: 1.5rem !important;
  --bs-btn-font-size: 1.125rem !important;
}
.btn-xl,
html.bp-xl .xl\:btn-xl {
  --bs-btn-height: 64px !important;
  --bs-btn-padding-y: 0px !important;
  --bs-btn-padding-x: 2rem !important;
  --bs-btn-font-size: 1.25rem !important;
}
.btn-2xl {
  --bs-btn-height: 80px !important;
  --bs-btn-padding-y: 0px !important;
  --bs-btn-padding-x: 3rem !important;
  --bs-btn-font-size: 1.5rem !important;
}
.btn-alt-primary {
  background: #fff !important;
  color: #1e9579 !important;
}
.btn-alt-primary:focus,
.btn-alt-primary:hover {
  background: #1e9579 !important;
  color: #fff !important;
}
.btn-alt-dark {
  background: #fff !important;
  color: #212529 !important;
}
.btn-alt-dark:focus,
.btn-alt-dark:hover {
  background: #212529 !important;
  color: #fff !important;
}
.btn-alt-gray-200 {
  background: #fff !important;
  color: rgb(180.6, 180.6, 183.4) !important;
}
.btn-alt-gray-200:focus,
.btn-alt-gray-200:hover {
  background: rgb(180.6, 180.6, 183.4) !important;
  color: #fff !important;
}
.btn-ghost-primary {
  background: rgb(232.5, 244.4, 241.6) !important;
  color: #1e9579 !important;
}
.btn-ghost-primary:focus,
.btn-ghost-primary:hover {
  background: rgb(210, 233.8, 228.2) !important;
}
.btn-ghost-tertiary {
  background: rgb(251.6, 255, 244.9) !important;
  color: #ddff9a !important;
}
.btn-ghost-tertiary:focus,
.btn-ghost-tertiary:hover {
  background: rgb(248.2, 255, 234.8) !important;
}
.fs-1,
.fs-2,
.fs-3,
.fs-4,
.fs-5,
.fs-6,
.fs-7,
.fs-8 {
  letter-spacing: 0;
}
.text-unset {
  text-transform: none !important;
}
.text-inherit {
  color: currentColor !important;
}
[class*="text-truncate"] {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: unset !important;
}
.container.container-expand {
  max-width: 100%;
}
.container.container-full {
  max-width: 100%;
  padding: 0;
}
.nav-y {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-y > *,
.nav-y > * > * {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-y a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.nav-y a:hover {
  opacity: 1 !important;
}
.nav-y .uc-nav-sub {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  gap: 0.25rem;
  width: 100%;
  margin: 0;
  padding: 8px 0 8px 16px;
  list-style: none;
  opacity: 0;
  transition: 0.2s;
}
.nav-y .uc-nav-sub a {
  font-size: 90%;
}
.nav-y .uc-nav-sub .uc-parent::after {
  font-size: 1rem;
}
.nav-y > .uc-parent > .uc-nav-sub {
  padding-top: 0.5rem;
}
.nav-y .uc-parent {
  position: relative;
  display: block;
}
.nav-y .uc-parent > a {
  position: relative;
  display: block;
  z-index: 1;
}
/*.nav-y .uc-parent > a::after {*/
/*  content: "";*/
/*  font-family: Unicons;*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  right: 0;*/
/*  transform: translateY(-50%);*/
/*  font-size: 1.125rem;*/
/*  font-weight: 700;*/
/*  width: 1.5rem;*/
/*  height: 1.5rem;*/
/*  display: inline-flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  opacity: 0.6;*/
/*}*/
/*.nav-y .uc-parent.uc-open > a::after {*/
/*  content: "";*/
/*}*/
.nav-y .uc-parent.uc-open .uc-nav-sub {
  opacity: 1;
}
.nav-y:hover a {
  opacity: 0.6;
}
.nav-x {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-x > *,
.nav-x > * > * {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-x a {
  text-decoration: none;
  color: inherit;
}
.uc-navbar {
  z-index: 1;
}
.uc-navbar .uc-navbar-left,
.uc-navbar .uc-navbar-right,
.uc-navbar [class*="uc-navbar-center"] {
  gap: 1.5rem;
}
.uc-navbar-nav > li > a {
  position: relative;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}
.uc-navbar-nav > li.uc-active > a::before {
  opacity: 1;
}
/*.uc-navbar-nav > li:hover > a,*/
/*.uc-navbar-nav > li > a[aria-expanded="true"] {*/
/*  opacity: 0.75;*/
/*  color: var(--color-gray-900) !important;*/
/*}*/
.uc-navbar-nav > li:hover > a:where(.uc-dark),
.uc-navbar-nav > li > a[aria-expanded="true"]:where(.uc-dark),
:where(.uc-dark) .uc-navbar-nav > li:hover > a,
:where(.uc-dark) .uc-navbar-nav > li > a[aria-expanded="true"] {
  color: #fff !important;
}
.uc-navbar-dropdown {
  min-width: 250px;
  padding: 2rem;
  box-shadow: 0 4px 16px -8px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  background: #fff !important;
  color: var(--color-gray-800) !important;
}
.uc-navbar-dropdown:where(.uc-dark),
:where(.uc-dark) .uc-navbar-dropdown {
  background: var(--color-gray-800) !important;
  color: #fff !important;
}
.uc-navbar-dropdown-nav > li > a {
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-600);
}
.uc-navbar-dropdown-nav > li > a:where(.uc-dark),
:where(.uc-dark) .uc-navbar-dropdown-nav > li > a {
  color: var(--color-gray-200);
}
.uc-navbar-dropdown-nav > li:hover > a {
  color: var(--color-gray-900);
}
.uc-navbar-dropdown-nav > li:hover > a:where(.uc-dark),
:where(.uc-dark) .uc-navbar-dropdown-nav > li:hover > a {
  color: #fff;
}
.uc-navbar-dropdown-nav .uc-nav-header,
.uc-navbar-dropdown-nav > li.uc-active > a {
  color: inherit;
}
.uc-navbar-dropdown-nav .uc-nav-header {
  text-transform: capitalize;
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
}
.uc-navbar-container {
  transition: background-color 0.1s ease-in-out;
}
.uc-navbar-container:not(.uc-navbar-transparent) {
  background-color: #fff;
}
.uc-navbar-container:not(.uc-navbar-transparent):where(.uc-dark),
:where(.uc-dark) .uc-navbar-container:not(.uc-navbar-transparent) {
  background-color: var(--color-gray-900);
}
.uc-navbar .uc-navbar-item {
  font-family: inherit !important;
}
.uc-navbar-item,
.uc-navbar-nav > li > a {
  font-family: inherit !important;
  padding: 0;
  min-height: var(--uc-nav-height, 48px) !important;
}
.uc-navbar-float {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
html[dir="rtl"] .uc-navbar-right {
  margin-left: unset;
  margin-right: auto;
}
html[dir="rtl"] .uc-navbar-left {
  margin-right: unset;
  margin-left: auto;
}
.alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 0 !important;
  border-left: 2px solid var(--bs-alert-border-color) !important;
  box-shadow: 0 0.125rem 0.25rem -0.1rem var(--shadow-color) !important;
}
.alert :not(pre) > code,
.alert code {
  background: rgba(0, 0, 0, 0.08) !important;
}
.table > :not(caption) > :last-child > * {
  border-width: 0;
}
.uc-table-striped tbody tr:nth-of-type(odd),
.uc-table-striped > tr:nth-of-type(odd) {
  background: rgba(150, 150, 150, 0.1);
}
.uc-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.uc-accordion > :nth-child(n + 2) {
  margin: 0 !important;
}
.uc-accordion-title {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  color: var(--color-gray-900);
}
.uc-accordion-title:where(.uc-dark),
:where(.uc-dark) .uc-accordion-title {
  color: #fff;
}
.uc-accordion-title:hover {
  opacity: 0.75;
  color: var(--color-gray-900);
}
.uc-accordion-title:hover:where(.uc-dark),
:where(.uc-dark) .uc-accordion-title:hover {
  color: #fff;
}
.uc-accordion-title::before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  font-family: Unicons;
  width: 24px;
  height: 24px;
  font-size: 24px;
  text-transform: none;
  line-height: 1;
  transform: translateY(-50%) rotate(0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.2s;
  background-color: rgba(155, 155, 155, 0.25);
  border-radius: 100%;
}
.uc-accordion > .uc-open .uc-accordion-title::before {
  transform: translateY(-50%) rotate(45deg);
}
.uc-accordion-divider {
  --divider-gap: 32px;
}
.uc-accordion-divider > * + ::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: var(--bs-border-color);
  transform: translateY(calc(var(--divider-gap) / 2 * -1));
}
[dir="rtl"] .uc-accordion-title::before {
  right: auto;
  left: 0;
}
.uc-accordion.uc-accordion-chevron .uc-accordion-title::before {
  content: "";
  background: 0 0;
  font-size: 80%;
  font-weight: 700;
}
.uc-accordion.uc-accordion-chevron > .uc-open .uc-accordion-title::before {
  transform: translateY(-50%) rotate(-90deg);
}
.swiper-wrapper {
  will-change: transform;
}
.swiper.swiper-match .swiper-slide {
  height: auto !important;
}
.swiper-thumbs .swiper-slide {
  cursor: pointer;
}
.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.swiper-pagination-bullet {
  background-color: #969696;
  opacity: 0.25;
  --swiper-pagination-bullet-horizontal-gap: 4px;
}
.swiper-pagination-bullet-active {
  background-color: currentColor;
  opacity: 1;
}
.swiper-horizontal > .swiper-pagination-bullets {
  bottom: 0 !important;
}
:where(.uc-dark) .swiper .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.2;
}
:where(.uc-dark) .swiper .swiper-pagination-bullet-active {
  background-color: currentColor;
  opacity: 1;
}
:where(.uc-dark) .swiper::before {
  border-bottom-color: hsla(0, 0%, 100%, 0.05);
}
.uc-megamenu-panel .uc-accordion .uc-accordion-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bs-body-color);
}
.uc-megamenu-panel .uc-accordion .uc-accordion-title:where(.uc-dark),
:where(.uc-dark) .uc-megamenu-panel .uc-accordion .uc-accordion-title {
  color: #fff;
}
.uc-tab {
  margin: 0;
  border-bottom: 1px solid var(--border-color);
}
.uc-tab > * {
  margin: 0;
  padding: 0;
}
.uc-tab > * > a {
  margin: 0;
  position: relative;
  padding: 8px 16px;
  color: currentColor;
  opacity: 0.6;
  text-decoration: none;
}
.uc-tab > * > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  border-bottom: 2px solid var(--color-primary);
  opacity: 0;
  transition: opacity 0.2s;
}
.uc-tab > .uc-active > a {
  color: currentColor;
  opacity: 1;
}
.uc-tab > .uc-active > a::before {
  opacity: 1;
}
.uc-subnav {
  margin: 0;
}
.uc-subnav > * {
  margin: 0;
  padding: 0;
}
.uc-subnav > * > a {
  margin: 0;
  position: relative;
  padding: 8px 16px;
  text-decoration: none;
}
.uc-subnav-pill > * > a {
  background-color: var(--color-primary);
  border-radius: var(--radius);
}
.uc-subnav-pill > * > a:hover {
  background: rgba(0, 0, 0, 0);
  color: var(--color-gray-900);
}
.uc-subnav-pill > * > a:hover:where(.uc-dark),
:where(.uc-dark) .uc-subnav-pill > * > a:hover {
  color: #fff;
}
.uc-subnav-pill > .uc-active > a {
  background-color: var(--color-primary);
  color: #fff;
}
.uc-text-center {
  text-align: center;
}
.uc-notification-message {
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  background-color: var(--color-gray-50);
  color: var(--color-gray-900);
}
.uc-notification-message:where(.uc-dark),
:where(.uc-dark) .uc-notification-message {
  background-color: var(--color-gray-800);
  color: #fff;
}
.uc-notification-message .uc-notification-close {
  color: var(--color-gray-900);
}
.uc-notification-message .uc-notification-close:where(.uc-dark),
:where(.uc-dark) .uc-notification-message .uc-notification-close {
  color: #fff;
}
.uc-notification-message .uc-notification-close svg,
.uc-notification-message .uc-notification-close svg > * {
  fill: currentColor !important;
  stroke: currentColor !important;
}
.uc-menu-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
[data-uc-img] {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@keyframes reveal-image {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
.uc-svg,
.uc-svg > * {
  fill: currentcolor !important;
  height: auto;
  width: auto;
}
@keyframes uc-spin {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes uc-bounce {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
}
@keyframes uc-fade {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes uc-flash {
  0%,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.page-preload #wrapper {
  transition: opacity 350ms cubic-bezier(0.8, 0, 0.2, 1) 1s;
  opacity: 0;
}
.page-preload.loaded #wrapper {
  opacity: 1;
}
@keyframes preloader {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -101%);
    transform-origin: bottom;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translate(0, -101%);
    transform-origin: bottom;
  }
}
@keyframes percentage {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translate(0, 40px);
  }
}
[data-uc-marquee] {
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  width: 100vw !important;
  overflow: hidden;
}
[data-uc-marquee] > * {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--gap, 16px);
  position: relative;
  user-select: none;
}
[data-uc-marquee] > * > * {
  white-space: nowrap;
  animation: marquee var(--speed, 30s) linear infinite;
}
[data-uc-marquee].reverse > * > * {
  animation-direction: reverse;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.swiper .swiper-match > * {
  display: flex;
  flex-direction: column;
}
.swiper .swiper-match > * > * {
  flex: 1;
}
:root {
  --bs-link-color: rgb(81, 81, 81) !important;
  --bs-link-hover-color: black !important;
  --color-white: white;
  --color-black: black;
  --bs-link-color-rgb: var(--color-gray-900) !important;
}
.uc-link:hover,
a:hover {
  text-decoration: none;
}
.border.border-white {
  border-color: #fff !important;
}
.uc-nav ul.uc-nav-sub {
  font-size: 95%;
  padding: 8px 16px;
}
.uc-nav ul.uc-nav-sub a {
  opacity: 0.5;
  transition: 0.2s;
}
.uc-nav ul.uc-nav-sub a:hover,
.uc-nav ul.uc-nav-sub li.uc-active a {
  opacity: 1;
}
.uc-nav a {
  position: relative;
  transition: 0.2s;
}
.uc-nav .uc-parent a > span {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: transform 0.2s;
}
.uc-nav .uc-parent.uc-open a > span {
  transform: translateY(-50%) rotate(45deg);
}
.uc-nav.uc-nav-modern > * {
  padding: 8px 16px;
}
.uc-nav.uc-nav-modern .uc-active,
.uc-nav.uc-nav-modern .uc-parent {
  background-color: rgba(128, 128, 128, 0.0862745098);
  border-radius: 10px;
}
.uc-switcher-nav > li.uc-active > a {
  background: var(--color-primary);
  color: #fff;
}
.nav-pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  text-align: center;
  border-radius: 50%;
}
.nav-pagination a.uc-active {
  background: var(--color-primary);
  color: #fff;
}
.post-content p:first-child::first-letter {
  font-size: 5em;
  float: left;
  line-height: 0.9em;
  margin-right: 16px;
}
.post-navigation .new-post:hover button {
  color: var(--color-primary) !important;
}
.swiper .swiper-pagination-bullet {
  --swiper-pagination-bullet-horizontal-gap: 4px;
}
.swiper .swiper-wrapper.col-match {
  flex-wrap: wrap;
}
.swiper .swiper-wrapper.col-match > * {
  display: flex;
  flex-direction: column;
}
.swiper .swiper-wrapper.col-match > * > * {
  flex: 1;
}
@keyframes slideProgress {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes scaleProgress {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.98);
  }
}
.uc-menu-trigger {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 9999;
}
.uc-menu-trigger::after,
.uc-menu-trigger::before {
  content: "";
  content: "";
  width: 50%;
  height: 2px;
  background-color: currentColor;
  margin: -1px;
  transition: transform 0.2s ease-in, background-color 0.2s ease-in;
}
.uc-menu-trigger[aria-expanded="true"]::before {
  transform: translate(0, 4px) rotate(45deg);
}
.uc-menu-trigger[aria-expanded="true"]::after {
  transform: translate(0, -4px) rotate(-45deg);
}
@keyframes wave {
  0%,
  100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
}
img {
  font-size: 11px;
}
img.image-hover-revealer {
  --move-x: 0px;
  --move-y: 0px;
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
  transform: translateX(var(--move-x)) translateY(var(--move-y));
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
  will-change: clip-path, transform;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.4s cubic-bezier(0.87, 0, 0.13, 1),
    clip-path 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  clip-path: inset(0 0 0 100%);
}
[data-darkmode-toggle] {
  transform: scale(0.9);
  transition: 0.2s;
  z-index: 1000;
}
[data-darkmode-toggle] .switch {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
[data-darkmode-toggle] .switch > .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
[data-darkmode-toggle] .switch > .slider:before {
  content: "";
  font-family: Unicons;
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
  color: currentColor;
}
[data-darkmode-toggle] .switch > input {
  opacity: 0;
  width: 0;
  height: 0;
}
[data-darkmode-toggle] .switch > input:checked + .slider:before {
  content: "";
  color: currentColor;
}
[data-darkmode-toggle]:hover {
  transform: scale(1.1);
  opacity: 1;
}
[data-darkmode-switch] {
  display: inline-flex;
  vertical-align: middle;
}
[data-darkmode-switch] .switch {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 22px;
}
[data-darkmode-switch] .switch > .slider {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid;
  border-radius: 32px;
  background-color: var(--color-gray-25) !important;
  border-color: #c8c9ca !important;
}
:where(.uc-dark) [data-darkmode-switch] .switch > .slider,
[data-darkmode-switch] .switch > .slider:where(.uc-dark) {
  background-color: var(--color-gray-700) !important;
  border-color: var(--color-gray-500) !important;
}
[data-darkmode-switch] .switch > .slider:before {
  content: "";
  font-family: Unicons;
  position: absolute;
  left: 1px;
  bottom: 1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  font-size: 14px;
  border-radius: 20px;
  -webkit-transition: 0.3s !important;
  transition: 0.3s !important;
  z-index: 1;
  color: currentColor;
  box-shadow: 0 1px 3px 0 rgba(150, 150, 150, 0.25);
}
[data-darkmode-switch] .switch > input {
  opacity: 0;
  width: 0;
  height: 0;
}
[data-darkmode-switch] .switch > input:checked + .slider:before {
  content: "";
  color: currentColor;
  transform: translateX(100%);
}
.prettyprint {
  background-color: var(--color-secondary) !important;
  border-color: var(--color-secondary-600) !important;
}
.prettyprint:where(.uc-dark),
:where(.uc-dark) .prettyprint {
  background-color: var(--color-gray-800) !important;
  border-color: var(--color-gray-700) !important;
}
pre.prettyprint {
  --font-code-family: "IBM Plex Mono", monospace;
  font-style: normal;
  min-width: 100%;
  width: 45vw;
  max-height: 400px;
}
pre.prettyprint .com {
  font-style: italic;
  color: #8b8fa4;
}
:where(.uc-dark) pre.prettyprint .com,
pre.prettyprint .com:where(.uc-dark) {
  color: #666977;
}
pre.prettyprint .var {
  color: #d17a00;
}
:where(.uc-dark) pre.prettyprint .var,
pre.prettyprint .var:where(.uc-dark) {
  color: #ffd25f;
}
pre.prettyprint .tag {
  color: #d4458f;
}
:where(.uc-dark) pre.prettyprint .tag,
pre.prettyprint .tag:where(.uc-dark) {
  color: #f472b6;
}
pre.prettyprint .atv {
  color: #5a89ca;
}
:where(.uc-dark) pre.prettyprint .atv,
pre.prettyprint .atv:where(.uc-dark) {
  color: #82b6ff;
}
.alert {
  font-size: 90%;
}
.uc-table-striped tbody tr:nth-of-type(odd),
.uc-table-striped > tr:nth-of-type(odd) {
  background: var(--color-secondary);
}
.uc-table-striped tbody tr:nth-of-type(odd):where(.uc-dark),
.uc-table-striped > tr:nth-of-type(odd):where(.uc-dark),
:where(.uc-dark) .uc-table-striped tbody tr:nth-of-type(odd),
:where(.uc-dark) .uc-table-striped > tr:nth-of-type(odd) {
  background: rgba(93, 93, 121, 0.1);
}
.text-transparent {
  color: transparent;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.uc-gdpr-notification {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 250ms;
}
.uc-gdpr-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.uc-navbar-container.uc-navbar-sticky {
  backdrop-filter: blur(8px);
  background-color: hsla(0, 0%, 100%, 0.8);
}
.uc-navbar-container.uc-navbar-sticky:where(.uc-dark),
:where(.uc-dark) .uc-navbar-container.uc-navbar-sticky {
  background-color: rgba(31, 31, 31, 0.75);
}
.uc-navbar-sticky .hide-on-sticky {
  display: none;
}
header.uc-preview-header .uc-navbar-nav > li > a {
  color: #000;
}
:where(.uc-dark) header.uc-preview-header .uc-navbar-nav > li > a,
header.uc-preview-header .uc-navbar-nav > li > a:where(.uc-dark) {
  color: #fff;
}
header.uc-preview-header .uc-navbar-container.uc-navbar-sticky .uc-navbar-nav li > a {
  opacity: 0.6;
}
header.uc-preview-header .uc-navbar-container.uc-navbar-sticky .uc-navbar-nav li.uc-active > a {
  opacity: 1;
}
.uc-dropbar-inner.after-bg::after {
  background-color: var(--color-gray-25);
  content: "";
  position: absolute;
  height: 100%;
  width: 100vw;
  right: -70vw;
  top: 0;
  z-index: -1;
}
.uc-dropbar-inner.after-bg:where(.uc-dark)::after,
:where(.uc-dark) .uc-dropbar-inner.after-bg::after {
  background-color: var(--color-gray-800);
}
[dir="rtl"] .uc-dropbar-inner.after-bg::after {
  right: auto;
  left: -70vw;
}
header.uc-header.header-six > :not(.uc-navbar-sticky) .uc-navbar-main a {
  color: #fff;
  transition: opacity 250ms;
}
header.uc-header.header-six > :not(.uc-navbar-sticky) .uc-navbar-main a:hover {
  color: #fff !important;
  opacity: 0.7;
}
header.uc-header.header-six .uc-navbar-nav > li.uc-active > a {
  color: var(--color-primary);
}
:where(.uc-dark) header.uc-header.header-six .uc-navbar-nav > li.uc-active > a,
header.uc-header.header-six .uc-navbar-nav > li.uc-active > a:where(.uc-dark) {
  color: var(--color-lime-300);
}
header.uc-header.header-six > .uc-navbar-sticky {
  max-width: 1140px;
  margin: auto;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.15);
}
header.uc-header.header-six > .uc-navbar-sticky .uc-navbar-main {
  --uc-nav-height: 64px !important;
}
header.uc-header.header-six > .uc-navbar-sticky .uc-navbar-main .uc-navbar {
  min-height: 64px !important;
}
header.uc-header.header-twelve .uc-navbar-sticky {
  padding: 0 16px;
  margin: 16px 0 0;
}
@media (min-width: 1024px) {
  header.uc-header.header-twelve .uc-navbar-sticky {
    margin: 0 auto;
  }
}
header.uc-header.header-fourteen .uc-navbar-container {
  backdrop-filter: blur(8px);
  margin: auto;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.15);
}
header.uc-header.header-fourteen .uc-navbar-transparent {
  background-color: rgba(0, 0, 0, 0.35);
  margin: 24px 24px 0;
}
@media (min-width: 1024px) and (max-width: 1440px) {
  header.uc-header.header-fourteen .uc-navbar-container {
    max-width: 928px;
  }
  header.uc-header.header-fourteen .uc-navbar-transparent {
    margin: 56px auto 0;
  }
}
@media (min-width: 1440px) {
  header.uc-header.header-fourteen .uc-navbar-container {
    max-width: 1248px;
  }
  header.uc-header.header-fourteen .uc-navbar-transparent {
    margin: 64px auto 0;
  }
}
header.uc-header.header-fourteen .uc-navbar-sticky {
  background-color: rgba(31, 31, 31, 0.75);
  margin: 24px 24px 0;
}
@media (min-width: 1024px) and (max-width: 1440px) {
  header.uc-header.header-fourteen .uc-navbar-sticky {
    margin: 24px auto 0;
  }
}
@media (min-width: 1440px) {
  header.uc-header.header-fourteen .uc-navbar-sticky {
    margin: 24px auto 0;
  }
}
header.uc-header.header-fourteen .uc-navbar-nav > li.uc-active > a {
  color: var(--color-primary);
}
:where(.uc-dark) header.uc-header.header-fourteen .uc-navbar-nav > li.uc-active > a,
header.uc-header.header-fourteen .uc-navbar-nav > li.uc-active > a:where(.uc-dark) {
  color: var(--color-lime-300);
}
:root:where(.uc-dark),
:where(.uc-dark) :root {
  --bs-link-color-rgb: #fff !important;
}
.hero-five-contries {
  left: -18.5% !important;
}
[dir="rtl"] .hero-five-contries {
  left: auto !important;
  right: -18.5% !important;
}
.hero-five-account {
  right: -12% !important;
}
[dir="rtl"] .hero-five-account {
  right: auto !important;
  left: -12% !important;
}
.hero-ten-01 {
  left: -14% !important;
}
[dir="rtl"] .hero-ten-01 {
  left: auto !important;
  right: -14% !important;
}
.hero-ten-02 {
  right: -12% !important;
}
[dir="rtl"] .hero-ten-02 {
  right: auto !important;
  left: -12% !important;
}
.hero-ten-03 {
  right: -8% !important;
}
[dir="rtl"] .hero-ten-03 {
  right: auto !important;
  left: -8% !important;
}
.swiper .swiper-pagination-bullet,
.swiper-pagination-bullet {
  --swiper-pagination-bullet-horizontal-gap: 0;
  height: 8px !important;
  width: 8px !important;
  border-radius: 8px !important;
}
.swiper-timeline .swiper-slide:first-child .timeline-box::before {
  left: 50% !important;
}
[dir="rtl"] .swiper-timeline .swiper-slide:first-child .timeline-box::before {
  left: 0 !important;
  right: 50% !important;
}
.swiper-timeline .swiper-slide:last-child .timeline-box::before {
  right: 50% !important;
}
[dir="rtl"] .swiper-timeline .swiper-slide:last-child .timeline-box::before {
  right: 0 !important;
  left: 50% !important;
}
.swiper-timeline .swiper-slide.swiper-slide-active .timeline-box .image {
  transform: scale(1);
  opacity: 1;
}
.swiper-timeline .swiper-slide.swiper-slide-active .timeline-box .content,
.swiper-timeline .swiper-slide.swiper-slide-active .timeline-box .title {
  opacity: 1;
}
.swiper-timeline .swiper-slide.swiper-slide-active .timeline-box::after {
  transform: scale(1);
}
.timeline-box {
  --image-box-height: 200px;
  --half-gap: 40px;
  position: relative;
  transition: 250ms ease-in-out;
}
.timeline-box::after,
.timeline-box::before {
  content: "";
  position: absolute;
  display: block;
  transition: 250ms ease-in-out;
  background: var(--color-gray-900);
}
.timeline-box::after:where(.uc-dark),
.timeline-box::before:where(.uc-dark),
:where(.uc-dark) .timeline-box::after,
:where(.uc-dark) .timeline-box::before {
  background: #fff;
}
.timeline-box::before {
  top: calc(var(--image-box-height) + var(--half-gap));
  right: 0;
  left: 0;
  width: auto;
  height: 1px;
  opacity: 0.15;
}
.timeline-box::after {
  top: calc(var(--image-box-height) + var(--half-gap) - 10px);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: scale(0.5);
  transition: transform 0.25s;
  left: auto !important;
}
[dir="rtl"] .timeline-box::after {
  left: calc(50% - 10px) !important;
  right: auto !important;
}
.timeline-box .image {
  opacity: 0.6;
  transform: scale(0.9);
  transition: 250ms ease-in-out;
}
.timeline-box .content,
.timeline-box .title {
  opacity: 0.6;
  transition: 250ms ease-in-out;
}
.main-features-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.main-features-nav > li {
  position: relative;
  width: 100%;
}
.main-features-nav > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 80px !important;
  padding: 0 16px;
}
.main-features-nav > li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 3px solid transparent;
  width: 0%;
  transition: cubic-bezier(1, 0, 0, 1);
}
.main-features-nav > li.uc-active::before {
  border-color: var(--color-primary);
  width: 100%;
  transition-duration: 0.5s;
}
.uc-navbar-nav > li > a[aria-expanded="true"] {
  box-shadow: inset 0 3px var(--color-primary);
}
.uc-switcher-nav > li > a {
  border-radius: 12px;
}
.uc-subnav-outline-pill > li > a {
  border: 1px solid var(--border-color);
  border-radius: 50rem;
  padding: 8px 24px;
  color: var(--color-gray-900) !important;
}
.uc-subnav-outline-pill > li > a:where(.uc-dark),
:where(.uc-dark) .uc-subnav-outline-pill > li > a {
  color: #fff !important;
}
.uc-subnav-outline-pill > li.uc-active > a {
  background-color: var(--color-tertiary-300);
  border-color: var(--color-gray-900);
}
.uc-subnav-outline-pill > li.uc-active > a:where(.uc-dark),
:where(.uc-dark) .uc-subnav-outline-pill > li.uc-active > a {
  background-color: var(--color-primary);
  border-color: var(--color-primary-400);
}
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #1e9579;
  --bs-secondary: #f5eee9;
  --bs-success: #4caf50;
  --bs-info: #0099cc;
  --bs-warning: #ffb307;
  --bs-danger: #e44b4b;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-gray: #45454c;
  --bs-gray-10: rgb(249.42, 249.42, 249.63);
  --bs-gray-25: rgb(245.7, 245.7, 246.05);
  --bs-gray-50: rgb(236.4, 236.4, 237.1);
  --bs-gray-100: rgb(217.8, 217.8, 219.2);
  --bs-gray-200: rgb(180.6, 180.6, 183.4);
  --bs-gray-300: rgb(143.4, 143.4, 147.6);
  --bs-gray-400: rgb(106.2, 106.2, 111.8);
  --bs-gray-500: #45454c;
  --bs-gray-600: rgb(55.2, 55.2, 60.8);
  --bs-gray-700: rgb(41.4, 41.4, 45.6);
  --bs-gray-800: rgb(27.6, 27.6, 30.4);
  --bs-gray-900: rgb(13.8, 13.8, 15.2);
  --bs-slate: #6b7280;
  --bs-slate-10: rgb(250.56, 250.77, 251.19);
  --bs-slate-25: rgb(247.6, 247.95, 248.65);
  --bs-slate-50: rgb(240.2, 240.9, 242.3);
  --bs-slate-100: rgb(225.4, 226.8, 229.6);
  --bs-slate-200: rgb(195.8, 198.6, 204.2);
  --bs-slate-300: rgb(166.2, 170.4, 178.8);
  --bs-slate-400: rgb(136.6, 142.2, 153.4);
  --bs-slate-500: #6b7280;
  --bs-slate-600: rgb(85.6, 91.2, 102.4);
  --bs-slate-700: rgb(64.2, 68.4, 76.8);
  --bs-slate-800: rgb(42.8, 45.6, 51.2);
  --bs-slate-900: rgb(21.4, 22.8, 25.6);
  --bs-primary-10: rgb(248.25, 251.82, 250.98);
  --bs-primary-25: rgb(243.75, 249.7, 248.3);
  --bs-primary-50: rgb(232.5, 244.4, 241.6);
  --bs-primary-100: rgb(210, 233.8, 228.2);
  --bs-primary-200: rgb(165, 212.6, 201.4);
  --bs-primary-300: rgb(120, 191.4, 174.6);
  --bs-primary-400: rgb(75, 170.2, 147.8);
  --bs-primary-500: #1e9579;
  --bs-primary-600: rgb(24, 119.2, 96.8);
  --bs-primary-700: rgb(18, 89.4, 72.6);
  --bs-primary-800: rgb(12, 59.6, 48.4);
  --bs-primary-900: rgb(6, 29.8, 24.2);
  --bs-secondary-10: rgb(254.7, 254.49, 254.34);
  --bs-secondary-25: rgb(254.5, 254.15, 253.9);
  --bs-secondary-50: rgb(254, 253.3, 252.8);
  --bs-secondary-100: rgb(253, 251.6, 250.6);
  --bs-secondary-200: rgb(251, 248.2, 246.2);
  --bs-secondary-300: rgb(249, 244.8, 241.8);
  --bs-secondary-400: rgb(247, 241.4, 237.4);
  --bs-secondary-500: #f5eee9;
  --bs-secondary-600: rgb(196, 190.4, 186.4);
  --bs-secondary-700: rgb(147, 142.8, 139.8);
  --bs-secondary-800: rgb(98, 95.2, 93.2);
  --bs-secondary-900: rgb(49, 47.6, 46.6);
  --bs-info-10: rgb(247.35, 251.94, 253.47);
  --bs-info-25: rgb(242.25, 249.9, 252.45);
  --bs-info-50: rgb(229.5, 244.8, 249.9);
  --bs-info-100: rgb(204, 234.6, 244.8);
  --bs-info-200: rgb(153, 214.2, 234.6);
  --bs-info-300: rgb(102, 193.8, 224.4);
  --bs-info-400: rgb(51, 173.4, 214.2);
  --bs-info-500: #0099cc;
  --bs-info-600: rgb(0, 122.4, 163.2);
  --bs-info-700: rgb(0, 91.8, 122.4);
  --bs-info-800: rgb(0, 61.2, 81.6);
  --bs-info-900: rgb(0, 30.6, 40.8);
  --bs-success-10: rgb(249.63, 252.6, 249.75);
  --bs-success-25: rgb(246.05, 251, 246.25);
  --bs-success-50: rgb(237.1, 247, 237.5);
  --bs-success-100: rgb(219.2, 239, 220);
  --bs-success-200: rgb(183.4, 223, 185);
  --bs-success-300: rgb(147.6, 207, 150);
  --bs-success-400: rgb(111.8, 191, 115);
  --bs-success-500: #4caf50;
  --bs-success-600: rgb(60.8, 140, 64);
  --bs-success-700: rgb(45.6, 105, 48);
  --bs-success-800: rgb(30.4, 70, 32);
  --bs-success-900: rgb(15.2, 35, 16);
  --bs-warning-10: rgb(255, 252.72, 247.56);
  --bs-warning-25: rgb(255, 251.2, 242.6);
  --bs-warning-50: rgb(255, 247.4, 230.2);
  --bs-warning-100: rgb(255, 239.8, 205.4);
  --bs-warning-200: rgb(255, 224.6, 155.8);
  --bs-warning-300: rgb(255, 209.4, 106.2);
  --bs-warning-400: rgb(255, 194.2, 56.6);
  --bs-warning-500: #ffb307;
  --bs-warning-600: rgb(204, 143.2, 5.6);
  --bs-warning-700: rgb(153, 107.4, 4.2);
  --bs-warning-800: rgb(102, 71.6, 2.8);
  --bs-warning-900: rgb(51, 35.8, 1.4);
  --bs-danger-10: rgb(254.19, 249.6, 249.6);
  --bs-danger-25: rgb(253.65, 246, 246);
  --bs-danger-50: rgb(252.3, 237, 237);
  --bs-danger-100: rgb(249.6, 219, 219);
  --bs-danger-200: rgb(244.2, 183, 183);
  --bs-danger-300: rgb(238.8, 147, 147);
  --bs-danger-400: rgb(233.4, 111, 111);
  --bs-danger-500: #e44b4b;
  --bs-danger-600: rgb(182.4, 60, 60);
  --bs-danger-700: rgb(136.8, 45, 45);
  --bs-danger-800: rgb(91.2, 30, 30);
  --bs-danger-900: rgb(45.6, 15, 15);
  --bs-blue: #078af3;
  --bs-blue-10: rgb(247.56, 251.49, 254.64);
  --bs-blue-25: rgb(242.6, 249.15, 254.4);
  --bs-blue-50: rgb(230.2, 243.3, 253.8);
  --bs-blue-100: rgb(205.4, 231.6, 252.6);
  --bs-blue-200: rgb(155.8, 208.2, 250.2);
  --bs-blue-300: rgb(106.2, 184.8, 247.8);
  --bs-blue-400: rgb(56.6, 161.4, 245.4);
  --bs-blue-500: #078af3;
  --bs-blue-600: rgb(5.6, 110.4, 194.4);
  --bs-blue-700: rgb(4.2, 82.8, 145.8);
  --bs-blue-800: rgb(2.8, 55.2, 97.2);
  --bs-blue-900: rgb(1.4, 27.6, 48.6);
  --bs-indigo: #553cdf;
  --bs-indigo-10: rgb(249.9, 249.15, 254.04);
  --bs-indigo-25: rgb(246.5, 245.25, 253.4);
  --bs-indigo-50: rgb(238, 235.5, 251.8);
  --bs-indigo-100: rgb(221, 216, 248.6);
  --bs-indigo-200: rgb(187, 177, 242.2);
  --bs-indigo-300: rgb(153, 138, 235.8);
  --bs-indigo-400: rgb(119, 99, 229.4);
  --bs-indigo-500: #553cdf;
  --bs-indigo-600: rgb(68, 48, 178.4);
  --bs-indigo-700: rgb(51, 36, 133.8);
  --bs-indigo-800: rgb(34, 24, 89.2);
  --bs-indigo-900: rgb(17, 12, 44.6);
  --bs-purple: #8921e4;
  --bs-purple-10: rgb(251.46, 248.34, 254.19);
  --bs-purple-25: rgb(249.1, 243.9, 253.65);
  --bs-purple-50: rgb(243.2, 232.8, 252.3);
  --bs-purple-100: rgb(231.4, 210.6, 249.6);
  --bs-purple-200: rgb(207.8, 166.2, 244.2);
  --bs-purple-300: rgb(184.2, 121.8, 238.8);
  --bs-purple-400: rgb(160.6, 77.4, 233.4);
  --bs-purple-500: #8921e4;
  --bs-purple-600: rgb(109.6, 26.4, 182.4);
  --bs-purple-700: rgb(82.2, 19.8, 136.8);
  --bs-purple-800: rgb(54.8, 13.2, 91.2);
  --bs-purple-900: rgb(27.4, 6.6, 45.6);
  --bs-red: #ea4335;
  --bs-red-10: rgb(254.37, 249.36, 248.94);
  --bs-red-25: rgb(253.95, 245.6, 244.9);
  --bs-red-50: rgb(252.9, 236.2, 234.8);
  --bs-red-100: rgb(250.8, 217.4, 214.6);
  --bs-red-200: rgb(246.6, 179.8, 174.2);
  --bs-red-300: rgb(242.4, 142.2, 133.8);
  --bs-red-400: rgb(238.2, 104.6, 93.4);
  --bs-red-500: #ea4335;
  --bs-red-600: rgb(187.2, 53.6, 42.4);
  --bs-red-700: rgb(140.4, 40.2, 31.8);
  --bs-red-800: rgb(93.6, 26.8, 21.2);
  --bs-red-900: rgb(46.8, 13.4, 10.6);
  --bs-rose: #d20e4f;
  --bs-rose-10: rgb(253.65, 247.77, 249.72);
  --bs-rose-25: rgb(252.75, 242.95, 246.2);
  --bs-rose-50: rgb(250.5, 230.9, 237.4);
  --bs-rose-100: rgb(246, 206.8, 219.8);
  --bs-rose-200: rgb(237, 158.6, 184.6);
  --bs-rose-300: rgb(228, 110.4, 149.4);
  --bs-rose-400: rgb(219, 62.2, 114.2);
  --bs-rose-500: #d20e4f;
  --bs-rose-600: rgb(168, 11.2, 63.2);
  --bs-rose-700: rgb(126, 8.4, 47.4);
  --bs-rose-800: rgb(84, 5.6, 31.6);
  --bs-rose-900: rgb(42, 2.8, 15.8);
  --bs-pink: #f06b9d;
  --bs-pink-10: rgb(254.55, 250.56, 252.06);
  --bs-pink-25: rgb(254.25, 247.6, 250.1);
  --bs-pink-50: rgb(253.5, 240.2, 245.2);
  --bs-pink-100: rgb(252, 225.4, 235.4);
  --bs-pink-200: rgb(249, 195.8, 215.8);
  --bs-pink-300: rgb(246, 166.2, 196.2);
  --bs-pink-400: rgb(243, 136.6, 176.6);
  --bs-pink-500: #f06b9d;
  --bs-pink-600: rgb(192, 85.6, 125.6);
  --bs-pink-700: rgb(144, 64.2, 94.2);
  --bs-pink-800: rgb(96, 42.8, 62.8);
  --bs-pink-900: rgb(48, 21.4, 31.4);
  --bs-orange: #fb6b1e;
  --bs-orange-10: rgb(254.88, 250.56, 248.25);
  --bs-orange-25: rgb(254.8, 247.6, 243.75);
  --bs-orange-50: rgb(254.6, 240.2, 232.5);
  --bs-orange-100: rgb(254.2, 225.4, 210);
  --bs-orange-200: rgb(253.4, 195.8, 165);
  --bs-orange-300: rgb(252.6, 166.2, 120);
  --bs-orange-400: rgb(251.8, 136.6, 75);
  --bs-orange-500: #fb6b1e;
  --bs-orange-600: rgb(200.8, 85.6, 24);
  --bs-orange-700: rgb(150.6, 64.2, 18);
  --bs-orange-800: rgb(100.4, 42.8, 12);
  --bs-orange-900: rgb(50.2, 21.4, 6);
  --bs-yellow: #fcbc05;
  --bs-yellow-10: rgb(254.91, 252.99, 247.5);
  --bs-yellow-25: rgb(254.85, 251.65, 242.5);
  --bs-yellow-50: rgb(254.7, 248.3, 230);
  --bs-yellow-100: rgb(254.4, 241.6, 205);
  --bs-yellow-200: rgb(253.8, 228.2, 155);
  --bs-yellow-300: rgb(253.2, 214.8, 105);
  --bs-yellow-400: rgb(252.6, 201.4, 55);
  --bs-yellow-500: #fcbc05;
  --bs-yellow-600: rgb(201.6, 150.4, 4);
  --bs-yellow-700: rgb(151.2, 112.8, 3);
  --bs-yellow-800: rgb(100.8, 75.2, 2);
  --bs-yellow-900: rgb(50.4, 37.6, 1);
  --bs-green: #34a853;
  --bs-green-10: rgb(248.91, 252.39, 249.84);
  --bs-green-25: rgb(244.85, 250.65, 246.4);
  --bs-green-50: rgb(234.7, 246.3, 237.8);
  --bs-green-100: rgb(214.4, 237.6, 220.6);
  --bs-green-200: rgb(173.8, 220.2, 186.2);
  --bs-green-300: rgb(133.2, 202.8, 151.8);
  --bs-green-400: rgb(92.6, 185.4, 117.4);
  --bs-green-500: #34a853;
  --bs-green-600: rgb(41.6, 134.4, 66.4);
  --bs-green-700: rgb(31.2, 100.8, 49.8);
  --bs-green-800: rgb(20.8, 67.2, 33.2);
  --bs-green-900: rgb(10.4, 33.6, 16.6);
  --bs-lime: #aef359;
  --bs-lime-10: rgb(252.57, 254.64, 250.02);
  --bs-lime-25: rgb(250.95, 254.4, 246.7);
  --bs-lime-50: rgb(246.9, 253.8, 238.4);
  --bs-lime-100: rgb(238.8, 252.6, 221.8);
  --bs-lime-200: rgb(222.6, 250.2, 188.6);
  --bs-lime-300: rgb(206.4, 247.8, 155.4);
  --bs-lime-400: rgb(190.2, 245.4, 122.2);
  --bs-lime-500: #aef359;
  --bs-lime-600: rgb(139.2, 194.4, 71.2);
  --bs-lime-700: rgb(104.4, 145.8, 53.4);
  --bs-lime-800: rgb(69.6, 97.2, 35.6);
  --bs-lime-900: rgb(34.8, 48.6, 17.8);
  --bs-teal: #06f6c6;
  --bs-teal-10: rgb(247.53, 254.73, 253.29);
  --bs-teal-25: rgb(242.55, 254.55, 252.15);
  --bs-teal-50: rgb(230.1, 254.1, 249.3);
  --bs-teal-100: rgb(205.2, 253.2, 243.6);
  --bs-teal-200: rgb(155.4, 251.4, 232.2);
  --bs-teal-300: rgb(105.6, 249.6, 220.8);
  --bs-teal-400: rgb(55.8, 247.8, 209.4);
  --bs-teal-500: #06f6c6;
  --bs-teal-600: rgb(4.8, 196.8, 158.4);
  --bs-teal-700: rgb(3.6, 147.6, 118.8);
  --bs-teal-800: rgb(2.4, 98.4, 79.2);
  --bs-teal-900: rgb(1.2, 49.2, 39.6);
  --bs-cyan: #38e1ff;
  --bs-cyan-10: rgb(249.03, 254.1, 255);
  --bs-cyan-25: rgb(245.05, 253.5, 255);
  --bs-cyan-50: rgb(235.1, 252, 255);
  --bs-cyan-100: rgb(215.2, 249, 255);
  --bs-cyan-200: rgb(175.4, 243, 255);
  --bs-cyan-300: rgb(135.6, 237, 255);
  --bs-cyan-400: rgb(95.8, 231, 255);
  --bs-cyan-500: #38e1ff;
  --bs-cyan-600: rgb(44.8, 180, 204);
  --bs-cyan-700: rgb(33.6, 135, 153);
  --bs-cyan-800: rgb(22.4, 90, 102);
  --bs-cyan-900: rgb(11.2, 45, 51);
  --bs-tertiary: #ddff9a;
  --bs-tertiary-10: rgb(253.98, 255, 251.97);
  --bs-tertiary-25: rgb(253.3, 255, 249.95);
  --bs-tertiary-50: rgb(251.6, 255, 244.9);
  --bs-tertiary-100: rgb(248.2, 255, 234.8);
  --bs-tertiary-200: rgb(241.4, 255, 214.6);
  --bs-tertiary-300: rgb(234.6, 255, 194.4);
  --bs-tertiary-400: rgb(227.8, 255, 174.2);
  --bs-tertiary-500: #ddff9a;
  --bs-tertiary-600: rgb(176.8, 204, 123.2);
  --bs-tertiary-700: rgb(132.6, 153, 92.4);
  --bs-tertiary-800: rgb(88.4, 102, 61.6);
  --bs-tertiary-900: rgb(44.2, 51, 30.8);
  --bs-primary-rgb: 30, 149, 121;
  --bs-secondary-rgb: 245, 238, 233;
  --bs-success-rgb: 76, 175, 80;
  --bs-info-rgb: 0, 153, 204;
  --bs-warning-rgb: 255, 179, 7;
  --bs-danger-rgb: 228, 75, 75;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-gray-rgb: 69, 69, 76;
  --bs-gray-10-rgb: 249, 249, 250;
  --bs-gray-25-rgb: 246, 246, 246;
  --bs-gray-50-rgb: 236, 236, 237;
  --bs-gray-100-rgb: 218, 218, 219;
  --bs-gray-200-rgb: 181, 181, 183;
  --bs-gray-300-rgb: 143, 143, 148;
  --bs-gray-400-rgb: 106, 106, 112;
  --bs-gray-500-rgb: 69, 69, 76;
  --bs-gray-600-rgb: 55, 55, 61;
  --bs-gray-700-rgb: 41, 41, 46;
  --bs-gray-800-rgb: 28, 28, 30;
  --bs-gray-900-rgb: 14, 14, 15;
  --bs-slate-rgb: 107, 114, 128;
  --bs-slate-10-rgb: 251, 251, 251;
  --bs-slate-25-rgb: 248, 248, 249;
  --bs-slate-50-rgb: 240, 241, 242;
  --bs-slate-100-rgb: 225, 227, 230;
  --bs-slate-200-rgb: 196, 199, 204;
  --bs-slate-300-rgb: 166, 170, 179;
  --bs-slate-400-rgb: 137, 142, 153;
  --bs-slate-500-rgb: 107, 114, 128;
  --bs-slate-600-rgb: 86, 91, 102;
  --bs-slate-700-rgb: 64, 68, 77;
  --bs-slate-800-rgb: 43, 46, 51;
  --bs-slate-900-rgb: 21, 23, 26;
  --bs-primary-10-rgb: 248, 252, 251;
  --bs-primary-25-rgb: 244, 250, 248;
  --bs-primary-50-rgb: 233, 244, 242;
  --bs-primary-100-rgb: 210, 234, 228;
  --bs-primary-200-rgb: 165, 213, 201;
  --bs-primary-300-rgb: 120, 191, 175;
  --bs-primary-400-rgb: 75, 170, 148;
  --bs-primary-500-rgb: 30, 149, 121;
  --bs-primary-600-rgb: 24, 119, 97;
  --bs-primary-700-rgb: 18, 89, 73;
  --bs-primary-800-rgb: 12, 60, 48;
  --bs-primary-900-rgb: 6, 30, 24;
  --bs-secondary-10-rgb: 255, 254, 254;
  --bs-secondary-25-rgb: 255, 254, 254;
  --bs-secondary-50-rgb: 254, 253, 253;
  --bs-secondary-100-rgb: 253, 252, 251;
  --bs-secondary-200-rgb: 251, 248, 246;
  --bs-secondary-300-rgb: 249, 245, 242;
  --bs-secondary-400-rgb: 247, 241, 237;
  --bs-secondary-500-rgb: 245, 238, 233;
  --bs-secondary-600-rgb: 196, 190, 186;
  --bs-secondary-700-rgb: 147, 143, 140;
  --bs-secondary-800-rgb: 98, 95, 93;
  --bs-secondary-900-rgb: 49, 48, 47;
  --bs-info-10-rgb: 247, 252, 253;
  --bs-info-25-rgb: 242, 250, 252;
  --bs-info-50-rgb: 230, 245, 250;
  --bs-info-100-rgb: 204, 235, 245;
  --bs-info-200-rgb: 153, 214, 235;
  --bs-info-300-rgb: 102, 194, 224;
  --bs-info-400-rgb: 51, 173, 214;
  --bs-info-500-rgb: 0, 153, 204;
  --bs-info-600-rgb: 0, 122, 163;
  --bs-info-700-rgb: 0, 92, 122;
  --bs-info-800-rgb: 0, 61, 82;
  --bs-info-900-rgb: 0, 31, 41;
  --bs-success-10-rgb: 250, 253, 250;
  --bs-success-25-rgb: 246, 251, 246;
  --bs-success-50-rgb: 237, 247, 238;
  --bs-success-100-rgb: 219, 239, 220;
  --bs-success-200-rgb: 183, 223, 185;
  --bs-success-300-rgb: 148, 207, 150;
  --bs-success-400-rgb: 112, 191, 115;
  --bs-success-500-rgb: 76, 175, 80;
  --bs-success-600-rgb: 61, 140, 64;
  --bs-success-700-rgb: 46, 105, 48;
  --bs-success-800-rgb: 30, 70, 32;
  --bs-success-900-rgb: 15, 35, 16;
  --bs-warning-10-rgb: 255, 253, 248;
  --bs-warning-25-rgb: 255, 251, 243;
  --bs-warning-50-rgb: 255, 247, 230;
  --bs-warning-100-rgb: 255, 240, 205;
  --bs-warning-200-rgb: 255, 225, 156;
  --bs-warning-300-rgb: 255, 209, 106;
  --bs-warning-400-rgb: 255, 194, 57;
  --bs-warning-500-rgb: 255, 179, 7;
  --bs-warning-600-rgb: 204, 143, 6;
  --bs-warning-700-rgb: 153, 107, 4;
  --bs-warning-800-rgb: 102, 72, 3;
  --bs-warning-900-rgb: 51, 36, 1;
  --bs-danger-10-rgb: 254, 250, 250;
  --bs-danger-25-rgb: 254, 246, 246;
  --bs-danger-50-rgb: 252, 237, 237;
  --bs-danger-100-rgb: 250, 219, 219;
  --bs-danger-200-rgb: 244, 183, 183;
  --bs-danger-300-rgb: 239, 147, 147;
  --bs-danger-400-rgb: 233, 111, 111;
  --bs-danger-500-rgb: 228, 75, 75;
  --bs-danger-600-rgb: 182, 60, 60;
  --bs-danger-700-rgb: 137, 45, 45;
  --bs-danger-800-rgb: 91, 30, 30;
  --bs-danger-900-rgb: 46, 15, 15;
  --bs-blue-rgb: 7, 138, 243;
  --bs-blue-10-rgb: 248, 251, 255;
  --bs-blue-25-rgb: 243, 249, 254;
  --bs-blue-50-rgb: 230, 243, 254;
  --bs-blue-100-rgb: 205, 232, 253;
  --bs-blue-200-rgb: 156, 208, 250;
  --bs-blue-300-rgb: 106, 185, 248;
  --bs-blue-400-rgb: 57, 161, 245;
  --bs-blue-500-rgb: 7, 138, 243;
  --bs-blue-600-rgb: 6, 110, 194;
  --bs-blue-700-rgb: 4, 83, 146;
  --bs-blue-800-rgb: 3, 55, 97;
  --bs-blue-900-rgb: 1, 28, 49;
  --bs-indigo-rgb: 85, 60, 223;
  --bs-indigo-10-rgb: 250, 249, 254;
  --bs-indigo-25-rgb: 247, 245, 253;
  --bs-indigo-50-rgb: 238, 236, 252;
  --bs-indigo-100-rgb: 221, 216, 249;
  --bs-indigo-200-rgb: 187, 177, 242;
  --bs-indigo-300-rgb: 153, 138, 236;
  --bs-indigo-400-rgb: 119, 99, 229;
  --bs-indigo-500-rgb: 85, 60, 223;
  --bs-indigo-600-rgb: 68, 48, 178;
  --bs-indigo-700-rgb: 51, 36, 134;
  --bs-indigo-800-rgb: 34, 24, 89;
  --bs-indigo-900-rgb: 17, 12, 45;
  --bs-purple-rgb: 137, 33, 228;
  --bs-purple-10-rgb: 251, 248, 254;
  --bs-purple-25-rgb: 249, 244, 254;
  --bs-purple-50-rgb: 243, 233, 252;
  --bs-purple-100-rgb: 231, 211, 250;
  --bs-purple-200-rgb: 208, 166, 244;
  --bs-purple-300-rgb: 184, 122, 239;
  --bs-purple-400-rgb: 161, 77, 233;
  --bs-purple-500-rgb: 137, 33, 228;
  --bs-purple-600-rgb: 110, 26, 182;
  --bs-purple-700-rgb: 82, 20, 137;
  --bs-purple-800-rgb: 55, 13, 91;
  --bs-purple-900-rgb: 27, 7, 46;
  --bs-red-rgb: 234, 67, 53;
  --bs-red-10-rgb: 254, 249, 249;
  --bs-red-25-rgb: 254, 246, 245;
  --bs-red-50-rgb: 253, 236, 235;
  --bs-red-100-rgb: 251, 217, 215;
  --bs-red-200-rgb: 247, 180, 174;
  --bs-red-300-rgb: 242, 142, 134;
  --bs-red-400-rgb: 238, 105, 93;
  --bs-red-500-rgb: 234, 67, 53;
  --bs-red-600-rgb: 187, 54, 42;
  --bs-red-700-rgb: 140, 40, 32;
  --bs-red-800-rgb: 94, 27, 21;
  --bs-red-900-rgb: 47, 13, 11;
  --bs-rose-rgb: 210, 14, 79;
  --bs-rose-10-rgb: 254, 248, 250;
  --bs-rose-25-rgb: 253, 243, 246;
  --bs-rose-50-rgb: 251, 231, 237;
  --bs-rose-100-rgb: 246, 207, 220;
  --bs-rose-200-rgb: 237, 159, 185;
  --bs-rose-300-rgb: 228, 110, 149;
  --bs-rose-400-rgb: 219, 62, 114;
  --bs-rose-500-rgb: 210, 14, 79;
  --bs-rose-600-rgb: 168, 11, 63;
  --bs-rose-700-rgb: 126, 8, 47;
  --bs-rose-800-rgb: 84, 6, 32;
  --bs-rose-900-rgb: 42, 3, 16;
  --bs-pink-rgb: 240, 107, 157;
  --bs-pink-10-rgb: 255, 251, 252;
  --bs-pink-25-rgb: 254, 248, 250;
  --bs-pink-50-rgb: 254, 240, 245;
  --bs-pink-100-rgb: 252, 225, 235;
  --bs-pink-200-rgb: 249, 196, 216;
  --bs-pink-300-rgb: 246, 166, 196;
  --bs-pink-400-rgb: 243, 137, 177;
  --bs-pink-500-rgb: 240, 107, 157;
  --bs-pink-600-rgb: 192, 86, 126;
  --bs-pink-700-rgb: 144, 64, 94;
  --bs-pink-800-rgb: 96, 43, 63;
  --bs-pink-900-rgb: 48, 21, 31;
  --bs-orange-rgb: 251, 107, 30;
  --bs-orange-10-rgb: 255, 251, 248;
  --bs-orange-25-rgb: 255, 248, 244;
  --bs-orange-50-rgb: 255, 240, 233;
  --bs-orange-100-rgb: 254, 225, 210;
  --bs-orange-200-rgb: 253, 196, 165;
  --bs-orange-300-rgb: 253, 166, 120;
  --bs-orange-400-rgb: 252, 137, 75;
  --bs-orange-500-rgb: 251, 107, 30;
  --bs-orange-600-rgb: 201, 86, 24;
  --bs-orange-700-rgb: 151, 64, 18;
  --bs-orange-800-rgb: 100, 43, 12;
  --bs-orange-900-rgb: 50, 21, 6;
  --bs-yellow-rgb: 252, 188, 5;
  --bs-yellow-10-rgb: 255, 253, 248;
  --bs-yellow-25-rgb: 255, 252, 243;
  --bs-yellow-50-rgb: 255, 248, 230;
  --bs-yellow-100-rgb: 254, 242, 205;
  --bs-yellow-200-rgb: 254, 228, 155;
  --bs-yellow-300-rgb: 253, 215, 105;
  --bs-yellow-400-rgb: 253, 201, 55;
  --bs-yellow-500-rgb: 252, 188, 5;
  --bs-yellow-600-rgb: 202, 150, 4;
  --bs-yellow-700-rgb: 151, 113, 3;
  --bs-yellow-800-rgb: 101, 75, 2;
  --bs-yellow-900-rgb: 50, 38, 1;
  --bs-green-rgb: 52, 168, 83;
  --bs-green-10-rgb: 249, 252, 250;
  --bs-green-25-rgb: 245, 251, 246;
  --bs-green-50-rgb: 235, 246, 238;
  --bs-green-100-rgb: 214, 238, 221;
  --bs-green-200-rgb: 174, 220, 186;
  --bs-green-300-rgb: 133, 203, 152;
  --bs-green-400-rgb: 93, 185, 117;
  --bs-green-500-rgb: 52, 168, 83;
  --bs-green-600-rgb: 42, 134, 66;
  --bs-green-700-rgb: 31, 101, 50;
  --bs-green-800-rgb: 21, 67, 33;
  --bs-green-900-rgb: 10, 34, 17;
  --bs-lime-rgb: 174, 243, 89;
  --bs-lime-10-rgb: 253, 255, 250;
  --bs-lime-25-rgb: 251, 254, 247;
  --bs-lime-50-rgb: 247, 254, 238;
  --bs-lime-100-rgb: 239, 253, 222;
  --bs-lime-200-rgb: 223, 250, 189;
  --bs-lime-300-rgb: 206, 248, 155;
  --bs-lime-400-rgb: 190, 245, 122;
  --bs-lime-500-rgb: 174, 243, 89;
  --bs-lime-600-rgb: 139, 194, 71;
  --bs-lime-700-rgb: 104, 146, 53;
  --bs-lime-800-rgb: 70, 97, 36;
  --bs-lime-900-rgb: 35, 49, 18;
  --bs-teal-rgb: 6, 246, 198;
  --bs-teal-10-rgb: 248, 255, 253;
  --bs-teal-25-rgb: 243, 255, 252;
  --bs-teal-50-rgb: 230, 254, 249;
  --bs-teal-100-rgb: 205, 253, 244;
  --bs-teal-200-rgb: 155, 251, 232;
  --bs-teal-300-rgb: 106, 250, 221;
  --bs-teal-400-rgb: 56, 248, 209;
  --bs-teal-500-rgb: 6, 246, 198;
  --bs-teal-600-rgb: 5, 197, 158;
  --bs-teal-700-rgb: 4, 148, 119;
  --bs-teal-800-rgb: 2, 98, 79;
  --bs-teal-900-rgb: 1, 49, 40;
  --bs-cyan-rgb: 56, 225, 255;
  --bs-cyan-10-rgb: 249, 254, 255;
  --bs-cyan-25-rgb: 245, 254, 255;
  --bs-cyan-50-rgb: 235, 252, 255;
  --bs-cyan-100-rgb: 215, 249, 255;
  --bs-cyan-200-rgb: 175, 243, 255;
  --bs-cyan-300-rgb: 136, 237, 255;
  --bs-cyan-400-rgb: 96, 231, 255;
  --bs-cyan-500-rgb: 56, 225, 255;
  --bs-cyan-600-rgb: 45, 180, 204;
  --bs-cyan-700-rgb: 34, 135, 153;
  --bs-cyan-800-rgb: 22, 90, 102;
  --bs-cyan-900-rgb: 11, 45, 51;
  --bs-tertiary-rgb: 221, 255, 154;
  --bs-tertiary-10-rgb: 254, 255, 252;
  --bs-tertiary-25-rgb: 253, 255, 250;
  --bs-tertiary-50-rgb: 252, 255, 245;
  --bs-tertiary-100-rgb: 248, 255, 235;
  --bs-tertiary-200-rgb: 241, 255, 215;
  --bs-tertiary-300-rgb: 235, 255, 194;
  --bs-tertiary-400-rgb: 228, 255, 174;
  --bs-tertiary-500-rgb: 221, 255, 154;
  --bs-tertiary-600-rgb: 177, 204, 123;
  --bs-tertiary-700-rgb: 133, 153, 92;
  --bs-tertiary-800-rgb: 88, 102, 62;
  --bs-tertiary-900-rgb: 44, 51, 31;
  --bs-primary-text-emphasis: rgb(5.2, 44, 101.2);
  --bs-secondary-text-emphasis: rgb(43.2, 46.8, 50);
  --bs-success-text-emphasis: rgb(10, 54, 33.6);
  --bs-info-text-emphasis: rgb(5.2, 80.8, 96);
  --bs-warning-text-emphasis: rgb(102, 77.2, 2.8);
  --bs-danger-text-emphasis: rgb(88, 21.2, 27.6);
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: rgb(206.6, 226, 254.6);
  --bs-secondary-bg-subtle: rgb(225.6, 227.4, 229);
  --bs-success-bg-subtle: rgb(209, 231, 220.8);
  --bs-info-bg-subtle: rgb(206.6, 244.4, 252);
  --bs-warning-bg-subtle: rgb(255, 242.6, 205.4);
  --bs-danger-bg-subtle: rgb(248, 214.6, 217.8);
  --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: rgb(158.2, 197, 254.2);
  --bs-secondary-border-subtle: rgb(196.2, 199.8, 203);
  --bs-success-border-subtle: rgb(163, 207, 186.6);
  --bs-info-border-subtle: rgb(158.2, 233.8, 249);
  --bs-warning-border-subtle: rgb(255, 230.2, 155.8);
  --bs-danger-border-subtle: rgb(241, 174.2, 180.6);
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans",
    "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--font-family-primary);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: rgb(10.4, 88, 202.4);
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: rgb(255, 242.6, 205.4);
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: rgba(131, 131, 131, 0.25);
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem -0.1rem var(--shadow-color);
  --bs-box-shadow-sm: 0 0.25rem 0.5rem -0.1rem var(--shadow-color);
  --bs-box-shadow-lg: 0 1rem 1.5rem -0.1rem var(--shadow-color);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}
*,
::after,
::before {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
hr {
  width: 100%;
  opacity: 0.1 !important;
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: var(--font-family-secondary);
  font-weight: 700;
  color: var(--bs-heading-color, inherit);
}
p {
  margin: 0;
}
p + p {
  margin-top: 1rem;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
ol,
ul {
  padding-left: 2rem;
}
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}
b,
strong {
  font-weight: 700;
}
.small,
small {
  font-size: 0.875em;
}
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
code,
pre,
samp {
  font-family: var(--font-family-code);
  font-size: 1em;
}
pre {
  tab-size: 4;
  color: inherit;
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}
figure {
  margin: 0 0 1rem;
}
img,
svg {
  vertical-align: middle;
}
table {
  caption-side: bottom;
  border-collapse: collapse;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
tbody,
td,
tfoot,
th,
thead,
tr {
  border: 0 solid;
  border-color: inherit;
}
label {
  display: inline-block;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
select {
  text-transform: none;
}
[role="button"],
[type="button"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}
[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not(
    [type="time"]
  )::-webkit-calendar-picker-indicator {
  display: none !important;
}
[type="button"],
[type="submit"],
button {
  -webkit-appearance: button;
}
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
textarea {
  resize: vertical;
}
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}
::-webkit-inner-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
  padding: 0;
}
::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}
progress {
  vertical-align: baseline;
}
[hidden] {
  display: none !important;
}
.display-5 {
  font-size: var(--sizes-heading-display-5-size) !important;
  line-height: var(--sizes-heading-display-5-lh) !important;
  letter-spacing: var(--sizes-heading-display-5-lp) !important;
}
.h1 {
  font-size: var(--sizes-heading-h1-size) !important;
  line-height: var(--sizes-heading-h1-lh) !important;
  letter-spacing: var(--sizes-heading-h1-lp) !important;
}
.h2 {
  font-size: var(--sizes-heading-h2-size) !important;
  line-height: var(--sizes-heading-h2-lh) !important;
  letter-spacing: var(--sizes-heading-h2-lp) !important;
}
.h3 {
  font-size: var(--sizes-heading-h3-size) !important;
  line-height: var(--sizes-heading-h3-lh) !important;
  letter-spacing: var(--sizes-heading-h3-lp) !important;
}
.h4 {
  font-size: var(--sizes-heading-h4-size) !important;
  line-height: var(--sizes-heading-h4-lh) !important;
  letter-spacing: var(--sizes-heading-h4-lp) !important;
}
.h5 {
  font-size: var(--sizes-heading-h5-size) !important;
  line-height: var(--sizes-heading-h5-lh) !important;
  letter-spacing: var(--sizes-heading-h5-lp) !important;
}
.h6 {
  font-size: var(--sizes-heading-h6-size) !important;
  line-height: var(--sizes-heading-h6-lh) !important;
  letter-spacing: var(--sizes-heading-h6-lp) !important;
}
@media (min-width: 459px) {
  .sm\:display-2 {
    font-size: var(--sizes-heading-display-2-size) !important;
    line-height: var(--sizes-heading-display-2-lh) !important;
    letter-spacing: var(--sizes-heading-display-2-lp) !important;
  }
  .sm\:display-6 {
    font-size: var(--sizes-heading-display-6-size) !important;
    line-height: var(--sizes-heading-display-6-lh) !important;
    letter-spacing: var(--sizes-heading-display-6-lp) !important;
  }
  .sm\:h1 {
    font-size: var(--sizes-heading-h1-size) !important;
    line-height: var(--sizes-heading-h1-lh) !important;
    letter-spacing: var(--sizes-heading-h1-lp) !important;
  }
  .sm\:h2 {
    font-size: var(--sizes-heading-h2-size) !important;
    line-height: var(--sizes-heading-h2-lh) !important;
    letter-spacing: var(--sizes-heading-h2-lp) !important;
  }
  .sm\:h3 {
    font-size: var(--sizes-heading-h3-size) !important;
    line-height: var(--sizes-heading-h3-lh) !important;
    letter-spacing: var(--sizes-heading-h3-lp) !important;
  }
  .sm\:h4 {
    font-size: var(--sizes-heading-h4-size) !important;
    line-height: var(--sizes-heading-h4-lh) !important;
    letter-spacing: var(--sizes-heading-h4-lp) !important;
  }
  .sm\:h5 {
    font-size: var(--sizes-heading-h5-size) !important;
    line-height: var(--sizes-heading-h5-lh) !important;
    letter-spacing: var(--sizes-heading-h5-lp) !important;
  }
}
@media (min-width: 768px) {
  .md\:display-5 {
    font-size: var(--sizes-heading-display-5-size) !important;
    line-height: var(--sizes-heading-display-5-lh) !important;
    letter-spacing: var(--sizes-heading-display-5-lp) !important;
  }
  .md\:display-6 {
    font-size: var(--sizes-heading-display-6-size) !important;
    line-height: var(--sizes-heading-display-6-lh) !important;
    letter-spacing: var(--sizes-heading-display-6-lp) !important;
  }
  .md\:h1 {
    font-size: var(--sizes-heading-h1-size) !important;
    line-height: var(--sizes-heading-h1-lh) !important;
    letter-spacing: var(--sizes-heading-h1-lp) !important;
  }
  .md\:h2 {
    font-size: var(--sizes-heading-h2-size) !important;
    line-height: var(--sizes-heading-h2-lh) !important;
    letter-spacing: var(--sizes-heading-h2-lp) !important;
  }
  .md\:h3 {
    font-size: var(--sizes-heading-h3-size) !important;
    line-height: var(--sizes-heading-h3-lh) !important;
    letter-spacing: var(--sizes-heading-h3-lp) !important;
  }
  .md\:h4 {
    font-size: var(--sizes-heading-h4-size) !important;
    line-height: var(--sizes-heading-h4-lh) !important;
    letter-spacing: var(--sizes-heading-h4-lp) !important;
  }
  .md\:h5 {
    font-size: var(--sizes-heading-h5-size) !important;
    line-height: var(--sizes-heading-h5-lh) !important;
    letter-spacing: var(--sizes-heading-h5-lp) !important;
  }
}
@media (min-width: 992px) {
  .lg\:display-4 {
    font-size: var(--sizes-heading-display-4-size) !important;
    line-height: var(--sizes-heading-display-4-lh) !important;
    letter-spacing: var(--sizes-heading-display-4-lp) !important;
  }
  .lg\:display-5 {
    font-size: var(--sizes-heading-display-5-size) !important;
    line-height: var(--sizes-heading-display-5-lh) !important;
    letter-spacing: var(--sizes-heading-display-5-lp) !important;
  }
  .lg\:display-6 {
    font-size: var(--sizes-heading-display-6-size) !important;
    line-height: var(--sizes-heading-display-6-lh) !important;
    letter-spacing: var(--sizes-heading-display-6-lp) !important;
  }
  .lg\:h1 {
    font-size: var(--sizes-heading-h1-size) !important;
    line-height: var(--sizes-heading-h1-lh) !important;
    letter-spacing: var(--sizes-heading-h1-lp) !important;
  }
  .lg\:h2 {
    font-size: var(--sizes-heading-h2-size) !important;
    line-height: var(--sizes-heading-h2-lh) !important;
    letter-spacing: var(--sizes-heading-h2-lp) !important;
  }
  .lg\:h3 {
    font-size: var(--sizes-heading-h3-size) !important;
    line-height: var(--sizes-heading-h3-lh) !important;
    letter-spacing: var(--sizes-heading-h3-lp) !important;
  }
  .lg\:h4 {
    font-size: var(--sizes-heading-h4-size) !important;
    line-height: var(--sizes-heading-h4-lh) !important;
    letter-spacing: var(--sizes-heading-h4-lp) !important;
  }
  .lg\:h5 {
    font-size: var(--sizes-heading-h5-size) !important;
    line-height: var(--sizes-heading-h5-lh) !important;
    letter-spacing: var(--sizes-heading-h5-lp) !important;
  }
  .lg\:h6 {
    font-size: var(--sizes-heading-h6-size) !important;
    line-height: var(--sizes-heading-h6-lh) !important;
    letter-spacing: var(--sizes-heading-h6-lp) !important;
  }
}
@media (min-width: 1200px) {
  .xl\:display-2 {
    font-size: var(--sizes-heading-display-2-size) !important;
    line-height: var(--sizes-heading-display-2-lh) !important;
    letter-spacing: var(--sizes-heading-display-2-lp) !important;
  }
  .xl\:display-3 {
    font-size: var(--sizes-heading-display-3-size) !important;
    line-height: var(--sizes-heading-display-3-lh) !important;
    letter-spacing: var(--sizes-heading-display-3-lp) !important;
  }
  .xl\:display-4 {
    font-size: var(--sizes-heading-display-4-size) !important;
    line-height: var(--sizes-heading-display-4-lh) !important;
    letter-spacing: var(--sizes-heading-display-4-lp) !important;
  }
  .xl\:display-5 {
    font-size: var(--sizes-heading-display-5-size) !important;
    line-height: var(--sizes-heading-display-5-lh) !important;
    letter-spacing: var(--sizes-heading-display-5-lp) !important;
  }
  .xl\:display-6 {
    font-size: var(--sizes-heading-display-6-size) !important;
    line-height: var(--sizes-heading-display-6-lh) !important;
    letter-spacing: var(--sizes-heading-display-6-lp) !important;
  }
  .xl\:h1 {
    font-size: var(--sizes-heading-h1-size) !important;
    line-height: var(--sizes-heading-h1-lh) !important;
    letter-spacing: var(--sizes-heading-h1-lp) !important;
  }
  .xl\:h2 {
    font-size: var(--sizes-heading-h2-size) !important;
    line-height: var(--sizes-heading-h2-lh) !important;
    letter-spacing: var(--sizes-heading-h2-lp) !important;
  }
  .xl\:h3 {
    font-size: var(--sizes-heading-h3-size) !important;
    line-height: var(--sizes-heading-h3-lh) !important;
    letter-spacing: var(--sizes-heading-h3-lp) !important;
  }
  .xl\:h4 {
    font-size: var(--sizes-heading-h4-size) !important;
    line-height: var(--sizes-heading-h4-lh) !important;
    letter-spacing: var(--sizes-heading-h4-lp) !important;
  }
  .xl\:h5 {
    font-size: var(--sizes-heading-h5-size) !important;
    line-height: var(--sizes-heading-h5-lh) !important;
    letter-spacing: var(--sizes-heading-h5-lp) !important;
  }
}
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-family: var(--font-family-secondary);
  font-weight: 700;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}
.figure {
  display: inline-block;
}
.container {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 459px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.row.col-match {
  flex-wrap: wrap;
}
.row.col-match > *,
.row.col-match > [class*="col-"] {
  display: flex;
  flex-direction: column;
}
.row.col-match > * > *,
.row.col-match > [class*="col-"] > * {
  flex: 1;
}
.row.uc-grid:not(.uc-flex-wrap-top),
.row.uc-grid > :not(.uc-grid-margin) {
  margin-top: 0;
}
.expand-container {
  --grid-gap: var(--bs-gutter-x);
  --scroll-width: var(--body-scroll-width, 17px);
  --container-width: calc((100% + var(--grid-gap)) * var(--grid-total) / var(--grid-count) - var(--grid-gap));
  --expand-size: calc((100vw - var(--scroll-width) - var(--container-width)) / -2);
  margin-right: var(--expand-size);
  margin-left: var(--expand-size);
}
.g-0 .expand-container,
.g-0 html.bp-lg .g-0,
.g-0 html.bp-md .g-0,
.g-0 html.bp-sm .g-0,
.g-0 html.bp-xl .g-0,
.g-0 html.bp-xs .g-0,
.g-0 html.bp-xxl .g-0,
.gx-0 .expand-container,
.gx-0 html.bp-lg .g-0,
.gx-0 html.bp-md .g-0,
.gx-0 html.bp-sm .g-0,
.gx-0 html.bp-xl .g-0,
.gx-0 html.bp-xs .g-0,
.gx-0 html.bp-xxl .g-0 {
  --grid-gap: 0rem;
}
.grid.g-child-rows-12 {
  grid-template-rows: repeat(12, minmax(0, 1fr));
}
.child-cols > * {
  flex: 1;
}
.child-cols-3 > * {
  --grid-total: 12;
  --grid-count: 3;
  flex: 0 0 auto;
  width: 25%;
}
.child-cols-4 > * {
  --grid-total: 12;
  --grid-count: 4;
  flex: 0 0 auto;
  width: 33.33333333%;
}
.child-cols-6 > * {
  --grid-total: 12;
  --grid-count: 6;
  flex: 0 0 auto;
  width: 50%;
}
.child-cols-12 > * {
  --grid-total: 12;
  --grid-count: 12;
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 459px) {
  .grid.g-child-rows-12 {
    grid-template-rows: repeat(12, minmax(0, 1fr));
  }
  .sm\:child-cols > * {
    flex: 1 0 0%;
  }
  .sm\:child-cols-4 > * {
    --grid-total: 12;
    --grid-count: 4;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .sm\:child-cols-6 > * {
    --grid-total: 12;
    --grid-count: 6;
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 768px) {
  .grid.g-child-rows-12 {
    grid-template-rows: repeat(12, minmax(0, 1fr));
  }
  .md\:child-cols > * {
    flex: 1 0 0%;
  }
  .md\:child-cols-4 > * {
    --grid-total: 12;
    --grid-count: 4;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .md\:child-cols-6 > * {
    --grid-total: 12;
    --grid-count: 6;
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .grid.g-child-rows-12 {
    grid-template-rows: repeat(12, minmax(0, 1fr));
  }
  .lg\:child-cols > * {
    flex: 1 0 0%;
  }
  .lg\:child-cols-3 > * {
    --grid-total: 12;
    --grid-count: 3;
    flex: 0 0 auto;
    width: 25%;
  }
  .lg\:child-cols-4 > * {
    --grid-total: 12;
    --grid-count: 4;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .lg\:child-cols-5 > * {
    --grid-total: 12;
    --grid-count: 5;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .lg\:child-cols-6 > * {
    --grid-total: 12;
    --grid-count: 6;
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .grid.g-child-rows-12 {
    grid-template-rows: repeat(12, minmax(0, 1fr));
  }
  .xl\:child-cols-3 > * {
    --grid-total: 12;
    --grid-count: 3;
    flex: 0 0 auto;
    width: 25%;
  }
  .xl\:child-cols-4 > * {
    --grid-total: 12;
    --grid-count: 4;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}
@media (min-width: 1400px) {
  .grid.g-child-rows-12 {
    grid-template-rows: repeat(12, minmax(0, 1fr));
  }
}
.grid {
  display: grid;
  grid-template-rows: repeat(var(--bs-rows, 1), 1fr);
  grid-template-columns: repeat(var(--bs-columns, 12), 1fr);
  gap: var(--bs-gap, 1.5rem);
}
.col {
  flex: 1 0 0;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-4 {
  --grid-total: 12;
  --grid-count: 4;
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  --grid-total: 12;
  --grid-count: 5;
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-7 {
  --grid-total: 12;
  --grid-count: 7;
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  --grid-total: 12;
  --grid-count: 8;
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-11 {
  --grid-total: 12;
  --grid-count: 11;
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  --grid-total: 12;
  --grid-count: 12;
  flex: 0 0 auto;
  width: 100%;
}
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}
.g-1 {
  --bs-gutter-x: 0.5rem;
}
.g-1,
.gy-1 {
  --bs-gutter-y: 0.5rem;
}
.g-2,
.gx-2 {
  --bs-gutter-x: 1rem;
}
.g-2,
.gy-2 {
  --bs-gutter-y: 1rem;
}
.g-3 {
  --bs-gutter-x: 1.5rem;
}
.g-3,
.gy-3 {
  --bs-gutter-y: 1.5rem;
}
.g-4,
.gx-4 {
  --bs-gutter-x: 2rem;
}
.g-4,
.gy-4 {
  --bs-gutter-y: 2rem;
}
.g-5,
.gx-5 {
  --bs-gutter-x: 2.5rem;
}
.g-5 {
  --bs-gutter-y: 2.5rem;
}
.g-6,
.gx-6 {
  --bs-gutter-x: 3rem;
}
.g-6,
.gy-6 {
  --bs-gutter-y: 3rem;
}
.g-8 {
  --bs-gutter-x: 4rem;
}
.g-8 {
  --bs-gutter-y: 4rem;
}
.g-9 {
  --bs-gutter-x: 5rem;
}
.g-9,
.gy-9 {
  --bs-gutter-y: 5rem;
}
@media (min-width: 768px) {
  .col-md-2 {
    --grid-total: 12;
    --grid-count: 2;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-4 {
    --grid-total: 12;
    --grid-count: 4;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-6 {
    --grid-total: 12;
    --grid-count: 6;
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 459px) {
  .sm\:col {
    flex: 1 0 0%;
  }
  .sm\:col-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .sm\:col-4 {
    --grid-total: 12;
    --grid-count: 4;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .sm\:col-5 {
    --grid-total: 12;
    --grid-count: 5;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .sm\:col-6 {
    --grid-total: 12;
    --grid-count: 6;
    flex: 0 0 auto;
    width: 50%;
  }
  .sm\:col-8 {
    --grid-total: 12;
    --grid-count: 8;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .sm\:col-9 {
    --grid-total: 12;
    --grid-count: 9;
    flex: 0 0 auto;
    width: 75%;
  }
  .sm\:col-10 {
    --grid-total: 12;
    --grid-count: 10;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .sm\:g-2 {
    --bs-gutter-x: 1rem;
  }
  .sm\:g-2 {
    --bs-gutter-y: 1rem;
  }
  .sm\:g-3,
  .sm\:gx-3 {
    --bs-gutter-x: 1.5rem;
  }
  .sm\:g-3 {
    --bs-gutter-y: 1.5rem;
  }
  .sm\:g-4,
  .sm\:gx-4 {
    --bs-gutter-x: 2rem;
  }
  .sm\:g-4 {
    --bs-gutter-y: 2rem;
  }
  .sm\:g-6 {
    --bs-gutter-x: 3rem;
  }
  .sm\:g-6,
  .sm\:gy-6 {
    --bs-gutter-y: 3rem;
  }
  .sm\:g-8 {
    --bs-gutter-x: 4rem;
  }
  .sm\:g-8 {
    --bs-gutter-y: 4rem;
  }
}
@media (min-width: 768px) {
  .md\:col-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .md\:col-4 {
    --grid-total: 12;
    --grid-count: 4;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .md\:col-6 {
    --grid-total: 12;
    --grid-count: 6;
    flex: 0 0 auto;
    width: 50%;
  }
  .md\:col-8 {
    --grid-total: 12;
    --grid-count: 8;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .md\:g-4 {
    --bs-gutter-x: 2rem;
  }
  .md\:g-4 {
    --bs-gutter-y: 2rem;
  }
  .md\:gx-6 {
    --bs-gutter-x: 3rem;
  }
  .md\:g-8 {
    --bs-gutter-x: 4rem;
  }
  .md\:g-8 {
    --bs-gutter-y: 4rem;
  }
}
@media (min-width: 992px) {
  .lg\:col {
    flex: 1 0 0%;
  }
  .lg\:col-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .lg\:col-3 {
    --grid-total: 12;
    --grid-count: 3;
    flex: 0 0 auto;
    width: 25%;
  }
  .lg\:col-4 {
    --grid-total: 12;
    --grid-count: 4;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .lg\:col-5 {
    --grid-total: 12;
    --grid-count: 5;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .lg\:col-6 {
    --grid-total: 12;
    --grid-count: 6;
    flex: 0 0 auto;
    width: 50%;
  }
  .lg\:col-7 {
    --grid-total: 12;
    --grid-count: 7;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .lg\:col-8 {
    --grid-total: 12;
    --grid-count: 8;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .lg\:col-10 {
    --grid-total: 12;
    --grid-count: 10;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .lg\:g-0,
  .lg\:gx-0 {
    --bs-gutter-x: 0;
  }
  .lg\:g-0 {
    --bs-gutter-y: 0;
  }
  .lg\:g-2 {
    --bs-gutter-x: 1rem;
  }
  .lg\:g-2 {
    --bs-gutter-y: 1rem;
  }
  .lg\:g-3,
  .lg\:gx-3 {
    --bs-gutter-x: 1.5rem;
  }
  .lg\:g-3 {
    --bs-gutter-y: 1.5rem;
  }
  .lg\:g-4,
  .lg\:gx-4 {
    --bs-gutter-x: 2rem;
  }
  .lg\:g-4 {
    --bs-gutter-y: 2rem;
  }
  .lg\:g-6,
  .lg\:gx-6 {
    --bs-gutter-x: 3rem;
  }
  .lg\:g-6,
  .lg\:gy-6 {
    --bs-gutter-y: 3rem;
  }
  .lg\:g-8,
  .lg\:gx-8 {
    --bs-gutter-x: 4rem;
  }
  .lg\:g-8,
  .lg\:gy-8 {
    --bs-gutter-y: 4rem;
  }
}
@media (min-width: 1200px) {
  .xl\:col-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .xl\:col-3 {
    --grid-total: 12;
    --grid-count: 3;
    flex: 0 0 auto;
    width: 25%;
  }
  .xl\:col-4 {
    --grid-total: 12;
    --grid-count: 4;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .xl\:col-6 {
    --grid-total: 12;
    --grid-count: 6;
    flex: 0 0 auto;
    width: 50%;
  }
  .xl\:col-7 {
    --grid-total: 12;
    --grid-count: 7;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .xl\:g-3 {
    --bs-gutter-x: 1.5rem;
  }
  .xl\:g-3 {
    --bs-gutter-y: 1.5rem;
  }
  .xl\:g-4,
  .xl\:gx-4 {
    --bs-gutter-x: 2rem;
  }
  .xl\:g-4 {
    --bs-gutter-y: 2rem;
  }
  .xl\:g-6 {
    --bs-gutter-x: 3rem;
  }
  .xl\:g-6,
  .xl\:gy-6 {
    --bs-gutter-y: 3rem;
  }
  .xl\:g-8,
  .xl\:gx-8 {
    --bs-gutter-x: 4rem;
  }
  .xl\:g-8,
  .xl\:gy-8 {
    --bs-gutter-y: 4rem;
  }
  .xl\:g-9 {
    --bs-gutter-x: 5rem;
  }
  .xl\:g-9 {
    --bs-gutter-y: 5rem;
  }
  .xl\:g-10 {
    --bs-gutter-x: 8rem;
  }
  .xl\:g-10 {
    --bs-gutter-y: 8rem;
  }
}
.sep > * {
  position: relative;
}
.sep > :not(.uc-first-column)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.2px !important;
  border-left: 1px solid var(--border-color) !important;
}
[dir="rtl"] .sep > :not(.uc-first-column)::before {
  left: auto !important;
  right: -0.2px !important;
  border-left: 1rem !important;
  border-right: 1px solid var(--border-color) !important;
}
.sep > .uc-grid-margin::after {
  content: "";
  position: absolute;
  top: calc(var(--bs-gutter-y) / 2 * -1);
  left: calc(var(--bs-gutter-y) / 2);
  right: calc(var(--bs-gutter-y) / 2);
  border-top: 1px solid rgba(155, 155, 155, 0.2);
  transform: translateY(-50%);
}
.sep-x > :not(:first-child) {
  position: relative;
}
.sep-x > :not(:first-child)::before {
  content: "";
  position: absolute;
  top: calc(var(--bs-gutter-y) / 2 * -1);
  left: 15px;
  right: 15px;
  border-top: 1px solid rgba(155, 155, 155, 0.2);
  transform: translateY(-50%);
}
.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}
.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}
.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}
.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}
.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}
.vr {
  display: inline-block;
  align-self: stretch;
  width: var(--bs-border-width);
  background-color: currentcolor;
  opacity: 0.25;
}
.btn {
  --bs-btn-padding-x: 1rem;
  --bs-btn-padding-y: 0px;
  --bs-btn-font-family: var(--font-family-tertiary);
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 500;
  --bs-btn-line-height: 48px;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn.active:focus-visible,
.btn.show:focus-visible,
.btn:first-child:active:focus-visible,
:not(.btn-check) + .btn:active:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn.disabled,
.btn:disabled {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #1e9579;
  --bs-btn-border-color: #1e9579;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(25.5, 126.65, 102.85);
  --bs-btn-hover-border-color: rgb(24, 119.2, 96.8);
  --bs-btn-focus-shadow-rgb: 64, 165, 141;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(24, 119.2, 96.8);
  --bs-btn-active-border-color: rgb(22.5, 111.75, 90.75);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #1e9579;
  --bs-btn-disabled-border-color: #1e9579;
}
.btn-secondary {
  --bs-btn-color: #000;
  --bs-btn-bg: #f5eee9;
  --bs-btn-border-color: #f5eee9;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(246.5, 240.55, 236.3);
  --bs-btn-hover-border-color: rgb(246, 239.7, 235.2);
  --bs-btn-focus-shadow-rgb: 208, 202, 198;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(247, 241.4, 237.4);
  --bs-btn-active-border-color: rgb(246, 239.7, 235.2);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f5eee9;
  --bs-btn-disabled-border-color: #f5eee9;
}
.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #4caf50;
  --bs-btn-border-color: #4caf50;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(64.6, 148.75, 68);
  --bs-btn-hover-border-color: rgb(60.8, 140, 64);
  --bs-btn-focus-shadow-rgb: 103, 187, 106;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(60.8, 140, 64);
  --bs-btn-active-border-color: rgb(57, 131.25, 60);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #4caf50;
  --bs-btn-disabled-border-color: #4caf50;
}
.btn-info {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0099cc;
  --bs-btn-border-color: #0099cc;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(0, 130.05, 173.4);
  --bs-btn-hover-border-color: rgb(0, 122.4, 163.2);
  --bs-btn-focus-shadow-rgb: 38, 168, 212;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(0, 122.4, 163.2);
  --bs-btn-active-border-color: rgb(0, 114.75, 153);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0099cc;
  --bs-btn-disabled-border-color: #0099cc;
}
.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffb307;
  --bs-btn-border-color: #ffb307;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(255, 190.4, 44.2);
  --bs-btn-hover-border-color: rgb(255, 186.6, 31.8);
  --bs-btn-focus-shadow-rgb: 217, 152, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(255, 194.2, 56.6);
  --bs-btn-active-border-color: rgb(255, 186.6, 31.8);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffb307;
  --bs-btn-disabled-border-color: #ffb307;
}
.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #e44b4b;
  --bs-btn-border-color: #e44b4b;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(193.8, 63.75, 63.75);
  --bs-btn-hover-border-color: rgb(182.4, 60, 60);
  --bs-btn-focus-shadow-rgb: 232, 102, 102;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(182.4, 60, 60);
  --bs-btn-active-border-color: rgb(171, 56.25, 56.25);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #e44b4b;
  --bs-btn-disabled-border-color: #e44b4b;
}
.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(210.8, 211.65, 212.5);
  --bs-btn-hover-border-color: rgb(198.4, 199.2, 200);
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(198.4, 199.2, 200);
  --bs-btn-active-border-color: rgb(186, 186.75, 187.5);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}
.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(66.3, 69.7, 73.1);
  --bs-btn-hover-border-color: rgb(55.2, 58.8, 62.4);
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(77.4, 80.6, 83.8);
  --bs-btn-active-border-color: rgb(55.2, 58.8, 62.4);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}
.btn-gray {
  --bs-btn-color: #fff;
  --bs-btn-bg: #45454c;
  --bs-btn-border-color: #45454c;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(58.65, 58.65, 64.6);
  --bs-btn-hover-border-color: rgb(55.2, 55.2, 60.8);
  --bs-btn-focus-shadow-rgb: 97, 97, 103;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(55.2, 55.2, 60.8);
  --bs-btn-active-border-color: rgb(51.75, 51.75, 57);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #45454c;
  --bs-btn-disabled-border-color: #45454c;
}
.btn-primary-200 {
  --bs-btn-color: #000;
  --bs-btn-bg: rgb(165, 212.6, 201.4);
  --bs-btn-border-color: rgb(165, 212.6, 201.4);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(178.5, 218.96, 209.44);
  --bs-btn-hover-border-color: rgb(174, 216.84, 206.76);
  --bs-btn-focus-shadow-rgb: 140, 181, 171;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(183, 221.08, 212.12);
  --bs-btn-active-border-color: rgb(174, 216.84, 206.76);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgb(165, 212.6, 201.4);
  --bs-btn-disabled-border-color: rgb(165, 212.6, 201.4);
}
.btn-primary-700 {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgb(18, 89.4, 72.6);
  --bs-btn-border-color: rgb(18, 89.4, 72.6);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(15.3, 75.99, 61.71);
  --bs-btn-hover-border-color: rgb(14.4, 71.52, 58.08);
  --bs-btn-focus-shadow-rgb: 54, 114, 100;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(14.4, 71.52, 58.08);
  --bs-btn-active-border-color: rgb(13.5, 67.05, 54.45);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgb(18, 89.4, 72.6);
  --bs-btn-disabled-border-color: rgb(18, 89.4, 72.6);
}
.btn-tertiary {
  --bs-btn-color: #000;
  --bs-btn-bg: #ddff9a;
  --bs-btn-border-color: #ddff9a;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(226.1, 255, 169.15);
  --bs-btn-hover-border-color: rgb(224.4, 255, 164.1);
  --bs-btn-focus-shadow-rgb: 188, 217, 131;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(227.8, 255, 174.2);
  --bs-btn-active-border-color: rgb(224.4, 255, 164.1);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ddff9a;
  --bs-btn-disabled-border-color: #ddff9a;
}
.btn-outline-primary {
  --bs-btn-color: #1e9579;
  --bs-btn-border-color: #1e9579;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1e9579;
  --bs-btn-hover-border-color: #1e9579;
  --bs-btn-focus-shadow-rgb: 30, 149, 121;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #1e9579;
  --bs-btn-active-border-color: #1e9579;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #1e9579;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #1e9579;
  --bs-gradient: none;
}
.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}
.btn-outline-gray-100 {
  --bs-btn-color: rgb(217.8, 217.8, 219.2);
  --bs-btn-border-color: rgb(217.8, 217.8, 219.2);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(217.8, 217.8, 219.2);
  --bs-btn-hover-border-color: rgb(217.8, 217.8, 219.2);
  --bs-btn-focus-shadow-rgb: 218, 218, 219;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(217.8, 217.8, 219.2);
  --bs-btn-active-border-color: rgb(217.8, 217.8, 219.2);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(217.8, 217.8, 219.2);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(217.8, 217.8, 219.2);
  --bs-gradient: none;
}
.btn-outline-tertiary {
  --bs-btn-color: #ddff9a;
  --bs-btn-border-color: #ddff9a;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ddff9a;
  --bs-btn-hover-border-color: #ddff9a;
  --bs-btn-focus-shadow-rgb: 221, 255, 154;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ddff9a;
  --bs-btn-active-border-color: #ddff9a;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ddff9a;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ddff9a;
  --bs-gradient: none;
}
.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}
.btn-lg {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}
.btn-sm {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: var(--radius);
}
.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgb%285.2, 44, 101.2%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}
.table {
  --bs-table-bg: inherit !important;
  --bs-table-color: inherit !important;
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-emphasis-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 1rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.form-label {
  margin-bottom: 0.5rem;
}
.form-control {
  display: block;
  width: 100%;
  padding: 1rem;
  font-family: var(--font-text-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: var(--bs-body-color);
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control[type="file"] {
  overflow: hidden;
}
.form-control[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.25rem;
  margin: 0;
}
.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 1rem;
  margin: -1rem;
  margin-inline-end: 1rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border: 0 solid;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  border-color: inherit;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}
.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 1rem 0;
  margin-bottom: 0;
  line-height: 1.25rem;
  color: var(--bs-body-color);
  background-color: rgba(0, 0, 0, 0);
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext:focus {
  outline: 0;
}
.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
  padding-right: 0;
  padding-left: 0;
}
.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: var(--radius);
}
.form-control-sm::file-selector-button {
  padding: 0.75rem;
  margin: --0.75rem;
  margin-inline-end: 0.75rem;
}
.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  padding: 1.5rem;
  font-size: 1.125rem;
  border-radius: var(--radius);
}
.form-control-lg::file-selector-button {
  padding: 1.5rem;
  margin: --1.5rem;
  margin-inline-end: 1.5rem;
}
textarea.form-control {
  min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}
.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 2.25rem 1rem;
  font-family: var(--font-text-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: var(--bs-body-color);
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-select:focus {
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple],
.form-select[size]:not([size="1"]) {
  padding-right: 1rem;
  background-image: none;
}
.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--bs-body-color);
}
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}
.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  print-color-adjust: exact;
}
.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
}
.form-check-input[type="radio"] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type="checkbox"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type="radio"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type="checkbox"]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input:disabled ~ .form-check-label,
.form-check-input[disabled] ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  appearance: none;
  background-color: rgba(0, 0, 0, 0);
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  appearance: none;
  background-color: var(--color-primary);
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: var(--color-primary-400);
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  appearance: none;
  background-color: var(--color-primary);
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-range::-moz-range-thumb:active {
  background-color: var(--color-primary-400);
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}
.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-valid-color);
}
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}
.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: var(--bs-body-bg);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}
.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}
.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}
.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: 2px solid var(--bs-alert-border-color);
  --bs-alert-border-radius: 0;
  --bs-alert-link-color: inherit;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}
.alert-info {
  --bs-alert-color: var(--bs-info-text-emphasis);
  --bs-alert-bg: var(--bs-info-bg-subtle);
  --bs-alert-border-color: var(--bs-info-border-subtle);
  --bs-alert-link-color: var(--bs-info-text-emphasis);
}
.alert-warning {
  --bs-alert-color: var(--bs-warning-text-emphasis);
  --bs-alert-bg: var(--bs-warning-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-border-subtle);
  --bs-alert-link-color: var(--bs-warning-text-emphasis);
}
@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--bs-progress-height);
  }
}
.progress {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.75rem;
  --bs-progress-bg: var(--bs-secondary-bg);
  --bs-progress-border-radius: var(--bs-border-radius);
  --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #0d6efd;
  --bs-progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
}
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: var(--bs-body-color);
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
@media (min-width: 459px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
}
.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 0.5rem;
  --bs-tooltip-padding-y: 0.25rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 0.875rem;
  --bs-tooltip-color: var(--bs-body-bg);
  --bs-tooltip-bg: var(--bs-emphasis-color);
  --bs-tooltip-border-radius: var(--bs-border-radius);
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  margin: var(--bs-tooltip-margin);
  font-family: var(--font-family-primary);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}
:root {
  --bs-btn-close-filter: ;
  --bs-carousel-indicator-active-bg: #fff;
  --bs-carousel-caption-color: #fff;
  --bs-carousel-control-icon-filter: ;
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}
@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
@keyframes placeholder-wave {
  100% {
    mask-position: -200% 0%;
  }
}
.align-top {
  vertical-align: top !important;
}
.align-middle {
  vertical-align: middle !important;
}
.float-start {
  float: left !important;
}
.float-end {
  float: right !important;
}
.opacity-10 {
  opacity: 0.1 !important;
}
.opacity-20 {
  opacity: 0.2 !important;
}
.opacity-25 {
  opacity: 0.25 !important;
}
.opacity-40 {
  opacity: 0.4 !important;
}
.opacity-50 {
  opacity: 0.5 !important;
}
.opacity-60 {
  opacity: 0.6 !important;
}
.opacity-70 {
  opacity: 0.7 !important;
}
.opacity-75 {
  opacity: 0.75 !important;
}
.opacity-80 {
  opacity: 0.8 !important;
}
.opacity-100 {
  opacity: 1 !important;
}
:where(.uc-dark) .dark\:opacity-80 {
  opacity: 0.8 !important;
}
:where(.uc-dark) .dark\:opacity-90 {
  opacity: 0.9 !important;
}
.overflow-unset {
  overflow: unset !important;
}
.overflow-auto {
  overflow: auto !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-scroll {
  overflow: scroll !important;
}
.overflow-x-hidden {
  overflow-x: hidden !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
:where(.uc-dark) .dark\:d-inline-block {
  display: inline-block !important;
}
:where(.uc-dark) .dark\:d-block {
  display: block !important;
}
[dir="ltr"] .ltr\:d-block,
[dir="rtl"] .rtl\:d-block {
  display: block !important;
}
:where(.uc-dark) .dark\:d-inline-flex {
  display: inline-flex !important;
}
:where(.uc-dark) .dark\:d-none {
  display: none !important;
}
[dir="ltr"] .ltr\:d-none,
[dir="rtl"] .rtl\:d-none {
  display: none !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem -0.1rem var(--shadow-color) !important;
}
.shadow-xs {
  box-shadow: 0 0.125rem 0.25rem -0.1rem var(--shadow-color) !important;
}
.shadow-sm {
  box-shadow: 0 0.25rem 0.5rem -0.1rem var(--shadow-color) !important;
}
.hover\:shadow-md:hover,
.shadow-md {
  box-shadow: 0 0.5rem 1rem -0.1rem var(--shadow-color) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 1.5rem -0.1rem var(--shadow-color) !important;
}
.shadow-xl {
  box-shadow: 0 1.5rem 2rem -0.1rem var(--shadow-color) !important;
}
.shadow-none {
  box-shadow: none !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.top-auto {
  top: auto !important;
}
.top-0 {
  top: 0 !important;
}
.top-50 {
  top: 50% !important;
}
.top-100 {
  top: 100% !important;
}
.bottom-0 {
  bottom: 0 !important;
}
[dir="ltr"] .ltr\:start-auto,
[dir="rtl"] .rtl\:start-auto {
  left: auto !important;
}
.start-0,
[dir="ltr"] .ltr\:start-0,
[dir="rtl"] .rtl\:start-0 {
  left: 0 !important;
}
.start-50 {
  left: 50% !important;
}
.start-100 {
  left: 100% !important;
}
[dir="ltr"] .ltr\:end-auto,
[dir="rtl"] .rtl\:end-auto {
  right: auto !important;
}
.end-0,
[dir="ltr"] .ltr\:end-0,
[dir="rtl"] .rtl\:end-0 {
  right: 0 !important;
}
.translate-middle {
  transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
  transform: translateX(-50%) !important;
}
.translate-middle-y {
  transform: translateY(-50%) !important;
}
.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-0 {
  border: 0 !important;
}
.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-top-0 {
  border-top: 0 !important;
}
[dir="rtl"] .rtl\:border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-end-0 {
  border-right: 0 !important;
}
.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-start,
[dir="ltr"] .ltr\:border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-primary,
.hover\:border-primary:hover {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}
.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}
.border-dark,
.hover\:border-dark:hover {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}
.border-gray-50 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-gray-50-rgb), var(--bs-border-opacity)) !important;
}
.border-gray-100 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-gray-100-rgb), var(--bs-border-opacity)) !important;
}
.border-gray-200 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-gray-200-rgb), var(--bs-border-opacity)) !important;
}
.border-gray-300 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-gray-300-rgb), var(--bs-border-opacity)) !important;
}
.border-gray-900 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-gray-900-rgb), var(--bs-border-opacity)) !important;
}
.border-primary-300 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-300-rgb), var(--bs-border-opacity)) !important;
}
.border-primary-600 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-600-rgb), var(--bs-border-opacity)) !important;
}
.border-secondary-600 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-600-rgb), var(--bs-border-opacity)) !important;
}
.border-tertiary,
.hover\:border-tertiary:hover {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-tertiary-rgb), var(--bs-border-opacity)) !important;
}
.border-tertiary-50 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-tertiary-50-rgb), var(--bs-border-opacity)) !important;
}
.border-tertiary-100 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-tertiary-100-rgb), var(--bs-border-opacity)) !important;
}
.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}
:where(.uc-dark) .dark\:border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}
:where(.uc-dark) .dark\:border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}
:where(.uc-dark) .dark\:border-gray-300 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-gray-300-rgb), var(--bs-border-opacity)) !important;
}
:where(.uc-dark) .dark\:border-gray-400 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-gray-400-rgb), var(--bs-border-opacity)) !important;
}
:where(.uc-dark) .dark\:border-gray-500 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-gray-500-rgb), var(--bs-border-opacity)) !important;
}
:where(.uc-dark) .dark\:border-gray-600 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-gray-600-rgb), var(--bs-border-opacity)) !important;
}
:where(.uc-dark) .dark\:border-gray-700 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-gray-700-rgb), var(--bs-border-opacity)) !important;
}
:where(.uc-dark) .dark\:border-gray-800 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-gray-800-rgb), var(--bs-border-opacity)) !important;
}
:where(.uc-dark) .dark\:border-gray-900 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-gray-900-rgb), var(--bs-border-opacity)) !important;
}
:where(.uc-dark) .dark\:border-tertiary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-tertiary-rgb), var(--bs-border-opacity)) !important;
}
:where(.uc-dark) .dark\:border-tertiary-600 {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-tertiary-600-rgb), var(--bs-border-opacity)) !important;
}
:where(.uc-dark) .dark\:border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}
.border-1 {
  border-width: 1px !important;
}
.border-2 {
  border-width: 2px !important;
}
.border-3 {
  border-width: 3px !important;
}
.border-5 {
  border-width: 5px !important;
}
.border-opacity-5 {
  --bs-border-opacity: 0.05;
}
.border-opacity-10 {
  --bs-border-opacity: 0.1;
}
.border-opacity-15 {
  --bs-border-opacity: 0.15;
}
.border-opacity-20 {
  --bs-border-opacity: 0.2;
}
.hover\:border-opacity-40:hover {
  --bs-border-opacity: 0.4;
}
:where(.uc-dark) .dark\:border-opacity-0 {
  --bs-border-opacity: 0;
}
:where(.uc-dark) .dark\:border-opacity-10 {
  --bs-border-opacity: 0.1;
}
:where(.uc-dark) .dark\:border-opacity-15 {
  --bs-border-opacity: 0.15;
}
:where(.uc-dark) .dark\:border-opacity-20 {
  --bs-border-opacity: 0.2;
}
:where(.uc-dark) .dark\:border-opacity-30 {
  --bs-border-opacity: 0.3;
}
.w-4px {
  width: 4px !important;
}
.w-16px {
  width: 16px !important;
}
.w-18px {
  width: 18px !important;
}
.w-20px {
  width: 20px !important;
}
.w-24px {
  width: 24px !important;
}
.w-32px {
  width: 100px !important;
}
.w-36px {
  width: 36px !important;
}
.w-40px {
  width: 40px !important;
}
.w-48px {
  width: 48px !important;
}
.w-56px {
  width: 56px !important;
}
.w-64px {
  width: 64px !important;
}
.w-72px {
  width: 72px !important;
}
.w-80px {
  width: 80px !important;
}
.w-96px {
  width: 96px !important;
}
.w-100px {
  width: 100px !important;
}
.w-128px {
  width: 128px !important;
}
.w-150px {
  width: 150px !important;
}
.w-200px {
  width: 200px !important;
}
.w-250px {
  width: 250px !important;
}
.w-300px {
  width: 300px !important;
}
.w-350px {
  width: 350px !important;
}
.w-500px {
  width: 500px !important;
}
.w-550px {
  width: 550px !important;
}
.w-600px {
  width: 600px !important;
}
.w-750px {
  width: 750px !important;
}
.w-800px {
  width: 800px !important;
}
.w-1000px {
  width: 1000px !important;
}
.w-1280px {
  width: 1280px !important;
}
.w-md {
  width: 720px !important;
}
.w-1\/6 {
  width: 16.6666667% !important;
}
.w-1\/5 {
  width: 20% !important;
}
.w-3\/4 {
  width: 75% !important;
}
.w-1\/3 {
  width: 33.3333333% !important;
}
.w-1\/2 {
  width: 50% !important;
}
.w-100,
.w-full {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.max-w-40px {
  max-width: 40px !important;
}
.max-w-48px {
  max-width: 48px !important;
}
.max-w-80px {
  max-width: 80px !important;
}
.max-w-100px {
  max-width: 100px !important;
}
.max-w-128px {
  max-width: 128px !important;
}
.max-w-250px {
  max-width: 250px !important;
}
.max-w-400px {
  max-width: 400px !important;
}
.max-w-450px {
  max-width: 450px !important;
}
.max-w-500px {
  max-width: 500px !important;
}
.max-w-550px {
  max-width: 550px !important;
}
.max-w-600px {
  max-width: 600px !important;
}
.max-w-650px {
  max-width: 650px !important;
}
.max-w-700px {
  max-width: 700px !important;
}
.max-w-750px {
  max-width: 750px !important;
}
.max-w-800px {
  max-width: 800px !important;
}
.max-w-850px {
  max-width: 850px !important;
}
.max-w-900px {
  max-width: 900px !important;
}
.max-w-950px {
  max-width: 950px !important;
}
.max-w-1000px {
  max-width: 1000px !important;
}
.max-w-1440px {
  max-width: 1440px !important;
}
.max-w-xs {
  max-width: 320px !important;
}
.max-w-sm {
  max-width: 640px !important;
}
.max-w-md {
  max-width: 720px !important;
}
.max-w-lg {
  max-width: 1040px !important;
}
.max-w-xl {
  max-width: 1280px !important;
}
.max-w-100 {
  max-width: 100% !important;
}
.h-2px {
  height: 2px !important;
}
.h-4px {
  height: 4px !important;
}
.h-8px {
  height: 8px !important;
}
.h-16px {
  height: 16px !important;
}
.h-24px {
  height: 24px !important;
}
.h-32px {
  height: 32px !important;
}
.h-36px {
  height: 36px !important;
}
.h-40px {
  height: 40px !important;
}
.h-48px {
  height: 48px !important;
}
.h-56px {
  height: 56px !important;
}
.h-64px {
  height: 64px !important;
}
.h-72px {
  height: 72px !important;
}
.h-80px {
  height: 80px !important;
}
.h-96px {
  height: 96px !important;
}
.h-100px {
  height: 100px !important;
}
.h-150px {
  height: 150px !important;
}
.h-200px {
  height: 200px !important;
}
.h-250px {
  height: 250px !important;
}
.h-300px {
  height: 300px !important;
}
.h-400px {
  height: 400px !important;
}
.h-450px {
  height: 450px !important;
}
.h-500px {
  height: 500px !important;
}
.h-550px {
  height: 550px !important;
}
.h-600px {
  height: 600px !important;
}
.h-700px {
  height: 700px !important;
}
.h-750px {
  height: 750px !important;
}
.h-1000px {
  height: 1000px !important;
}
.h-1280px {
  height: 1280px !important;
}
.h-4\/5 {
  height: 80% !important;
}
.h-2\/3 {
  height: 66.6666667% !important;
}
.h-1\/2 {
  height: 50% !important;
}
.h-100 {
  height: 100% !important;
}
.h-screen {
  height: 100vh !important;
}
.max-h-80px {
  max-height: 80px !important;
}
.max-h-200px {
  max-height: 200px !important;
}
.max-h-250px {
  max-height: 250px !important;
}
.max-h-300px {
  max-height: 300px !important;
}
.max-h-400px {
  max-height: 400px !important;
}
.max-h-550px {
  max-height: 550px !important;
}
.max-h-xs {
  max-height: 320px !important;
}
.max-h-sm {
  max-height: 640px !important;
}
.flex-auto {
  flex: 1 1 auto !important;
}
.flex-1 {
  flex: 1 1 0% !important;
}
.flex-none {
  flex: none !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.justify-start {
  justify-content: flex-start !important;
}
.justify-center {
  justify-content: center !important;
}
.justify-end {
  justify-content: flex-end !important;
}
.justify-between {
  justify-content: space-between !important;
}
.items-start {
  align-items: flex-start !important;
}
.items-center {
  align-items: center !important;
}
.items-end {
  align-items: flex-end !important;
}
.self-center {
  align-self: center !important;
}
[dir="rtl"] .rtl\:order-first {
  order: -1 !important;
}
.order-0,
[dir="rtl"] .rtl\:order-0 {
  order: 0 !important;
}
.order-1 {
  order: 1 !important;
}
.order-2 {
  order: 2 !important;
}
.order-3 {
  order: 3 !important;
}
.m-0 {
  margin: 0 !important;
}
.m-narrow {
  margin: 0.25rem !important;
}
.m-1 {
  margin: 0.5rem !important;
}
.m-2 {
  margin: 1rem !important;
}
.m-3 {
  margin: 1.5rem !important;
}
.m-4 {
  margin: 2rem !important;
}
.m-auto {
  margin: auto !important;
}
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.mx-narrow {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
.mx-1 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.mx-2 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.mx-3 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-2 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-8 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-narrow {
  margin-top: 0.25rem !important;
}
.mt-1 {
  margin-top: 0.5rem !important;
}
.mt-2 {
  margin-top: 1rem !important;
}
.mt-3 {
  margin-top: 1.5rem !important;
}
.mt-4 {
  margin-top: 2rem !important;
}
.mt-5 {
  margin-top: 2.5rem !important;
}
.mt-6 {
  margin-top: 3rem !important;
}
.mt-7 {
  margin-top: 3.5rem !important;
}
.mt-8 {
  margin-top: 4rem !important;
}
[dir="rtl"] .rtl\:me-0 {
  margin-right: 0 !important;
}
.me-narrow,
[dir="ltr"] .ltr\:me-narrow,
[dir="rtl"] .rtl\:me-narrow {
  margin-right: 0.25rem !important;
}
.me-1,
[dir="ltr"] .ltr\:me-1,
[dir="rtl"] .rtl\:me-1 {
  margin-right: 0.5rem !important;
}
[dir="ltr"] .ltr\:me-2,
[dir="rtl"] .rtl\:me-2 {
  margin-right: 1rem !important;
}
.me-3 {
  margin-right: 1.5rem !important;
}
.me-4 {
  margin-right: 2rem !important;
}
[dir="rtl"] .rtl\:me-6 {
  margin-right: 3rem !important;
}
[dir="ltr"] .ltr\:me-8 {
  margin-right: 4rem !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-narrow {
  margin-bottom: 0.25rem !important;
}
.mb-1 {
  margin-bottom: 0.5rem !important;
}
.mb-2 {
  margin-bottom: 1rem !important;
}
.mb-3 {
  margin-bottom: 1.5rem !important;
}
.mb-4 {
  margin-bottom: 2rem !important;
}
.mb-5 {
  margin-bottom: 2.5rem !important;
}
.mb-6 {
  margin-bottom: 3rem !important;
}
[dir="ltr"] .ltr\:ms-0 {
  margin-left: 0 !important;
}
.ms-narrow,
[dir="ltr"] .ltr\:ms-narrow,
[dir="rtl"] .rtl\:ms-narrow {
  margin-left: 0.25rem !important;
}
.ms-1,
[dir="ltr"] .ltr\:ms-1,
[dir="rtl"] .rtl\:ms-1 {
  margin-left: 0.5rem !important;
}
.ms-2,
[dir="ltr"] .ltr\:ms-2,
[dir="rtl"] .rtl\:ms-2 {
  margin-left: 1rem !important;
}
.ms-3,
[dir="rtl"] .rtl\:ms-3 {
  margin-left: 1.5rem !important;
}
.ms-4 {
  margin-left: 2rem !important;
}
[dir="ltr"] .ltr\:ms-6 {
  margin-left: 3rem !important;
}
[dir="rtl"] .rtl\:ms-8 {
  margin-left: 4rem !important;
}
.mx-n1 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}
.mt-nnarrow {
  margin-top: -0.25rem !important;
}
.mt-n3 {
  margin-top: -1.5rem !important;
}
.mt-n4 {
  margin-top: -2rem !important;
}
.mt-n7 {
  margin-top: -3.5rem !important;
}
.mt-n8 {
  margin-top: -4rem !important;
}
.mt-n9 {
  margin-top: -6rem !important;
}
.me-n2,
[dir="rtl"] .rtl\:me-n2 {
  margin-right: -1rem !important;
}
.me-n3 {
  margin-right: -1.5rem !important;
}
.me-n6 {
  margin-right: -3rem !important;
}
.me-n8,
[dir="ltr"] .ltr\:me-n8 {
  margin-right: -4rem !important;
}
.mb-n4 {
  margin-bottom: -2rem !important;
}
.mb-n8 {
  margin-bottom: -4rem !important;
}
.ms-n2,
[dir="ltr"] .ltr\:ms-n2 {
  margin-left: -1rem !important;
}
.ms-n3 {
  margin-left: -1.5rem !important;
}
.ms-n6,
[dir="rtl"] .rtl\:ms-n6 {
  margin-left: -3rem !important;
}
.ms-n8,
[dir="rtl"] .rtl\:ms-n8 {
  margin-left: -4rem !important;
}
.p-0 {
  padding: 0 !important;
}
.p-narrow {
  padding: 0.25rem !important;
}
.p-1 {
  padding: 0.5rem !important;
}
.p-2 {
  padding: 1rem !important;
}
.p-3 {
  padding: 1.5rem !important;
}
.p-4 {
  padding: 2rem !important;
}
.p-5 {
  padding: 2.5rem !important;
}
.p-6 {
  padding: 3rem !important;
}
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.px-narrow {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.px-1 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.px-2 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.px-3 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.px-4 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}
.px-5 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}
.px-6 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.px-8 {
  padding-right: 4rem !important;
  padding-left: 4rem !important;
}
.py-narrow {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-1 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-2 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-3 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.py-5 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.py-8 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.py-9 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}
.py-10 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-2 {
  padding-top: 1rem !important;
}
.pt-3 {
  padding-top: 1.5rem !important;
}
.pt-4 {
  padding-top: 2rem !important;
}
.pt-6 {
  padding-top: 3rem !important;
}
.pt-8 {
  padding-top: 4rem !important;
}
.pt-9 {
  padding-top: 6rem !important;
}
[dir="rtl"] .rtl\:pe-1 {
  padding-right: 0.5rem !important;
}
.pe-3,
[dir="rtl"] .rtl\:pe-3 {
  padding-right: 1.5rem !important;
}
[dir="ltr"] .ltr\:pe-4 {
  padding-right: 2rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-narrow {
  padding-bottom: 0.25rem !important;
}
.pb-1 {
  padding-bottom: 0.5rem !important;
}
.pb-2 {
  padding-bottom: 1rem !important;
}
.pb-3 {
  padding-bottom: 1.5rem !important;
}
.pb-4 {
  padding-bottom: 2rem !important;
}
.pb-6 {
  padding-bottom: 3rem !important;
}
.pb-7 {
  padding-bottom: 3.5rem !important;
}
.pb-8 {
  padding-bottom: 4rem !important;
}
.pb-10 {
  padding-bottom: 8rem !important;
}
[dir="ltr"] .ltr\:ps-1 {
  padding-left: 0.5rem !important;
}
[dir="ltr"] .ltr\:ps-3 {
  padding-left: 1.5rem !important;
}
[dir="rtl"] .rtl\:ps-4 {
  padding-left: 2rem !important;
}
.gap-0 {
  gap: 0 !important;
}
.gap-narrow {
  gap: 0.25rem !important;
}
.gap-1 {
  gap: 0.5rem !important;
}
.gap-2 {
  gap: 1rem !important;
}
.gap-3 {
  gap: 1.5rem !important;
}
.gap-4 {
  gap: 2rem !important;
}
.gap-5 {
  gap: 2.5rem !important;
}
.gap-6 {
  gap: 3rem !important;
}
.gap-7 {
  gap: 3.5rem !important;
}
.gap-8 {
  gap: 4rem !important;
}
.gap-9 {
  gap: 6rem !important;
}
.fs-1 {
  font-size: 2rem !important;
}
.fs-2 {
  font-size: 1.75rem !important;
}
.fs-3 {
  font-size: 1.5rem !important;
}
.fs-4 {
  font-size: 1.25rem !important;
}
.fs-5 {
  font-size: 1.125rem !important;
}
.fs-6 {
  font-size: 1rem !important;
}
.fs-7 {
  font-size: 0.875rem !important;
}
.fs-8 {
  font-size: 0.75rem !important;
}
.fst-italic {
  font-style: italic !important;
}
.fw-light {
  font-weight: 300 !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-bolder {
  font-weight: 800 !important;
}
.lh-sm {
  line-height: 0.9 !important;
}
[dir="rtl"] .rtl\:lh-md {
  line-height: 1.1 !important;
}
.lh-lg,
[dir="rtl"] .rtl\:lh-lg {
  line-height: 1.2 !important;
}
.lh-xxl {
  line-height: 1.5 !important;
}
.text-start,
[dir="rtl"] .rtl\:text-start {
  text-align: left !important;
}
.text-end,
[dir="rtl"] .rtl\:text-end {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-none {
  text-decoration: none !important;
}
.text-underline {
  text-decoration: underline !important;
}
.text-line-through {
  text-decoration: line-through !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.hover\:text-primary:hover,
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}
.hover\:text-danger:hover,
.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.text-gray {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-rgb), var(--bs-text-opacity)) !important;
}
.text-gray-100 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-100-rgb), var(--bs-text-opacity)) !important;
}
.text-gray-200 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-200-rgb), var(--bs-text-opacity)) !important;
}
.text-gray-300 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-300-rgb), var(--bs-text-opacity)) !important;
}
.text-gray-400 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-400-rgb), var(--bs-text-opacity)) !important;
}
.text-gray-500 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-500-rgb), var(--bs-text-opacity)) !important;
}
.text-gray-600 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-600-rgb), var(--bs-text-opacity)) !important;
}
.text-gray-900 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-900-rgb), var(--bs-text-opacity)) !important;
}
.text-primary-200 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-200-rgb), var(--bs-text-opacity)) !important;
}
.text-primary-400 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-400-rgb), var(--bs-text-opacity)) !important;
}
.hover\:text-primary-600:hover {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-600-rgb), var(--bs-text-opacity)) !important;
}
.text-primary-700 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-700-rgb), var(--bs-text-opacity)) !important;
}
.text-secondary-200 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-200-rgb), var(--bs-text-opacity)) !important;
}
.text-secondary-300 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-300-rgb), var(--bs-text-opacity)) !important;
}
.text-secondary-900 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-900-rgb), var(--bs-text-opacity)) !important;
}
.text-warning-600 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-600-rgb), var(--bs-text-opacity)) !important;
}
.text-blue {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-blue-rgb), var(--bs-text-opacity)) !important;
}
.text-indigo {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-indigo-rgb), var(--bs-text-opacity)) !important;
}
.text-purple-600 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-purple-600-rgb), var(--bs-text-opacity)) !important;
}
.text-red {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-red-rgb), var(--bs-text-opacity)) !important;
}
.text-orange {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-orange-rgb), var(--bs-text-opacity)) !important;
}
.text-yellow {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-yellow-rgb), var(--bs-text-opacity)) !important;
}
.text-green {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-green-rgb), var(--bs-text-opacity)) !important;
}
.text-lime-200 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-lime-200-rgb), var(--bs-text-opacity)) !important;
}
.hover\:text-tertiary:hover,
.text-tertiary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-tertiary-rgb), var(--bs-text-opacity)) !important;
}
.text-tertiary-100 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-tertiary-100-rgb), var(--bs-text-opacity)) !important;
}
.text-tertiary-200 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-tertiary-200-rgb), var(--bs-text-opacity)) !important;
}
.text-tertiary-400 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-tertiary-400-rgb), var(--bs-text-opacity)) !important;
}
.text-tertiary-700 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-tertiary-700-rgb), var(--bs-text-opacity)) !important;
}
.text-tertiary-900 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-tertiary-900-rgb), var(--bs-text-opacity)) !important;
}
.hover\:text-black:hover,
.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
.hover\:text-white:hover,
.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}
:where(.uc-dark) .dark\:hover\:text-primary:hover,
:where(.uc-dark) .dark\:text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:hover\:text-dark:hover,
:where(.uc-dark) .dark\:text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:text-gray-100 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-100-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:text-gray-200 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-200-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:text-gray-300 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-300-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:text-gray-700 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-700-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:hover\:text-gray-900:hover {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-900-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:text-primary-400 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-400-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:hover\:text-primary-700:hover,
:where(.uc-dark) .dark\:text-primary-700 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-700-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:text-blue {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-blue-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:text-indigo {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-indigo-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:text-orange {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-orange-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:text-yellow-400 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-yellow-400-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:hover\:text-tertiary:hover,
:where(.uc-dark) .dark\:text-tertiary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-tertiary-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:text-tertiary-200 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-tertiary-200-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:text-tertiary-400 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-tertiary-400-rgb), var(--bs-text-opacity)) !important;
}
:where(.uc-dark) .dark\:hover\:text-white:hover,
:where(.uc-dark) .dark\:text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-opacity-20 {
  --bs-text-opacity: 0.2;
}
.text-opacity-60 {
  --bs-text-opacity: 0.6;
}
.hover\:text-opacity-70:hover,
.text-opacity-70 {
  --bs-text-opacity: 0.7;
}
.text-opacity-75 {
  --bs-text-opacity: 0.75;
}
.text-opacity-80 {
  --bs-text-opacity: 0.8;
}
:where(.uc-dark) .dark\:text-opacity-10 {
  --bs-text-opacity: 0.1;
}
:where(.uc-dark) .dark\:text-opacity-50 {
  --bs-text-opacity: 0.5;
}
:where(.uc-dark) .dark\:text-opacity-60 {
  --bs-text-opacity: 0.6;
}
:where(.uc-dark) .dark\:text-opacity-70 {
  --bs-text-opacity: 0.7;
}
:where(.uc-dark) .dark\:text-opacity-100 {
  --bs-text-opacity: 1;
}
.bg-primary,
.hover\:bg-primary:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-secondary,
.hover\:bg-secondary:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}
.bg-dark,
.hover\:bg-dark:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.bg-gray-25 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-25-rgb), var(--bs-bg-opacity)) !important;
}
.bg-gray-50,
.hover\:bg-gray-50:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-50-rgb), var(--bs-bg-opacity)) !important;
}
.bg-gray-100 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-100-rgb), var(--bs-bg-opacity)) !important;
}
.bg-gray-300 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-300-rgb), var(--bs-bg-opacity)) !important;
}
.hover\:bg-gray-600:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-600-rgb), var(--bs-bg-opacity)) !important;
}
.bg-gray-800 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-800-rgb), var(--bs-bg-opacity)) !important;
}
.bg-gray-900 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-900-rgb), var(--bs-bg-opacity)) !important;
}
.bg-primary-25 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-25-rgb), var(--bs-bg-opacity)) !important;
}
.bg-primary-50 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-50-rgb), var(--bs-bg-opacity)) !important;
}
.bg-primary-100 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-100-rgb), var(--bs-bg-opacity)) !important;
}
.bg-primary-300 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-300-rgb), var(--bs-bg-opacity)) !important;
}
.bg-primary-400 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-400-rgb), var(--bs-bg-opacity)) !important;
}
.bg-primary-600 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-600-rgb), var(--bs-bg-opacity)) !important;
}
.bg-primary-700 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-700-rgb), var(--bs-bg-opacity)) !important;
}
.bg-secondary-300,
.hover\:bg-secondary-300:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-300-rgb), var(--bs-bg-opacity)) !important;
}
.bg-warning-100 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-100-rgb), var(--bs-bg-opacity)) !important;
}
.bg-danger-100 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-100-rgb), var(--bs-bg-opacity)) !important;
}
.bg-blue {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-blue-rgb), var(--bs-bg-opacity)) !important;
}
.bg-blue-100 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-blue-100-rgb), var(--bs-bg-opacity)) !important;
}
.bg-blue-600 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-blue-600-rgb), var(--bs-bg-opacity)) !important;
}
.bg-indigo {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-indigo-rgb), var(--bs-bg-opacity)) !important;
}
.bg-indigo-100 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-indigo-100-rgb), var(--bs-bg-opacity)) !important;
}
.bg-purple-100 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-purple-100-rgb), var(--bs-bg-opacity)) !important;
}
.bg-red {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-red-rgb), var(--bs-bg-opacity)) !important;
}
.bg-orange {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-orange-rgb), var(--bs-bg-opacity)) !important;
}
.bg-orange-100 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-orange-100-rgb), var(--bs-bg-opacity)) !important;
}
.bg-yellow {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-yellow-rgb), var(--bs-bg-opacity)) !important;
}
.bg-yellow-400 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-yellow-400-rgb), var(--bs-bg-opacity)) !important;
}
.bg-green {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-green-rgb), var(--bs-bg-opacity)) !important;
}
.bg-tertiary,
.hover\:bg-tertiary:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-tertiary-50 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-50-rgb), var(--bs-bg-opacity)) !important;
}
.bg-tertiary-300 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-300-rgb), var(--bs-bg-opacity)) !important;
}
.bg-tertiary-700 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-700-rgb), var(--bs-bg-opacity)) !important;
}
.bg-tertiary-800 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-800-rgb), var(--bs-bg-opacity)) !important;
}
.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
.bg-white,
.hover\:bg-white:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: rgba(0, 0, 0, 0) !important;
}
:where(.uc-dark) .dark\:bg-primary,
:where(.uc-dark) .dark\:hover\:bg-primary:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-secondary,
:where(.uc-dark) .dark\:hover\:bg-secondary:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-gray-100 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-100-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-gray-300 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-300-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:hover\:bg-gray-500:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-500-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-gray-600 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-600-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-gray-700,
:where(.uc-dark) .dark\:hover\:bg-gray-700:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-700-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-gray-800,
:where(.uc-dark) .dark\:hover\:bg-gray-800:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-800-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-gray-900 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-900-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-primary-700 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-700-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-blue {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-blue-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-indigo {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-indigo-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-orange {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-orange-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-tertiary,
:where(.uc-dark) .dark\:hover\:bg-tertiary:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:hover\:bg-tertiary-300:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-300-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-tertiary-600 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-600-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-tertiary-700 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-700-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-tertiary-800 {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-800-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-white,
:where(.uc-dark) .dark\:hover\:bg-white:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
:where(.uc-dark) .dark\:bg-transparent {
  --bs-bg-opacity: 1;
  background-color: rgba(0, 0, 0, 0) !important;
}
.bg-opacity-5,
.hover\:bg-opacity-5:hover {
  --bs-bg-opacity: 0.05;
}
.bg-opacity-10,
.hover\:bg-opacity-10:hover {
  --bs-bg-opacity: 0.1;
}
.bg-opacity-15 {
  --bs-bg-opacity: 0.15;
}
.bg-opacity-40 {
  --bs-bg-opacity: 0.4;
}
.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}
.bg-opacity-70,
.hover\:bg-opacity-70:hover {
  --bs-bg-opacity: 0.7;
}
.bg-opacity-80 {
  --bs-bg-opacity: 0.8;
}
.bg-opacity-90,
.hover\:bg-opacity-90:hover {
  --bs-bg-opacity: 0.9;
}
:where(.uc-dark) .dark\:bg-opacity-0 {
  --bs-bg-opacity: 0;
}
:where(.uc-dark) .dark\:bg-opacity-5 {
  --bs-bg-opacity: 0.05;
}
:where(.uc-dark) .dark\:bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}
:where(.uc-dark) .dark\:bg-opacity-15 {
  --bs-bg-opacity: 0.15;
}
:where(.uc-dark) .dark\:bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}
:where(.uc-dark) .dark\:hover\:bg-opacity-80:hover {
  --bs-bg-opacity: 0.8;
}
.rounded {
  border-radius: var(--radius) !important;
}
.rounded-default {
  border-radius: 8px !important;
}
.rounded-1 {
  border-radius: 4px !important;
}
.rounded-1-5 {
  border-radius: 12px !important;
}
.rounded-2 {
  border-radius: 16px !important;
}
.rounded-3 {
  border-radius: 24px !important;
}
.rounded-4 {
  border-radius: 32px !important;
}
.rounded-5 {
  border-radius: 40px !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-pill {
  border-radius: 50rem !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.rounded-top-2 {
  border-top-left-radius: 16px !important;
  border-top-right-radius: 16px !important;
}
.rounded-bottom-1-5 {
  border-bottom-right-radius: 12px !important;
  border-bottom-left-radius: 12px !important;
}
.rounded-bottom-2 {
  border-bottom-right-radius: 16px !important;
  border-bottom-left-radius: 16px !important;
}
.rounded-bottom-3 {
  border-bottom-right-radius: 24px !important;
  border-bottom-left-radius: 24px !important;
}
.rounded-start-default {
  border-bottom-left-radius: 8px !important;
  border-top-left-radius: 8px !important;
}
.rounded-start-2 {
  border-bottom-left-radius: 16px !important;
  border-top-left-radius: 16px !important;
}
.z-1 {
  z-index: 1 !important;
}
.z-1n {
  z-index: -1 !important;
}
.z-2 {
  z-index: 2 !important;
}
.z-99 {
  z-index: 99 !important;
}
.z-999 {
  z-index: 999 !important;
}
.z-1080 {
  z-index: 1080 !important;
}
.z-0 {
  z-index: 0 !important;
}
.border-dashed {
  border-style: dashed !important;
}
.bg-cover {
  background-size: cover !important;
}
.bg-contain {
  background-size: contain !important;
}
.g-row-span-2 {
  grid-row: span 2 / span 2 !important;
}
.g-row-span-3 {
  grid-row: span 3 / span 3 !important;
}
.g-row-start-1 {
  grid-row-start: 1 !important;
}
.g-row-start-3 {
  grid-row-start: 3 !important;
}
.g-row-start-5 {
  grid-row-start: 5 !important;
}
.g-row-start-7 {
  grid-row-start: 7 !important;
}
.g-row-start-9 {
  grid-row-start: 9 !important;
}
.g-row-start-11 {
  grid-row-start: 11 !important;
}
.g-col-span-6 {
  grid-column: span 6 / span 6 !important;
}
.g-col-span-12 {
  grid-column: span 12 / span 12 !important;
}
.g-col-start-1 {
  grid-column-start: 1 !important;
}
.text-truncate-1 {
  -webkit-line-clamp: 1 !important;
}
.text-truncate-3 {
  -webkit-line-clamp: 3 !important;
}
.min-w-24px {
  min-width: 24px !important;
}
.min-w-32px {
  min-width: 32px !important;
}
.min-w-40px {
  min-width: 40px !important;
}
.min-w-48px {
  min-width: 48px !important;
}
.min-w-56px {
  min-width: 56px !important;
}
.min-w-80px {
  min-width: 80px !important;
}
.min-w-150px {
  min-width: 150px !important;
}
.min-w-200px {
  min-width: 200px !important;
}
.min-w-300px {
  min-width: 300px !important;
}
.min-w-700px {
  min-width: 700px !important;
}
.min-w-1\/4 {
  min-width: 25% !important;
}
.min-w-1\/2 {
  min-width: 50% !important;
}
.min-w-xs {
  min-width: 320px !important;
}
.min-w-100 {
  min-width: 100% !important;
}
.min-h-24px {
  min-height: 24px !important;
}
.min-h-32px {
  min-height: 32px !important;
}
.min-h-40px {
  min-height: 40px !important;
}
.min-h-48px {
  min-height: 48px !important;
}
.min-h-56px {
  min-height: 56px !important;
}
.min-h-64px {
  min-height: 64px !important;
}
.min-h-80px {
  min-height: 80px !important;
}
.min-h-150px {
  min-height: 150px !important;
}
.min-h-200px {
  min-height: 200px !important;
}
.min-h-250px {
  min-height: 250px !important;
}
.min-h-300px {
  min-height: 300px !important;
}
.min-h-350px {
  min-height: 350px !important;
}
.min-h-450px {
  min-height: 450px !important;
}
.min-h-600px {
  min-height: 600px !important;
}
.min-h-700px {
  min-height: 700px !important;
}
.min-h-screen {
  min-height: 100vh !important;
}
.icon-narrow {
  width: 16px !important;
  height: 16px !important;
  font-size: 16px !important;
}
.icon-1 {
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
}
.icon-2 {
  width: 24px !important;
  height: 24px !important;
  font-size: 24px !important;
}
.icon-3 {
  width: 32px !important;
  height: 32px !important;
  font-size: 32px !important;
}
.icon-4 {
  width: 48px !important;
  height: 48px !important;
  font-size: 48px !important;
}
.mask-x {
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 10%,
    rgb(0, 0, 0) 90%,
    rgba(0, 0, 0, 0) 100%
  ) !important;
}
.hover\:contrast-shadow:hover {
  box-shadow: 3px 3px 0 0 var(--shadowColor, #000) !important;
}
.contrast-shadow-sm {
  box-shadow: 2px 2px 0 0 var(--shadowColor, #000) !important;
}
.contrast-shadow-md,
.hover\:contrast-shadow-md:hover {
  box-shadow: 4px 4px 0 0 var(--shadowColor, #000) !important;
}
.contrast-shadow-lg {
  box-shadow: 8px 8px 0 0 var(--shadowColor, #000) !important;
}
.ls-0 {
  letter-spacing: 0 !important;
}
.-ls-1 {
  letter-spacing: -1px !important;
}
[dir="ltr"] .ltr\:-ls-2 {
  letter-spacing: -2px !important;
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity,
    box-shadow, transform, filter !important;
}
.transition-all {
  transition-property: all !important;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important;
}
.transition-transform {
  transition-property: transform !important;
}
.duration-0 {
  transition-duration: 0s !important;
}
.duration-150 {
  transition-duration: 150ms !important;
}
.duration-200 {
  transition-duration: 0.2s !important;
}
.duration-250 {
  transition-duration: 250ms !important;
}
.ease-linear {
  transition-timing-function: linear !important;
}
.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
}
.hover\:scale-105:hover {
  transform: scale(1.05) !important;
}
.hover\:scale-110:hover {
  transform: scale(1.1) !important;
}
.translate-y-px {
  transform: translateY(1px) !important;
}
.hover\:-translate-y-1:hover {
  transform: translateY(-0.5rem) !important;
}
.rotate-12 {
  transform: rotate(12deg) !important;
}
.rotate-45 {
  transform: rotate(45deg) !important;
}
.hover\:rotate-90:hover {
  transform: rotate(90deg) !important;
}
.rotate-180,
[dir="rtl"] .rtl\:rotate-180 {
  transform: rotate(180deg) !important;
}
.-rotate-1 {
  transform: rotate(-1deg) !important;
}
.-rotate-2 {
  transform: rotate(-2deg) !important;
}
.-rotate-12 {
  transform: rotate(-12deg) !important;
}
.-rotate-45 {
  transform: rotate(-45deg) !important;
}
[dir="rtl"] .rtl\:-rotate-90 {
  transform: rotate(-90deg) !important;
}
[dir="rtl"] .rtl\:-rotate-180 {
  transform: rotate(-180deg) !important;
}
[dir="rtl"] .rtl\:rotate-y-180 {
  transform: rotateY(180deg) !important;
}
[dir="rtl"] .rtl\:-rotate-y-180 {
  transform: rotateY(-180deg) !important;
}
.origin-top-right {
  transform-origin: top right !important;
}
.origin-top-left {
  transform-origin: top left !important;
}
.origin-bottom-right {
  transform-origin: bottom right !important;
}
.origin-bottom {
  transform-origin: bottom !important;
}
.blend-color-dodge {
  mix-blend-mode: color-dodge !important;
}
.blend-difference {
  mix-blend-mode: difference !important;
}
.blend-overlay {
  mix-blend-mode: overlay !important;
}
.blend-plus-lighter {
  mix-blend-mode: plus-lighter !important;
}
.blend-soft-light {
  mix-blend-mode: soft-light !important;
}
:where(.uc-dark) .dark\:blend-overlay {
  mix-blend-mode: overlay !important;
}
:where(.uc-dark) .dark\:blend-soft-light {
  mix-blend-mode: soft-light !important;
}
.blur-10 {
  filter: blur(128px) !important;
}
.backdrop-0 {
  backdrop-filter: blur(0) !important;
}
.backdrop-1 {
  backdrop-filter: blur(4px) !important;
}
.backdrop-2 {
  backdrop-filter: blur(8px) !important;
}
[dir="ltr"] .ltr\:rounded-top-start-1-5 {
  border-top-left-radius: 12px !important;
}
[dir="rtl"] .rtl\:rounded-top-end-1-5 {
  border-top-right-radius: 12px !important;
}
.ratio-1x1 {
  --bs-aspect-ratio: 100% !important;
}
.ratio-2x1 {
  --bs-aspect-ratio: 50% !important;
}
.ratio-2x3 {
  --bs-aspect-ratio: 150% !important;
}
.ratio-3x2 {
  --bs-aspect-ratio: 66.6666667% !important;
}
.ratio-3x4 {
  --bs-aspect-ratio: 133.333333% !important;
}
.ratio-4x3 {
  --bs-aspect-ratio: 75% !important;
}
.ratio-16x9 {
  --bs-aspect-ratio: 56.25% !important;
}
@media (min-width: 459px) {
  .sm\:overflow-hidden {
    overflow: hidden !important;
  }
  .sm\:d-inline-block {
    display: inline-block !important;
  }
  .sm\:d-block {
    display: block !important;
  }
  .sm\:d-none {
    display: none !important;
  }
  .shadow-sm {
    box-shadow: 0 0.5rem 1rem -0.1rem var(--shadow-color) !important;
  }
  .sm\:border-3 {
    border-width: 3px !important;
  }
  .sm\:w-32px {
    width: 32px !important;
  }
  .sm\:w-48px {
    width: 48px !important;
  }
  .sm\:w-56px {
    width: 56px !important;
  }
  .sm\:w-64px {
    width: 64px !important;
  }
  .sm\:w-80px {
    width: 80px !important;
  }
  .sm\:w-250px {
    width: 250px !important;
  }
  .sm\:w-300px {
    width: 300px !important;
  }
  .sm\:w-350px {
    width: 350px !important;
  }
  .sm\:w-400px {
    width: 400px !important;
  }
  .sm\:w-500px {
    width: 500px !important;
  }
  .sm\:w-550px {
    width: 550px !important;
  }
  .sm\:w-3\/5 {
    width: 60% !important;
  }
  .sm\:w-1\/2 {
    width: 50% !important;
  }
  .sm\:w-auto {
    width: auto !important;
  }
  .sm\:max-w-450px {
    max-width: 450px !important;
  }
  .sm\:max-w-500px {
    max-width: 500px !important;
  }
  .sm\:max-w-600px {
    max-width: 600px !important;
  }
  .sm\:max-w-md {
    max-width: 720px !important;
  }
  .sm\:max-w-lg {
    max-width: 1040px !important;
  }
  .sm\:h-32px {
    height: 32px !important;
  }
  .sm\:h-40px {
    height: 40px !important;
  }
  .sm\:h-48px {
    height: 48px !important;
  }
  .sm\:h-56px {
    height: 56px !important;
  }
  .sm\:h-64px {
    height: 64px !important;
  }
  .sm\:h-80px {
    height: 80px !important;
  }
  .sm\:h-300px {
    height: 300px !important;
  }
  .sm\:h-500px {
    height: 500px !important;
  }
  .sm\:h-600px {
    height: 600px !important;
  }
  .sm\:h-2\/3 {
    height: 66.6666667% !important;
  }
  .sm\:max-h-700px {
    max-height: 700px !important;
  }
  .sm\:order-0 {
    order: 0 !important;
  }
  .sm\:order-1 {
    order: 1 !important;
  }
  .sm\:order-2 {
    order: 2 !important;
  }
  .sm\:m-0 {
    margin: 0 !important;
  }
  .sm\:mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .sm\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .sm\:my-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .sm\:mt-0 {
    margin-top: 0 !important;
  }
  .sm\:mt-1 {
    margin-top: 0.5rem !important;
  }
  .sm\:mt-2 {
    margin-top: 1rem !important;
  }
  .sm\:mt-3 {
    margin-top: 1.5rem !important;
  }
  .sm\:mt-4 {
    margin-top: 2rem !important;
  }
  .sm\:mt-6 {
    margin-top: 3rem !important;
  }
  .sm\:mt-8 {
    margin-top: 4rem !important;
  }
  [dir="rtl"] .rtl\:sm\:me-2 {
    margin-right: 1rem !important;
  }
  .sm\:mb-2 {
    margin-bottom: 1rem !important;
  }
  .sm\:mb-4 {
    margin-bottom: 2rem !important;
  }
  .sm\:mb-6 {
    margin-bottom: 3rem !important;
  }
  .sm\:mb-8 {
    margin-bottom: 4rem !important;
  }
  [dir="ltr"] .ltr\:sm\:ms-2 {
    margin-left: 1rem !important;
  }
  .sm\:p-3 {
    padding: 1.5rem !important;
  }
  .sm\:p-4 {
    padding: 2rem !important;
  }
  .sm\:p-6 {
    padding: 3rem !important;
  }
  .sm\:px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .sm\:px-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .sm\:px-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .sm\:py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .sm\:py-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .sm\:py-9 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .sm\:pt-4 {
    padding-top: 2rem !important;
  }
  .sm\:pt-6 {
    padding-top: 3rem !important;
  }
  .sm\:pt-8 {
    padding-top: 4rem !important;
  }
  .sm\:pt-10 {
    padding-top: 8rem !important;
  }
  .sm\:pb-6 {
    padding-bottom: 3rem !important;
  }
  .sm\:pb-8 {
    padding-bottom: 4rem !important;
  }
  .sm\:pb-9 {
    padding-bottom: 6rem !important;
  }
  .sm\:gap-0 {
    gap: 0 !important;
  }
  .sm\:gap-2 {
    gap: 1rem !important;
  }
  .sm\:gap-3 {
    gap: 1.5rem !important;
  }
  .sm\:gap-4 {
    gap: 2rem !important;
  }
  .sm\:gap-6 {
    gap: 3rem !important;
  }
  .sm\:gap-8 {
    gap: 4rem !important;
  }
  .sm\:fs-4 {
    font-size: 1.25rem !important;
  }
  .sm\:fs-5 {
    font-size: 1.125rem !important;
  }
  .sm\:fs-6 {
    font-size: 1rem !important;
  }
  .sm\:fs-7 {
    font-size: 0.875rem !important;
  }
  .sm\:text-start,
  [dir="ltr"] .ltr\:sm\:text-start {
    text-align: left !important;
  }
  [dir="rtl"] .rtl\:sm\:text-end {
    text-align: right !important;
  }
  .sm\:text-center {
    text-align: center !important;
  }
  .sm\:rounded {
    border-radius: var(--radius) !important;
  }
  .sm\:rounded-1-5 {
    border-radius: 12px !important;
  }
  .sm\:rounded-2 {
    border-radius: 16px !important;
  }
  .sm\:rounded-3 {
    border-radius: 24px !important;
  }
  .sm\:rounded-pill {
    border-radius: 50rem !important;
  }
  .sm\:rounded-start-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }
  .sm\:g-row-span-3 {
    grid-row: span 3 / span 3 !important;
  }
  .sm\:g-row-start-1 {
    grid-row-start: 1 !important;
  }
  .sm\:g-row-start-4 {
    grid-row-start: 4 !important;
  }
  .sm\:g-row-start-7 {
    grid-row-start: 7 !important;
  }
  .sm\:g-row-start-10 {
    grid-row-start: 10 !important;
  }
  .sm\:g-col-span-6 {
    grid-column: span 6 / span 6 !important;
  }
  .sm\:g-col-start-4 {
    grid-column-start: 4 !important;
  }
  .sm\:g-col-start-7 {
    grid-column-start: 7 !important;
  }
  .sm\:min-w-64px {
    min-width: 64px !important;
  }
  .sm\:min-w-100px {
    min-width: 100px !important;
  }
  .sm\:min-w-150px {
    min-width: 150px !important;
  }
  .sm\:min-h-64px {
    min-height: 64px !important;
  }
  .sm\:min-h-100px {
    min-height: 100px !important;
  }
  .sm\:icon-3 {
    width: 32px !important;
    height: 32px !important;
    font-size: 32px !important;
  }
  [dir="ltr"] .ltr\:sm\:-ls-4 {
    letter-spacing: -4px !important;
  }
  .sm\:rounded-top-end-0 {
    border-top-right-radius: 0 !important;
  }
  .sm\:rounded-bottom-end-0 {
    border-bottom-right-radius: 0 !important;
  }
}
@media (min-width: 768px) {
  .md\:d-block {
    display: block !important;
  }
  .md\:d-flex {
    display: flex !important;
  }
  .md\:d-none {
    display: none !important;
  }
  .hover\:shadow-md:hover,
  .shadow-md {
    box-shadow: 0 0.5rem 1rem -0.1rem var(--shadow-color) !important;
  }
  .md\:w-40px {
    width: 40px !important;
  }
  .md\:w-48px {
    width: 48px !important;
  }
  .md\:w-56px {
    width: 56px !important;
  }
  .md\:w-100px {
    width: 100px !important;
  }
  .md\:w-500px {
    width: 500px !important;
  }
  .md\:w-1\/2 {
    width: 50% !important;
  }
  .md\:max-w-128px {
    max-width: 128px !important;
  }
  .md\:max-w-150px {
    max-width: 150px !important;
  }
  .md\:max-w-1\/2 {
    max-width: 50% !important;
  }
  .md\:h-40px {
    height: 40px !important;
  }
  .md\:h-48px {
    height: 48px !important;
  }
  .md\:h-100px {
    height: 100px !important;
  }
  .md\:h-screen {
    height: 100vh !important;
  }
  .md\:justify-start {
    justify-content: flex-start !important;
  }
  .md\:items-end {
    align-items: flex-end !important;
  }
  .md\:order-1 {
    order: 1 !important;
  }
  .md\:order-2 {
    order: 2 !important;
  }
  .md\:m-2 {
    margin: 1rem !important;
  }
  .md\:my-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .md\:my-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .md\:mt-2 {
    margin-top: 1rem !important;
  }
  .md\:mt-4 {
    margin-top: 2rem !important;
  }
  .md\:mt-6 {
    margin-top: 3rem !important;
  }
  .md\:mt-8 {
    margin-top: 4rem !important;
  }
  .md\:me-2 {
    margin-right: 1rem !important;
  }
  .md\:mb-4 {
    margin-bottom: 2rem !important;
  }
  .md\:mb-5 {
    margin-bottom: 2.5rem !important;
  }
  .md\:ms-2 {
    margin-left: 1rem !important;
  }
  .md\:mt-n10 {
    margin-top: -8rem !important;
  }
  .md\:p-2 {
    padding: 1rem !important;
  }
  .md\:p-3 {
    padding: 1.5rem !important;
  }
  .md\:p-4 {
    padding: 2rem !important;
  }
  .md\:p-6 {
    padding: 3rem !important;
  }
  .md\:p-8 {
    padding: 4rem !important;
  }
  .md\:px-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .md\:py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .md\:py-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .md\:pt-6 {
    padding-top: 3rem !important;
  }
  .md\:pt-8 {
    padding-top: 4rem !important;
  }
  [dir="ltr"] .ltr\:md\:pe-8 {
    padding-right: 4rem !important;
  }
  .md\:pb-0 {
    padding-bottom: 0 !important;
  }
  .md\:pb-6 {
    padding-bottom: 3rem !important;
  }
  [dir="rtl"] .rtl\:md\:ps-8 {
    padding-left: 4rem !important;
  }
  .md\:gap-2 {
    gap: 1rem !important;
  }
  .md\:gap-3 {
    gap: 1.5rem !important;
  }
  .md\:gap-4 {
    gap: 2rem !important;
  }
  .md\:gap-6 {
    gap: 3rem !important;
  }
  .md\:fs-5 {
    font-size: 1.125rem !important;
  }
  .md\:fs-6 {
    font-size: 1rem !important;
  }
  .md\:min-h-250px {
    min-height: 250px !important;
  }
  .md\:icon-1 {
    width: 20px !important;
    height: 20px !important;
    font-size: 20px !important;
  }
  .md\:icon-2 {
    width: 24px !important;
    height: 24px !important;
    font-size: 24px !important;
  }
}
@media (min-width: 992px) {
  .lg\:overflow-hidden {
    overflow: hidden !important;
  }
  .lg\:d-inline-block {
    display: inline-block !important;
  }
  .lg\:d-block {
    display: block !important;
  }
  .lg\:d-flex {
    display: flex !important;
  }
  .lg\:d-inline-flex {
    display: inline-flex !important;
  }
  .lg\:d-none {
    display: none !important;
  }
  .shadow-lg {
    box-shadow: 0 0.5rem 1rem -0.1rem var(--shadow-color) !important;
  }
  .lg\:shadow-lg {
    box-shadow: 0 1rem 1.5rem -0.1rem var(--shadow-color) !important;
  }
  .lg\:shadow-xl {
    box-shadow: 0 1.5rem 2rem -0.1rem var(--shadow-color) !important;
  }
  .lg\:w-40px {
    width: 40px !important;
  }
  .lg\:w-48px {
    width: 48px !important;
  }
  .lg\:w-56px {
    width: 56px !important;
  }
  .lg\:w-64px {
    width: 64px !important;
  }
  .lg\:w-72px {
    width: 72px !important;
  }
  .lg\:w-80px {
    width: 80px !important;
  }
  .lg\:w-96px {
    width: 96px !important;
  }
  .lg\:w-100px {
    width: 100px !important;
  }
  .lg\:w-128px {
    width: 128px !important;
  }
  .lg\:w-150px {
    width: 150px !important;
  }
  .lg\:w-200px {
    width: 200px !important;
  }
  .lg\:w-250px {
    width: 250px !important;
  }
  .lg\:w-300px {
    width: 300px !important;
  }
  .lg\:w-350px {
    width: 350px !important;
  }
  .lg\:w-450px {
    width: 450px !important;
  }
  .lg\:w-500px {
    width: 500px !important;
  }
  .lg\:w-800px {
    width: 800px !important;
  }
  .lg\:w-1\/6 {
    width: 16.6666667% !important;
  }
  .lg\:w-5\/6 {
    width: 83.3333333% !important;
  }
  .lg\:w-1\/3 {
    width: 33.3333333% !important;
  }
  .lg\:w-1\/2 {
    width: 50% !important;
  }
  .lg\:max-w-56px {
    max-width: 56px !important;
  }
  .lg\:max-w-80px {
    max-width: 80px !important;
  }
  .lg\:max-w-128px {
    max-width: 128px !important;
  }
  .lg\:max-w-150px {
    max-width: 150px !important;
  }
  .lg\:max-w-300px {
    max-width: 300px !important;
  }
  .lg\:max-w-350px {
    max-width: 350px !important;
  }
  .lg\:max-w-500px {
    max-width: 500px !important;
  }
  .lg\:max-w-550px {
    max-width: 550px !important;
  }
  .lg\:max-w-600px {
    max-width: 600px !important;
  }
  .lg\:max-w-650px {
    max-width: 650px !important;
  }
  .lg\:max-w-700px {
    max-width: 700px !important;
  }
  .lg\:max-w-750px {
    max-width: 750px !important;
  }
  .lg\:max-w-900px {
    max-width: 900px !important;
  }
  .lg\:max-w-950px {
    max-width: 950px !important;
  }
  .lg\:max-w-3\/5 {
    max-width: 60% !important;
  }
  .lg\:max-w-1\/2 {
    max-width: 50% !important;
  }
  .lg\:max-w-lg {
    max-width: 1040px !important;
  }
  .lg\:h-40px {
    height: 40px !important;
  }
  .lg\:h-48px {
    height: 48px !important;
  }
  .lg\:h-56px {
    height: 56px !important;
  }
  .lg\:h-64px {
    height: 64px !important;
  }
  .lg\:h-80px {
    height: 80px !important;
  }
  .lg\:h-96px {
    height: 96px !important;
  }
  .lg\:h-100px {
    height: 100px !important;
  }
  .lg\:h-150px {
    height: 150px !important;
  }
  .lg\:h-350px {
    height: 350px !important;
  }
  .lg\:h-500px {
    height: 500px !important;
  }
  .lg\:h-100 {
    height: 100% !important;
  }
  .lg\:h-screen {
    height: 100vh !important;
  }
  .lg\:max-h-550px {
    max-height: 550px !important;
  }
  .lg\:justify-start {
    justify-content: flex-start !important;
  }
  .lg\:justify-center {
    justify-content: center !important;
  }
  .lg\:justify-end {
    justify-content: flex-end !important;
  }
  .lg\:justify-between {
    justify-content: space-between !important;
  }
  .lg\:items-start {
    align-items: flex-start !important;
  }
  .lg\:order-0 {
    order: 0 !important;
  }
  .lg\:order-1 {
    order: 1 !important;
  }
  .lg\:order-2 {
    order: 2 !important;
  }
  .lg\:m-0 {
    margin: 0 !important;
  }
  .lg\:m-2 {
    margin: 1rem !important;
  }
  .lg\:m-6 {
    margin: 3rem !important;
  }
  .lg\:m-auto {
    margin: auto !important;
  }
  .lg\:mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .lg\:mx-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .lg\:mx-3 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .lg\:mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .lg\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .lg\:my-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .lg\:my-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .lg\:my-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .lg\:mt-0 {
    margin-top: 0 !important;
  }
  .lg\:mt-2 {
    margin-top: 1rem !important;
  }
  .lg\:mt-3 {
    margin-top: 1.5rem !important;
  }
  .lg\:mt-4 {
    margin-top: 2rem !important;
  }
  .lg\:mt-6 {
    margin-top: 3rem !important;
  }
  .lg\:mt-8 {
    margin-top: 4rem !important;
  }
  .lg\:mt-9 {
    margin-top: 6rem !important;
  }
  [dir="rtl"] .rtl\:lg\:me-2 {
    margin-right: 1rem !important;
  }
  .lg\:me-5 {
    margin-right: 2.5rem !important;
  }
  .lg\:mb-narrow {
    margin-bottom: 0.25rem !important;
  }
  .lg\:mb-2 {
    margin-bottom: 1rem !important;
  }
  .lg\:mb-3 {
    margin-bottom: 1.5rem !important;
  }
  .lg\:mb-5 {
    margin-bottom: 2.5rem !important;
  }
  .lg\:mb-6 {
    margin-bottom: 3rem !important;
  }
  .lg\:mb-7 {
    margin-bottom: 3.5rem !important;
  }
  .lg\:mb-8 {
    margin-bottom: 4rem !important;
  }
  .lg\:mb-9 {
    margin-bottom: 6rem !important;
  }
  [dir="ltr"] .ltr\:lg\:ms-2,
  [dir="rtl"] .rtl\:lg\:ms-2 {
    margin-left: 1rem !important;
  }
  .lg\:mt-n6 {
    margin-top: -3rem !important;
  }
  .lg\:mt-n8 {
    margin-top: -4rem !important;
  }
  .lg\:p-1 {
    padding: 0.5rem !important;
  }
  .lg\:p-2 {
    padding: 1rem !important;
  }
  .lg\:p-3 {
    padding: 1.5rem !important;
  }
  .lg\:p-4 {
    padding: 2rem !important;
  }
  .lg\:p-5 {
    padding: 2.5rem !important;
  }
  .lg\:p-6 {
    padding: 3rem !important;
  }
  .lg\:p-8 {
    padding: 4rem !important;
  }
  .lg\:px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .lg\:px-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .lg\:px-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .lg\:px-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .lg\:px-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .lg\:px-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .lg\:px-7 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .lg\:px-8 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .lg\:py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .lg\:py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .lg\:py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .lg\:py-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .lg\:py-9 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .lg\:py-10 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .lg\:pt-0 {
    padding-top: 0 !important;
  }
  .lg\:pt-2 {
    padding-top: 1rem !important;
  }
  .lg\:pt-4 {
    padding-top: 2rem !important;
  }
  .lg\:pt-6 {
    padding-top: 3rem !important;
  }
  .lg\:pt-8 {
    padding-top: 4rem !important;
  }
  .lg\:pt-9 {
    padding-top: 6rem !important;
  }
  .lg\:pt-10 {
    padding-top: 8rem !important;
  }
  [dir="rtl"] .rtl\:lg\:pe-4 {
    padding-right: 2rem !important;
  }
  .lg\:pb-3 {
    padding-bottom: 1.5rem !important;
  }
  .lg\:pb-4 {
    padding-bottom: 2rem !important;
  }
  .lg\:pb-6 {
    padding-bottom: 3rem !important;
  }
  .lg\:pb-8 {
    padding-bottom: 4rem !important;
  }
  .lg\:pb-9 {
    padding-bottom: 6rem !important;
  }
  [dir="ltr"] .ltr\:lg\:ps-4 {
    padding-left: 2rem !important;
  }
  .lg\:gap-narrow {
    gap: 0.25rem !important;
  }
  .lg\:gap-1 {
    gap: 0.5rem !important;
  }
  .lg\:gap-2 {
    gap: 1rem !important;
  }
  .lg\:gap-3 {
    gap: 1.5rem !important;
  }
  .lg\:gap-4 {
    gap: 2rem !important;
  }
  .lg\:gap-6 {
    gap: 3rem !important;
  }
  .lg\:gap-8 {
    gap: 4rem !important;
  }
  .lg\:gap-9 {
    gap: 6rem !important;
  }
  .lg\:fs-3 {
    font-size: 1.5rem !important;
  }
  .lg\:fs-4 {
    font-size: 1.25rem !important;
  }
  .lg\:fs-5 {
    font-size: 1.125rem !important;
  }
  .lg\:fs-6 {
    font-size: 1rem !important;
  }
  .lg\:text-start,
  [dir="ltr"] .ltr\:lg\:text-start {
    text-align: left !important;
  }
  [dir="rtl"] .rtl\:lg\:text-end {
    text-align: right !important;
  }
  .lg\:rounded-1-5 {
    border-radius: 12px !important;
  }
  .lg\:rounded-2 {
    border-radius: 16px !important;
  }
  .lg\:rounded-3 {
    border-radius: 24px !important;
  }
  .lg\:rounded-4 {
    border-radius: 32px !important;
  }
  .lg\:rounded-pill {
    border-radius: 50rem !important;
  }
  .lg\:rounded-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .lg\:rounded-bottom-2 {
    border-bottom-right-radius: 16px !important;
    border-bottom-left-radius: 16px !important;
  }
  .lg\:rounded-bottom-3 {
    border-bottom-right-radius: 24px !important;
    border-bottom-left-radius: 24px !important;
  }
  .lg\:rounded-bottom-5 {
    border-bottom-right-radius: 40px !important;
    border-bottom-left-radius: 40px !important;
  }
  .lg\:rounded-bottom-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .lg\:rounded-start-1-5 {
    border-bottom-left-radius: 12px !important;
    border-top-left-radius: 12px !important;
  }
  .lg\:g-row-span-4 {
    grid-row: span 4 / span 4 !important;
  }
  .lg\:g-row-start-9 {
    grid-row-start: 9 !important;
  }
  .lg\:g-col-span-4 {
    grid-column: span 4 / span 4 !important;
  }
  .lg\:g-col-start-3 {
    grid-column-start: 3 !important;
  }
  .lg\:g-col-start-5 {
    grid-column-start: 5 !important;
  }
  .lg\:g-col-start-7 {
    grid-column-start: 7 !important;
  }
  .lg\:g-col-start-9 {
    grid-column-start: 9 !important;
  }
  .lg\:min-w-80px {
    min-width: 80px !important;
  }
  .lg\:min-w-150px {
    min-width: 150px !important;
  }
  .lg\:min-w-200px {
    min-width: 200px !important;
  }
  .lg\:min-w-300px {
    min-width: 300px !important;
  }
  .lg\:min-w-1\/4 {
    min-width: 25% !important;
  }
  .lg\:min-h-80px {
    min-height: 80px !important;
  }
  .lg\:min-h-96px {
    min-height: 96px !important;
  }
  .lg\:min-h-100px {
    min-height: 100px !important;
  }
  .lg\:min-h-600px {
    min-height: 600px !important;
  }
  .lg\:icon-3 {
    width: 32px !important;
    height: 32px !important;
    font-size: 32px !important;
  }
  .lg\:icon-4 {
    width: 48px !important;
    height: 48px !important;
    font-size: 48px !important;
  }
  .lg\:hover\:scale-105:hover {
    transform: scale(1.05) !important;
  }
  .lg\:hover\:-translate-y-2:hover {
    transform: translateY(-1rem) !important;
  }
  .lg\:-rotate-2 {
    transform: rotate(-2deg) !important;
  }
  .lg\:rounded-top-start-0 {
    border-top-left-radius: 0 !important;
  }
  .lg\:rounded-top-end-1-5 {
    border-top-right-radius: 12px !important;
  }
  .lg\:rounded-top-end-0 {
    border-top-right-radius: 0 !important;
  }
  .lg\:rounded-bottom-end-0 {
    border-bottom-right-radius: 0 !important;
  }
  .lg\:ratio-1x1 {
    --bs-aspect-ratio: 100% !important;
  }
}
@media (min-width: 1200px) {
  .xl\:d-block {
    display: block !important;
  }
  .xl\:d-flex {
    display: flex !important;
  }
  .xl\:d-inline-flex {
    display: inline-flex !important;
  }
  .xl\:d-none {
    display: none !important;
  }
  .shadow-xl {
    box-shadow: 0 0.5rem 1rem -0.1rem var(--shadow-color) !important;
  }
  .xl\:w-24px {
    width: 24px !important;
  }
  .xl\:w-32px {
    width: 32px !important;
  }
  .xl\:w-48px {
    width: 48px !important;
  }
  .xl\:w-56px {
    width: 56px !important;
  }
  .xl\:w-64px {
    width: 64px !important;
  }
  .xl\:w-80px {
    width: 80px !important;
  }
  .xl\:w-100px {
    width: 100px !important;
  }
  .xl\:w-150px {
    width: 150px !important;
  }
  .xl\:w-250px {
    width: 250px !important;
  }
  .xl\:w-300px {
    width: 300px !important;
  }
  .xl\:w-350px {
    width: 350px !important;
  }
  .xl\:w-400px {
    width: 400px !important;
  }
  .xl\:w-450px {
    width: 450px !important;
  }
  .xl\:w-500px {
    width: 500px !important;
  }
  .xl\:w-600px {
    width: 600px !important;
  }
  .xl\:w-700px {
    width: 700px !important;
  }
  .xl\:w-750px {
    width: 750px !important;
  }
  .xl\:w-auto {
    width: auto !important;
  }
  .xl\:max-w-450px {
    max-width: 450px !important;
  }
  .xl\:max-w-500px {
    max-width: 500px !important;
  }
  .xl\:max-w-600px {
    max-width: 600px !important;
  }
  .xl\:max-w-650px {
    max-width: 650px !important;
  }
  .xl\:max-w-700px {
    max-width: 700px !important;
  }
  .xl\:max-w-800px {
    max-width: 800px !important;
  }
  .xl\:max-w-900px {
    max-width: 900px !important;
  }
  .xl\:max-w-3\/4 {
    max-width: 75% !important;
  }
  .xl\:max-w-md {
    max-width: 720px !important;
  }
  .xl\:max-w-lg {
    max-width: 1040px !important;
  }
  .xl\:max-w-xl {
    max-width: 1280px !important;
  }
  .xl\:h-48px {
    height: 48px !important;
  }
  .xl\:h-56px {
    height: 56px !important;
  }
  .xl\:h-64px {
    height: 64px !important;
  }
  .xl\:h-100px {
    height: 100px !important;
  }
  .xl\:h-200px {
    height: 200px !important;
  }
  .xl\:h-400px {
    height: 400px !important;
  }
  .xl\:h-650px {
    height: 650px !important;
  }
  .xl\:h-750px {
    height: 750px !important;
  }
  .xl\:h-screen {
    height: 100vh !important;
  }
  .xl\:max-h-850px {
    max-height: 850px !important;
  }
  .xl\:m-9 {
    margin: 6rem !important;
  }
  .xl\:mx-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .xl\:mx-9 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .xl\:my-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .xl\:my-9 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .xl\:mt-1 {
    margin-top: 0.5rem !important;
  }
  .xl\:mt-2 {
    margin-top: 1rem !important;
  }
  .xl\:mt-3 {
    margin-top: 1.5rem !important;
  }
  .xl\:mt-4 {
    margin-top: 2rem !important;
  }
  .xl\:mt-6 {
    margin-top: 3rem !important;
  }
  .xl\:mt-8 {
    margin-top: 4rem !important;
  }
  .xl\:mt-9 {
    margin-top: 6rem !important;
  }
  .xl\:mt-10 {
    margin-top: 8rem !important;
  }
  .xl\:me-2 {
    margin-right: 1rem !important;
  }
  [dir="rtl"] .rtl\:xl\:me-3 {
    margin-right: 1.5rem !important;
  }
  .xl\:me-4,
  [dir="ltr"] .ltr\:xl\:me-4,
  [dir="rtl"] .rtl\:xl\:me-4 {
    margin-right: 2rem !important;
  }
  [dir="ltr"] .ltr\:xl\:me-7 {
    margin-right: 3.5rem !important;
  }
  .xl\:mb-2 {
    margin-bottom: 1rem !important;
  }
  .xl\:mb-3 {
    margin-bottom: 1.5rem !important;
  }
  .xl\:mb-6 {
    margin-bottom: 3rem !important;
  }
  .xl\:mb-7 {
    margin-bottom: 3.5rem !important;
  }
  .xl\:mb-8 {
    margin-bottom: 4rem !important;
  }
  .xl\:mb-9 {
    margin-bottom: 6rem !important;
  }
  [dir="ltr"] .ltr\:xl\:ms-3,
  [dir="rtl"] .rtl\:xl\:ms-3 {
    margin-left: 1.5rem !important;
  }
  [dir="ltr"] .ltr\:xl\:ms-4,
  [dir="rtl"] .rtl\:xl\:ms-4 {
    margin-left: 2rem !important;
  }
  [dir="rtl"] .rtl\:xl\:ms-7 {
    margin-left: 3.5rem !important;
  }
  .xl\:p-1 {
    padding: 0.5rem !important;
  }
  .xl\:p-2 {
    padding: 1rem !important;
  }
  .xl\:p-3 {
    padding: 1.5rem !important;
  }
  .xl\:p-4 {
    padding: 2rem !important;
  }
  .xl\:p-5 {
    padding: 2.5rem !important;
  }
  .xl\:p-6 {
    padding: 3rem !important;
  }
  .xl\:p-8 {
    padding: 4rem !important;
  }
  .xl\:p-9 {
    padding: 6rem !important;
  }
  .xl\:px-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .xl\:px-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .xl\:px-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .xl\:px-7 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .xl\:px-8 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .xl\:px-9 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .xl\:px-10 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .xl\:py-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xl\:py-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xl\:py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xl\:py-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xl\:py-9 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .xl\:py-10 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .xl\:pt-0 {
    padding-top: 0 !important;
  }
  .xl\:pt-4 {
    padding-top: 2rem !important;
  }
  .xl\:pt-8 {
    padding-top: 4rem !important;
  }
  .xl\:pt-9 {
    padding-top: 6rem !important;
  }
  .xl\:pt-10 {
    padding-top: 8rem !important;
  }
  [dir="rtl"] .rtl\:xl\:pe-6 {
    padding-right: 3rem !important;
  }
  .xl\:pb-6 {
    padding-bottom: 3rem !important;
  }
  .xl\:pb-9 {
    padding-bottom: 6rem !important;
  }
  .xl\:pb-10 {
    padding-bottom: 8rem !important;
  }
  .xl\:ps-3 {
    padding-left: 1.5rem !important;
  }
  [dir="ltr"] .ltr\:xl\:ps-6 {
    padding-left: 3rem !important;
  }
  .xl\:gap-1 {
    gap: 0.5rem !important;
  }
  .xl\:gap-2 {
    gap: 1rem !important;
  }
  .xl\:gap-3 {
    gap: 1.5rem !important;
  }
  .xl\:gap-4 {
    gap: 2rem !important;
  }
  .xl\:gap-5 {
    gap: 2.5rem !important;
  }
  .xl\:gap-6 {
    gap: 3rem !important;
  }
  .xl\:gap-8 {
    gap: 4rem !important;
  }
  .xl\:gap-9 {
    gap: 6rem !important;
  }
  .xl\:fs-2 {
    font-size: 1.75rem !important;
  }
  .xl\:fs-3 {
    font-size: 1.5rem !important;
  }
  .xl\:fs-4 {
    font-size: 1.25rem !important;
  }
  .xl\:fs-5 {
    font-size: 1.125rem !important;
  }
  .xl\:fs-6 {
    font-size: 1rem !important;
  }
  .xl\:rounded-2 {
    border-radius: 16px !important;
  }
  .xl\:rounded-3 {
    border-radius: 24px !important;
  }
  .xl\:rounded-4 {
    border-radius: 32px !important;
  }
  .xl\:rounded-top-3 {
    border-top-left-radius: 24px !important;
    border-top-right-radius: 24px !important;
  }
  .xl\:rounded-bottom-3 {
    border-bottom-right-radius: 24px !important;
    border-bottom-left-radius: 24px !important;
  }
  .xl\:min-w-80px {
    min-width: 80px !important;
  }
  .xl\:min-w-200px {
    min-width: 200px !important;
  }
  .xl\:min-w-md {
    min-width: 720px !important;
  }
  .xl\:min-h-80px {
    min-height: 80px !important;
  }
  .xl\:min-h-300px {
    min-height: 300px !important;
  }
  .xl\:min-h-700px {
    min-height: 700px !important;
  }
  .xl\:icon-2 {
    width: 24px !important;
    height: 24px !important;
    font-size: 24px !important;
  }
  .xl\:icon-3 {
    width: 32px !important;
    height: 32px !important;
    font-size: 32px !important;
  }
}
.text-muted {
  --bs-text-opacity: 0.7;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.text-muted:where(.uc-dark),
:where(.uc-dark) .text-muted {
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--uc-gradient-stops)) !important;
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--uc-gradient-stops)) !important;
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--uc-gradient-stops)) !important;
}
.bg-gradient-to-l {
  background-image: linear-gradient(to left, var(--uc-gradient-stops)) !important;
}
.bg-gradient-45 {
  background-image: linear-gradient(45deg, var(--uc-gradient-stops)) !important;
}
.bg-gradient-45n {
  background-image: linear-gradient(-45deg, var(--uc-gradient-stops)) !important;
}
:where(.uc-dark) .dark\:bg-gradient-45 {
  background-image: linear-gradient(45deg, var(--uc-gradient-stops)) !important;
}
.to-transparent {
  --uc-gradient-to: rgba(255, 255, 255, 0);
}
.from-transparent {
  --uc-gradient-from: transparent;
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
.via-transparent {
  --uc-gradient-stops: var(--uc-gradient-from), transparent, var(--uc-gradient-to) !important;
}
.to-black {
  --uc-gradient-to: black;
}
.from-black {
  --uc-gradient-from: #000;
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
.to-white {
  --uc-gradient-to: white;
}
.from-white {
  --uc-gradient-from: #fff;
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
.from-primary {
  --uc-gradient-from: #1e9579;
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
.from-secondary {
  --uc-gradient-from: #f5eee9;
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
.from-dark {
  --uc-gradient-from: #212529;
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
.from-gray-700 {
  --uc-gradient-from: rgb(41.4, 41.4, 45.6);
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
.from-gray-800 {
  --uc-gradient-from: rgb(27.6, 27.6, 30.4);
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
.to-gray-900 {
  --uc-gradient-to: rgb(13.8, 13.8, 15.2);
}
.to-primary-25 {
  --uc-gradient-to: rgb(243.75, 249.7, 248.3);
}
.to-primary-100 {
  --uc-gradient-to: rgb(210, 233.8, 228.2);
}
.to-primary-700 {
  --uc-gradient-to: rgb(18, 89.4, 72.6);
}
.to-primary-800 {
  --uc-gradient-to: rgb(12, 59.6, 48.4);
}
.from-indigo {
  --uc-gradient-from: #553cdf;
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
.via-purple {
  --uc-gradient-stops: var(--uc-gradient-from), #8921e4, var(--uc-gradient-to) !important;
}
.to-pink {
  --uc-gradient-to: #f06b9d;
}
.from-pink-100 {
  --uc-gradient-from: rgb(252, 225.4, 235.4);
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
.to-orange-100 {
  --uc-gradient-to: rgb(254.2, 225.4, 210);
}
.to-tertiary {
  --uc-gradient-to: #ddff9a;
}
.from-tertiary {
  --uc-gradient-from: #ddff9a;
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
.from-tertiary-200 {
  --uc-gradient-from: rgb(241.4, 255, 214.6);
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
.from-tertiary-600 {
  --uc-gradient-from: rgb(176.8, 204, 123.2);
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
:where(.uc-dark) .dark\:to-transparent {
  --uc-gradient-to: rgba(255, 255, 255, 0);
}
:where(.uc-dark) .dark\:to-black {
  --uc-gradient-to: black;
}
:where(.uc-dark) .dark\:from-gray-700 {
  --uc-gradient-from: rgb(41.4, 41.4, 45.6);
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
:where(.uc-dark) .dark\:from-gray-800 {
  --uc-gradient-from: rgb(27.6, 27.6, 30.4);
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
:where(.uc-dark) .dark\:to-gray-900 {
  --uc-gradient-to: rgb(13.8, 13.8, 15.2);
}
:where(.uc-dark) .dark\:from-gray-900 {
  --uc-gradient-from: rgb(13.8, 13.8, 15.2);
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
:where(.uc-dark) .dark\:from-primary-700 {
  --uc-gradient-from: rgb(18, 89.4, 72.6);
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
:where(.uc-dark) .dark\:to-tertiary {
  --uc-gradient-to: #ddff9a;
}
:where(.uc-dark) .dark\:from-tertiary-200 {
  --uc-gradient-from: rgb(241.4, 255, 214.6);
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
:where(.uc-dark) .dark\:from-tertiary-700 {
  --uc-gradient-from: rgb(132.6, 153, 92.4);
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}
:where(.uc-dark) .dark\:to-tertiary-800 {
  --uc-gradient-to: rgb(88.4, 102, 61.6);
}
:where(.uc-dark) .dark\:from-tertiary-800 {
  --uc-gradient-from: rgb(88.4, 102, 61.6);
  --uc-gradient-stops: var(--uc-gradient-from), var(--uc-gradient-to);
}

  /* --- START custom.css --- */
  .loans-box-title {
    background: linear-gradient(to right, #d4af37, #f5e384);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 80px !important;
    font-weight: 800;
  }

  .loans-box-title-subtitle {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.5), rgba(245, 227, 132, 0.5));
    -webkit-background-clip: text;
    color: transparent;
    font-size: 20px;
  }

  .uc-dark .dark\:bg-gray-800 {
    --bs-bg-opacity: 1;
    background-color: rgb(20 23 23 / 10%) !important;
  }
  .bg-tertiary-800 {
    --bs-bg-opacity: 1;
    background-color: rgb(0 0 0 / 0.1) !important;
  }
  .whatsapp_button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999999;
  }
  .img-whatsapp {
    max-width: 54px;
  }
  .phone_button {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 99999999;
  }
  .img-phone {
    max-width: 54px;
  }
  .book-consultation {
    display: block;
  }

  @media screen and (max-width: 992px) {
    .book-consultation {
      display: none;
    }
  }
  /* .row {
    display: flex;
    align-items: center;      /* vertical alignment */
  /* justify-content: flex-start; /* push items closer to left */
  /* gap: 2rem; small space between image & text
  } */

  /* Make the two columns equal height */
  .ceo-section {
    align-items: center;

    margin-bottom: 100px !important;
  }

  /* Let the left column stretch its child */
  .ceo-col {
    display: flex;
  }

  /* Image wrapper fills the column and clips the image */
  .ceo-figure {
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
  }

  /* Image fills the wrapper */
  .ceo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Optional mobile behavior */
  @media (max-width: 991px) {
    .ceo-figure {
      height: 500px !important;
    }
  }
  /* lock the row to one line on desktop */
  .stats-row {
    display: flex; /* already flex, but ok to restate */
    flex-wrap: nowrap !important; /* override framework's wrap */
    gap: 1rem; /* similar to g-4; keep if you like */
  }

  /* 4 equal columns */
  .stats-row > div {
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 0; /* prevents overflow from long labels */
    text-align: center;
  }

  /* responsive fallbacks */
  @media (max-width: 1024px) {
    .stats-row {
      flex-wrap: wrap !important;
    }
    .stats-row > div {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  @media (max-width: 640px) {
    .stats-row > div {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
  @media (min-width: 1280px) {
    .section-outer.panel {
      padding-top: 4rem !important;
    }
  }

  /* ===== Theme tokens (tuned to Lexend index-9) ===== */
  :root {
    --bg: #0f2c31;
    --ink: #e9f7f9;
    --muted: rgba(233, 247, 249, 0.7);
    --edge: rgba(255, 255, 255, 0.16);

    --teal: #2ee6b6; /* mint */
    --cyan: #2dd4f0; /* cyan */
    --shadow: rgba(0, 0, 0, 0.45);
  }

  /* ===== Section ===== */
  .lf-balance {
    background: radial-gradient(1000px 520px at 50% -8%, rgba(46, 230, 182, 0.1), transparent 60%),
      radial-gradient(1000px 520px at 50% 108%, rgba(45, 212, 240, 0.08), transparent 60%), var(--bg);
    padding: clamp(56px, 7vw, 96px) 20px;
    color: var(--ink);
  }
  .lf-wrap {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  .lf-title {
    color: white;
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
  }
  .lf-sub {
    color: white;
    margin: 0 auto 36px;
    max-width: 820px;
    
  }

  /* ===== Stage ===== */
  .scale {
    position: relative;
    margin: 0 auto;
    width: min(980px, 95%);
    aspect-ratio: 16/8;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 10px 40px rgba(255, 255, 255, 0.03), 0 30px 60px var(--shadow);
    /* virtual horizontal padding used by calc() below */
    --padX: 44px; /* <- increase/decrease to taste */
  }

  /* Stand (post, hub, base) */
  .stand {
    position: absolute;
    left: 50%;
    bottom: 16%;
    transform: translateX(-50%);
    width: clamp(16px, 1.6vw, 22px);
    height: clamp(240px, 100%, 150px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.06));
    border: 1px solid var(--edge);
    border-radius: 10px;
    box-shadow: 0 0 24px rgba(46, 230, 182, 0.24), inset 0 0 22px rgba(45, 212, 240, 0.14);
  }
  .stand::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(60% 60% at 50% 45%, rgba(46, 230, 182, 0.25), rgba(45, 212, 240, 0.18));
    border: 1px solid var(--edge);
    box-shadow: 0 0 22px rgba(46, 230, 182, 0.35), inset 0 0 18px rgba(45, 212, 240, 0.18);
  }
  .stand::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
    width: 180px;
    height: 24px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.06));
    border: 1px solid var(--edge);
    box-shadow: 0 14px 34px var(--shadow), inset 0 0 22px rgba(46, 230, 182, 0.16);
  }

  /* Beam (brighter) */
  .beam {
    position: absolute;
    left: calc(10% + var(--padX));
    right: calc(10% + var(--padX));
    top: 28%;
    height: clamp(10px, 1.3vw, 14px);
    border-radius: 999px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.18));
    border: 1px solid var(--edge);
    box-shadow: 0 0 36px rgba(46, 230, 182, 0.65), 0 0 54px rgba(45, 212, 240, 0.45), 0 8px 18px var(--shadow);

    /* stronger neon sweep */
    --sweep: linear-gradient(
      90deg,
      rgba(46, 230, 182, 0) 0%,
      rgba(46, 230, 182, 0.28) 24%,
      rgba(46, 230, 182, 0.8) 40%,
      rgba(45, 212, 240, 0.85) 60%,
      rgba(45, 212, 240, 0.3) 76%,
      rgba(45, 212, 240, 0) 100%
    );
  }
  /* moving sweep + outer aura for more brightness */
  .beam::after,
  .beam::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: var(--sweep);
    background-size: 200% 100%;
    animation: beam-sweep 3.4s linear infinite;
    mix-blend: screen;
  }
  .beam::after {
    filter: blur(1.6px);
    opacity: 0.95;
  }
  .beam::before {
    filter: blur(6px);
    opacity: 0.55;
  }

  @keyframes beam-sweep {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }

  /* Moving dots along the beam (brighter too) */
  .dot {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    translate: -50% -50%;
    box-shadow: 0 0 12px #fff, 0 0 28px var(--teal), 0 0 44px var(--cyan), 0 0 70px rgba(45, 212, 240, 0.55);
    opacity: 0.98;
  }
  .dot-a {
    left: calc(10% + var(--padX));
    animation: dot-move 4.6s linear infinite;
  }
  .dot-b {
    right: calc(10% + var(--padX));
    animation: dot-move 4.6s linear reverse infinite;
  }
  @keyframes dot-move {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(100% - 20%));
    }
  }

  /* ===== Chains (centered to plates; respect virtual padding) ===== */
  .chain {
    position: absolute;
    top: calc(28% + 7px);
    width: 2px;
    height: clamp(72px, 12vw, 96px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2));
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
    animation: chain-pulse 2.2s ease-in-out infinite;
  }
  .chain-left {
    left: calc(14% + var(--padX));
    transform: translateX(-50%);
  }
  .chain-right {
    right: calc(14% + var(--padX));
    transform: translateX(50%);
  }
  @keyframes chain-pulse {
    0%,
    100% {
      opacity: 0.9;
    }
    50% {
      opacity: 0.65;
    }
  }

  /* ===== Plates (centered under chains; respect virtual padding) ===== */
  .plate {
    position: absolute;
    top: calc(28% + 7px + clamp(72px, 12vw, 96px));
    width: clamp(220px, 28%, 260px);
    height: clamp(64px, 9vw, 86px);
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 22px var(--shadow), inset 0 0 26px rgba(46, 230, 182, 0.18);
  }
  .plate-left {
    left: calc(14% + var(--padX));
    transform: translateX(-50%);
  }
  .plate-right {
    right: calc(14% + var(--padX));
    transform: translateX(50%);
  }

  /* Label pills */
  .pill {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 18px !important;
    letter-spacing: 0.2px;
    color: white;
    background: radial-gradient(60% 120% at 50% 0%, rgba(46, 230, 182, 0.22), rgba(45, 212, 240, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.22);
    text-shadow: 0 2px 10px var(--shadow);
    box-shadow: 0 0 28px rgba(46, 230, 182, 0.28), inset 0 0 20px rgba(45, 212, 240, 0.18);
  }

  /* ===== Responsive ===== */
  @media (max-width: 900px) {
    .scale {
      --padX: 28px;
    } /* slightly smaller side padding */
    .chain-left {
      left: calc(20% + var(--padX));
      transform: translateX(-50%);
    }
    .chain-right {
      right: calc(20% + var(--padX));
      transform: translateX(50%);
    }
    .plate-left {
      left: calc(20% + var(--padX));
      transform: translateX(-50%);
    }
    .plate-right {
      right: calc(20% + var(--padX));
      transform: translateX(50%);
    }
    .dot-a {
      left: calc(10% + var(--padX));
    }
    .dot-b {
      right: calc(10% + var(--padX));
    }
  }

  /* @media (max-width: 640px) {
    .scale {
      aspect-ratio: 16/12;
      --padX: 16px;
    }
    .beam {
      left: calc(16% + var(--padX));
      right: calc(16% + var(--padX));
    }
    .chain-left {
      left: calc(22% + var(--padX));
      transform: translateX(-50%);
    }
    .chain-right {
      right: calc(22% + var(--padX));
      transform: translateX(50%);
    }

    /* stack plates centered */
  /* .plate {
      width: min(92%, 320px);
      left: 50% !important;
      right: auto !important;
      transform: translateX(-50%) !important;
    }
    .plate-left {
      top: calc(36% + 7px + clamp(72px, 18vw, 120px));
    }
    .plate-right {
      top: calc(64% + 7px + clamp(72px, 18vw, 120px));
    }

    .dot {
      display: none;
    } keep mobile clean */
  /* } */

  .rig {
    position: absolute;
    inset: 0;
    transform-origin: 50% 28%;
    animation: balance 5.8s ease-in-out infinite;
    will-change: transform;
  }
  .scale:hover .rig {
    animation-play-state: paused;
  }

  @keyframes balance {
    0% {
      transform: rotate(-2.2deg);
    }
    50% {
      transform: rotate(2.2deg);
    }
    100% {
      transform: rotate(-2.2deg);
    }
  }

  .rig .plate .pill {
    display: inline-block;
    animation: pillCounter 5.8s ease-in-out infinite;
    will-change: transform;
  }
  @keyframes pillCounter {
    0% {
      transform: rotate(2.2deg);
    }
    50% {
      transform: rotate(-2.2deg);
    }
    100% {
      transform: rotate(2.2deg);
    }
  }
 /* … all your current styles … */

/* === BALANCE SECTION – mobile overrides (put at the very end of your CSS) === */
@media (max-width: 640px) {
  /* 1) Put the balance machine a bit below the subtitle */
  .lf-balance .scale{
    margin-top: 16px;           /* ↓ pushes it below content */
    background: transparent;    /* remove the big glass box */
    border: 0;
    box-shadow: none;
    aspect-ratio: 10 / 10;
    --padX: 12px;

    /* geometry variables so the line touches the pills */
    --beamY: 34%;               /* vertical position of the beam */
    --chainH: 44px;             /* length of the vertical line down to pill */
  }

  /* keep the stand, but you can hide base/hub if you want
     .lf-balance .stand::before,
     .lf-balance .stand::after { display:none; } */

  /* beam shorter and centered */
  .lf-balance .beam{
    top: var(--beamY);
    left: 8%;
    right: 8%;
    height: 8px;
  }

  /* the vertical line that “touches” the pills */
  .lf-balance .chain{
    top: calc(var(--beamY) + 4px);
    height: var(--chainH);
    opacity: .9;
  }
  .lf-balance .chain-left  { left:  calc(20% + var(--padX)); transform: translateX(-50%); }
  .lf-balance .chain-right { right: calc(20% + var(--padX)); transform: translateX( 50%); }

  /* 2) No card/box behind the pills – keep only the pill buttons */
  .lf-balance .plate{
    top: calc(var(--beamY) + 4px + var(--chainH));  /* sits exactly under the chain */
    left: auto; right: auto;
    width: auto; height: auto;                      /* let the pill define the size */
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .lf-balance .plate-left  { left:  calc(20% + var(--padX)); transform: translateX(-50%); }
  .lf-balance .plate-right { right: calc(20% + var(--padX)); transform: translateX( 50%); }

  /* optional: stop the sway on small screens */
  .lf-balance .rig,
  .lf-balance .rig .plate .pill{
    animation: none;
    transform: none;
  }
}



  /* ...rest of custom.css... */

  /* --- END custom.css --- */

  /* --- START main.purge-1.css --- */
  /* Center align for Powering Your Plans heading */
  .powering-center {
    text-align: center !important;
  }
  /* Alternating Timeline Styles */
  .timeline-vertical-list {
  	position: relative;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	gap: 48px;
  }
  .vertical-timeline {
  	position: relative;
  	margin: 0 auto;
  	padding: 40px 0 40px 0;
  	width: 100%;
  	max-width: 900px;
  }
  .vertical-timeline:before {
  	content: '';
  	position: absolute;
  	top: 0;
  	left: 50%;
  	transform: translateX(-50%);
  	width: 4px;
  	height: 100%;
  	background: var(--tertiary-100, #2ee6b6);
  	z-index: 0;
  	border-radius: 2px;
  }
  .timeline-row {
  	display: flex;
  	width: 100%;
  	justify-content: flex-start;
  	align-items: center;
  	position: relative;
  	min-height: 120px;
  }
  .timeline-row.right {
  	flex-direction: row-reverse;
  }
  .timeline-card {
  	background: transparent;
  	color: var(--tertiary-200, #e6f2ef);
  	border-radius: 18px;
  	border: 1px solid var(--tertiary-100, #2ee6b6);
  	box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
  	padding: 32px 32px 24px 32px;
  	min-width: 320px;
  	max-width: 420px;
  	z-index: 2;
  }
  .timeline-dot {
  	position: absolute;
  	left: 50%;
  	top: 50%;
  	transform: translate(-50%, -50%);
  	width: 18px;
  	height: 18px;
  	background: var(--primary, #2ee6b6);
  	border: 4px solid var(--tertiary-800, #15302c);
  	border-radius: 50%;
  	z-index: 3;
  	box-shadow: 0 0 0 4px var(--tertiary-100, #2ee6b6);
  }
  @media (max-width: 900px) {
  	.vertical-timeline { max-width: 100%; }
  	.timeline-row, .timeline-row.right { flex-direction: column !important; align-items: center; }
  	.timeline-card { min-width: 0; width: 98%; max-width: 98vw; }
  }
  /* Breadcrumb visibility improvements */
  .breadcrumb-visible {
  	padding: 1rem 0 0 0;
  	margin-bottom: 2rem;
  	/*margin-top:70px;*/
  	background: none;
  	border-radius: 0;
  	box-shadow: none;
  	position: relative;
  	z-index: 2;
  }
  .breadcrumb-nav .breadcrumb-item,
  .breadcrumb-nav .breadcrumb-item a {
  	color: #c1ffb4;
  }
  .breadcrumb-nav .breadcrumb-item.active {
  	color: #fff;
  }
  /* Center align breadcrumbs */
  .breadcrumb-center {
  	display: flex;
  	justify-content: center;
  }
  .breadcrumb-center .breadcrumb {
  	justify-content: center;
  }
  /* Breadcrumb styles */
  .breadcrumb-nav {
      /*top: 100px !important;*/
    font-size: 1rem;
    /*margin-bottom: 5rem !important;*/
  }
  .breadcrumb {
  	display: flex;
  	flex-wrap: wrap;
  	list-style: none;
  	padding: 0;
  	background: none;
  	margin: 0;
  }
  .breadcrumb-item + .breadcrumb-item::before {
  	content: "/";
  	padding: 0 0.5em;
  	color: #178d72;
  }
  .breadcrumb-item a {
  	color: #178d72;
  	text-decoration: none;
  	transition: text-decoration 0.2s;
  }
  .breadcrumb-item a:hover {
  	text-decoration: underline;
  }
  .breadcrumb-item.active {
  	color: white;
  	font-weight: 500;
  }

  /* Timeline container */
  .milestone-vertical-list {
    position: relative;
    margin: 40px auto;
    padding: 20px 0;
    width: 80%;
  }

  /* Central vertical line */
  .milestone-vertical-list::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #c1ffb4; /* line color */
    transform: translateX(-50%);
  }

  /* Card (milestone item) */
  .milestone-item {
    position: relative;
    width: 50%;
    padding: 20px;
    margin: 20px 0;
    border: 2px solid #c1ffb4; /* border for card */
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05); /* subtle background */
    box-sizing: border-box;
  }

  /* Text styling */
  .milestone-year {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
  }
  .milestone-desc {
    font-size: 15px;
    color: #ccc;
  }

  /* Left side */
  .milestone-item:nth-child(odd) {
    left: -40px;
    text-align: right;
  }
  .milestone-item:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 75px;
    right: -40px;
    width: 38px;
    height: 2px;
    background: #c1ffb4; /* connector line */
  }

  /* Right side */
  .milestone-item:nth-child(even) {
    left: 55%;
    text-align: left;
  }
  .milestone-item:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 95px;
    left: -40px;
    width: 38px;
    height: 2px;
    background: #c1ffb4; /* connector line */
  }

  /* Responsive (stack all left on mobile) */
  @media screen and (max-width: 768px) {
    .milestone-item {
      width: 100%;
      left: 0 !important;
      text-align: left;
      margin-left: 40px;
    }
    .milestone-item::before {
      left: -22px !important;
      right: auto !important;
    }
  }

  /* Central vertical line */
  .milestone-vertical-list::before {
    content: '';
    position: absolute;
    top: 20px;   /* leave space for top dot */
    bottom: 20px; /* leave space for bottom dot */
    left: 50%;
    width: 4px;
    background: #c1ffb4; /* line color */
    transform: translateX(-50%);
  }
  /* Responsive (stack all left on mobile) */
  @media screen and (max-width: 768px) {
    /* Remove vertical line */
    .milestone-vertical-list::before {
      display: none;
    }

    /* Remove connector lines */
    .milestone-item::before {
      display: none !important;
    }

    /* Remove extra gap between items */
    .milestone-vertical-list {
      gap: 0 !important;
    }

    /* Make cards full width and center align */
    .milestone-item {
      width: 100%;
      left: 0 !important;
      margin: 15px 0;        /* compact spacing */
      text-align: center;    /* center text */
      justify-content: center;
    }

    /* Center headings and descriptions */
    .milestone-year,
    .milestone-desc {
      text-align: center;
    }
  }

  /* --- Design tokens (tweak as you like) --- */
:root{
  --brand: #178d72;                  /* primary green */
  --ink: #0b0f10;                    /* body text */
  --muted: rgba(11,15,16,.65);
  --card-bg: #faf7f4;                /* light sand tint */
  --card-alt: #f7f2ee;               /* alt tint for alternating cards */
  --card-border: rgba(0,0,0,.06);
  --ring: rgba(23,141,114,.25);
}

/* Dark mode support if you have .dark on <html>/<body> */
.dark{
  --ink: #e8f2ef;
  --muted: rgba(232,242,239,.7);
  --card-bg: rgba(255,255,255,.06);
  --card-alt: rgba(255,255,255,.08);
  --card-border: rgba(255,255,255,.12);
  --ring: rgba(23,141,114,.35);
}




  /* ...rest of main.purge-1.css... */

  /* --- END main.purge-1.css --- */

  /* Unique Process Section Styles */
  #our-process {
    padding: 64px 0 48px 0;
    position: relative;
    overflow: hidden;
  }
  #our-process .heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
  }
  #our-process .heading .our {
    color: #178d72;
    font-size: 1.2em;
  }
  #our-process .heading .process-word {
    color: #c1ffb4;
    font-size: 1.5em;
    font-weight: 900;
  }
  #our-process .wires {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    max-width: 100vw;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
  }
  #our-process .wire {
    stroke: #d1e7dd;
    stroke-width: 3;
    fill: none;
    opacity: 0.7;
  }
  #our-process .wire--light {
    stroke: #b2dfdb;
    stroke-width: 2;
    opacity: 0.4;
  }
  #our-process .flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    grid-auto-rows: 120px;
    gap: 32px 48px;
    justify-content: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
  }
  #our-process .node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
  }
  #our-process .tile {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(30, 149, 121, 0.08);
    padding: 0.5rem 0.5rem 0.75rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 64px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
  }
  #our-process .pill {
    background: linear-gradient(135deg, #e6f7f3 0%, #caffc6 100%);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgba(30, 149, 121, 0.10);
  }
  #our-process .pill svg {
    width: 28px;
    height: 28px;
    color: #178d72;
    stroke: #178d72;
  }
  #our-process .label {
    margin-top: 0.5rem;
    font-size: 1.08rem;
    color: #222;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.01em;
  }
  #our-process .center {
    grid-column: 2;
    grid-row: 2 / span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  #our-process .bank {
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 6px 32px 0 rgba(30, 149, 121, 0.10);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
  }
  #our-process .bank-svg {
    width: 48px;
    height: 48px;
    color: #178d72;
    fill: #178d72;
  }

  /* Why Choose Us / Our Services section - Card Only Update */
  #our_services .services-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
  }

  #our_services .service-item {
   
    border-radius: 20px;
    box-shadow: 0 4px 24px 0 rgba(30, 149, 121, 0.07);
    padding: 48px 24px 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 420px;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  #our_services .service-item:hover {
    box-shadow: 0 8px 40px 0 rgba(30, 149, 121, 0.13);
    transform: translateY(-6px) scale(1.02);
  }

  #our_services .icon-box {
    background: #caffc6;
    color: #1e9579;
    border-radius: 50% !important;
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  #our_services .title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #181818;
    margin-bottom: 0.5rem;
    text-align: left;
    width: 100%;
  }

  #our_services .desc {
    color: #45454c;
    opacity: 0.85;
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
    text-align: left;
    width: 100%;
  }

  /* Gradient background for 2nd, 4th, and 6th service cards only */
  #our_services .service-item:nth-child(2),
  #our_services .service-item:nth-child(4),
  #our_services .service-item:nth-child(6) {
    color: white;
    background: linear-gradient(325deg, rgba(193,255,180,0.32) 0%, rgba(245,238,233,0.32) 100%);
    box-shadow: 0 8px 40px 0 rgba(30, 149, 121, 0.10);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1.5px solid rgba(193,255,180,0.25);
    }

  #our_services .service-item:nth-child(2) .title,
  #our_services .service-item:nth-child(4) .title,
  #our_services .service-item:nth-child(6) .title,
  #our_services .service-item:nth-child(2) .desc,
  #our_services .service-item:nth-child(4) .desc,
  #our_services .service-item:nth-child(6) .desc {
    color: white !important;
    opacity: 1 !important;
  }

  #our_services .service-item:not(:nth-child(2)):not(:nth-child(4)):not(:nth-child(6)) .title,
  #our_services .service-item:not(:nth-child(2)):not(:nth-child(4)):not(:nth-child(6)) .desc {
    color: #fff !important;
    opacity: 0.92 !important;
  }

  /* Why Choose Us / Our Services section - Modern Card Grid */
  /* #our_services {
    
    padding: 60px 0;
  } */

  #our_services .services-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 0;
  }

  #our_services .service-item {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 32px 0 rgba(30, 149, 121, 0.07);
    padding: 22px 16px 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 140px;
  }

  #our_services .service-item:hover {
    box-shadow: 0 8px 40px 0 rgba(30, 149, 121, 0.13);
    transform: translateY(-6px) scale(1.02);
  }

  #our_services .icon-box {
    background: #e6f7f3;
    color: #178d72 !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
  }

  #our_services .title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #181818;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }

  #our_services .desc {
    color: #45454c;
    opacity: 0.85;
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  #our_services .service-item .price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
  }

  #our_services .service-item .price-icon {
    border: 1.5px solid #1e9579;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e9579;
    font-size: 1.1rem;
  }

  #our_services .service-item .price-text {
    color: #1e9579;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.01em;
  }

  .consultation-section .py-6{
padding-top: 0 !important;
padding-bottom: 0 !important;
  }

  .mb-70{
    margin-bottom: 70px;;
  }

 .white-form {
    border-radius: 15px !important;
    background:#ffffff40 ;
  }
   
   
  /* Custom tab style for solutions section */
  .main-solutions-nav {
            background: #d6ffc4;
            border-radius: 1rem;
            padding: 0.5rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 16px 0 rgba(0,0,0,0.04);
            margin-bottom: 2.5rem;
            gap: 0;
        }
        .main-solutions-nav li {
            flex: 1 1 0;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 0.5rem;
            border-radius: 1.5rem;
            transition: background 0.2s, color 0.2s;
            min-width: 180px;
            height: 64px;
        }
        .main-solutions-nav a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            font-weight: 700;
            font-size: 1.35rem;
            color: #181818;
            background: transparent;
            border-radius: 1.5rem;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }
        .main-solutions-nav .uc-active a,
        .main-solutions-nav a[aria-selected="true"] {
            background: #06252c;
            color: #fff;
            border-radius: 1.5rem;
            box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
        }
        .main-solutions-nav a:focus {
            outline: none;
            box-shadow: 0 0 0 2px #23232333;
        }
        @media (max-width: 900px) {
            .main-solutions-nav {
                flex-direction: column;
                gap: 0.5rem;
                padding: 1rem;
            }
            .main-solutions-nav li {
                min-width: 120px;
                height: 48px;
            }
            .main-solutions-nav a {
                font-size: 1rem;
                        padding-left: 20px;
        padding-right: 20px;
            }
        }

    
    /* ===== Journey of Growth / Solutions switcher ===== */

/* Outer box (applies to all tabs content area) */
#solutions .main-solutions-switcher{
  background: radial-gradient(1200px 600px at 20% -10%, rgba(255,255,255,.06), transparent),
              linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 24px;
  padding: 24px;                    /* space around each tabpanel */
  overflow: hidden;                 /* hide overflow rings/images */
}

/* Give each tabpanel some breathing room inside the outer box */
#solutions .main-solutions-switcher > div[role="tabpanel"] .solutions-item{
  padding: 8px 4px;
}

/* Optional: soften the image card on the right */
#solutions .solutions-item figure{
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}

/* ========= Cards: apply to ALL tabs (24, 26, 28 …) ========= */

/* Outer green-ish framed container that wraps the list */
.main-solutions-switcher [role="tabpanel"] .solutions-item .p-3 {
  background: #0e2f30;                        /* dark teal */
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 1.5rem;                             /* keep your xl:p-4 if present */
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04),
              0 8px 24px rgba(0,0,0,.15);
}

/* List reset + icon sizing for every tab */
.main-solutions-switcher [role="tabpanel"] .nav-y { margin: 0; padding: 0; }
.main-solutions-switcher [role="tabpanel"] .nav-y li { list-style: none; }
.main-solutions-switcher [role="tabpanel"] .nav-y .col-auto img{
  width: 22px; height: 22px; display: block;
  padding-top: 0 !important;
  filter: brightness(1.05);
}

/* First metric card (blue) */
.main-solutions-switcher [role="tabpanel"] .nav-y li:first-child{
  background: #0b2b43;                         /* deep blue */
  border: 1.5px solid rgba(133,194,255,.35);
  border-left: 6px solid #3aa0ff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 6px 24px rgba(24,120,200,.18);
}

/* Second metric card (green) */
.main-solutions-switcher [role="tabpanel"] .nav-y li:nth-child(2){
  background: #0d3b2e;                         /* deep green */
  border: 1.5px solid rgba(160,235,198,.32);
  border-left: 6px solid #26d38f;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 6px 24px rgba(25,180,120,.16);
}

/* Optional: style a third card if present (subtle purple) */
.main-solutions-switcher [role="tabpanel"] .nav-y li:nth-child(3){
  background: #2a2142;                         /* deep purple */
  border: 1.5px solid rgba(200,170,255,.28);
  border-left: 6px solid #9f7aea;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 6px 24px rgba(130,90,220,.16);
}

/* Text color inside those cards */
.main-solutions-switcher [role="tabpanel"] .nav-y li span{
  color: #e9fffb; 
  font-weight: 600;
  letter-spacing: .2px;
}

/* Vertical spacing between cards */
.main-solutions-switcher [role="tabpanel"] .nav-y li + li { margin-top: 12px; }

/* Headings/subtext within each tab’s block */
.main-solutions-switcher [role="tabpanel"] h3 { color: #e9fffb !important; }
.main-solutions-switcher [role="tabpanel"] p  { color: #bfe6df !important;

    padding-top:50px;
    padding-bottom: 50px;
}

/* Style for white check icon */
.check-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #26d38f;            /* green circle background */
  border-radius: 50%;             /* make it round */
  color: #fff;                    /* white checkmark */
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  position: relative;
}

/* Insert the check symbol */
.check-icon::before {
  content: "✔";                   /* checkmark */
  color: #fff;
  font-size: 14px;
}


/* ===== Responsive tweaks ===== */
@media (max-width: 1024px){
  #solutions .main-solutions-switcher { padding: 18px; }
}
@media (max-width: 640px){
  #solutions .main-solutions-switcher { padding: 14px; border-radius: 18px; }
  .main-solutions-switcher [role="tabpanel"] .nav-y li { 
    padding: 12px 14px; 
    border-left-width: 5px; 
  }
}

    
        
    :root{
  --bg:#092e31;
  --panel:#0f3c3f;
  --text:#e9fffb;
  --muted:#bfe6df;
  --border:#ffffff33;
  --accent:#6ee7c8;
}

/* Base */
    html,body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font:16px/1.6 system-ui, Segoe UI, Roboto, Arial, sans-serif;
 }

    .wrap{
  max-width:900px;
  margin:auto;
  padding:48px 20px;
}

/* ===== Page-scoped styles ===== */
.tc-page h1{
  font-size:2.25rem !important;
  line-height:1.25 !important;
  margin:0.5rem 0 1rem !important;
  letter-spacing:.02em;
  color:var(--text) !important;
  font-weight:700 !important;
}

.tc-page h2{
  font-size:1.25rem !important;
  line-height:1.35 !important;
  margin:2rem 0 .5rem !important;
  color:var(--text) !important;
  font-weight:700 !important;
}

.tc-page p,
.tc-page li{
  color:var(--muted) !important;
  font-weight:400;
}

.tc-page .card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px;
}

.tc-page .meta{
  font-size:.9rem;
  color:var(--muted);
}

.tc-page a{
  color:var(--accent);
  text-decoration:none;
}
.tc-page a:hover{ text-decoration:underline; }

.tc-page ul{ padding-left:1.2rem; }

/* Breadcrumb (optional) */
.breadcrumb-nav{ background:transparent; border-bottom:1px solid var(--border); }
.breadcrumb{
  max-width:900px; margin:0 auto; padding:12px 20px;
  list-style:none; display:flex; flex-wrap:wrap; gap:8px;
}
.breadcrumb-item a{ color:var(--accent); }
.breadcrumb-item.active{ color:var(--text); opacity:.8; }
.breadcrumb-item + .breadcrumb-item::before{
  content:"/"; margin-right:8px; color:var(--muted);
}

/* Small screens */
@media (max-width:640px){
  .wrap{ padding:32px 16px; }
  .tc-page h1{ font-size:1.8rem !important; }
  .tc-page h2{ font-size:1.1rem !important; }
}


}

/* Clients / Partners strip */


.clients-strip .clients-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ✅ centers the last row */
  gap: 48px 64px;
}
#clients_brands .clients-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px;

  display: flex !important;  /* override grid */
  flex-wrap: wrap;
  justify-content: center;   /* ✅ centers the last line */
  gap: 48px 64px;
}

#clients_brands .client{
  flex: 0 0 180px;           /* fixed block width for clean wrapping */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius:15px;
}

.clients-strip {
    padding-bottom: 50px;
}



@media (prefers-color-scheme: dark) {
  .clients-strip .client span { color: #f2f4f5; }
  .clients-strip .client img { filter: grayscale(100%) brightness(1.1); }
}

/* Hover / focus */
.clients-strip .client:hover img,
.clients-strip .client:focus-visible img {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-1px);
}
.clients-strip .client:focus-visible {
  outline: 2px solid #74e4c7;
  outline-offset: 3px;
  border-radius: 10px;
}

/* Responsive grid */
@media (max-width: 1100px) {
  .clients-strip .clients-wrap { grid-template-columns: repeat(4, minmax(120px, 1fr)); }
}
@media (max-width: 900px) {
  .clients-strip .clients-wrap { grid-template-columns: repeat(3, minmax(120px, 1fr)); gap: 36px; }
}
@media (max-width: 640px) {
  .clients-strip .clients-wrap { grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 28px 24px; }
  .clients-strip .client img 
  
  {         border-radius: 5px;
        /*width: 75px;*/
        height: auto; }
  .clients-strip .client span { font-weight: 600; }
}

/*contact page*/



@media (max-width: 768px) {
  .consultation-image {
    border-radius: 1.5rem; /* all 4 corners rounded */
    
  }
  .flex-wrap{
    flex-wrap: wrap;
    padding-left:20px;
    padding-right:20px;
}
}

/* ===== Match LinFinserve dark theme ===== */
/*#clients_feedback,*/
/*#clients_feedback .section-outer {*/
/*  background: transparent !important;          */
/*}*/

/* Optional: hero-like dark gradient backdrop for this band */
#clients_feedback .section-outer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #0d2f33 0%, #0f3d42 55%, #0b2a2e 100%);
}
#clients_feedback .section-inner { position: relative; z-index: 1; }

/* Heading */
#clients_feedback .section-heading .ft-serif{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #b9f5df;                               /* minty, brand-friendly */
}
#clients_feedback .section-heading h2{
  color: #e6f7f7;                               /* near-white */
}

/* Grid stays the same (2 cols desktop / 1 mobile) */

/* Cards: dark glass, subtle border */
#clients_feedback .clients-feedback-item{
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  color: #d9ecec;
}
#clients_feedback .clients-feedback-item .desc{
  color: #c3dede;
}
#clients_feedback .author h6{ color:#ffffff; }
#clients_feedback .author img{ box-shadow: 0 4px 12px rgba(0,0,0,.25); }

/* Stars */
#clients_feedback .rating svg path{ fill:#ffd166; }

/* Button + note */
#clients_feedback .section-footer .btn{
  background-image: linear-gradient(90deg, #23b07c, #37c6aa);
  color:#0b2a2e;
}
#clients_feedback .section-footer .fs-6{ color:#cfe7e7; }

/* Mobile tweaks */
@media (max-width: 767px){
  #clients_feedback .clients-feedback-item{ padding:18px; }
}


/*Service - Tab Section */

.uc-nav-default>li.uc-active>a {
    color: #ffffff !important;
}


/* ===== Section shell ===== */


/* === 0) 2×2 grid layout for your four cards === */
#helpful-links .reach__grid{
  display:grid !important;
  gap:28px;
  grid-template-columns:1fr;                 /* mobile */
}
@media (min-width:900px){
  #helpful-links .reach__grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important; /* 2 cols */
  }
}

/* === 1) Put the section above theme overlays and give it a clean backdrop === */
#helpful-links{
        padding-bottom: 100px;
  position: relative !important;
  isolation: isolate !important;    /* new stacking context */
  z-index: 100 !important;
}
/* set this to your page background color (dark teal) */
:root{ --site-bg: #062F33; }
#helpful-links::before{
  content:"";
  position:absolute; inset:0;
  
  z-index:0;
}

/* ensure cards paint above the mask */
#helpful-links .reach-card{
  position: relative; z-index:1;
  background:#f3ece6 !important;    /* beige card */
  border-radius:22px;
  box-shadow:0 8px 26px rgba(0,0,0,.07);
  grid-template-columns:auto 1fr auto;
}

/* icon tile sizing (prevents collapse) */
#helpful-links .reach-card__icon{
  width:88px; height:88px;
  border-radius:16px; background:#fff; 
  display:grid; place-items:center;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.05);
}
#helpful-links .reach-card__icon img{ width:50px; height:auto; }

/* headings, subtext, and CTA */
#helpful-links .reach-card__heading{ margin:0 0 6px; font-weight:800; font-size:22px; 
    color: #052128;}
#helpful-links .reach-card__sub{ margin:0; color:#676767; }
#helpful-links .reach-card__cta{ white-space:nowrap; font-weight:700; color:#0f9172; text-decoration:none; }

/* === 2) Push theme overlays behind (so they never sit on top) === */
.hero-header .position-absolute,
.hero-header .position-cover,
.section-outer .position-absolute,
.section-outer .position-cover,
.section-outer [class*="rounded-circle"],
.section-outer .blend-difference,
.section-outer [class*="blend-"]{
  z-index:-1 !important;
  mix-blend-mode:normal !important;
  pointer-events:none !important;
}



.reach{ padding:clamp(32px,5vw,56px) 16px; color:var(--text); }
.reach__container{ max-width:1100px; margin:0 auto; }
.reach__title{
  text-align:center; margin:0 0 28px;
  font-weight:800; letter-spacing:.2px;
  font-size:clamp(28px,4vw,42px); line-height:1.1;
}

/* ===== 2×2 grid ===== */
.reach__grid{
  display:grid !important;
  grid-template-columns:1fr;     /* mobile: 1 col */
  gap:28px;
}
@media (min-width:900px){
  .reach__grid{ grid-template-columns:repeat(2,minmax(0,1fr)) !important; }
}

/* ===== Card ===== */
.reach-card{
  display:grid; align-items:center;
  grid-template-columns:auto 1fr auto;
  gap:clamp(18px,3vw,28px);
  padding:clamp(18px,3vw,28px);
  background:var(--card-bg) !important;       /* beat theme utilities */
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
}

/* Icon tile */
.reach-card__icon{
  width:clamp(72px,9vw,88px); height:clamp(72px,9vw,88px);
  border-radius:var(--radius-md);
  background:var(--white);
  display:grid; place-items:center;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.05);
}
.reach-card__icon img{ width:clamp(34px,5vw,42px); height:auto; }

/* Content */
.reach-card__heading{
  margin:0 0 6px; font-weight:800;
  font-size:clamp(18px,2.2vw,22px);
}
.reach-card__sub{
  margin:0; color:var(--muted);
  font-size:clamp(14px,1.9vw,16px); line-height:1.55;
}

/* CTA (right) */
.reach-card__cta{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; text-decoration:none;
  color:var(--cta);
  white-space:nowrap;
}
.reach-card__cta i{ position:relative; top:1px; }

/* Stack the card on small screens */
@media (max-width:640px){
  .reach-card{ grid-template-columns:1fr; }
  .reach-card__cta{ justify-self:start; }
}

.form-pb {
padding-bottom:100px;
    
    
    
}
.form-bg  {
    background: rgb(123 123 123 / 19%) !important;
}


.support-color {
    color: rgba(var(--bs-quaternary-rgb), var(--bs-text-opacity)) !important;
}


/* Team avatars */
.team-avatar {
  width: 120px;            /* adjust 80–120px as you like */
  height: 120px;
  border-radius: 9999px;  /* perfect circle */
  object-fit: cover;      /* crops to fill without distortion */
  display: block;
  flex: 0 0 auto;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  border: 3px solid rgba(255,255,255,.08);
}

/* Optional: keep cards equal height cleanly */
.features-item.h-100 { display: flex; flex-direction: column; }


/* Scope everything to the 360 section only */
#biz360 { --accent:#11a57a; --bg:#082329; --text:#dff9f3; }

#biz360 .section-outer { background: transparent; }

/* Tabs container */
#biz360 .neo-tabs {
  background: #0e2a2f;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 12px;
}

/* Tabs list */
#biz360 .custom-tabs-nav {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Tab buttons */
#biz360 .custom-tabs-nav > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 56px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: #e9fffa;
  font-weight: 700;
  letter-spacing: .2px;
  text-decoration: none;
  transition: all .25s ease;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
}

#biz360 .custom-tabs-nav > li > a:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 6px 16px rgba(0,0,0,.18);
}

/* Active tab (UC adds .uc-active on li) */
#biz360 .custom-tabs-nav > li.uc-active > a {
  background: #adffea !important;
  color: #072623;
  box-shadow: 0 6px 26px rgba(17,165,122,.45), inset 0 0 0 1px rgba(255,255,255,.1);
}

/* Key Services list (base) */
#biz360 .nav-y { list-style: none; margin: 0; padding: 0; }
#biz360 .nav-y > li {
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 14px;
  color: #e9fffa;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

/* Hover lift */
#biz360 .nav-y > li:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}

/* Row color tokens (match your theme palette) */
#biz360 .nav-y > li.pill-1 { background:#0c3342; box-shadow: inset 0 0 0 1px rgba(31,192,169,.18); }
#biz360 .nav-y > li.pill-2 { background:#0e3a33; box-shadow: inset 0 0 0 1px rgba(31,192,169,.18); }
#biz360 .nav-y > li.pill-3 { background:#2a1f3e; box-shadow: inset 0 0 0 1px rgba(182,148,255,.18); }
#biz360 .nav-y > li.pill-4 { background:#16353a; box-shadow: inset 0 0 0 1px rgba(31,192,169,.16); }
#biz360 .nav-y > li.pill-5 { background:#12323a; box-shadow: inset 0 0 0 1px rgba(31,192,169,.16); }
#biz360 .nav-y > li.pill-6 { background:#132730; box-shadow: inset 0 0 0 1px rgba(31,192,169,.16); }

/* Bigger, themed check icon */
#biz360 .check-icon {
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%;
  background: linear-gradient(145deg,#1ecaa3,#0f8e6c);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(17,165,122,.35);
}
#biz360 .check-icon::before {
  content: "✓";
  font-weight: 900;
  color: #072623;
  font-size: 14px; line-height: 1;
}


/* Bigger check icon */
.nav-y li .check-icon {
  font-size: 1.3rem;
  margin-right: 8px;
}

/* ====== RESPONSIVE ONLY (sizes/layout) ====== */

/* ≤1199px — tighten tab width a bit */
@media (max-width: 1199px) {
  #biz360 .custom-tabs-nav > li > a {
    min-width: 200px;   /* was 210px */
  }
}

/* ≤991px — let tabs wrap into 2 columns, keep the same look */
@media (max-width: 991px) {
  #biz360 .custom-tabs-nav { flex-wrap: wrap; }
  #biz360 .custom-tabs-nav > li { flex: 1 1 calc(50% - 14px); min-width: 0; }
  #biz360 .custom-tabs-nav > li > a { width: 100%; min-width: 0; }

  /* list spacing slightly tighter so lines don’t wrap awkwardly */
  #biz360 .nav-y > li { padding: 12px 16px; margin-bottom: 12px; }
}

/* ≤767px — stack tabs one per row */
@media (max-width: 767px) {
  #biz360 .custom-tabs-nav > li { flex: 1 1 100%; }
  #biz360 .custom-tabs-nav > li > a {
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 0 16px;
    font-size: 15px;
  }

  /* list items: compact spacing only */
  #biz360 .nav-y > li { padding: 10px 14px; margin-bottom: 10px; }
  #biz360 .check-icon { width: 20px; height: 20px; min-width: 20px; }
  #biz360 .chec





/* hide submenu by default */

/* keep menus above the page */
.uc-header,
.uc-navbar-container,
.uc-navbar-main,
.uc-navbar { position: relative; z-index: 4000; }

/* parent is the anchor */
.uc-navbar-center .uc-parent { position: relative; }

/* dropdown panel: solid theme background + high z-index */
.uc-navbar-center .uc-parent > .uc-navbar-dropdown{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 6px 0;
  min-width: 240px;
  list-style: none;

  background: #0b3b41;                 /* solid deep teal (no transparency) */
  border: 1px solid rgba(23,179,158,.35);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);

  z-index: 5000;                        /* sits above breadcrumb etc. */
  pointer-events: auto;
}

/* keep open while moving into it */
.uc-navbar-center .uc-parent:hover > .uc-navbar-dropdown,
.uc-navbar-center .uc-parent:focus-within > .uc-navbar-dropdown,
.uc-navbar-center .uc-parent > .uc-navbar-dropdown:hover{
  display: block;
}

/* small “hover bridge” to remove gaps */
.uc-navbar-center .uc-parent > .uc-navbar-dropdown::before{
  content:""; position:absolute; left:0; right:0; top:-10px; height:10px;
}

/* items */
.uc-navbar-dropdown > li { list-style: none; }
.uc-navbar-dropdown > li > a{
  display:block; padding:10px 16px; color:#e7fbf8; text-decoration:none; white-space:nowrap;
}
.uc-navbar-dropdown > li > a:hover{
  background: rgba(23,179,158,0.14); color:#fff;
  border-left: 3px solid #17b39e; padding-left: 13px;
}


/* --- Support Box Styling (Subtle Border + Glow) --- */
.bg-secondary.dark\:bg-gray-800 {
  border: 1px solid rgba(0, 255, 150, 0.25);
  border-radius: 18px;
  box-shadow: 0 0 10px rgba(0, 255, 180, 0.1);
  transition: all 0.3s ease;
  background: rgba(10, 35, 45, 0.95); /* same theme tone */
}

.bg-secondary.dark\:bg-gray-800:hover {
  border-color: rgba(0, 255, 180, 0.5);
  box-shadow: 0 0 18px rgba(0, 255, 180, 0.35);
  transform: translateY(-6px);
}

.bg-secondary.dark\:bg-gray-800 img {
  filter: drop-shadow(0 0 6px rgba(0, 255, 200, 0.3));
  transition: transform 0.3s ease;
}

.bg-secondary.dark\:bg-gray-800:hover img {
  transform: scale(1.05);
}

/* Optional uniform box height for neat 2x2 grid */
@media (min-width: 768px) {
  .bg-secondary.dark\:bg-gray-800 {
    min-height: 240px;
  }
}




    /* ---------- Theme tokens (tweak to your brand) ---------- */
    :root{
      --bg: #071f23;                /* page background */
      --card: rgba(255,255,255,.035);
      --text: #e8f7f4;
      --muted: #a9c3bf;
      --accent: #18b892;            /* neon teal */
      --accent-2: #1f946f;
      --border: rgba(24, 184, 146, .35);
      --shadow: 0 10px 24px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255,255,255,.02) inset;
    }
    
    .gov-schemes{
      padding: clamp(48px, 6vw, 80px) 0;
      color: var(--text);
      background: transparent; /* keep your page bg */
    }
    
    .gov-schemes .container{
      max-width: 1100px;
      margin-inline: auto;
      padding-inline: 16px;
    }
    
    /* ---------- Heading ---------- */
    .gov-schemes__head{
      text-align: center;
      margin-bottom: 28px;
    }
    .gov-schemes__head h2{
      font-size: clamp(24px, 2.6vw, 36px);
      line-height: 1.2;
      margin: 0 0 10px;
    }
    .gov-schemes__head p{
      color: var(--muted);
      max-width: 860px;
      margin: 30px auto;
    }
    
    /* ---------- Table shell ---------- */
    .gov-schemes__table-wrap{
      background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,0) 60%);
      border-radius: 14px;
      padding: 2px;                  /* glow frame pad */
    }
    
    .gov-schemes__table{
      width: 100%;
      border-collapse: collapse;
      background: var(--card);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
    }
    
    /* ---------- Table header ---------- */
    .gov-schemes__table thead th{
      text-align: left;
      font-weight: 700;
      letter-spacing: .2px;
      padding: 16px 18px;
      font-size: 14.5px;
      color: #dffcf7;
      background:
        linear-gradient(180deg, rgba(24,184,146,.25), rgba(24,184,146,.12)),
        rgba(255,255,255,.02);
      border-bottom: 1px solid var(--border);
    }
    
    /* ---------- Table rows ---------- */
    .gov-schemes__table td{
      padding: 16px 18px;
      vertical-align: top;
      color: var(--text);
      border-top: 1px solid rgba(255,255,255,.05);
    }
    
    .gov-schemes__table tbody tr:first-child td{
      border-top: none;
    }
    
    .gov-schemes__table tbody tr{
      transition: background .25s ease, box-shadow .25s ease, transform .05s ease;
    }
    .gov-schemes__table tbody tr:hover{
      background: rgba(24,184,146,.06);
      box-shadow: 0 0 0 1px rgba(24,184,146,.2) inset;
    }
    
    /* Pills for Shishu/Kishore/Tarun etc. */
    .pill{
      display: inline-block;
      padding: 2px 8px;
      font-size: 12px;
      border-radius: 999px;
      color: #0e2a28;
      background: linear-gradient(180deg, #7ef7d5, #52d9b9);
      margin-inline: 2px;
    }
    
    /* ---------- Footer tip box ---------- */
    .gov-schemes__note{
      margin-top: 16px;
      color: var(--muted);
      border-left: 3px solid var(--accent);
      padding: 12px 14px;
      background: rgba(255,255,255,.03);
      border-radius: 8px;
    }
    
/* ---------- Responsive: table -> cards (ONLY for small screens) ---------- */
@media (max-width: 576px){  /* CHANGED to 576px */
  .gov-schemes__table thead{
    display: none !important;
  }

  .gov-schemes__table,
  .gov-schemes__table tbody,
  .gov-schemes__table tr,
  .gov-schemes__table td{
    display: block !important;
    width: 100% !important;
  }

  .gov-schemes__table tr{
    margin: 14px 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,.03);
    box-shadow: var(--shadow);
  }

  .gov-schemes__table td{
    border: none;
    border-bottom: 1px dashed rgba(255,255,255,.08);
    padding: 12px;
    position: relative;
  }

  .gov-schemes__table td:last-child{
    border-bottom: none;
  }

  .gov-schemes__table td::before{
    content: attr(data-label);
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 6px;
  }
}


/* ===== Eligibility Section (unique class namespace) ===== */
.eligibility-wrap{
  padding: clamp(32px, 5vw, 64px) 0;
  background: transparent; /* sits on your dark page */
}

.eligibility-container{
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.eligibility-head{
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.eligibility-title{
  margin: 0 0 6px 0;
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: .2px;
  color: #D7FFE6;                 /* soft mint headline */
  text-shadow: 0 0 16px rgba(51, 214, 159, .25);
}

.eligibility-sub{
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(14px, 1.8vw, 18px);
}

/* Grid: 1 column on mobile, 2 columns on ≥768px */
.eligibility-grid{
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 18px);
  padding: 0;
  margin: clamp(18px, 2.2vw, 28px) 0 0 0;
}

@media (min-width: 768px){
  .eligibility-grid{
    grid-template-columns: 1fr 1fr;
  }
}

/* Item card */
.eligibility-item{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  background: linear-gradient(180deg, rgba(13, 38, 45, .85), rgba(16, 46, 52, .85));
  border: 1px solid rgba(52, 211, 153, .18);
  border-radius: 18px;
  padding: clamp(16px, 2.2vw, 22px);
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 12px 28px rgba(0,0,0,.35),
    0 0 0 0 rgba(52, 211, 153, .0);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

/* soft glow on hover/focus */
.eligibility-item:hover,
.eligibility-item:focus-within{
  border-color: rgba(52, 211, 153, .35);
  box-shadow:
    0 1px 0 rgba(255,255,255,.06) inset,
    0 14px 34px rgba(0,0,0,.45),
    0 0 22px rgba(52, 211, 153, .24);
  transform: translateY(-2px);
}

/* Icon badge */
.eligibility-icon{
  --size: 44px;
  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 22px;
  color: #0B2B2F;
  background:
    radial-gradient(120% 120% at 20% 20%, #73F8C4 0%, #1FE3A0 55%, #0FD18E 100%);
  border: 1px solid rgba(0,0,0,.25);
  border-radius: 12px;
  box-shadow:
    0 8px 18px rgba(31, 227, 160, .25),
    inset 0 1px 0 rgba(255,255,255,.35);
  flex: 0 0 auto;
}

/* Text block */
.eligibility-text{
  min-width: 0;
}

.eligibility-point{
  margin: 0 0 4px 0;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 700;
  color: #EFFFF7;
  letter-spacing: .2px;
}

.eligibility-note{
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.55;
}

/* Optional: subtle divider feel without real lines */
.eligibility-item::after{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  pointer-events: none;
  background: radial-gradient(50% 60% at 10% 0%,
    rgba(52, 211, 153, .09), transparent 60%);
  opacity: .7;
}



/* ================================
   Lin FinServe - Steps Section (Dark Theme)
   ================================ */
:root {
  --lf-bg-dark: #001e1b;
  --lf-green: #00dca0;
  --lf-green-soft: #00b78c;
  --lf-text-light: #eaf7f3;
  --lf-text-dim: #b0c9c3;
  --lf-card-bg: #032623;
}

/* SECTION BASE */
.lf-steps.dark {
  background: var(--lf-bg-dark);
  padding: 60px 20px;
}

.lf-steps__wrap {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
}

/* CENTERED TITLE */
.lf-steps__title {
  color: #d7ffe6;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

/* STEP LIST */
.lf-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

/* CONNECTING LINE */
.lf-steps__list::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, rgba(0,220,160,0.2), rgba(0,220,160,0.4));
}

/* EACH STEP */
.lf-step {
  display: flex;
  align-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #022824 0%, #00211e 100%);
  box-shadow: 0 0 10px rgba(0, 220, 160, 0.12);
  padding: 12px 20px;
  margin: 16px 0;
  border: 1px solid rgba(0, 220, 160, 0.1);
  transition: all 0.3s ease-in-out;
  position: relative;
}

.lf-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(0, 220, 160, 0.3);
  border-color: rgba(0, 220, 160, 0.3);
}

/* NUMBER BOX */
.lf-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lf-green), var(--lf-green-soft));
  color: #001e1b;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 8px rgba(0, 220, 160, 0.5);
}

/* TEXT */
.lf-step__body h3 {
  color: var(--lf-text-light);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* --- Mobile fixes for number pill + timeline --- */
@media (max-width: 600px){

  /* Use grid so the number never stretches */
  .lf-step{
    display: grid;
    grid-template-columns: 52px 1fr; /* fixed column for number */
    align-items: center;
    padding: 12px 14px;
    gap: 12px;
  }

  /* Keep the number perfectly round and centered */
  .lf-step__num{
    width: 38px;              /* fixed size */
    aspect-ratio: 1 / 1;      /* forces circle */
    min-width: 38px;          /* prevents shrink */
    border-radius: 999px;     /* round */
    margin: 0;                /* grid handles spacing */
    font-size: 14px;
    font-weight: 800;
    display: grid;
    place-items: center;
    line-height: 1;           /* avoid vertical stretch */
    box-shadow: 0 0 8px rgba(0,220,160,0.45); /* keep glow but smaller */
  }

  /* Smaller, lighter text for mobile */
  .lf-step__body h3{
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    word-break: keep-all;
  }

  /* Align the connecting line with the new number column */
  .lf-steps__list::before{
    left: 26px;               /* centers line under the number */
  }
}


/*Footer Submenu*/
.submenu
{
  
  flex-wrap: wrap;
    
}


/*Government loan breadcrumb */

.pt-70 {
    padding-top:70px;
}





