@charset "UTF-8";
/* Project Settings */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Balance healines so titles look as they should */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
:has(:target) {
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}

html {
  hanging-punctuation: first last;
  color-scheme: dark light;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

p,
li,
dt,
dd,
blockquote,
.no-orphan {
  text-wrap: pretty;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  :has(:target) {
    scroll-behavior: smooth;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Light mode - default */
:root {
  --color-primary-0: #faf0ea;
  --color-primary-100: #FEE5C6;
  --color-primary-200: #FED9AD;
  --color-primary-300: #FECE93;
  --color-primary-400: #FFC37A;
  --color-primary-500: #F9A826;
  --color-primary-600: #E5A557;
  --color-primary-700: #CC934D;
  --color-primary-800: #B28143;
  --color-primary-900: #996E3A;
  --color-accent-0: #f3f9f8;
  --color-accent-100: #EDF6F4;
  --color-accent-200: #E5F3F0;
  --color-accent-300: #D3E9E4;
  --color-accent-400: #C5DFD9;
  --color-accent-500: #B2D7D2;
  --color-accent-600: #9ECEC8;
  --color-accent-700: #84B9B3;
  --color-accent-800: #73A49E;
  --color-accent-900: #5A8D87;
  --color-gray-100: #FFFFFF;
  --color-gray-200: #F9FAFB;
  --color-gray-300: #e8e7e8;
  --color-gray-400: #d1d0d2;
  --color-gray-500: #bbbbbc;
  --color-gray-600: #a5a5a6;
  --color-gray-700: #7b7a7d;
  --color-gray-800: #2E3A59;
  --color-gray-900: #242F4C;
  --color-success-0: #d8eae0;
  --color-success-100: #aee1c3;
  --color-success-200: #9fd9b8;
  --color-success-300: #91d1ad;
  --color-success-400: #83c9a2;
  --color-success-500: #6FCF97;
  --color-success-600: #64b88a;
  --color-success-700: #58a778;
  --color-success-800: #4c9567;
  --color-success-900: #37664A;
  --color-warning-100: #FEE5C6;
  --color-warning-200: #fcd49f;
  --color-warning-300: #fbca85;
  --color-warning-400: #fbb06b;
  --color-warning-500: #F9A826;
  --color-warning-600: #e39a2f;
  --color-warning-700: #c58629;
  --color-warning-800: #a77223;
  --color-warning-900: #996E3A;
  --color-info-0: #dfe6f1;
  --color-info-100: #C2D2EA;
  --color-info-200: #acc3e4;
  --color-info-300: #96b4de;
  --color-info-400: #80a5d8;
  --color-info-500: #5E96EB;
  --color-info-600: #5487d4;
  --color-info-700: #476fc2;
  --color-info-800: #3b59a0;
  --color-info-900: #374A66;
  --color-error-100: #FCCFCF;
  --color-error-200: #f7b1b1;
  --color-error-300: #f29393;
  --color-error-400: #ed7575;
  --color-error-500: #F26E6E;
  --color-error-600: #d96161;
  --color-error-700: #b94e4e;
  --color-error-800: #993b3b;
  --color-error-900: #803A3A;
  --color-violet-0: #FAF7FD;
  --color-violet-100: #F1E8FA;
  --color-violet-200: #E5D9F5;
  --color-violet-300: #D9CAF0;
  --color-violet-400: #CEBBEB;
  --color-violet-500: #C9B3E8;
  --color-violet-600: #B29ED3;
  --color-violet-700: #9C89BE;
  --color-violet-800: #8573A9;
  --color-violet-900: #6E5E94;
  /* Shadows */
  --shadow-lg: 0 4px 6px -2px rgba(0, 0, 0, .05), 0 10px 15px -3px rgba(0, 0, 0, .1);
  --shadow-md: 0 4px 6px -2px rgba(0, 0, 0, .05), 0 5px 10px -3px rgba(0, 0, 0, .1);
  /* Breakpoints */
  --break-lg: 108rem;
  --break-md: 66rem;
  --break-sm: 48rem;
  --break-xs: 30rem;
}

/* Dark mode */
body.dark {
  --color-primary-0: #1F1A17;
  --color-primary-100: #2D241F;
  --color-primary-200: #3A2F26;
  --color-primary-300: #493A30;
  --color-primary-400: #5C493A;
  --color-primary-500: #735C49;
  --color-primary-600: #8A7158;
  --color-primary-700: #A08667;
  --color-primary-800: #B49C7B;
  --color-primary-900: #C8B390;
  --color-accent-100: #122524;
  --color-accent-200: #1A3331;
  --color-accent-300: #23423F;
  --color-accent-400: #2C514E;
  --color-accent-500: #38867f;
  --color-accent-600: #40706C;
  --color-accent-700: #49807B;
  --color-accent-800: #52908A;
  --color-accent-900: #5BA09A;
  --color-gray-100: #19191a;
  --color-gray-200: #3A3A3A;
  --color-gray-300: #4A4A4A;
  --color-gray-400: #5A5A5A;
  --color-gray-500: #6A6A6A;
  --color-gray-600: #7A7A7A;
  --color-gray-700: #8A8A8A;
  --color-gray-800: #d0d0d0;
  --color-gray-900: #f1f1f1;
  --color-success-100: #274534;
  --color-success-500: #438B64;
  --color-success-900: #61D497;
  --color-warning-100: #593E29;
  --color-warning-500: #AD702D;
  --color-warning-900: #FF9F47;
  --color-info-100: #273545;
  --color-info-500: #5171A5;
  --color-info-900: #7B98D0;
  --color-error-100: #572828;
  --color-error-500: #A54343;
  --color-error-900: #E66868;
}

body.dark img.dark {
  filter: invert(1) hue-rotate(180deg);
}

/* Vibrat theme */
body.vibrat {
  --color-primary-0: #fff8e9;
  --color-primary-100: #ffeec3;
  --color-primary-200: #ffe294;
  --color-primary-300: #ffd460;
  --color-primary-400: #ffc433;
  --color-primary-500: #f9a826;
  --color-primary-600: #e5941e;
  --color-primary-700: #cc7d18;
  --color-primary-800: #b36812;
  --color-primary-900: #8f4d09;
  --color-accent-0: #ebfdfc;
  --color-accent-100: #d2f9f5;
  --color-accent-200: #aaf1eb;
  --color-accent-300: #81e3dd;
  --color-accent-400: #5dd5cf;
  --color-accent-500: #3cc7c1;
  --color-accent-600: #32afa9;
  --color-accent-700: #2a9993;
  --color-accent-800: #217e78;
  --color-accent-900: #185f5a;
  --color-gray-100: #FFFFFF;
  --color-gray-200: #F9FAFB;
  --color-gray-300: #e8e7e8;
  --color-gray-400: #d1d0d2;
  --color-gray-500: #bbbbbc;
  --color-gray-600: #a5a5a6;
  --color-gray-700: #7b7a7d;
  --color-gray-800: #2E3A59;
  --color-gray-900: #242F4C;
  --color-success-0: #ebfdfc;
  --color-success-100: #d2f9f5;
  --color-success-200: #aaf1eb;
  --color-success-300: #81e3dd;
  --color-success-400: #5dd5cf;
  --color-success-500: #3cc7c1;
  --color-success-600: #32afa9;
  --color-success-700: #2a9993;
  --color-success-800: #217e78;
  --color-success-900: #185f5a;
  --color-warning-0: #fff8e9;
  --color-warning-100: #ffeec3;
  --color-warning-200: #ffe294;
  --color-warning-300: #ffd460;
  --color-warning-400: #ffc433;
  --color-warning-500: #f9a826;
  --color-warning-600: #e5941e;
  --color-warning-700: #cc7d18;
  --color-warning-800: #b36812;
  --color-warning-900: #8f4d09;
  --color-info-0: #eaf3ff;
  --color-info-100: #d0e4ff;
  --color-info-200: #aecdff;
  --color-info-300: #8ab6ff;
  --color-info-400: #629eff;
  --color-info-500: #428bff;
  --color-info-600: #3276e0;
  --color-info-700: #2762c2;
  --color-info-800: #1f4e9d;
  --color-info-900: #1c3b6f;
  --color-error-100: #ffe0e0;
  --color-error-200: #ffb8b8;
  --color-error-300: #ff8c8c;
  --color-error-400: #ff5e5e;
  --color-error-500: #f44336;
  --color-error-600: #d7372b;
  --color-error-700: #b92b21;
  --color-error-800: #991f18;
  --color-error-900: #70130f;
  --color-violet-0: #f8f3fe;
  --color-violet-100: #ecd9fd;
  --color-violet-200: #dab8fb;
  --color-violet-300: #c696f8;
  --color-violet-400: #b273f5;
  --color-violet-500: #9b51e0;
  --color-violet-600: #893ecc;
  --color-violet-700: #722eb3;
  --color-violet-800: #5d2391;
  --color-violet-900: #45186b;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.mb-05 {
  margin-bottom: 0.5rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

.mb-7 {
  margin-bottom: 8rem !important;
}

.mb-8 {
  margin-bottom: 8rem !important;
}

.mt-0 {
  margin-top: 0rem !important;
}

.mt-025 {
  margin-top: 0.25rem !important;
}

.mt-05 {
  margin-top: 0.5rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-15 {
  margin-top: 1.5rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mt-6 {
  margin-top: 6rem !important;
}

.mt-7 {
  margin-top: 7rem !important;
}

.mt-7 {
  margin-top: 8rem !important;
}

.mt-8 {
  margin-top: 8rem !important;
}

.my-05 {
  margin-inline: 0.5rem !important;
}

.my-1 {
  margin-inline: 1rem !important;
}

.my-2 {
  margin-inline: 2rem !important;
}

.my-3 {
  margin-inline: 3rem !important;
}

.my-4 {
  margin-inline: 4rem !important;
}

.my-5 {
  margin-inline: 5rem !important;
}

.my-6 {
  margin-inline: 6rem !important;
}

.my-7 {
  margin-inline: 7rem !important;
}

.my-7 {
  margin-inline: 8rem !important;
}

.my-8 {
  margin-inline: 8rem !important;
}

.py-1 {
  padding-inline: 1rem !important;
}

.py-2 {
  padding-inline: 2rem !important;
}

.py-3 {
  padding-inline: 3rem !important;
}

.py-4 {
  padding-inline: 4rem !important;
}

.py-5 {
  padding-inline: 5rem !important;
}

.py-6 {
  padding-inline: 6rem !important;
}

.py-7 {
  padding-inline: 7rem !important;
}

.py-7 {
  padding-inline: 8rem !important;
}

.py-8 {
  padding-inline: 8rem !important;
}

.p-0 {
  padding: 0rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.pb-4 {
  padding-bottom: 4rem !important;
}

.pb-5 {
  padding-bottom: 5rem !important;
}

.pb-6 {
  padding-bottom: 6rem !important;
}

.pb-7 {
  padding-bottom: 7rem !important;
}

.pb-7 {
  padding-bottom: 8rem !important;
}

.pb-8 {
  padding-bottom: 8rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.pt-8 {
  padding-top: 8rem !important;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.text-end {
  text-align: right;
}

.text-start {
  text-align: left;
}

.block-center {
  margin: 0 auto;
}

.block {
  display: block;
}

.o-25 {
  opacity: 0.25;
}

.o-5 {
  opacity: 0.5;
}

.o-75 {
  opacity: 0.75;
}

.overflow-hidden {
  overflow: hidden;
}

.zi-1 {
  position: relative;
  z-index: 1 !important;
}

.zi-2 {
  position: relative;
  z-index: 2 !important;
}

.zi-3 {
  position: relative;
  z-index: 3 !important;
}

.zi-4 {
  position: relative;
  z-index: 4 !important;
}

.zi-5 {
  position: relative;
  z-index: 5 !important;
}

.text-small,
.text-sm {
  font-size: 75% !important;
}

.text-large,
.text-lg {
  font-size: 125% !important;
  line-height: 2;
}

.text-extra-large,
.text-xl {
  font-size: 155% !important;
  line-height: 2;
}

.text-bold {
  font-weight: 900 !important;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.headline-lg {
  font-size: 6rem;
  line-height: 1;
}
@media (max-width: 66rem) {
  .headline-lg {
    font-size: 4rem;
  }
}
@media (max-width: 48rem) {
  .headline-lg {
    font-size: 3rem;
  }
}

.text-larger {
  font-size: 150% !important;
  line-height: 2;
}

.gap-1 {
  gap: 1rem !important;
}

.gap-2 {
  gap: 2rem !important;
}

.gap-3 {
  gap: 3rem !important;
}

.gap-4 {
  gap: 4rem !important;
}

.gap-5 {
  gap: 5rem !important;
}

.gap-6 {
  gap: 6rem !important;
}

.gap-7 {
  gap: 7rem !important;
}

.gap-8 {
  gap: 8rem !important;
}

.overflow-hidden {
  position: relative;
  overflow: hidden !important;
}

.graphic-primary,
.graphic-secondary {
  position: relative;
}
.graphic-primary::before,
.graphic-secondary::before {
  content: "";
  position: absolute;
  bottom: -7.5%;
  right: -7.5%;
  border-radius: 0.75rem 2.5rem 0.75rem 2.5rem !important;
  width: 80%;
  height: 100%;
}

.graphic-primary::before {
  background-color: var(--color-primary-100);
}

.graphic-secondary {
  position: relative;
}
.graphic-secondary::before {
  background-color: var(--color-accent-100);
}

.border-radius {
  border-radius: 0.75rem 2.5rem 0.75rem 2.5rem !important;
}

.border-radious-drop {
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  border-bottom-left-radius: 100%;
}

.shadow-lg,
.shadow-large {
  box-shadow: var(--shadow-lg);
}

.pos-relative {
  position: relative !important;
}

.hover-shadow {
  transition: all 0.3s ease;
}
.hover-shadow:hover {
  box-shadow: var(--shadow-lg);
}

.fancy-image {
  position: relative;
  top: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fancy-image::before {
  content: "";
  position: absolute;
  top: -5%;
  left: 0%;
  background-color: var(--color-primary-400);
  opacity: 0.5;
  border-radius: 0.75rem 2.5rem 0.75rem 2.5rem;
  width: 100%;
  height: 80%;
}
.fancy-image > * {
  width: 95% !important;
  height: auto;
  position: relative;
  border-radius: 0.75rem 2.5rem 0.75rem 2.5rem;
}

.headshot {
  width: 350px;
  height: auto;
  border-radius: 50% 50% 0 50%;
  transition: all 0.3s ease;
}
.headshot:hover {
  border-radius: 50% 50% 50% 0;
}

@media (max-width: 48rem) {
  .mob-mb-0 {
    margin-bottom: 0rem !important;
  }
  .mob-mb-05 {
    margin-bottom: 0.5rem !important;
  }
  .mob-mb-1 {
    margin-bottom: 1rem !important;
  }
  .mob-mb-2 {
    margin-bottom: 2rem !important;
  }
  .mob-mb-3 {
    margin-bottom: 3rem !important;
  }
  .mob-mb-4 {
    margin-bottom: 4rem !important;
  }
  .mob-mb-5 {
    margin-bottom: 5rem !important;
  }
  .mob-mb-6 {
    margin-bottom: 6rem !important;
  }
  .mob-mb-7 {
    margin-bottom: 7rem !important;
  }
  .mob-mb-7 {
    margin-bottom: 8rem !important;
  }
  .mob-mb-8 {
    margin-bottom: 8rem !important;
  }
  .mob-mt-0 {
    margin-top: 0rem !important;
  }
  .mob-mt-1 {
    margin-top: 1rem !important;
  }
  .mob-mt-2 {
    margin-top: 2rem !important;
  }
  .mob-mt-3 {
    margin-top: 3rem !important;
  }
  .mob-mt-4 {
    margin-top: 4rem !important;
  }
  .mob-mt-5 {
    margin-top: 5rem !important;
  }
  .mob-mt-6 {
    margin-top: 6rem !important;
  }
  .mob-mt-7 {
    margin-top: 7rem !important;
  }
  .mob-mt-7 {
    margin-top: 8rem !important;
  }
  .mob-mt-8 {
    margin-top: 8rem !important;
  }
  .mob-my-05 {
    margin-inline: 0.5rem !important;
  }
  .mob-my-1 {
    margin-inline: 1rem !important;
  }
  .mob-my-2 {
    margin-inline: 2rem !important;
  }
  .mob-my-3 {
    margin-inline: 3rem !important;
  }
  .mob-my-4 {
    margin-inline: 4rem !important;
  }
  .mob-my-5 {
    margin-inline: 5rem !important;
  }
  .mob-my-6 {
    margin-inline: 6rem !important;
  }
  .mob-my-7 {
    margin-inline: 7rem !important;
  }
  .mob-my-7 {
    margin-inline: 8rem !important;
  }
  .mob-my-8 {
    margin-inline: 8rem !important;
  }
  .mob-py-0 {
    padding-inline: 0 !important;
  }
  .mob-py-1 {
    padding-inline: 1rem !important;
  }
  .mob-py-2 {
    padding-inline: 2rem !important;
  }
  .mob-py-3 {
    padding-inline: 3rem !important;
  }
  .mob-py-4 {
    padding-inline: 4rem !important;
  }
  .mob-py-5 {
    padding-inline: 5rem !important;
  }
  .mob-py-6 {
    padding-inline: 6rem !important;
  }
  .mob-py-7 {
    padding-inline: 7rem !important;
  }
  .mob-py-7 {
    padding-inline: 8rem !important;
  }
  .mob-py-8 {
    padding-inline: 8rem !important;
  }
  .mob-pb-0 {
    padding: 0rem !important;
  }
  .mob-pb-1 {
    padding-bottom: 1rem !important;
  }
  .mob-pb-2 {
    padding-bottom: 2rem !important;
  }
  .mob-pb-3 {
    padding-bottom: 3rem !important;
  }
  .mob-pb-4 {
    padding-bottom: 4rem !important;
  }
  .mob-pb-5 {
    padding-bottom: 5rem !important;
  }
  .mob-pb-6 {
    padding-bottom: 6rem !important;
  }
  .mob-pb-7 {
    padding-bottom: 7rem !important;
  }
  .mob-pb-7 {
    padding-bottom: 8rem !important;
  }
  .mob-pb-8 {
    padding-bottom: 8rem !important;
  }
  .mob-pt-0 {
    padding-top: 0 !important;
  }
  .mob-pt-1 {
    padding-top: 1rem !important;
  }
  .mob-pt-2 {
    padding-top: 2rem !important;
  }
  .mob-pt-3 {
    padding-top: 3rem !important;
  }
  .mob-pt-4 {
    padding-top: 4rem !important;
  }
  .mob-pt-5 {
    padding-top: 5rem !important;
  }
  .mob-pt-6 {
    padding-top: 6rem !important;
  }
  .mob-pt-7 {
    padding-top: 7rem !important;
  }
  .mob-pt-8 {
    padding-top: 8rem !important;
  }
  .mob-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mob-text-center {
    text-align: center;
  }
  .mob-text-end {
    text-align: right;
  }
  .mob-text-start {
    text-align: left;
  }
  .mob-block-center {
    margin: 0 auto;
  }
  .mob-gap-1 {
    gap: 1rem !important;
  }
  .mob-gap-2 {
    gap: 2rem !important;
  }
  .mob-gap-3 {
    gap: 3rem !important;
  }
  .mob-gap-4 {
    gap: 4rem !important;
  }
  .mob-gap-5 {
    gap: 5rem !important;
  }
  .mob-gap-6 {
    gap: 6rem !important;
  }
  .mob-gap-7 {
    gap: 7rem !important;
  }
  .mob-gap-8 {
    gap: 8rem !important;
  }
}
.no-overflow {
  overflow-x: unset !important;
}
@media (max-width: 48rem) {
  .no-overflow {
    overflow-x: hidden !important;
  }
}

@media (max-width: 66rem) {
  .mob-top-6-5 {
    position: relative;
    top: 6.5rem;
  }
}

.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

.ml-1 {
  margin-left: 1rem !important;
}

.ml-2 {
  margin-left: 2rem !important;
}

.ml-3 {
  margin-left: 3rem !important;
}

.ml-4 {
  margin-left: 4rem !important;
}

.ml-5 {
  margin-left: 5rem !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mr-2 {
  margin-right: 2rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.mr-4 {
  margin-right: 4rem !important;
}

.mr-5 {
  margin-right: 5rem !important;
}

/* Layout Styles */
@font-face {
  font-family: bee;
  src: url(/assets/fonts/bee.woff2) format("woff2");
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: SNProLight;
  src: url(/assets/fonts/SNPro/SNPro-Light.woff2) format("woff2");
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: SNPro;
  src: url(/assets/fonts/SNPro/SNPro-Regular.woff2) format("woff2");
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: SNProBold;
  src: url(/assets/fonts/SNPro/SNPro-Bold.woff2) format("woff2");
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: SNProBlack;
  src: url(/assets/fonts/SNPro/SNPro-Black.woff2) format("woff2");
  font-display: block;
  font-style: normal;
}
::selection {
  background: var(--color-accent-300);
  color: var(--color-accent-900);
}

*:focus {
  outline-color: var(--color-accent-500);
}

#top {
  position: absolute !important;
  z-index: 3;
  background-color: var(--color-gray-100);
  top: 0.5em;
  left: 0.5em;
  text-decoration: none;
}
#top:not(:focus) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  border: 0 !important;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "SNPro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--color-gray-900);
}

p {
  line-height: 1.75;
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-size: 100%;
}

a {
  color: var(--color-accent-900);
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

ul li,
ol li {
  line-height: 1.5rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: bee, ui-sans-serif, system-ui, -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";
}
blockquote.quote {
  margin-left: 2rem;
  padding-left: 2rem;
  font-size: 1.3rem;
  border-left: 0.35rem solid var(--color-accent-200);
}
blockquote.quote cite {
  display: block;
  font-size: 1rem;
  margin-top: 0.5rem;
  font-family: "SNPro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--color-gray-700);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: bee, ui-sans-serif, system-ui, -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";
  margin-top: 1.5rem;
  margin-bottom: 0;
  line-height: 1.5rem;
}

h1 {
  font-size: 4.242rem;
  line-height: 4.5rem;
  margin-top: 3rem;
}
@media (max-width: 66rem) {
  h1 {
    font-size: 3.182rem;
    line-height: 3.5rem;
  }
}

h2 {
  font-size: 2.828rem;
  line-height: 3rem;
  margin-top: 3rem;
}
@media (max-width: 66rem) {
  h2 {
    font-size: 2.182rem;
    line-height: 3.5rem;
  }
}

h3 {
  font-size: 1.714rem;
  font-weight: 400;
  line-height: 1.5;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.4713333333rem;
}

h6 {
  font-size: 0.3535rem;
}

table {
  margin-top: 1.5rem;
  border-spacing: 0px;
  border-collapse: collapse;
}

table td,
table th {
  padding: 0;
  line-height: 33px;
}

code {
  vertical-align: bottom;
  background: var(--color-accent-200);
  border: 1px solid var(--color-accent-300);
  border-radius: 0.25rem;
  padding-inline: 0.25rem;
}

.lead {
  font-size: 1.414rem;
}

.hug {
  margin-top: 0;
}

hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border: 0;
  border-top: 1px solid var(--color-gray-300);
}

.icon.icon-tabler {
  position: relative;
  top: 0.35rem;
}

.title-fancy {
  background: var(--color-accent-200);
  padding: 1rem 2rem;
  border-radius: 0.75rem 2.5rem 0.75rem 2.5rem;
  color: var(--color-accent-900);
  margin: 3rem -2rem 0 -2rem;
  position: relative;
  overflow: hidden;
}
.title-fancy::after {
  position: absolute;
  content: url("/assets/images/resp.svg");
  display: block;
  right: -4rem;
  top: 0;
  width: auto;
  height: auto;
  transform: rotate(10deg);
  opacity: 0.25;
}
.title-fancy.headshot:after {
  content: url("/assets/images/resp.svg");
}

.stylized :nth-child(1n) {
  color: var(--color-accent-700);
  text-shadow: -5px -5px 0 var(--color-accent-100);
}
.stylized :nth-child(2n) {
  color: var(--color-gray-900);
  text-shadow: -5px -5px 0 var(--color-gray-300);
}
.stylized :nth-child(3n) {
  color: var(--color-primary-500);
  text-shadow: -5px -5px 0 var(--color-primary-100);
}

html,
body {
  background-color: var(--color-gray-100);
  overflow-x: hidden;
}

.container-lg {
  max-width: var(--break-lg);
  margin-inline: auto;
  padding-inline: 1rem;
  width: 100%;
}

.container-md {
  max-width: var(--break-md);
  margin-inline: auto;
  padding-inline: 1rem;
  width: 100%;
}

.container-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  gap: 2rem;
}
@media (max-width: 48rem) {
  .container-grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

.container-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 66rem) {
  .container-grid-3 {
    display: flex;
    flex-direction: column;
  }
}

.container-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 66rem) {
  .container-grid-2 {
    display: flex;
    flex-direction: column;
  }
}
.container-grid-2.align-center {
  align-items: center;
}

.d-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 66rem) {
  .d-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.d-grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.d-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.d-grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 97rem) {
  .d-grid.grid-4 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 66rem) {
  .d-grid.grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 48rem) {
  .d-grid.grid-4 {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.d-flex {
  display: flex;
  gap: 1rem;
}
.d-flex > * {
  flex: 1;
}
.d-flex .c-40-100 {
  width: 40%;
  flex: unset;
}
@media (max-width: 88rem) {
  .d-flex .c-40-100 {
    width: 100%;
  }
}
.d-flex .c-60-100 {
  width: 60%;
  flex: unset;
}
@media (max-width: 88rem) {
  .d-flex .c-60-100 {
    width: 100%;
  }
}
.d-flex .pre-wrap-2 {
  flex-wrap: wrap;
  flex-direction: row;
}
.d-flex .pre-wrap-2 > * {
  flex-grow: 1;
  min-width: calc(50% - 1.5rem);
}
.d-flex .pre-wrap-2 > *:nth-child(odd) {
  margin-block-start: 6rem;
}
@media (max-width: 48rem) {
  .d-flex .pre-wrap-2 > *:nth-child(odd) {
    margin-block-start: 0;
  }
}
@media (max-width: 48rem) {
  .d-flex {
    flex-direction: column;
  }
  .d-flex.wrap-2 {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .d-flex.wrap-2 > * {
    flex-grow: 1;
    min-width: calc(50% - 1.5rem);
  }
}
@media (max-width: 88rem) {
  .d-flex.wrap-1 {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .d-flex.wrap-1 > * {
    flex-grow: 1;
    min-width: calc(100% - 1.5rem);
  }
}
.d-flex.d-column {
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  text-align: left;
}
.d-flex.d-column > * {
  align-self: start;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
.bento-grid .card {
  height: 100%;
}
.bento-grid .bento-child-1 {
  grid-area: 1/1/2/3;
}
.bento-grid .bento-child-2 {
  grid-area: 2/1/3/2;
}
.bento-grid .bento-child-3 {
  grid-area: 2/2/3/3;
}
.bento-grid .bento-child-4 {
  grid-area: 1/3/3/4;
}

@media (max-width: 1080px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "child1" "child2" "child3" "child4";
  }
  .bento-grid .bento-child-1 {
    grid-area: child1;
  }
  .bento-grid .bento-child-2 {
    grid-area: child2;
  }
  .bento-grid .bento-child-3 {
    grid-area: child3;
  }
  .bento-grid .bento-child-4 {
    grid-area: child4;
  }
}
.flex-column {
  flex-direction: column;
}

.justify-around {
  justify-content: space-around;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-self {
  align-items: align-self;
}

.sticky {
  position: relative;
}
.sticky .sticky-inner {
  position: sticky;
  top: 30vh;
  z-index: 100;
}
@media (max-width: 88rem) {
  .sticky .sticky-inner {
    top: 20vh;
  }
}

.grid-fancy-container {
  margin-top: 12rem;
  margin-bottom: 4rem;
  padding-inline: 2rem;
}
@media (max-width: 66rem) {
  .grid-fancy-container {
    margin-top: 8rem;
    margin-bottom: 0rem;
  }
}
.grid-fancy-container .grid-fancy {
  display: grid;
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  grid-template-rows: auto;
}
.grid-fancy-container .grid-fancy:nth-child(1) {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 66rem) {
  .grid-fancy-container .grid-fancy:nth-child(1) {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.grid-fancy-container .grid-fancy:nth-child(2) {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-fancy-container .grid-fancy:nth-child(3) {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-fancy-container .grid-fancy .grid-fancy-cell {
  position: relative;
}
.grid-fancy-container .grid-fancy .grid-fancy-cell h2 {
  margin: 1rem;
}
@media (max-width: 66rem) {
  .grid-fancy-container .grid-fancy .grid-fancy-cell.text-center {
    width: 100vw;
  }
}
.grid-fancy-container .grid-fancy .grid-fancy-cell.grid-fancy-flex {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
.grid-fancy-container .grid-fancy .grid-fancy-cell .grid-fancy-bg {
  position: absolute;
  z-index: 0;
  opacity: 0.05;
  top: -50%;
}
.grid-fancy-container .grid-fancy .grid-fancy-cell.grid-fancy-animate {
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.grid-fancy-container .grid-fancy .grid-fancy-cell img {
  max-width: 100% !important;
}

.h-100 {
  height: 100%;
}

.cc-cp-foot-save,
.cc-nb-okagree,
.cc-nb-reject {
  background: var(--color-primary-500) !important;
  border-radius: 0.5rem !important;
}

.termsfeed-com---palette-light.termsfeed-com---nb {
  position: fixed !important;
  bottom: 0 !important;
}

.cc-custom-checkbox ~ label.is-active:before,
.cc-custom-checkbox ~ label#strictly-necessary_label:before {
  background-color: var(--color-primary-500) !important;
}

@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(10%);
    transition: all 500ms ease-in-out;
  }
  .fade-in.left {
    transform: translateX(-5%);
  }
  .fade-in.right {
    transform: translateX(5%);
  }
  .fade-in.top {
    transform: translateY(-7.5%);
  }
  .fade-in.bottom {
    transform: translateY(7.5%);
  }
  .fade-delay-150 {
    transition-delay: 150ms;
  }
  .fade-delay-250 {
    transition-delay: 250ms;
  }
  .fade-delay-350 {
    transition-delay: 350ms;
  }
  .fade-delay-450 {
    transition-delay: 450ms;
  }
  .fade-delay-500 {
    transition-delay: 500ms;
  }
  .fade-delay-550 {
    transition-delay: 550ms;
  }
  .fade-delay-650 {
    transition-delay: 650ms;
  }
  .fade-delay-750 {
    transition-delay: 750ms;
  }
  .fade-delay-850 {
    transition-delay: 850ms;
  }
  .fade-delay-950 {
    transition-delay: 850ms;
  }
  .fade-delay-1000 {
    transition-delay: 1s;
  }
  .fade-delay-1050 {
    transition-delay: 1050ms;
  }
  .fade-delay-1250 {
    transition-delay: 1250ms;
  }
  .animating {
    opacity: 4;
    transform: translate(0) !important;
  }
  .animated {
    transition-delay: 0ms !important;
  }
  .animated:hover {
    transition-delay: 0ms !important;
  }
  .maintenance-animation {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .maintenance-animation .one {
    background: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aa%3D%22http%3A%2F%2Fns.adobe.com%2FAdobeSVGViewerExtensions%2F3.0%2F%22%0A%09%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2281px%22%20height%3D%2280.5px%22%20viewBox%3D%220%200%2081%2080.5%22%20style%3D%22overflow%3Ascroll%3Benable-background%3Anew%200%200%2081%2080.5%3B%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%23242F4C%3B%7D%0A%3C%2Fstyle%3E%0A%3Cdefs%3E%0A%3C%2Fdefs%3E%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M30.3%2C68.2c1.2%2C0.2%2C2.3%2C0.9%2C3.8%2C1.2c1.6%2C0.3%2C2.7%2C0.6%2C4%2C0.4l4.9%2C9.6c0.6%2C0.9%2C1.4%2C1.1%2C2.3%2C0.9l15.3-4.9%0A%09c0.5-0.3%2C1-1%2C0.9-2.3l-1.8-10.6c2-1.6%2C3.6-3.7%2C5.3-5.8l10.5%2C0.6c1.1%2C0.6%2C2.1-0.4%2C2.3-1.1L81%2C40.7c0.2-0.8-0.4-2.1-1.1-2.3l-10.2-3.8%0A%09c-0.3-2.5-1.4-4.8-2.5-7.5l5.9-8.5c0.6-1.1%2C0.4-1.9-0.2-2.9l-12-10.7c-0.3-0.5-1.6-0.3-2.5%2C0.3l-8%2C6.9c-1.2-0.2-2.3-0.9-3.8-1.2%0A%09c-1.6-0.3-2.7-0.6-4-0.4L37.7%2C1c-0.6-0.9-1.4-1.1-2.3-0.9L20.1%2C5c-0.5%2C0.3-1%2C1-0.9%2C2.3l1.8%2C10.6c-2%2C1.6-3.6%2C3.7-5.3%2C5.8L5.3%2C23%0A%09c-0.8-0.2-1.7%2C0.4-2%2C1.6L0%2C40.2c-0.2%2C0.8%2C0.4%2C2.1%2C1.1%2C2.3l9.8%2C3.7c0.7%2C2.6%2C1.4%2C5.2%2C2.5%2C7.5l-6%2C8.9c-0.6%2C0.7-0.4%2C2%2C0.3%2C2.5l12%2C10.7%0A%09c0.7%2C0.5%2C1.9%2C0.8%2C2.4%2C0.1L30.3%2C68.2z%20M26.7%2C37.3c1.6-7.4%2C9.1-12.3%2C16.5-10.8S55.6%2C35.7%2C54%2C43.1c-1.6%2C7.4-9.1%2C12.3-16.5%2C10.7%0A%09C30.1%2C52.3%2C25.1%2C44.7%2C26.7%2C37.3L26.7%2C37.3z%22%2F%3E%0A%3C%2Fsvg%3E");
    width: 80px;
    height: 80px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: -10px;
    margin-right: 8px;
  }
  .maintenance-animation .two {
    background: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aa%3D%22http%3A%2F%2Fns.adobe.com%2FAdobeSVGViewerExtensions%2F3.0%2F%22%0A%09%20x%3D%220px%22%20y%3D%220px%22%20width%3D%22103px%22%20height%3D%22103.7px%22%20viewBox%3D%220%200%20103%20103.7%22%0A%09%20style%3D%22overflow%3Ascroll%3Benable-background%3Anew%200%200%20103%20103.7%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%239ECEC8%3B%7D%0A%3C%2Fstyle%3E%0A%3Cdefs%3E%0A%3C%2Fdefs%3E%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M87.3%2C64.8c0.3-1.5%2C1.1-2.9%2C1.6-4.9c0.4-2%2C0.7-3.5%2C0.5-5.1l12.3-6.3c1.2-0.8%2C1.4-1.8%2C1.1-2.9l-6.3-19.6%0A%09c-0.4-0.6-1.3-1.3-2.9-1.1l-13.5%2C2.3c-2.1-2.5-4.7-4.7-7.4-6.8l0.8-13.4C74.3%2C5.8%2C73%2C4.5%2C72%2C4.3L52.1%2C0c-1-0.2-2.7%2C0.5-2.9%2C1.5%0A%09l-4.8%2C13c-3.2%2C0.4-6.1%2C1.8-9.5%2C3.2l-10.9-7.5c-1.4-0.8-2.5-0.5-3.7%2C0.3L6.5%2C25.8c-0.6%2C0.4-0.4%2C2%2C0.4%2C3.2l8.8%2C10.2%0A%09c-0.3%2C1.5-1.1%2C2.9-1.5%2C4.9c-0.4%2C2-0.7%2C3.5-0.6%2C5.1L1.2%2C55.4c-1.2%2C0.8-1.4%2C1.8-1.1%2C2.9l6.3%2C19.6c0.4%2C0.6%2C1.3%2C1.3%2C2.9%2C1.1l13.5-2.3%0A%09c2.1%2C2.5%2C4.7%2C4.7%2C7.4%2C6.8l-0.8%2C13.4c-0.2%2C1%2C0.6%2C2.2%2C2.1%2C2.5l20%2C4.2c1%2C0.2%2C2.7-0.5%2C2.9-1.5l4.7-12.6c3.3-0.9%2C6.6-1.7%2C9.5-3.2L80.1%2C94%0A%09c0.9%2C0.7%2C2.5%2C0.5%2C3.2-0.4L97%2C78.3c0.7-0.9%2C1-2.4%2C0.1-3.1L87.3%2C64.8z%20M47.8%2C69.5C38.3%2C67.5%2C32%2C57.8%2C34%2C48.3%0A%09c2-9.5%2C11.7-15.8%2C21.2-13.8c9.5%2C2%2C15.7%2C11.7%2C13.7%2C21.2C66.9%2C65.2%2C57.3%2C71.5%2C47.8%2C69.5L47.8%2C69.5z%22%2F%3E%0A%3C%2Fsvg%3E");
    width: 100px;
    height: 100px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .maintenance-animation .three {
    background: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aa%3D%22http%3A%2F%2Fns.adobe.com%2FAdobeSVGViewerExtensions%2F3.0%2F%22%0A%09%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2281px%22%20height%3D%2280.5px%22%20viewBox%3D%220%200%2081%2080.5%22%20style%3D%22overflow%3Ascroll%3Benable-background%3Anew%200%200%2081%2080.5%3B%22%0A%09%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%23242F4C%3B%7D%0A%3C%2Fstyle%3E%0A%3Cdefs%3E%0A%3C%2Fdefs%3E%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M30.3%2C68.2c1.2%2C0.2%2C2.3%2C0.9%2C3.8%2C1.2c1.6%2C0.3%2C2.7%2C0.6%2C4%2C0.4l4.9%2C9.6c0.6%2C0.9%2C1.4%2C1.1%2C2.3%2C0.9l15.3-4.9%0A%09c0.5-0.3%2C1-1%2C0.9-2.3l-1.8-10.6c2-1.6%2C3.6-3.7%2C5.3-5.8l10.5%2C0.6c1.1%2C0.6%2C2.1-0.4%2C2.3-1.1L81%2C40.7c0.2-0.8-0.4-2.1-1.1-2.3l-10.2-3.8%0A%09c-0.3-2.5-1.4-4.8-2.5-7.5l5.9-8.5c0.6-1.1%2C0.4-1.9-0.2-2.9l-12-10.7c-0.3-0.5-1.6-0.3-2.5%2C0.3l-8%2C6.9c-1.2-0.2-2.3-0.9-3.8-1.2%0A%09c-1.6-0.3-2.7-0.6-4-0.4L37.7%2C1c-0.6-0.9-1.4-1.1-2.3-0.9L20.1%2C5c-0.5%2C0.3-1%2C1-0.9%2C2.3l1.8%2C10.6c-2%2C1.6-3.6%2C3.7-5.3%2C5.8L5.3%2C23%0A%09c-0.8-0.2-1.7%2C0.4-2%2C1.6L0%2C40.2c-0.2%2C0.8%2C0.4%2C2.1%2C1.1%2C2.3l9.8%2C3.7c0.7%2C2.6%2C1.4%2C5.2%2C2.5%2C7.5l-6%2C8.9c-0.6%2C0.7-0.4%2C2%2C0.3%2C2.5l12%2C10.7%0A%09c0.7%2C0.5%2C1.9%2C0.8%2C2.4%2C0.1L30.3%2C68.2z%20M26.7%2C37.3c1.6-7.4%2C9.1-12.3%2C16.5-10.8S55.6%2C35.7%2C54%2C43.1c-1.6%2C7.4-9.1%2C12.3-16.5%2C10.7%0A%09C30.1%2C52.3%2C25.1%2C44.7%2C26.7%2C37.3L26.7%2C37.3z%22%2F%3E%0A%3C%2Fsvg%3E");
    width: 80px;
    height: 80px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: -50px;
    margin-left: -10px;
  }
  @keyframes spin-one {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(-359deg);
      transform: rotate(-359deg);
    }
  }
  .maintenance-animation .spin-one {
    -webkit-animation: spin-one 1.5s infinite linear;
    animation: spin-one 1.5s infinite linear;
  }
  @keyframes spin-two {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(-359deg);
      transform: rotate(359deg);
    }
  }
  .maintenance-animation .spin-two {
    -webkit-animation: spin-two 2s infinite linear;
    animation: spin-two 2s infinite linear;
  }
}
@media print {
  #footer,
  .mobile-brand,
  #nav-toggle,
  #navigation,
  .no-print {
    display: none !important;
  }
}
/* Component Styles */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar {
  background: transparent;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-left: 1px solid var(--color-gray-300);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-accent-500);
  border-radius: 10px;
  border: 3px solid transparent;
  border-left-width: 4px;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-accent-800);
}

@media (max-width: 66rem) {
  ::-webkit-scrollbar-track {
    border-left: 1px solid transparent;
  }
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent-500) var(--color-gray-100);
}

.nav-toggle {
  display: none;
  background-color: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
  z-index: 110;
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  box-shadow: var(--shadow-lg);
  border-radius: 0.75rem 2rem 2rem 2rem;
  padding-block: 0.75rem;
  padding-inline: 0.5rem;
  transition: all 0.25s ease;
}
.nav-toggle .line {
  transform-origin: 12px 12px;
  transition: transform 0.25s ease, opacity 0.25s ease, d 0.25s ease;
}
.nav-toggle .top {
  transform: translateY(-6px) rotate(0deg);
}
.nav-toggle .bottom {
  transform: translateY(6px) rotate(0deg);
}
.nav-toggle.active {
  border-radius: 2rem 2rem 2rem 0.75rem;
}
.nav-toggle.active .top {
  transform: translateY(0px) rotate(45deg);
}
.nav-toggle.active .middle {
  opacity: 0;
}
.nav-toggle.active .bottom {
  transform: translateY(0px) rotate(-45deg);
}
@media (max-width: 66rem) {
  .nav-toggle {
    display: block;
  }
}
@media (max-width: 30rem) {
  .nav-toggle {
    top: 2.65rem;
  }
}

.mobile-brand {
  position: absolute;
  top: 2.75rem;
  left: 2rem;
  z-index: 110;
}
@media (min-width: 66rem) {
  .mobile-brand {
    display: none;
  }
}
.mobile-brand.active .brand .brand-name {
  color: var(--color-gray-100);
}
@media (max-width: 66rem) {
  .mobile-brand.active {
    display: block;
    position: fixed;
  }
}
.mobile-brand .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.mobile-brand .brand .brand-logo {
  width: 40px;
  height: 40px;
  margin-inline-end: 1rem;
}
@media (max-width: 30rem) {
  .mobile-brand .brand .brand-logo {
    width: 48px;
    height: 48px;
  }
}
.mobile-brand .brand .brand-name {
  font-size: 2rem;
  line-height: 0;
  font-weight: 700;
  color: var(--color-gray-800);
  margin: 0;
  font-family: "SNProBlack", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
@media (max-width: 30rem) {
  .mobile-brand .brand .brand-name {
    display: none;
  }
}

.navigation {
  z-index: 100;
  background-color: transparent;
  border: 1px solid transparent;
  max-width: var(--break-lg);
  margin-inline: auto;
  margin-block-start: 1rem;
  padding: 1.2rem 2rem;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 2rem;
  right: 2rem;
  border-radius: 0.75rem 2.5rem 0.75rem 2.5rem;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  transition: all 0.25s ease;
}
.navigation.shadow {
  background-color: var(--color-gray-100);
  border-color: var(--color-gray-200);
  box-shadow: var(--shadow-lg);
}
.navigation .brand-container {
  display: flex;
  align-items: center;
  width: 180px;
  height: 40px;
}
.navigation .brand-container .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-top: 0.325rem;
}
.navigation .brand-container .brand #senbee-logo svg {
  width: auto;
  height: 48px !important;
  position: relative;
  top: 3px;
}
.navigation .brand-container .brand .brand-logo {
  width: 40px;
  height: 40px;
  margin-inline-end: 1rem;
}
.navigation .brand-container .brand .brand-name {
  font-size: 2rem;
  font-family: "SNProBlack", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 0;
  font-weight: 700;
  color: var(--color-gray-800);
  margin: 0;
}
@media (max-width: 66rem) {
  .navigation .brand-container {
    display: none;
  }
}
.navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.navigation ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  padding-inline: 0.5rem;
}
.navigation ul li a {
  color: var(--color-gray-900);
  font-weight: 500;
  font-size: 1.125rem;
  padding-inline: 0.5rem;
  text-decoration: none;
  padding-block: 0.5rem;
  display: flex;
  align-items: center;
}
.navigation ul li a .dropdown-indicator {
  transition: all 0.25s ease;
}
.navigation ul li a:hover ~ .dropdown-content,
.navigation ul li a:active ~ .dropdown-content,
.navigation ul li a:focus-visible ~ .dropdown-content,
.navigation ul li .dropdown-content:hover,
.navigation ul li .dropdown-content:focus-within,
.navigation ul li .dropdown-content:active,
.navigation ul li .dropdown-content li a:hover,
.navigation ul li .dropdown-content li a:focus-visible,
.navigation ul li .dropdown-content li a:active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navigation ul li a:hover .dropdown-indicator,
.navigation ul li a:focus-visible .dropdown-indicator,
.navigation ul li a:active .dropdown-indicator {
  transform: rotate(180deg);
}
@media (min-width: 66rem) {
  .navigation ul li .dropdown-content {
    position: absolute;
    top: 4.5rem;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    transform: translateY(-1rem);
    background-color: var(--color-gray-100);
    border: 1px solid var(--color-gray-200);
    display: flex;
    flex-direction: column;
    padding: 1rem 0.5rem;
    border-radius: 0.75rem 2.5rem 0.75rem 2.5rem;
    box-shadow: var(--shadow-lg);
  }
  .navigation ul li .dropdown-content.list {
    min-width: 350px;
    max-width: 400px;
  }
  .navigation ul li .dropdown-content::before {
    content: "";
    position: absolute;
    background-color: transparent;
    top: -2rem;
    left: 0rem;
    width: 100%;
    height: 2rem;
  }
  .navigation ul li .dropdown-content li {
    text-align: left;
    display: block;
    width: 100%;
  }
  .navigation ul li .dropdown-content li:first-child a {
    border-radius: 0.5rem 2rem 0.5rem 0.5rem;
  }
  .navigation ul li .dropdown-content li:last-child a {
    border-radius: 0.5rem 0.5rem 0.5rem 2rem;
  }
  .navigation ul li .dropdown-content li a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    width: 100%;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.15s ease;
    color: var(--color-gray-900);
    border-radius: 0.5rem;
  }
  .navigation ul li .dropdown-content li a:hover {
    background-color: var(--color-accent-100);
  }
  .navigation ul li .dropdown-content li .title > svg {
    width: 1.25rem;
    height: 1.25rem;
    vertical-align: top;
    position: relative;
    top: 1px;
    stroke-width: 1.75px;
  }
  .navigation ul li .dropdown-content li .description {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    display: block;
    max-width: 100%;
  }
}
.navigation ul li .dropdown-content.apps {
  left: -12.75rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 200px;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 0;
}
.navigation ul li .dropdown-content.apps .apps-links {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.navigation ul li .dropdown-content.apps .apps-links a {
  width: 100%;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: all 0.15s ease;
  border-radius: 0.5rem;
  width: 350px;
}
@media (max-width: 66rem) {
  .navigation ul li .dropdown-content.apps .apps-links a {
    align-items: start;
    text-align: left;
  }
}
.navigation ul li .dropdown-content.apps .apps-links a.primary-hover:hover {
  background-color: var(--color-primary-100);
}
.navigation ul li .dropdown-content.apps .apps-links a:hover {
  background-color: var(--color-accent-100);
}
.navigation ul li .dropdown-content.apps .apps-links a .app-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  margin-inline-end: 0.5rem;
  border-radius: 0.5rem;
}
.navigation ul li .dropdown-content.apps .apps-links a .app-icon svg {
  margin: 0.3rem;
}
.navigation ul li .dropdown-content.apps .apps-links a .app-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
}
@media (max-width: 66rem) {
  .navigation ul li .dropdown-content.apps .apps-links a .app-content {
    justify-content: start;
  }
}
.navigation ul li .dropdown-content.apps .apps-links a .app-content .app-name {
  display: block;
}
.navigation ul li .dropdown-content.apps .apps-links a .app-content .app-description {
  display: block;
  font-size: 0.875rem;
  color: var(--color-gray-600);
  max-width: 100%;
  text-wrap: auto;
}
.navigation ul li .dropdown-content.apps .apps-cta {
  background-color: var(--color-accent-900);
  color: var(--color-accent-100);
  padding: 1.5rem;
  border-radius: 0 2.5rem 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 10px 0px 30px -15px rgba(0, 0, 0, 0.75) inset;
}
.navigation ul li .dropdown-content.apps .apps-cta h3 {
  margin-top: 0.5rem;
  margin-block-end: 0.5rem;
  font-size: 1.25rem;
}
.navigation ul li .dropdown-content.apps .apps-cta p {
  font-size: 1rem;
  margin-top: 0;
}
.navigation ul li .dropdown-content.apps .apps-cta .button {
  display: block;
}
@media (max-width: 66rem) {
  .navigation ul li .dropdown-content.apps .apps-cta {
    display: none;
  }
}
.navigation .cta {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 66rem) {
  .mobile-header.active {
    position: relative;
    z-index: 999;
    background-color: var(--color-gray-800) !important;
    width: 100%;
    height: 8rem;
  }
  .navigation {
    transition: height 0.25s cubic-bezier(0.22, 1.01, 0.6, 0.9);
    height: 0;
    opacity: 0;
    visibility: hidden;
    background-color: var(--color-gray-800) !important;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 0;
    margin: 0;
    width: 100%;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .navigation.active {
    height: 100vh;
    width: 100vw;
    opacity: 1;
    visibility: visible;
    border: 0;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
  .navigation.active ul li a {
    color: var(--color-accent-600) !important;
  }
  .navigation.active ul li a .title > svg {
    display: none;
  }
  .navigation.active ul li a .description {
    display: none;
  }
  .navigation.active ul li .dropdown-content li a {
    color: var(--color-accent-100) !important;
    padding: 0.35rem 1rem;
    border-radius: 0.5rem;
  }
  .navigation.active ul li .dropdown-content li a:hover {
    background-color: var(--color-gray-900);
    color: var(--color-gray-100);
  }
  .navigation.active ul li .dropdown-content {
    margin-bottom: 1rem;
  }
  .navigation.active ul li .dropdown-content.apps .apps-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .navigation.active ul li .dropdown-content.apps .apps-links a:hover {
    background-color: var(--color-gray-900);
    color: var(--color-gray-100);
  }
  .navigation.active ul li .dropdown-content.apps .apps-links .app-content {
    align-items: center;
    text-align: center;
  }
  .navigation.active ul li .dropdown-content.apps .apps-links .app-content .app-name {
    color: var(--color-accent-100);
  }
  .navigation.active ul li .dropdown-content.apps .apps-links .app-content .app-name .pill {
    display: none;
  }
  .navigation.active ul li .dropdown-content.apps .apps-links .app-content .app-description {
    display: none;
  }
  .navigation.active ul li .dropdown-content.apps {
    display: block;
    text-align: center;
  }
  .navigation.active ul li .dropdown-content.apps a {
    width: 100%;
    text-align: left;
    white-space: nowrap;
    display: flex;
    align-items: start;
    justify-content: center;
    color: var(--color-accent-100);
    padding-block: 0.35rem;
  }
  .navigation.active ul li .dropdown-content.apps a:hover {
    background-color: var(--color-accent-100);
    color: var(--color-gray-900);
  }
  .navigation.active ul li .dropdown-content.apps a .app-icon {
    display: none;
  }
  .navigation ul {
    flex-direction: column;
  }
  .navigation ul li a {
    display: block;
    padding-block: 0.75rem;
    margin-block: 0.25rem;
    font-size: 1.5rem;
    text-align: center;
    color: var(--color-accent-900);
  }
  .navigation ul li a .dropdown-indicator {
    display: none;
  }
  .navigation .cta {
    justify-content: center;
    margin-top: 4rem;
  }
  .navigation .cta button {
    background: var(--color-accent-900);
    color: var(--color-accent-100);
    padding: 1rem 2rem;
    font-size: 1.5rem;
    margin-block-end: 2rem;
  }
}
.header {
  padding-block-start: 8rem;
  margin-inline: auto;
  position: relative;
}
.header .subtitle {
  font-size: 1.55rem;
  margin-top: 0;
}
@media (max-width: 66rem) {
  .header .subtitle {
    font-size: 1.35rem;
  }
}
@media (max-width: 48rem) {
  .header .subtitle {
    font-size: 1.15rem;
  }
}
.header video {
  max-width: 100%;
  height: auto;
  aspect-ratio: 5/4;
  object-fit: cover;
}
@media (max-width: 66rem) {
  .header video {
    aspect-ratio: 16/12;
    max-width: calc(100% + 6rem) !important;
    margin-inline-start: -3rem;
    border-radius: 0rem !important;
  }
}
.header .page-title {
  position: relative;
}
.header .page-title .title {
  line-height: 1.1;
  font-size: 5.5rem;
  font-size: calc(75px + 45 * (100vw - 375px) / 945);
  color: var(--color-accent-800);
}
@media (max-width: 66rem) {
  .header .page-title .title {
    font-size: 4rem;
  }
}
@media (max-width: 48rem) {
  .header .page-title .title {
    font-size: 3rem;
  }
}
.header .page-title img {
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0%;
  right: 0%;
  transform: rotate(0deg);
  max-width: unset !important;
  width: 200% !important;
  height: 260% !important;
  mix-blend-mode: lighten;
  pointer-events: none;
  aspect-ratio: auto 78/78;
  overflow-clip-margin: content-box;
  overflow: clip;
}

.header-normal {
  padding-block-start: 8rem;
  margin-inline: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-accent-200);
}
@media (max-width: 66rem) {
  .header-normal {
    text-align: center;
  }
}
.header-normal.block {
  display: block;
  padding-inline: 4rem !important;
}
.header-normal .border-bottom {
  width: 100%;
  position: absolute;
  bottom: -0.45rem;
}
.header-normal .border-top {
  width: 100%;
  position: absolute;
  top: -0.45rem;
}
.header-normal .border-top svg {
  rotate: 180deg;
}

.header-mid {
  position: relative;
}
.header-mid.primary:before {
  background-color: var(--color-primary-300);
}
.header-mid.primary:after {
  background-color: var(--color-primary-100);
}
.header-mid.secondary:before {
  background-color: var(--color-accent-500) !important;
}
.header-mid.secondary:after {
  background-color: var(--color-accent-200) !important;
}
.header-mid.right:before {
  right: 0;
  width: 80%;
  max-width: calc(108rem + 10%);
  height: 100%;
  background-color: var(--color-primary-300);
  border-radius: 5rem 0 0 5rem;
}
.header-mid.right:after {
  right: 0;
  width: 25%;
  height: 100%;
  background-color: var(--color-primary-100);
  border-radius: 5rem 0 0 5rem;
}
.header-mid.left:before {
  left: 0;
  width: 80%;
  max-width: calc(108rem + 10%);
  height: 100%;
  background-color: var(--color-primary-300);
  border-radius: 0 5rem 5rem 0;
}
.header-mid.left:after {
  left: 0;
  width: 25%;
  height: 100%;
  background-color: var(--color-primary-100);
  border-radius: 0 5rem 5rem 0;
}
.header-mid .header-mid-text-block {
  min-width: 65%;
}
.header-mid .header-mid-content {
  z-index: 3;
  padding: 3rem;
}
.header-mid:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 100%;
  background-color: var(--color-primary-300);
  border-radius: 5rem 0 0 5rem;
}
@media (max-width: 48rem) {
  .header-mid:before {
    width: 100% !important;
    border-radius: 0 !important;
  }
}
.header-mid:after {
  content: "";
  z-index: -2;
  position: absolute;
  top: -10%;
  right: 0;
  width: 25%;
  height: 100%;
  background-color: var(--color-primary-200);
  border-radius: 5rem 0 0 5rem;
}
@media (max-width: 48rem) {
  .header-mid:after {
    width: 35% !important;
    display: none !important;
  }
}

.header-fancy {
  position: relative;
  margin-top: 12rem;
  margin-bottom: 0rem;
  display: flex;
  flex-direction: column;
  min-height: 650px;
}
@media (max-width: 66rem) {
  .header-fancy {
    margin-top: 8rem;
  }
}
.header-fancy .header-fancy-image {
  border-radius: 0.75rem 2.5rem 0.75rem 2.5rem;
  overflow: hidden;
}
@media (min-width: 66rem) {
  .header-fancy .header-fancy-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1rem;
    width: 100%;
    max-width: calc(50% + 250px) !important;
  }
}
@media (max-width: 66rem) {
  .header-fancy .header-fancy-image {
    aspect-ratio: 1/1;
    max-height: 500px;
    height: auto;
    width: 100%;
  }
}
.header-fancy .header-fancy-image img, .header-fancy .header-fancy-image video {
  object-fit: cover;
  height: 100% !important;
  width: 100% !important;
}
.header-fancy .header-fancy-image img {
  object-fit: contain !important;
}
.header-fancy .header-fancy-description {
  z-index: 2;
}
.header-fancy .header-fancy-description .header-fancy-inner {
  position: relative;
  background: var(--color-gray-100);
  max-width: 85%;
  margin-bottom: -4rem;
  padding: 2rem;
  border-radius: 0 0 2.5rem 0;
}
@media (min-width: 66rem) {
  .header-fancy .header-fancy-description .header-fancy-inner {
    padding: 50px 0 50px 50px;
    margin-left: auto;
    max-width: calc(50% + 100px);
    position: relative;
    margin-bottom: 0;
    border-radius: 0 0 0 2.5rem;
  }
}
.header-fancy .header-fancy-description .header-fancy-inner:before {
  content: "";
  position: absolute;
  top: -1px;
  right: 100%;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 50 48.9' enable-background='new 0 0 50 48.9' xml:space='preserve'%3E%3Cpath fill='%23FFFFFF' d='M50,48.9L50,48.9L50,0H0C27.3,0,49.4,21.8,50,48.9z'/%3E%3C/svg%3E%0A");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
@media (max-width: 66rem) {
  .header-fancy .header-fancy-description .header-fancy-inner:before {
    top: auto;
    bottom: 3rem;
    left: calc(100% - 1px);
    rotate: -90deg;
  }
}
.header-fancy .header-fancy-description .header-fancy-inner:after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 334px;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 50 48.9' enable-background='new 0 0 50 48.9' xml:space='preserve'%3E%3Cpath fill='%23FFFFFF' d='M50,48.9L50,48.9L50,0H0C27.3,0,49.4,21.8,50,48.9z'/%3E%3C/svg%3E%0A");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
@media (max-width: 66rem) {
  .header-fancy .header-fancy-description .header-fancy-inner:after {
    top: 100%;
    left: -1px;
    rotate: -90deg;
  }
}

.header-previews .row {
  max-width: var(--break-lg);
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;
  padding: 0 1rem;
  margin: 0 auto;
}
@media (max-width: 66rem) {
  .header-previews .row {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .header-previews .row > div {
    height: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    min-width: calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
  .header-previews .row > div img {
    max-height: 200px;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: cover;
  }
  .header-previews .row .card-normal {
    flex: 100% !important;
    min-width: 100% !important;
  }
}
.header-previews .row.top {
  align-items: start;
}
.header-previews .row.bottom {
  align-items: end;
}
.header-previews .row .card-normal {
  flex: 45%;
  min-width: 45%;
}
.header-previews .row > div img {
  min-width: 0;
  width: auto;
  height: auto;
  object-fit: contain;
}

.header-quote {
  padding-block-start: 5rem;
  padding-block-end: 7rem;
  margin-inline: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-accent-200);
  /* Navigation dots styles */
}
.header-quote .slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.header-quote .slider-container:before, .header-quote .slider-container:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 7.5rem;
  top: 0;
  z-index: 3;
}
@media (max-width: 66rem) {
  .header-quote .slider-container:before, .header-quote .slider-container:after {
    width: 1.5rem;
  }
}
.header-quote .slider-container:before {
  left: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgb(229, 243, 240) 80%);
}
.header-quote .slider-container:after {
  right: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(229, 243, 240) 80%);
}
.header-quote .slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.header-quote .slider-item {
  min-width: 100%;
  padding: 0 7.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 66rem) {
  .header-quote .slider-item {
    padding: 0 2rem;
  }
}
.header-quote .slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.header-quote .slider-dot {
  width: 1rem;
  height: 1rem;
  margin: 0 0.5rem;
  background: var(--color-accent-400);
  border-radius: 50%;
  cursor: pointer;
}
.header-quote .slider-dot.active {
  background: var(--color-accent-700);
}
.header-quote blockquote {
  position: relative;
}
@media (max-width: 66rem) {
  .header-quote blockquote {
    text-align: center;
  }
}
.header-quote blockquote p {
  font-size: 1.75rem;
  line-height: 1.25;
  margin-bottom: 2rem;
}
@media (max-width: 66rem) {
  .header-quote blockquote p {
    font-size: 1.15rem;
  }
}
.header-quote blockquote cite {
  font-size: 1.25rem;
}
@media (max-width: 66rem) {
  .header-quote blockquote cite {
    font-size: 1rem;
  }
}

.header-image {
  position: relative;
  background-image: url("/assets/images/hero-30.avif");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.header-image:after {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%'  height='100%'  viewBox='0 0 24 24'  fill='none'  stroke='white'  stroke-width='2'  stroke-linecap='round'  stroke-linejoin='round'  class=''><path stroke='none' d='M0 0h24v24H0z' fill='none'/><path d='M4 11l8 3l8 -3'/%3E%3C/svg%3E ");
  bottom: 1rem;
  left: calc(50% - 1.5rem);
  color: var(--color-gray-100);
  height: 3rem;
  width: 3rem;
  display: block;
  animation: jumpInfinite 1.5s infinite;
}
@media (max-width: 66rem) {
  .header-image {
    height: 50vh;
  }
  .header-image:after {
    display: none;
  }
}
@media (max-width: 48rem) {
  .header-image {
    padding-block: 6rem;
    height: auto;
  }
  .header-image:after {
    display: none;
  }
}
.header-image .header-content {
  color: var(--color-gray-100);
  position: relative;
  z-index: 2;
}
.header-image .header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
}

.header-video-container {
  position: relative;
  height: 85vh;
  overflow: hidden;
}
@media (max-width: 66rem) {
  .header-video-container {
    height: auto;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}
.header-video-container .header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.header-video-container .header-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.header-video-container .header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75); /* Semi-transparent overlay for readability */
  z-index: 2;
}
.header-video-container .header-content {
  position: relative;
  z-index: 3;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 66rem) {
  .header-video-container .header-content {
    margin: 0 1rem !important;
  }
  .header-video-container .header-content h1 {
    font-size: 1.75rem;
    line-height: 1.75;
  }
  .header-video-container .header-content p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@keyframes jumpInfinite {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(0);
  }
}
.bg-pattern-1 {
  background-image: url("/assets/images/bg-pattern-1.svg");
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}

.button,
button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 1.5rem;
  background-color: var(--color-gray-100);
  color: var(--color-gray-900);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.button svg,
button svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-inline: 0.25rem;
  top: 0 !important;
  vertical-align: middle;
}
.button:hover,
button:hover {
  background-color: var(--color-gray-200);
  text-decoration: none;
}
.button:hover, .button:focus, .button:active,
button:hover,
button:focus,
button:active {
  text-decoration: none;
}
.button:disabled, .button.disabled,
button:disabled,
button.disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}
.button:disabled, .button:disabled.primary, .button:disabled.secondary, .button:disabled.primary-outline, .button:disabled.secondary-outline, .button:disabled.primary-opaque, .button:disabled.primary-dark, .button:disabled.secondary-dark, .button.disabled, .button.disabled.primary, .button.disabled.secondary, .button.disabled.primary-outline, .button.disabled.secondary-outline, .button.disabled.primary-opaque, .button.disabled.primary-dark, .button.disabled.secondary-dark,
button:disabled,
button:disabled.primary,
button:disabled.secondary,
button:disabled.primary-outline,
button:disabled.secondary-outline,
button:disabled.primary-opaque,
button:disabled.primary-dark,
button:disabled.secondary-dark,
button.disabled,
button.disabled.primary,
button.disabled.secondary,
button.disabled.primary-outline,
button.disabled.secondary-outline,
button.disabled.primary-opaque,
button.disabled.primary-dark,
button.disabled.secondary-dark {
  background-color: var(--color-gray-200);
  color: var(--color-gray-500);
  border-color: var(--color-gray-300);
}
.button.icon,
button.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem 0.4rem;
}
.button.icon svg,
button.icon svg {
  stroke-width: 1.5;
  top: 0 !important;
  width: 1.25rem;
  height: 1.25rem;
}
.button.block,
button.block {
  display: block;
  width: 100%;
}
.button.button-sm,
button.button-sm {
  font-size: 75%;
  padding: 0em 1em;
}
.button.button-lg,
button.button-lg {
  font-size: 130%;
  padding: 0.5em 1.5em;
}
.button.primary,
button.primary {
  background-color: var(--color-primary-500);
  color: var(--color-gray-200);
  border-color: var(--color-primary-500);
}
.button.primary:hover,
button.primary:hover {
  background-color: var(--color-primary-400);
  border-color: var(--color-primary-400);
}
.button.primary-opaque,
button.primary-opaque {
  background-color: var(--color-primary-100);
  color: var(--color-primary-900);
  border-color: var(--color-primary-300);
}
.button.primary-opaque:hover,
button.primary-opaque:hover {
  background-color: var(--color-primary-300);
  border-color: var(--color-primary-400);
}
.button.primary-dark,
button.primary-dark {
  background-color: var(--color-primary-900);
  color: var(--color-primary-100);
  border-color: var(--color-primary-800);
}
.button.primary-dark:hover,
button.primary-dark:hover {
  background-color: var(--color-primary-800);
  border-color: var(--color-primary-700);
}
.button.primary-outline,
button.primary-outline {
  background-color: transparent;
  color: var(--color-primary-500);
  border-color: var(--color-primary-500);
}
.button.primary-outline:hover,
button.primary-outline:hover {
  background-color: var(--color-primary-500);
  border-color: var(--color-primary-500);
  color: var(--color-gray-200);
}
.button.secondary,
button.secondary {
  background-color: var(--color-accent-500);
  color: var(--color-gray-900);
  border-color: var(--color-accent-500);
}
.button.secondary:hover,
button.secondary:hover {
  background-color: var(--color-accent-600);
  border-color: var(--color-accent-600);
}
.button.secondary-opaque,
button.secondary-opaque {
  background-color: var(--color-accent-100);
  color: var(--color-accent-900);
  border-color: var(--color-accent-300);
}
.button.secondary-opaque:hover,
button.secondary-opaque:hover {
  background-color: var(--color-accent-300);
  border-color: var(--color-accent-400);
}
.button.secondary-dark,
button.secondary-dark {
  background-color: var(--color-accent-900);
  color: var(--color-accent-100);
  border-color: var(--color-accent-800);
}
.button.secondary-dark:hover,
button.secondary-dark:hover {
  background-color: var(--color-accent-800);
  border-color: var(--color-accent-700);
}
.button.secondary-outline,
button.secondary-outline {
  background-color: transparent;
  color: var(--color-accent-800);
  border-color: var(--color-accent-700);
}
.button.secondary-outline:hover,
button.secondary-outline:hover {
  background-color: var(--color-accent-500);
  border-color: var(--color-accent-500);
  color: var(--color-gray-900);
}
.button.info,
button.info {
  background-color: var(--color-info-500);
  color: var(--color-gray-200);
  border-color: var(--color-info-500);
}
.button.info:hover,
button.info:hover {
  background-color: var(--color-info-400);
  border-color: var(--color-info-400);
}
.button.info-opaque,
button.info-opaque {
  background-color: var(--color-info-100);
  color: var(--color-info-900);
  border-color: var(--color-info-300);
}
.button.info-opaque:hover,
button.info-opaque:hover {
  background-color: var(--color-info-300);
  border-color: var(--color-info-400);
}
.button.info-dark,
button.info-dark {
  background-color: var(--color-info-900);
  color: var(--color-info-100);
  border-color: var(--color-info-800);
}
.button.info-dark:hover,
button.info-dark:hover {
  background-color: var(--color-info-800);
  border-color: var(--color-info-700);
}
.button.info-outline,
button.info-outline {
  background-color: transparent;
  color: var(--color-info-500);
  border-color: var(--color-info-500);
}
.button.info-outline:hover,
button.info-outline:hover {
  background-color: var(--color-info-500);
  border-color: var(--color-info-500);
  color: var(--color-gray-200);
}
.button.violet,
button.violet {
  background-color: var(--color-violet-500);
  color: var(--color-gray-900);
  border-color: var(--color-violet-500);
}
.button.violet:hover,
button.violet:hover {
  background-color: var(--color-violet-600);
  border-color: var(--color-violet-600);
}
.button.violet-opaque,
button.violet-opaque {
  background-color: var(--color-violet-100);
  color: var(--color-violet-900);
  border-color: var(--color-violet-300);
}
.button.violet-opaque:hover,
button.violet-opaque:hover {
  background-color: var(--color-violet-300);
  border-color: var(--color-violet-400);
}
.button.violet-dark,
button.violet-dark {
  background-color: var(--color-violet-900);
  color: var(--color-violet-100);
  border-color: var(--color-violet-800);
}
.button.violet-dark:hover,
button.violet-dark:hover {
  background-color: var(--color-violet-800);
  border-color: var(--color-violet-700);
}
.button.violet-outline,
button.violet-outline {
  background-color: transparent;
  color: var(--color-violet-800);
  border-color: var(--color-violet-700);
}
.button.violet-outline:hover,
button.violet-outline:hover {
  background-color: var(--color-violet-500);
  border-color: var(--color-violet-500);
  color: var(--color-gray-900);
}

.button-group {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.button-group .button {
  flex: 1;
}

.footer {
  background-color: var(--color-accent-300);
  padding: 5rem 2rem 7rem 2rem;
  max-width: var(--break-lg);
  border-radius: 1rem;
  border-radius: 0.75rem 2.5rem 0.75rem 2.5rem;
  margin: 4rem auto 4rem auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 108rem) {
  .footer {
    margin: 4rem auto 1rem auto;
  }
}
.footer .footer-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 66rem) {
  .footer .footer-inner {
    text-align: center;
    flex-direction: column;
    gap: 2rem;
  }
}
.footer .footer-inner .brand {
  display: flex;
  gap: 1rem;
  color: var(--color-gray-800);
}
.footer .footer-inner .brand:hover {
  text-decoration: none;
}
@media (max-width: 66rem) {
  .footer .footer-inner .brand {
    justify-content: center;
  }
}
.footer .footer-inner .brand h2.brand-name {
  margin: 0;
  color: var(--color-accent-800);
  font-family: "SNProBlack", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.footer .footer-inner .brand img,
.footer .footer-inner .brand svg {
  height: 3rem;
  width: auto;
}
.footer .footer-inner nav {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 48rem) {
  .footer .footer-inner nav {
    text-align: center;
    flex-direction: column;
    gap: 2rem;
  }
}
.footer .footer-inner nav ul li a {
  display: block;
  padding-block: 0.25rem;
}
.footer .footer-inner .socials {
  display: flex;
  gap: 1rem;
}
@media (max-width: 66rem) {
  .footer .footer-inner .socials {
    justify-content: center;
  }
}
.footer .footer-inner .socials a svg {
  width: 1.5rem;
  height: 1.5rem;
}
.footer .footer-inner ul {
  margin-block: 0.125rem;
  padding-inline: 0;
  list-style: none;
}
.footer .footer-inner .certifications {
  display: flex;
  gap: 1rem;
  justify-content: start;
  margin-block: 2rem;
}
.footer .footer-inner .certifications img {
  height: 4rem;
  width: auto;
  transition: all 0.3s ease-in-out;
  opacity: 0.75;
}
.footer .footer-inner .certifications img:hover {
  opacity: 1;
}

.scroller {
  --scroller-gap: 1rem;
  max-width: 100vw;
}
.scroller .scroller_item:hover img {
  filter: grayscale(0);
}
.scroller .scroller__inner {
  padding: calc(var(--scroller-gap) / 2) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--scroller-gap);
  justify-content: center;
  align-items: center;
}
.scroller .scroller__item {
  width: 250px;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 66rem) {
  .scroller .scroller__item {
    width: 200px;
  }
}
@media (max-width: 48rem) {
  .scroller .scroller__item {
    width: 150px;
  }
}
.scroller .scroller__item img {
  filter: grayscale(1);
}
.scroller[data-animated=true] {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}
.scroller[data-animated=true] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--scroller-duration, 40s) var(--scroller-direction, forwards) linear infinite;
}
.scroller[data-animated=true] .scroller__inner:hover {
  animation-play-state: paused;
}
.scroller[data-direction=right] {
  --scroller-direction: reverse;
}
.scroller[data-direction=left] {
  --scroller-direction: forwards;
}
.scroller[data-speed=slow] {
  --scroller-duration: 60s;
}
.scroller[data-speed=fast] {
  --scroller-duration: 20s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - var(--scroller-gap) / 2));
  }
}
.leaf-half-1 {
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  position: absolute;
  z-index: 0;
  background-color: var(--color-accent-100);
  opacity: 0.5;
  width: 900px;
  height: 900px;
  top: -30rem;
  left: -38rem;
  transform: rotate(225deg);
}

.leaf-half-2 {
  z-index: 0;
  background-color: var(--color-primary-100);
  opacity: 0.35;
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  width: 900px;
  height: 900px;
  position: absolute;
  top: -30rem;
  right: -36rem;
}

.leaf-half-3 {
  z-index: 0;
  background-color: var(--color-accent-100);
  opacity: 0.35;
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  width: 600px;
  height: 600px;
  position: absolute;
  bottom: -30%;
  left: 25%;
  transform: rotate(90deg);
  opacity: 0.5;
}

.leaf-half-4 {
  z-index: 0;
  background-color: var(--color-accent-100);
  opacity: 0.35;
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  width: 600px;
  height: 600px;
  position: absolute;
  bottom: -40%;
  left: 15%;
  transform: rotate(90deg);
  opacity: 0.5;
}

.leaf-half-5 {
  z-index: 0;
  background-color: var(--color-primary-100);
  opacity: 0.35;
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  width: 600px;
  height: 600px;
  position: absolute;
  bottom: -35%;
  right: -10%;
  transform: rotate(0deg);
  opacity: 0.5;
}

.leaf-half-6 {
  z-index: 0;
  background-color: var(--color-primary-200);
  opacity: 0.35;
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  width: 600px;
  height: 600px;
  position: absolute;
  bottom: -15%;
  right: 0%;
  transform: rotate(0deg);
  opacity: 0.5;
}

.accent .leaf-half-5 {
  background-color: var(--color-accent-200);
  bottom: -50% !important;
}
.accent .leaf-half-6 {
  background-color: var(--color-accent-200);
  bottom: -30% !important;
}

.leaf-full-1 {
  z-index: 0;
  background-color: var(--color-accent-500);
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  opacity: 0.5;
  width: 12dvw;
  height: 12dvw;
  position: absolute;
  top: 50%;
  left: -5%;
  transform: rotate(100deg);
}

.leaf-full-2 {
  z-index: 0;
  background-color: var(--color-primary-500);
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  opacity: 0.5;
  width: 10dvw;
  height: 10dvw;
  position: absolute;
  top: 24%;
  left: auto;
  right: -5%;
  transform: rotate(-100deg);
}

.leaf-full-3 {
  z-index: 0;
  background-color: var(--color-error-100);
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  opacity: 0.3;
  width: 10dvw;
  height: 10dvw;
  position: absolute;
  top: 24%;
  left: auto;
  right: 15%;
  transform: rotate(100deg);
}

.leaf-full-4 {
  z-index: 0;
  background-color: var(--color-accent-100);
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  opacity: 0.5;
  width: 20dvw;
  height: 20dvw;
  position: absolute;
  top: 34%;
  left: auto;
  left: 10%;
  transform: rotate(-100deg);
}

.leaf-full-5 {
  z-index: 0;
  background-color: var(--color-primary-100);
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  opacity: 0.3;
  width: 30dvw;
  height: 30dvw;
  position: absolute;
  top: 50%;
  left: auto;
  right: 10%;
  transform: rotate(-180deg);
}

.pattern-1 {
  z-index: 0;
  background-image: url("/assets/images/bg-pattern-1.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50dvw;
  height: 75dvw;
  position: absolute;
  top: 0%;
  right: 0%;
  opacity: 0.125;
}

.pattern-2 {
  z-index: 0;
  background-image: url("/assets/images/bg-pattern-1.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
  width: 50dvw;
  height: 75dvw;
  position: absolute;
  top: 0%;
  right: 0%;
  opacity: 0.15;
}

/* OSX Safari Browser */
.browser-window-osx {
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-300);
  width: 100%;
  padding: 0;
  border-radius: 1rem;
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
}
.browser-window-osx .header {
  background: var(--color-gray-200);
  border-radius: 5px 5px 0 0;
  padding: 0.5rem 1rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
}
.browser-window-osx .header p {
  line-height: 1.2;
}
.browser-window-osx .header .left {
  width: 100%;
  display: flex;
  align-items: center;
}
.browser-window-osx .header .left .menu {
  flex: 85px;
  display: inline-block;
  white-space: nowrap;
}
.browser-window-osx .header .left .menu span {
  margin: 6px 4px;
  padding: 0;
  height: 0.75rem;
  width: 0.75rem;
  display: block;
  float: left;
  border-radius: 50%;
}
.browser-window-osx .header .left .menu span.close {
  background: var(--color-error-500);
}
.browser-window-osx .header .left .menu span.minimize {
  background: var(--color-warning-500);
}
.browser-window-osx .header .left .menu span.maximize {
  background: var(--color-success-500);
}
.browser-window-osx .header .left .search {
  background: white;
  width: 100%;
  font-size: 0.85rem;
  display: inline-block;
  border-radius: 5px;
  padding: 1.25rem 0.25rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  .browser-window-osx .header .left .search {
    width: 100%;
  }
}
.browser-window-osx .header .left .search p {
  color: #555555;
  font-size: 0.85rem;
  margin: 4px 10px;
  letter-spacing: 0.6px;
  position: absolute;
}
.browser-window-osx .header .left .search p span {
  color: var(--color-success-500);
}
.browser-window-osx .header .toggle {
  display: inline-block;
  text-align: right;
}
.browser-window-osx .header .toggle label {
  font-size: 0.8rem;
  position: relative;
  bottom: 0.2rem;
}
.browser-window-osx .window {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  transform: scale(1);
  border-radius: 0 0 5px 5px;
  position: relative;
}
.browser-window-osx .window img {
  width: 100%;
}

:root {
  --cell-desktop: 130px;
}

/* Desktop stays as is */
.bento-parent {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(8, var(--cell-desktop));
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}
.bento-parent .card {
  padding: 0;
}

/* Desktop placement (unchanged) */
.bento-item-1 {
  grid-area: 1/1/5/3;
}

.bento-item-2 {
  grid-area: 1/3/3/6;
}

.bento-item-3 {
  grid-area: 5/1/7/3;
}

.bento-item-4 {
  grid-area: 7/1/9/6;
}

.bento-item-5 {
  grid-area: 3/3/7/6;
}

.bento-item-6 {
  grid-area: 1/6/3/9;
}

.bento-item-7 {
  grid-area: 1/9/5/11;
}

.bento-item-8 {
  grid-area: 3/6/5/9;
}

.bento-item-9 {
  grid-area: 5/6/9/11;
}

/* =========================
   TABLET, max-width: 1024px
   ========================= */
@media (max-width: 1024px) {
  .bento-parent {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none; /* kill the 8 fixed rows */
    grid-auto-rows: auto; /* rows grow with content */
  }
  /* clear desktop positioning */
  .bento-parent > [class*=bento-item-] {
    grid-area: auto;
  }
  /* Optional: control spans on tablet */
  .bento-item-1 {
    grid-column: 1/-1;
  }
  .bento-item-2 {
    grid-column: 1/2;
  }
  .bento-item-3 {
    grid-column: 2/3;
  }
  .bento-item-4 {
    grid-column: 1/-1;
  }
  .bento-item-5 {
    grid-column: 1/2;
  }
  .bento-item-6 {
    grid-column: 2/3;
  }
  .bento-item-7 {
    grid-column: 1/2;
  }
  .bento-item-8 {
    grid-column: 2/3;
  }
  .bento-item-9 {
    grid-column: 1/-1;
  }
}
/* =========================
   MOBILE, max-width: 768px
   ========================= */
@media (max-width: 768px) {
  .bento-parent {
    grid-template-columns: 1fr;
    grid-template-rows: none; /* no predefined rows */
    grid-auto-rows: auto;
  }
  .bento-parent > [class*=bento-item-] {
    grid-area: auto;
    grid-column: 1/-1;
  }
}
.card-team {
  display: flex;
  gap: 1rem;
}
.card-team .team-image {
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  border-bottom-left-radius: 100%;
  width: 20rem;
  min-width: 20rem;
  max-width: 20rem;
  height: 20rem;
  min-height: 20rem;
  max-height: 20rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 66rem) {
  .card-team .team-image {
    width: 15rem;
    min-width: 15rem;
    max-width: 15rem;
    height: 15rem;
    min-height: 15rem;
    max-height: 15rem;
  }
}
@media (max-width: 66rem) {
  .card-team .team-image {
    border-bottom-right-radius: 1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 0;
    border-bottom-left-radius: 100px;
    width: 10rem;
    min-width: 10rem;
    max-width: 10rem;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
  }
}
.card-team .team-image.mystery {
  background: var(--color-accent-500);
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-team .team-image img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: inline-block;
}
.card-team .team-description {
  background-color: var(--color-gray-200);
  border-top-right-radius: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-inline-start: -10rem;
  padding: 0.25rem 2rem 0rem 10rem;
  width: 100%;
}
@media (max-width: 66rem) {
  .card-team .team-description {
    margin-inline-start: -7.5rem;
    padding: 0.25rem 2rem 0rem 7.5rem;
  }
}
@media (max-width: 48rem) {
  .card-team .team-description {
    margin-inline-start: -5rem;
    padding: 1.5rem 2rem 1.5rem 5rem;
    border-bottom-right-radius: 1rem;
  }
}
.card-team .team-description h3 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
@media (max-width: 66rem) {
  .card-team .team-description h3 {
    font-size: 1.25rem;
  }
}
.card-team .team-description .title {
  font-weight: 600;
  color: var(--color-accent-900);
  margin-block-end: 0.5rem;
}
.card-team .team-description p {
  margin-top: 0;
  margin-bottom: 0;
}
.card-team .team-description a svg {
  position: relative;
  top: 3px;
}

.card-icon {
  aspect-ratio: 1/1;
  width: 3.5rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 65px;
  flex-basis: 65px;
  flex-grow: 0;
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  padding: 0;
  line-height: 1;
}
.card-icon svg {
  width: 2rem;
  height: 2rem;
}

.card-minimal {
  display: flex;
  gap: 1rem;
}
.card-minimal .card-description .card-title {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.card-minimal .card-description p,
.card-minimal .card-description a {
  margin-top: 0;
  margin-bottom: 0;
}

.card-normal {
  border: 1px solid var(--color-gray-300);
  background-color: var(--color-gray-100);
  overflow: hidden;
}
.card-normal.no-border {
  border-color: transparent;
}
.card-normal .card-banner {
  position: relative;
}
.card-normal .card-banner img {
  width: 100%;
}
.card-normal .card-banner .border-bottom {
  width: 100%;
  position: absolute;
  bottom: -0.45rem;
}
.card-normal .card-body {
  padding: 2rem;
}
.card-normal .card-title {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card-news .card-cover {
  height: 14rem;
  width: 100%;
  overflow: hidden;
  background: #EDF6F4;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--color-gray-300);
}
.card-news .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 14rem);
}
.card-news .card-content .card-body {
  padding: 0;
  margin: 1rem !important;
}
.card-news .card-content .card-body .card-title {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.card-news .card-content .card-body .card-text {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
.card-news .card-content .card-footer {
  margin: 1rem !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-news .card-content .card-footer time {
  margin-top: 0.5rem;
  opacity: 0.65;
}

.card-fancy {
  position: relative;
  margin-bottom: 0rem;
  border-radius: 0.75rem 2.5rem 0.75rem 2.5rem;
  box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.075);
  height: 550px;
}
@media (max-width: 88rem) {
  .card-fancy {
    box-shadow: none;
    margin-block-start: 0rem !important;
    margin-block-end: 2rem;
  }
}
@media (max-width: 66rem) {
  .card-fancy {
    box-shadow: none;
    margin-bottom: 2rem;
  }
}
.card-fancy .card-fancy-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 0rem;
  border-radius: 0.75rem 2.5rem 0.75rem 2.5rem;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 48rem) {
  .card-fancy .card-fancy-wrapper {
    height: 100%;
    width: 100%;
  }
}
.card-fancy .card-fancy-wrapper .card-fancy-image {
  border-radius: 0.75rem 2.5rem 0.75rem 2.5rem;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 66rem) {
  .card-fancy .card-fancy-wrapper .card-fancy-image {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 100% !important;
  }
}
@media (max-width: 66rem) {
  .card-fancy .card-fancy-wrapper .card-fancy-image {
    height: 100%;
  }
}
.card-fancy .card-fancy-wrapper .card-fancy-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: all ease-in-out 0.3s;
  border-radius: 0.75rem 2.5rem 0.75rem 2.5rem;
}
.card-fancy .card-fancy-wrapper .card-fancy-description {
  z-index: 2;
}
.card-fancy .card-fancy-wrapper .card-fancy-description .card-fancy-inner {
  position: relative;
  background: var(--color-gray-100);
  max-width: 75%;
  margin-bottom: -4rem;
  border-radius: 0 0 2.5rem 0;
}
.card-fancy .card-fancy-wrapper .card-fancy-description .card-fancy-inner img {
  width: auto !important;
}
@media (min-width: 66rem) {
  .card-fancy .card-fancy-wrapper .card-fancy-description .card-fancy-inner {
    margin-left: auto;
    max-width: calc(50% + 100px);
    position: relative;
    margin-bottom: 0;
    border-radius: 0 0 0 2.5rem;
  }
}
.card-fancy .card-fancy-wrapper .card-fancy-description .card-fancy-inner:before {
  content: "";
  position: absolute;
  top: -1px;
  right: 100%;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 50 48.9' enable-background='new 0 0 50 48.9' xml:space='preserve'%3E%3Cpath fill='%23FFFFFF' d='M50,48.9L50,48.9L50,0H0C27.3,0,49.4,21.8,50,48.9z'/%3E%3C/svg%3E%0A");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
@media (max-width: 66rem) {
  .card-fancy .card-fancy-wrapper .card-fancy-description .card-fancy-inner:before {
    width: 32px;
    height: 32px;
    top: auto;
    bottom: 32px;
    left: calc(100% - 1px);
    rotate: -90deg;
  }
}
.card-fancy .card-fancy-wrapper .card-fancy-description .card-fancy-inner:after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 334px;
  left: calc(100% - 32px);
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 50 48.9' enable-background='new 0 0 50 48.9' xml:space='preserve'%3E%3Cpath fill='%23FFFFFF' d='M50,48.9L50,48.9L50,0H0C27.3,0,49.4,21.8,50,48.9z'/%3E%3C/svg%3E%0A");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
@media (max-width: 66rem) {
  .card-fancy .card-fancy-wrapper .card-fancy-description .card-fancy-inner:after {
    top: 100%;
    left: -1px;
    rotate: -90deg;
  }
}
.card-fancy .card-fancy-wrapper .card-fancy-overlay {
  z-index: 2;
  background: rgba(36, 47, 76, 0.7);
  height: 0%;
  position: absolute;
  bottom: -4rem;
  width: 100%;
  color: var(--color-gray-100);
  padding-inline: 2rem;
  padding-block: 1rem;
  border-radius: 0 0 0.75rem 2.5rem;
  transition: all ease-in-out 0.3s;
}
@media (max-width: 48rem) {
  .card-fancy .card-fancy-wrapper .card-fancy-overlay {
    border-radius: 0.75rem 0 0.75rem 2.5rem;
    height: auto;
    padding-block-end: 4rem;
  }
}
.card-fancy .card-fancy-wrapper .card-fancy-overlay p {
  font-size: 1.25rem;
}
@media (max-width: 48rem) {
  .card-fancy .card-fancy-wrapper .card-fancy-overlay p {
    font-size: 1rem;
  }
}
.card-fancy:hover > .card-fancy-wrapper .card-fancy-image img {
  transform: scale(1.1) rotate(-5deg);
}
@media (max-width: 88rem) {
  .card-fancy:hover > .card-fancy-wrapper .card-fancy-image img {
    transform: scale(1) rotate(0deg);
  }
}
.card-fancy:hover > .card-fancy-wrapper .card-fancy-overlay {
  height: 60%;
}
@media (max-width: 48rem) {
  .card-fancy:hover > .card-fancy-wrapper .card-fancy-overlay {
    height: auto;
  }
}

.card-box {
  background-color: var(--color-gray-300);
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem 1.5rem 0.75rem 1.5rem;
}
.card-box.accent {
  background: var(--color-accent-600);
}

.video-card-container {
  display: flex;
  gap: 4rem;
  align-items: stretch; /* Make sure all video cards are the same height */
}
@media (max-width: 768px) {
  .video-card-container { /* You can adjust this breakpoint as needed */
    flex-direction: column; /* Stack cards vertically */
    gap: 2rem; /* Reduce the gap for smaller screens */
  }
}

.video-card {
  flex: 1; /* Ensure each card takes equal width */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 33.3333333333%;
  opacity: 0.5;
  transform: translateY(0rem);
  transition: all ease-in-out 0.3s;
  cursor: pointer;
}
@media (max-width: 768px) {
  .video-card {
    min-width: 100%; /* Make each card take up the full width on smaller screens */
    opacity: 1;
    transform: translateY(0); /* Remove any upward transform to keep them flat */
  }
}
.video-card.active {
  opacity: 1;
  transform: translateY(-2em);
}
@media (max-width: 66rem) {
  .video-card.active {
    transform: translateY(0em);
  }
}
.video-card .video-card-progress {
  height: 5px;
  width: 0%;
  background-color: var(--color-accent-500);
  border-radius: 1rem;
  margin-block-end: 1rem;
  transition: all ease-in-out 0.15s;
}
.video-card .video-card-video {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
  background-size: cover;
}
.video-card .video-card-header {
  font-size: 1.75rem;
  line-height: 2.25rem;
  margin-top: 1.5rem;
}
.video-card .video-card-header, .video-card .video-card-body {
  flex-grow: 1; /* Let the text content grow to fill remaining space */
}

.card {
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 66rem) {
  .card {
    margin-bottom: 1rem;
    padding: 1.5rem;
  }
}
@media (max-width: 48rem) {
  .card {
    margin-bottom: 0.5rem;
    padding: 1rem;
  }
}
.card.card-primary {
  background: #EDF6F4;
  background: linear-gradient(90deg, var(--color-primary-0) 0%, var(--color-primary-100) 100%);
}
.card.card-primary ::selection {
  background: var(--color-primary-300);
  color: var(--color-primary-900);
}
.card.card-secondary {
  background: #EDF6F4;
  background: linear-gradient(90deg, var(--color-accent-0) 0%, var(--color-accent-300) 100%);
}
.card.card-secondary ::selection {
  background: var(--color-accent-300);
  color: var(--color-accent-900);
}
.card.card-info {
  background: #EDF6F4;
  background: linear-gradient(90deg, var(--color-info-0) 0%, var(--color-info-100) 100%);
}
.card.card-info ::selection {
  background: var(--color-info-300);
  color: var(--color-info-900);
}
.card.card-violet {
  background: var(--color-violet-100);
  background: linear-gradient(90deg, var(--color-violet-100) 0%, var(--color-violet-300) 100%);
}
.card.card-violet ::selection {
  background: var(--color-violet-500);
  color: var(--color-violet-900);
}
.card .card-body {
  padding: 2rem;
  position: relative;
  z-index: 2;
}
.card .card-description {
  font-size: 1.25rem;
}
.card .card-title {
  margin-top: 0;
  font-size: 2rem;
}
.card .card-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: -20%;
  right: -15%;
  z-index: 1;
  opacity: 0.25;
  transform: rotate(-15deg);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}

.map iframe {
  width: 100%;
  height: 100%;
}
.map.full iframe {
  height: auto;
  aspect-ratio: 16/3;
}
@media (max-width: 48rem) {
  .map.full iframe {
    aspect-ratio: 16/9;
  }
}

.linkedin {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background-color: var(--color-primary-300);
  padding-block: 8rem;
  padding-inline: 4rem;
  border-radius: 0.75rem 2.5rem 0.75rem 2.5rem;
}
@media (max-width: 66rem) {
  .linkedin {
    flex-direction: column;
  }
}
.linkedin.accent {
  padding-block: 4rem;
  background-color: var(--color-accent-300) !important;
}
.linkedin.accent .linkedin-image::before {
  top: -45%;
  background-color: var(--color-accent-400) !important;
}
.linkedin .linkedin-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.linkedin .linkedin-image::before {
  content: "";
  position: absolute;
  top: -15%;
  left: 10%;
  background-color: var(--color-primary-400);
  border-radius: 0.75rem 2.5rem 0.75rem 2.5rem;
  width: 80%;
  height: 100%;
}
.linkedin .linkedin-image img {
  width: 70%;
  height: auto;
  position: relative;
  border-radius: 0.75rem 2.5rem 0.75rem 2.5rem;
  opacity: 0.75;
}
@media (max-width: 66rem) {
  .linkedin .linkedin-description {
    text-align: center;
  }
}
.linkedin .linkedin-description .linkedin-title {
  font-weight: 600;
  color: var(--color-accent-900);
  font-size: 2rem;
  margin-block-end: 0.5rem;
}
.linkedin .linkedin-description .linkedin-text {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.5;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=date],
input[type=time],
input[type=search],
input[type=url],
input[type=color] {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-gray-300);
  background-color: var(--color-gray-100);
  border-radius: 0.5rem;
  font-size: 1rem;
  color: var(--color-gray-800);
  transition: border-color 0.3s;
}

input:not(:placeholder-shown):valid {
  outline-color: var(--color-success-500);
}

input:not(:placeholder-shown):invalid {
  outline-color: var(--color-error-500);
}

input:focus:invalid {
  outline-color: var(--color-warning-500);
}

input[type=file] {
  width: 0;
  height: 0;
  opacity: 0;
}
input[type=file] + label {
  display: inline-block;
  width: 100%;
  padding: 1rem 1rem 1rem 4.5rem;
  border: 1px solid var(--color-gray-300);
  background-color: var(--color-gray-100);
  border-radius: 0.5rem;
  font-size: 1rem;
  color: var(--color-gray-800);
  transition: border-color 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
input[type=file] + label::before {
  position: absolute;
  padding: 1rem;
  top: 0;
  left: 0;
  height: 100%;
  content: url(/assets/images/upload.svg);
  padding-inline-end: 1rem;
  border-right: 1px solid var(--color-gray-300);
}
input[type=file] + label.file-selected::before {
  content: url(/assets/images/check.svg);
}
input[type=file]:focus + label {
  outline-color: var(--color-accent-500);
  outline-width: 2px;
  outline-style: solid;
  outline-offset: 0px;
}

.textarea-wrapper {
  width: 100%;
  border: 1px solid var(--color-gray-300);
  background-color: var(--color-gray-100);
  border-radius: 0.5rem;
  font-size: 1rem;
  color: var(--color-gray-800);
  transition: border-color 0.3s;
  overflow: hidden;
}
.textarea-wrapper:focus, .textarea-wrapper:focus-within {
  outline-color: var(--color-accent-500);
  outline-width: 2px;
  outline-style: solid;
  outline-offset: 0px;
}
.textarea-wrapper textarea {
  margin: 0;
  padding: 1rem;
  border: 0;
  width: 100%;
  resize: none;
  margin-bottom: -0.5rem;
  color: var(--color-gray-800);
  background-color: var(--color-gray-100);
}
.textarea-wrapper textarea:focus {
  outline-color: transparent;
}

select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-gray-300) !important;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: var(--color-gray-800);
  transition: border-color 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--color-gray-100);
  background-image: url("data:image/svg+xml;utf8,<svg fill='rgb(209,208,210)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 0.5rem);
  background-position-y: 1rem;
}
select:focus {
  background-image: url("data:image/svg+xml;utf8,<svg fill='rgb(178,215,210)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
}

.input-group {
  display: flex;
  gap: 0;
  align-items: center;
  margin-bottom: 1rem;
}
.input-group button,
.input-group .button {
  padding: 0.75rem 1rem;
  margin: 0;
  border-radius: 0 1rem 0.5rem 0;
}
.input-group input {
  padding: 0.75rem 1rem;
  margin: 0;
  border-radius: 0.5rem 0 0 1rem;
}

.tooltip {
  position: absolute;
  background-color: var(--color-gray-800);
  color: var(--color-accent-100);
  padding: 0.5rem 1rem;
  white-space: nowrap;
  z-index: 9000;
  display: none;
  line-height: 1.5;
  border-radius: 0.95rem;
  box-shadow: var(--shadow-lg);
  transition: opacity 0.3s ease;
}
@media (max-width: 66rem) {
  .tooltip {
    display: none !important;
  }
}
.tooltip:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

.tooltip.top:before {
  bottom: -0.3rem;
  left: 50%;
  margin-left: -0.5rem;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid var(--color-gray-800);
}

.tooltip.bottom:before {
  top: -0.3rem;
  left: 50%;
  margin-left: -0.5rem;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid var(--color-gray-800);
}

.tooltip.left:before {
  right: -0.3rem;
  top: 50%;
  margin-top: -0.5rem;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.5rem solid var(--color-gray-800);
}

.tooltip.right:before {
  left: -0.3rem;
  top: 50%;
  margin-top: -0.5rem;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-right: 0.5rem solid var(--color-gray-800);
}

.tooltip-text-link {
  display: inline-block;
  position: relative;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}
@media (max-width: 66rem) {
  .tooltip-text-link {
    text-decoration: none;
  }
}

.notification {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 0.25rem 1rem 0.25rem 1rem;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
  background-color: var(--color-gray-100);
  font-size: 1rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}
.notification.primary {
  color: var(--color-primary-900);
  background-color: var(--color-primary-200);
}
.notification.secondary {
  color: var(--color-accent-900);
  background-color: var(--color-accent-200);
}

#handboy {
  animation: swing ease-in-out 1.3s infinite alternate;
  transform-origin: 98% 98%;
  transform-box: fill-box;
}

#girllight {
  animation: swing ease-in-out 1.3s infinite alternate;
  transform-origin: 0% 97%;
  transform-box: fill-box;
}

#hairgirl {
  animation: swinghair ease-in-out 1.3s infinite alternate;
  transform-origin: 60% 0%;
  transform-box: fill-box;
}

#zero {
  transform-origin: bottom;
  transform-box: fill-box;
}

/*************swing************/
@keyframes swing {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
/*************swing hair************/
@keyframes swinghair {
  0% {
    transform: rotate(6deg);
  }
  100% {
    transform: rotate(-6deg);
  }
}
.org-chart ul,
.org-chart li {
  position: relative;
}
.org-chart ul {
  padding-left: 30px;
}
.org-chart li {
  list-style: none;
}
.org-chart li > .media:before,
.org-chart li.morelink > a:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 10px;
  width: 2px;
  height: 100%;
  background-color: var(--color-gray-800);
}
.org-chart li:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 35px;
  width: 16px;
  height: 2px;
  background-color: var(--color-gray-800);
}
.org-chart li:last-child > .media:before {
  height: 26px;
}
.org-chart li.morelink > a:before {
  height: 0.5em;
}
.org-chart li.morelink:before {
  top: 0.5em;
}
.org-chart li > .media .hasreports {
  display: block;
  position: absolute;
  right: 1em;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-top: 2px solid lightgray;
  border-right: 2px solid lightgray;
  transform: rotate(45deg);
}
.org-chart li > .media .reportscount {
  display: block;
  padding-top: 0.2em;
}
.org-chart .org {
  padding-left: 0;
}
.org-chart .org > li > .media:before,
.org-chart .org > li:before {
  background: none;
}
.org-chart .org .media {
  padding-left: 6px;
}
.org-chart .org .me > .media {
  padding-left: 10px;
}
.org-chart .org .media-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 64px;
  background-color: var(--color-gray-800);
  border-radius: 50% 50% 0.5rem 50%;
}
.org-chart .org .media-container .media-object {
  width: 50%;
  height: auto;
}
.org-chart .org .media-left {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.org-chart .org .media-left .heading {
  font-size: 1.5rem;
  margin: 0rem 0 0 0;
  padding: 0;
}
.org-chart .org .media-left .heading a {
  color: var(--color-gray-800);
}
.org-chart .org .media-body p {
  padding: 0.75rem 0 2.5rem 0;
  margin: 0;
}
.org-chart .sup > .media {
  padding-left: 0;
}
.org-chart .org .morelink {
  padding: 0 0.5em;
}

.press {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 4rem;
  padding: 1rem;
}
.press.headshots a img {
  max-width: 218px;
}
.press.text a img {
  max-width: 256px;
}
.press.bg-dark {
  background-color: #242F4C;
  border-radius: 1rem;
  padding: 2rem 2rem 2rem 2rem;
}
.press.bg-dark a {
  color: #C5DFD9;
}
.press a span {
  margin-bottom: 1rem;
  display: block;
  font-weight: bold;
  font-size: 75%;
}
.press a img {
  max-width: 128px;
  width: auto;
  height: auto;
}

.press-item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  transition: transform 0.2s;
}
.press-item:hover {
  transform: scale(1.05);
}

.press-colors {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  gap: 1rem;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .press-colors {
    overflow-x: scroll;
  }
}
.press-colors h3 {
  margin: 0;
}
.press-colors .color {
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.65;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 0.5rem;
}
.press-colors h3 {
  vertical-align: bottom;
}

.div1 {
  grid-area: 1/1/2/10;
}

.div2 {
  grid-area: 3/1/4/10;
}

.div3 {
  grid-area: 5/1/6/10;
}

.div4 {
  grid-area: 7/1/8/10;
}

.div5 {
  grid-area: 9/1/10/10;
}

.div6 {
  grid-area: 11/1/12/10;
}

.div7 {
  grid-area: 13/1/14/10;
}

.div8 {
  grid-area: 2/1/3/2;
}

.div9 {
  grid-area: 2/2/3/3;
}

.div10 {
  grid-area: 2/3/3/4;
}

.div11 {
  grid-area: 2/4/3/5;
}

.div12 {
  grid-area: 2/5/3/6;
}

.div13 {
  grid-area: 2/6/3/7;
}

.div14 {
  grid-area: 2/7/3/8;
}

.div15 {
  grid-area: 2/8/3/9;
}

.div16 {
  grid-area: 2/9/3/10;
}

.div17 {
  grid-area: 4/1/5/2;
}

.div18 {
  grid-area: 4/2/5/3;
}

.div19 {
  grid-area: 4/3/5/4;
}

.div20 {
  grid-area: 4/4/5/5;
}

.div21 {
  grid-area: 4/5/5/6;
}

.div22 {
  grid-area: 4/6/5/7;
}

.div23 {
  grid-area: 4/7/5/8;
}

.div24 {
  grid-area: 4/8/5/9;
}

.div25 {
  grid-area: 4/9/5/10;
}

.div26 {
  grid-area: 6/1/7/2;
}

.div27 {
  grid-area: 6/2/7/3;
}

.div28 {
  grid-area: 6/3/7/4;
}

.div29 {
  grid-area: 6/4/7/5;
}

.div30 {
  grid-area: 6/5/7/6;
}

.div31 {
  grid-area: 6/6/7/7;
}

.div32 {
  grid-area: 6/7/7/8;
}

.div33 {
  grid-area: 6/8/7/9;
}

.div34 {
  grid-area: 6/9/7/10;
}

.div35 {
  grid-area: 8/1/9/2;
}

.div36 {
  grid-area: 8/2/9/3;
}

.div37 {
  grid-area: 8/3/9/4;
}

.div38 {
  grid-area: 8/4/9/5;
}

.div39 {
  grid-area: 8/5/9/6;
}

.div40 {
  grid-area: 8/6/9/7;
}

.div41 {
  grid-area: 8/7/9/8;
}

.div42 {
  grid-area: 8/8/9/9;
}

.div43 {
  grid-area: 8/9/9/10;
}

.div44 {
  grid-area: 10/1/11/2;
}

.div45 {
  grid-area: 10/2/11/3;
}

.div46 {
  grid-area: 10/3/11/4;
}

.div47 {
  grid-area: 10/4/11/5;
}

.div48 {
  grid-area: 10/5/11/6;
}

.div49 {
  grid-area: 10/6/11/7;
}

.div50 {
  grid-area: 10/7/11/8;
}

.div51 {
  grid-area: 10/8/11/9;
}

.div52 {
  grid-area: 10/9/11/10;
}

.div53 {
  grid-area: 12/1/13/2;
}

.div54 {
  grid-area: 12/2/13/3;
}

.div55 {
  grid-area: 12/3/13/4;
}

.div56 {
  grid-area: 12/4/13/5;
}

.div57 {
  grid-area: 12/5/13/6;
}

.div58 {
  grid-area: 12/6/13/7;
}

.div59 {
  grid-area: 12/7/13/8;
}

.div60 {
  grid-area: 12/8/13/9;
}

.div61 {
  grid-area: 12/9/13/10;
}

.div62 {
  grid-area: 14/1/15/2;
}

.div63 {
  grid-area: 14/2/15/3;
}

.div64 {
  grid-area: 14/3/15/4;
}

.div65 {
  grid-area: 14/4/15/5;
}

.div66 {
  grid-area: 14/5/15/6;
}

.div67 {
  grid-area: 14/6/15/7;
}

.div68 {
  grid-area: 14/7/15/8;
}

.div69 {
  grid-area: 14/8/15/9;
}

.div70 {
  grid-area: 14/9/15/10;
}

.div71 {
  grid-area: 2/5/15/6;
  margin: -0.5rem;
  border: 2px dashed var(--color-gray-900);
  border-radius: 0.5rem;
  pointer-events: none;
}

.livechat-toggle {
  background: var(--color-accent-500);
  color: var(--color-accent-100);
  padding: 0.75rem;
  border-radius: 0.25rem 1rem 0.25rem 1rem;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  line-height: 0;
  z-index: 99999;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.175);
  border: 0;
}
.livechat-toggle:hover {
  background: var(--color-accent-700);
  color: var(--color-accent-300);
}
.livechat-toggle svg {
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  line-height: 0;
  top: 0 !important;
}
.livechat-toggle svg#open {
  display: block;
}
.livechat-toggle svg#close {
  display: none;
}
@media (max-width: 500px) {
  .livechat-toggle.active {
    top: 0.5rem;
    right: 0.5rem;
    bottom: auto;
    background-color: transparent;
    color: var(--color-accent-900);
    box-shadow: none !important;
    border-radius: 0;
  }
}
.livechat-toggle.active svg#open {
  display: none;
}
.livechat-toggle.active svg#close {
  display: block;
}

.livechat-container {
  position: fixed;
  z-index: 99998;
  width: 400px;
  height: calc(100% - 7rem);
  max-height: 730px;
  bottom: 6rem;
  right: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.175);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  border-radius: 1rem;
  background-color: var(--color-gray-100);
  overflow: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
@media (max-width: 500px) {
  .livechat-container {
    height: 100dvh;
    max-height: 100dvh;
    width: 100vw;
    bottom: 0;
    right: 0;
    border-radius: 0;
  }
}
.livechat-container.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.livechat-container .livechat-header {
  position: relative;
  padding: 1rem;
  border-bottom: 1px solid var(--color-accent-300);
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 500px) {
  .livechat-container .livechat-header {
    flex-direction: row;
    align-items: center;
  }
  .livechat-container .livechat-header .livechat-profile {
    height: 32px !important;
    width: 32px !important;
    margin-top: 0 !important;
  }
}
.livechat-container .livechat-header .livechat-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent-500);
  background-image: url("/assets/images/bg-pattern-1.svg");
  background-position: center center;
  background-repeat: repeat-x;
  background-size: 30%;
  opacity: 0.2;
}
.livechat-container .livechat-header .livechat-tag {
  position: relative;
  z-index: 2;
  color: var(--color-accent-900);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.livechat-container .livechat-header .livechat-profile {
  position: relative;
  z-index: 2;
  background-color: var(--color-gray-100);
  border-radius: 50%;
  border: 3px solid var(--color-accent-900);
  height: 64px;
  width: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}
.livechat-container .livechat-header .livechat-profile #livechat-image {
  height: 60% !important;
  width: 60% !important;
}
.livechat-container .livechat-header .livechat-profile #livechat-image.senbee-loading {
  animation: spinAndScale 3s infinite cubic-bezier(1, -0.05, 0.76, 0.83);
}
.livechat-container .livechat-body {
  padding: 1rem;
  height: 100%;
  background-color: var(--color-gray-100);
  overflow-y: scroll;
}
.livechat-container .livechat-body p {
  margin: 0;
}
.livechat-container .livechat-footer {
  border-top: 1px solid var(--color-gray-300);
  border-bottom: 1px solid var(--color-gray-300);
  padding: 1rem;
}
.livechat-container .livechat-footer #success-message {
  margin: 0;
  margin-bottom: 0.25rem;
  text-align: center;
}
.livechat-container .livechat-footer .math-challenge {
  flex-wrap: wrap;
}
.livechat-container .livechat-footer .livechat-input,
.livechat-container .livechat-footer .math-challenge {
  display: flex;
  gap: 0.5rem;
}
.livechat-container .livechat-footer .livechat-input #error-message,
.livechat-container .livechat-footer .livechat-input #math-question,
.livechat-container .livechat-footer .math-challenge #error-message,
.livechat-container .livechat-footer .math-challenge #math-question {
  width: 100%;
  margin: 0;
  text-align: center;
  font-weight: bold;
}
.livechat-container .livechat-footer .livechat-input .math-input,
.livechat-container .livechat-footer .math-challenge .math-input {
  display: flex;
  width: 100%;
  gap: 0.5rem;
}
.livechat-container .livechat-footer .livechat-input .math-input #math-answer,
.livechat-container .livechat-footer .math-challenge .math-input #math-answer {
  width: 80%;
}
.livechat-container .livechat-footer .livechat-input .math-input #verify-answer,
.livechat-container .livechat-footer .math-challenge .math-input #verify-answer {
  width: 20%;
}
.livechat-container .livechat-footer .livechat-input .livechat-compose,
.livechat-container .livechat-footer .livechat-input .livechat-maths,
.livechat-container .livechat-footer .math-challenge .livechat-compose,
.livechat-container .livechat-footer .math-challenge .livechat-maths {
  background-color: var(--color-gray-200);
  color: var(--color-gray-800);
  border-radius: 0.25rem;
  border: 0;
  width: 80%;
  padding: 0.5rem 1rem;
}
.livechat-container .livechat-footer .livechat-input .livechat-send,
.livechat-container .livechat-footer .math-challenge .livechat-send {
  width: 20%;
  padding: 0.5rem 1rem;
  background: var(--color-accent-300);
  color: var(--color-accent-600);
}
.livechat-container .livechat-footer .livechat-input .livechat-send:hover,
.livechat-container .livechat-footer .math-challenge .livechat-send:hover {
  background: var(--color-accent-600);
  color: var(--color-accent-900);
}
.livechat-container .livechat-footer .livechat-credits {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
}

@keyframes spinAndScale {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(720deg) scale(1.3);
  }
  75% {
    transform: rotate(1440deg) scale(1);
  }
  100% {
    transform: rotate(1440deg) scale(1);
  }
}
.grecaptcha-badge {
  bottom: 6rem !important;
  z-index: 99 !important;
}

.rotator-wrapper {
  width: 120px;
  height: 75px;
  overflow: hidden;
  position: relative;
}
.rotator-wrapper .rotator-inner {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
}
.rotator-wrapper .rotator-inner .rotator-option {
  width: 120px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 2rem;
}

.browser-window-osx {
  background-color: var(--color-gray-100);
}

.browser-window-osx .window {
  height: 600px !important;
  position: relative;
  z-index: 2;
}

.browser-window-osx .header {
  position: relative;
  z-index: 3;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05) !important;
}

.chat-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1rem 2rem 1rem;
  max-height: 600px;
  height: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
.chat-box .chat-item {
  display: inline-flex;
  position: relative;
  height: max-content;
}
.chat-box .chat-item.name {
  margin-top: 1.5rem !important;
}
.chat-box .chat-item::before {
  content: attr(data-name);
  color: var(--color-gray-500);
  font-weight: bold;
  font-size: 0.75rem;
  text-transform: uppercase;
  position: absolute;
  top: -1.25rem;
  left: 0.25rem;
}
.chat-box .chat-item .chat-text {
  color: var(--color-gray-800);
  padding: 0.75rem 1rem;
  line-height: 1.25;
}
.chat-box .chat-item .chat-text:has(table) {
  width: 100%;
}
.chat-box .chat-item .chat-text table {
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0.1rem solid var(--color-gray-300);
}
.chat-box .chat-item .chat-text table tr:first-child {
  font-weight: bold;
}
.chat-box .chat-item .chat-text table td {
  text-align: left;
  vertical-align: top;
  padding: 0.8rem;
  border: 0.1rem solid var(--color-gray-300);
}
.chat-box .chat-item.left {
  justify-content: flex-start;
  align-items: flex-start;
}
.chat-box .chat-item.left .chat-text {
  background: var(--color-gray-200);
  border-radius: 1.15rem 1.15rem 1.15rem 0.2rem;
}
.chat-box .chat-item.right {
  justify-content: flex-end;
  align-items: flex-end;
}
.chat-box .chat-item.right .chat-text {
  background: var(--color-accent-200);
  border-radius: 1.15rem 1.15rem 0.2rem 1.15rem;
}
.chat-box .chat-item.right::before {
  left: auto;
  right: 0.25rem;
}
.chat-box .chat-item .reset-button {
  display: block;
  padding: 0.85rem 1.35rem;
  margin-top: 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  background-color: var(--color-primary-300);
  color: var(--color-greay-800);
  border: none;
  border-radius: 1.25rem;
}
.chat-box .chat-item .reset-button:hover {
  background-color: var(--color-primary-600);
  color: var(--color-primary-100);
}

.table-animate {
  animation: fadeInSlideUp 0.5s ease-out;
}

.typing {
  display: inline-block;
  position: relative;
  top: 3px;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #ccc;
  animation: blink 0.5s infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes slideInFromBottom {
  0% {
    transform: translateY(2rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideOutToLeft {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-2rem);
    opacity: 0;
  }
}
@keyframes slideOutToRight {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(2rem);
    opacity: 0;
  }
}
@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#senbee-messages {
  scroll-behavior: smooth;
}

dialog {
  min-width: 400px;
  width: 90%;
  max-width: 1000px;
  border: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 1rem;
  padding: 0;
}

dialog .browser-window-osx {
  margin-top: 0 !important;
}

dialog.showing {
  opacity: 1;
  transform: translateY(0);
}

dialog.hiding {
  opacity: 0;
  transform: translateY(-50px);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

dialog.showing::backdrop {
  opacity: 1;
}

.close {
  cursor: pointer;
}

.sidebar {
  display: flex;
  gap: 4rem;
  position: relative;
  padding: 0 2.5rem;
}
@media (max-width: 850px) {
  .sidebar {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.sidebar aside {
  min-width: 300px;
  height: auto;
  position: -webkit-sticky; /* for Safari */
  position: sticky;
  top: 164px;
  display: flex;
  align-self: flex-start;
}
@media (max-width: 850px) {
  .sidebar aside {
    width: 100%;
    position: relative;
    top: 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-gray-500);
  }
}
.sidebar aside nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar aside nav ul li a {
  color: var(--color-accent-700);
  margin: 0.5rem 0;
  display: block;
}
.sidebar aside nav ul li a.selected {
  color: var(--color-gray-900);
  font-weight: bold;
}
.sidebar section {
  width: 100%;
}

table {
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}
table th,
table td {
  padding: 0.5rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 0.1rem solid #ccc;
}
table .th {
  font-family: "Open Sans Bold", sans-serif;
}
table thead th {
  vertical-align: bottom;
}
table.fixed {
  table-layout: fixed;
}
table.border {
  border: 0.1rem solid #ccc;
}
table.border th,
table.border td {
  padding: 0.8rem;
  border: 0.1rem solid #ccc;
}
table.border th {
  background-color: rgba(0, 0, 0, 0.05);
}
table.highlight tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.03);
}

.comparison-table {
  margin-inline: 2rem;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  position: relative;
}
.comparison-table table th,
.comparison-table table td {
  border-bottom: none;
  padding-inline: 1rem;
}
.comparison-table table th:not(:first-child),
.comparison-table table td:not(:first-child) {
  text-align: center;
}
.comparison-table table tbody tr {
  background-color: var(--color-gray-200);
}
.comparison-table table tbody tr td:first-child {
  background-color: var(--color-gray-100);
}
.comparison-table table tbody tr td:not(:first-child) {
  border-left: 1rem solid var(--color-gray-100);
}
.comparison-table table tbody tr:not(.spacer):hover {
  background-color: rgba(29, 28, 29, 0.0392156863);
}
.comparison-table table tbody tr:not(.spacer):hover td {
  border-color: rgba(255, 255, 255, 0.4588235294);
}
.comparison-table table tbody tr:not(.spacer):hover td:first-child {
  background-color: rgba(255, 255, 255, 0.4588235294);
}
.comparison-table table thead.sticky tr th {
  text-align: center;
  position: sticky;
  top: 100px;
  z-index: 1;
}
.comparison-table table thead.sticky tr th:not(:first-child) {
  box-shadow: 0px 15px 10px -10px rgba(0, 0, 0, 0.15);
  background-color: var(--color-gray-100);
}

@media (max-width: 768px) {
  .comparison-table {
    margin-inline: 0;
    overflow-x: auto;
    max-width: 100vw;
  }
  .comparison-table table {
    min-width: 600px;
  }
  .comparison-table table thead.sticky tr th {
    position: relative;
    top: 0;
  }
}
.info-box {
  display: flex;
  margin-top: 1rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem 0rem;
  border-radius: 1rem;
}
@media (max-width: 66rem) {
  .info-box {
    flex-direction: column;
  }
}
.info-box .info-item {
  padding: 0 2rem;
}
@media (max-width: 66rem) {
  .info-box .info-item {
    padding: 1rem 0;
    text-align: center;
  }
}
.info-box .info-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.275);
}
@media (max-width: 66rem) {
  .info-box .info-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.275);
  }
}
.info-box .cta {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}
@media (max-width: 66rem) {
  .info-box .cta {
    display: block;
  }
}

.pill {
  border-radius: 4rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--color-gray-900);
  color: var(--white);
  margin: 0.25rem 0.25rem;
  display: inline-block;
}
.pill.small {
  font-size: 0.75rem;
  padding: 0.125rem 0.25rem;
  line-height: 1.5;
  border-radius: 0.5rem;
}
.pill.new, .pill.launch {
  background-color: var(--color-success-100);
  border: 1px solid var(--color-success-500);
  color: var(--color-success-900);
}
.pill.improved {
  background-color: var(--color-warning-100);
  border: 1px solid var(--color-warning-500);
  color: var(--color-warning-900);
}
.pill.fix {
  background-color: var(--color-info-100);
  border: 1px solid var(--color-info-500);
  color: var(--color-info-900);
}
.pill.extra-small {
  font-size: 0.725rem;
  padding: 0.175rem 0.25rem;
  position: relative;
  bottom: 2px;
  line-height: 1;
  border-radius: 0.4rem;
  margin-bottom: 0;
}
.pill.accent {
  background-color: var(--color-accent-100);
  border: 1px solid var(--color-accent-500);
  color: var(--color-accent-900);
}

.alert {
  background-color: var(--color-gray-300);
  color: var(--color-gray-900);
  padding: 1rem;
  border-radius: 0.5rem;
}
.alert.primary, .alert.warning {
  background-color: var(--color-primary-100);
  color: var(--color-primary-900);
}
.alert.secondary {
  background-color: var(--color-accent-100);
  color: var(--color-accent-900);
}
.alert.error {
  background-color: var(--color-error-100);
  color: var(--color-error-900);
}
.alert.info {
  background-color: var(--color-info-100);
  color: var(--color-info-900);
}

.blog-list {
  padding: 0;
  list-style: none;
}
.blog-list a {
  display: block;
  padding-block-end: 2rem;
  margin-block-end: 1.5rem;
}
.blog-list a:not(:last-child) {
  border-bottom: 1px dashed var(--color-gray-400);
}
.blog-list a:hover {
  text-decoration: none;
}
.blog-list a:hover article header h2 {
  text-decoration: underline;
}
.blog-list a article header h2 {
  font-size: 2.5rem;
  margin-block-end: 0;
  color: var(--color-accent-700);
}
.blog-list a article header p {
  margin-block-start: 0;
  font-size: 1rem;
  color: var(--color-gray-700);
}
.blog-list a article p {
  margin-block-start: 0;
  font-size: 1.25rem;
  color: var(--color-gray-700);
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.news-list-item:last-child {
  border-bottom: 0;
}

.news-list-thumb {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  background: #eee;
}

.news-list-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.news-list-title {
  font-size: 16px;
  line-height: 1.3;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list-date {
  font-size: 16px;
  opacity: 0.7;
}

.news-list-empty {
  padding: 8px 0;
  opacity: 0.7;
}

#article {
  font-size: 20px;
}
#article ol li, #article ul li {
  font-size: 20px;
  line-height: 2;
}

.news-aside {
  flex: 1 0 25%;
  max-width: 450px;
}
@media (max-width: 1250px) {
  .news-aside {
    max-width: 350px;
  }
}
@media (max-width: 1000px) {
  .news-aside {
    max-width: 300px;
  }
}

/* Container */
.sb-accordion {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 8px;
}

.sb-accordion details {
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-300);
  border-radius: 12px;
  box-shadow: none;
  overflow: clip;
  transition: box-shadow 160ms ease, border-color 160ms ease;
}

.sb-accordion details[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--color-gray-400);
}

/* Remove default marker, we use our own chevron */
.sb-accordion summary {
  list-style: none;
}

.sb-accordion summary::-webkit-details-marker {
  display: none;
}

/* Header */
.sb-accordion summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-gray-900);
  position: relative;
}

/* Focus ring for keyboard users */
.sb-accordion summary:focus {
  outline: none;
}

.sb-accordion summary:focus-visible {
  outline: 2px solid var(--color-info-500);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Chevron built with borders to match theme */
.sb-accordion summary::after {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--color-gray-500);
  border-bottom: 2px solid var(--color-gray-500);
  rotate: -45deg; /* points right */
  transition: rotate 180ms ease, border-color 160ms ease;
}

details[open] > summary::after {
  rotate: 45deg; /* points down */
  border-right-color: var(--color-gray-500);
  border-bottom-color: var(--color-gray-500);
}

/* Divider and content */
.sb-accordion .sb-content {
  border-top: 1px solid var(--color-gray-300);
  color: var(--color-gray-800);
  padding: 16px 18px;
  line-height: 1.6;
  background: var(--color-gray-100);
}
.sb-accordion .sb-content p {
  margin-top: 0;
}

/* Accent edge option when open */
.sb-accordion details[open] .sb-content {
  border-top-color: var(--color-gray-400);
}

/* Open animation: subtle, respectful of reduced motion */
@keyframes sb-acc-open {
  from {
    opacity: 0;
    translate: 0 -4px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
.sb-accordion details[open] .sb-content {
  animation: sb-acc-open 160ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .sb-accordion details[open] .sb-content,
  .sb-accordion summary::after {
    animation: none !important;
    transition: none !important;
  }
}
/* Compact size variant. Add class 'sb-accordion--sm' to the container if you want it. */
.sb-accordion.sb-accordion--sm details {
  border-radius: 10px;
}

.sb-accordion.sb-accordion--sm summary {
  padding: 12px 14px;
}

.sb-accordion.sb-accordion--sm .sb-content {
  padding: 12px 14px;
}

.price-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
  margin-block-start: 2.5rem;
}
@media (max-width: 1068px) {
  .price-wrapper {
    flex-direction: column;
  }
  .price-wrapper .price-card.highlight {
    margin-block-start: 2rem;
  }
}
.price-wrapper .price-card {
  padding: 0.35rem;
  width: 100%;
  border-radius: 0.75rem;
  flex: 1;
  min-height: 100%;
}
.price-wrapper .price-card.disabled .price-content:before {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline-start: 0.3rem;
  content: "Coming Soon";
  text-transform: uppercase;
  font-size: 55%;
  font-weight: bold;
  position: absolute;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  top: 10px;
  right: -40px;
  rotate: 45deg;
  width: 150px;
  height: 40px;
  background-color: var(--color-gray-900);
  color: var(--color-gray-200);
  z-index: 1;
}
.price-wrapper .price-card .price-highlight {
  height: 2rem;
  margin-top: 0;
  visibility: hidden;
  text-align: center;
  color: var(--color-gray-900);
}
.price-wrapper .price-card.highlight {
  background-color: var(--color-accent-600);
}
.price-wrapper .price-card.highlight .price-highlight {
  visibility: visible;
}
.price-wrapper .price-card .price-content {
  width: 100%;
  border: 1px solid var(--color-gray-300);
  background-color: var(--color-gray-200);
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
  min-height: calc(100% - 2rem);
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: stretch;
}
.price-wrapper .price-card .price-content .price-header {
  background-color: var(--color-gray-100);
  padding: 0.75rem 0.75rem 1.75rem 0.75rem;
  text-align: center;
}
.price-wrapper .price-card .price-content .price-header .price-title {
  margin: 0;
  font-size: 2rem;
}
.price-wrapper .price-card .price-content .price-header .price-description {
  margin: 0;
  font-size: 0.85rem;
}
.price-wrapper .price-card .price-content .price-header .price-tag {
  font-size: 85%;
  color: var(--color-gray-600);
  display: block;
  margin-block: 0.5rem;
}
.price-wrapper .price-card .price-content .price-header .price-tag.hidden {
  visibility: hidden;
  opacity: 0;
}
.price-wrapper .price-card .price-content .price-header .price-price {
  position: relative;
  margin-block-end: 1.5rem;
}
.price-wrapper .price-card .price-content .price-header .price-price .price-currency {
  font-size: 1.5rem;
  color: var(--color-gray-700);
  vertical-align: top;
  line-height: 1;
}
.price-wrapper .price-card .price-content .price-header .price-price .price-amount {
  font-size: 3rem;
  vertical-align: top;
  line-height: 0.8;
}
.price-wrapper .price-card .price-content .price-header .price-price .price-period {
  color: var(--color-gray-700);
  line-height: 1;
}
.price-wrapper .price-card .price-content .price-body {
  padding: 0.75rem;
  background-color: var(--color-gray-200);
  min-height: 100%;
  padding-block-end: 1.25rem;
}
.price-wrapper .price-card .price-content .price-body .prior {
  font-size: 85%;
  margin-block-end: 1.5rem;
}
.price-wrapper .price-card .price-content .price-body .prior svg {
  top: 0.25rem;
  height: 1rem;
  width: 1rem;
}
.price-wrapper .price-card .price-content .price-body details {
  margin-block-start: 1rem;
  margin-inline-start: 1.75rem;
}
.price-wrapper .price-card .price-content .price-body details summary {
  font-weight: bold;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.price-wrapper .price-card .price-content .price-body details summary:before {
  content: url("data:image/svg+xml,%3Csvg%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%20width%3D%2224%22%20%20height%3D%2224%22%20%20viewBox%3D%220%200%2024%2024%22%20%20fill%3D%22none%22%20%20stroke%3D%22currentColor%22%20%20stroke-width%3D%222%22%20%20stroke-linecap%3D%22round%22%20%20stroke-linejoin%3D%22round%22%3E%3Cpath%20stroke%3D%22none%22%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M9%206l6%206l-6%206%22%20%2F%3E%3C%2Fsvg%3E");
  display: block;
  position: absolute;
  left: -1.75rem;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  opacity: 0.75;
}
.price-wrapper .price-card .price-content .price-body details summary::-webkit-details-marker {
  display: none;
}
.price-wrapper .price-card .price-content .price-body details summary::marker {
  display: none;
}
.price-wrapper .price-card .price-content .price-body details[open] > summary:before {
  content: url("data:image/svg+xml,%3Csvg%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%20width%3D%2224%22%20%20height%3D%2224%22%20%20viewBox%3D%220%200%2024%2024%22%20%20fill%3D%22none%22%20%20stroke%3D%22currentColor%22%20%20stroke-width%3D%222%22%20%20stroke-linecap%3D%22round%22%20%20stroke-linejoin%3D%22round%22%3E%3Cpath%20stroke%3D%22none%22%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M6%209l6%206l6%20-6%22%20%2F%3E%3C%2Fsvg%3E");
}
.price-wrapper .price-card .price-content .price-body details p {
  margin: 0;
}

progress {
  display: block;
  width: 100%;
  height: 0.75rem;
  margin: 1rem 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: var(--color-gray-300);
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

/* Chrome/Safari styling */
progress::-webkit-progress-bar {
  background-color: var(--color-gray-300);
  border-radius: 0.25rem;
}

progress::-webkit-progress-value {
  background-color: var(--color-primary-500);
  border-radius: 0.25rem;
  transition: width 0.3s ease;
}

/* Firefox styling */
progress::-moz-progress-bar {
  background-color: var(--color-primary-500);
  border-radius: 0.25rem;
  transition: width 0.3s ease;
}

/* Different states */
progress.success::-webkit-progress-value {
  background-color: var(--color-accent-500);
}

progress.success::-moz-progress-bar {
  background-color: var(--color-accent-500);
}

progress.warning::-webkit-progress-value {
  background-color: var(--color-warning-500);
}

progress.warning::-moz-progress-bar {
  background-color: var(--color-warning-500);
}

progress.error::-webkit-progress-value {
  background-color: var(--color-error-500);
}

progress.error::-moz-progress-bar {
  background-color: var(--color-error-500);
}

progress.info::-webkit-progress-value {
  background-color: var(--color-info-500);
}

progress.info::-moz-progress-bar {
  background-color: var(--color-info-500);
}

/* Animated progress variant */
progress.animated::-webkit-progress-value {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 30px 30px;
  animation: progress-animation 1s linear infinite;
}

progress.animated::-moz-progress-bar {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 30px 30px;
  animation: progress-animation 1s linear infinite;
}

/* Percentage display */
progress.show-percent::after {
  content: attr(value) "%";
  position: absolute;
  top: calc(50% - 0.55rem);
  right: 0.5rem;
  transform: translateY(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gray-100);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

/* Center percentage display */
progress.percent-center::after {
  right: 50%;
  transform: translate(50%, -50%);
}

/* Left-aligned percentage display */
progress.percent-left::after {
  right: auto;
  left: 0.5rem;
}

/* Animation for percentage text */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
progress.animate-on-load.show-percent::after {
  animation: fade-in 0.3s ease-out forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.reading-widget {
  margin-bottom: 1rem;
}

.reading-widget__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.reading-widget__time {
  font-size: 0.8rem;
  opacity: 0.7;
}

.reading-progress {
  position: relative;
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.reading-progress__bar {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-accent-500), var(--color-accent-900));
  transition: width 0.1s linear;
}

.reading-progress__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  opacity: 0.8;
}

.terminal-window {
  border-radius: 6px;
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.terminal-window header {
  background: var(--color-gray-300);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.terminal-window header .terminal-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.terminal-window header .terminal-button.green {
  background: var(--color-success-500);
}
.terminal-window header .terminal-button.yellow {
  background: var(--color-warning-500);
}
.terminal-window header .terminal-button.red {
  background: var(--color-error-500);
}
.terminal-window .terminal {
  padding: 1.5rem;
  color: var(--color-gray-100);
  font-size: 0.75rem;
  background: var(--color-gray-900);
  font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
}
.terminal-window .terminal .terminal-warning {
  border-bottom: 2px solid var(--color-warning-100);
  padding-block-end: 0.5rem;
  margin-block-end: 0.5rem;
}
.terminal-window .terminal .terminal-license {
  color: var(--color-success-500);
}
.terminal-window .typed-cursor {
  display: inline-block;
  width: 8px;
  background: var(--color-gray-100);
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.email-example {
  max-width: 650px;
  margin: 20px auto;
  background-color: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.email-example .email-header {
  background-color: var(--color-gray-200);
  color: #333;
  padding: 15px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-gray-300);
}
.email-example .email-header img {
  max-height: 40px;
  width: auto;
  margin: 0 auto;
}
.email-example .email-content {
  padding: 25px 30px;
}
.email-example .email-content h2 {
  color: var(--color-info-500);
  font-size: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
  margin-bottom: 15px;
  margin-top: 0;
  font-family: "SNPro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.email-example .email-info-box {
  background-color: #eef4ff;
  border-left: 4px solid #004a99;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
}
.email-example .email-info-box p {
  margin: 8px 0;
  font-size: 0.95em;
}
.email-example .email-doors-list {
  margin-top: 15px;
  font-size: 0.9em;
}
.email-example .email-doors-list ul {
  margin: 5px 0 0 20px;
  padding: 0;
  list-style-type: disc;
}
.email-example .email-doors-list ul li {
  margin-bottom: 4px;
}
.email-example .attachments p {
  margin-bottom: 10px;
  font-size: 0.95em;
}
.email-example .email-footer {
  background-color: #f4f4f4;
  color: #777;
  text-align: center;
  padding: 15px;
  font-size: 12px;
  border-top: 1px solid #ddd;
}

.banner {
  background: var(--color-gray-300);
  padding: 1rem 4rem 1rem 0rem;
  line-height: 1.5;
  border-top: 1px solid var(--color-gray-400);
  color: var(--color-gray-900);
  z-index: 9999;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
}
.banner.accent {
  background: var(--color-accent-100);
  border-color: var(--color-accent-200);
  color: var(--color-accent-900);
}
.banner.primary {
  background: var(--color-primary-100);
  border-color: var(--color-primary-200);
  color: var(--color-primary-900);
}
.banner p {
  margin: 0;
  padding: 0;
}

.products-container {
  background: var(--color-accent-100);
  color: var(--color-gray-900);
  border-radius: 2.5rem;
  padding: 2rem;
}
.products-container .product {
  background-color: var(--color-accent-300);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-block-start: 3rem;
  border-radius: 1.75rem;
  transition: all 0.3s ease-in-out;
}
.products-container .product:hover {
  scale: 1.025;
}
.products-container .product:hover .product-logo {
  animation: wiggle 0.4s ease;
}
.products-container .product:hover .product-logo svg {
  opacity: 1;
}
.products-container .product:hover .product-image img {
  opacity: 1;
}
.products-container .product .product-logo {
  margin-bottom: 1.5rem;
  height: 3.5rem;
  width: 3.5rem;
}
.products-container .product .product-logo svg {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
.products-container .product .product-description {
  margin-bottom: 2rem;
}
.products-container .product .product-description h3 {
  font-size: 2.5rem;
  margin: 0;
}
.products-container .product .product-description p {
  margin: 0;
}
.products-container .product .product-image {
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: end;
}
.products-container .product .product-image img {
  margin: 0 auto;
  max-height: 380px;
  opacity: 0.75;
  transition: all 0.3s ease-in-out;
}
.products-container .product .product-image img.border {
  border-radius: 0.5rem 0.5rem 0 0;
}

@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.image-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%; /* or whatever fits your layout */
}
.image-slider::after {
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  position: absolute;
  top: 0;
  right: 0;
  width: 15%;
  height: 100%;
  pointer-events: none; /* Prevents interaction with the gradient */
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  max-height: 550px;
}

.image-slider img {
  flex-shrink: 0;
  width: 85%; /* show peek on desktop */
  margin-right: 15px;
  border-radius: 8px;
  object-fit: cover;
}

/* Mobile full-width image */
@media (max-width: 768px) {
  .image-slider img {
    width: 100%;
    margin-right: 0;
  }
}
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.5);
  background: #fff;
  border: none;
  font-size: 20px;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 2;
}
.nav:hover {
  color: black;
}

.nav.left {
  left: 1rem;
}

.nav.right {
  right: 1rem;
}

.share {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font: 500 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 1px 1px rgba(2, 8, 23, 0.06);
  transition: transform 0.06s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.share-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 8, 23, 0.08);
}

.share-linkedin:hover {
  background: #eef5ff;
}

.share-x:hover {
  background: #f2f2f2;
}

.share-facebook:hover {
  background: #eef3ff;
}

video {
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Layout wrapper */
.timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Vertical line in the middle */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #d0d4dc;
  transform: translateX(-50%);
}

/* Each step row */
.timeline-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

/* Left or right column with text + image */
.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Just in case the empty cells try to be helpful */
.timeline-spacer {
  /* nothing, it just keeps the grid structure */
}

/* Center column: dot + step label */
.timeline-center {
  position: relative;
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #798196;
  padding: 0.5rem 0;
}

.timeline-step-label {
  font-size: 150%;
  font-weight: bold;
  background-color: var(--color-gray-100);
  padding: 0.5rem 0;
}

/* Placeholder image box */
.step-image {
  width: 100%;
  max-width: 220px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto;
}

/* Basic text spacing */
.timeline h3 {
  margin: 0;
}

.timeline p {
  margin: 0;
  font-size: 125%;
  line-height: 1.5;
}

/* ---------- Mobile layout ---------- */
@media (max-width: 768px) {
  .timeline {
    padding: 2rem 1.25rem;
  }
  /* Move the line to the left side */
  .timeline::before {
    left: 14px;
    transform: none;
  }
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2.5rem 0;
  }
  .timeline-spacer {
    display: none;
  }
  .timeline-center {
    text-align: left;
    padding-left: 0;
    position: absolute;
    left: -1.5rem;
  }
  .timeline-dot {
    position: absolute;
    left: 0;
    top: 0.35rem;
    margin: 0;
  }
  .timeline-step-label {
    margin-left: 1.25rem;
    font-size: 100%;
  }
  .timeline-content {
    padding-left: 2.25rem;
  }
}
.skeleton {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.sk-line {
  height: 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

/* simple “shimmer” */
.sk-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: shimmer 1.25s infinite;
}

.sk-w-15 {
  width: 15%;
}

.sk-w-35 {
  width: 35%;
}

.sk-w-55 {
  width: 55%;
}

.sk-w-65 {
  width: 65%;
}

.sk-w-70 {
  width: 70%;
}

.sk-w-85 {
  width: 85%;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sk-line::after {
    animation: none;
  }
}/*# sourceMappingURL=app.css.map */