:root {
  --ots-font-body:
    "Lab Regular", "ABC Diatype", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ots-font-display:
    "H Regular", "Helvetica Now Display", "Helvetica Neue", Arial, sans-serif;
  --ots-color-canvas: #fff;
  --ots-color-text: #000000;
  --ots-color-text-muted: #858585;
  --ots-color-text-subtle: #7c7c7c;
  --ots-color-copy: #434343;
  --ots-color-pill: #ffffff;
  --ots-color-pill-dark: #202020;
  --ots-color-white: #ffffff;
  --ots-color-button-light-bg: #fbfbfb;
  --ots-color-button-light-border: var(--ots-color-white);
  --ots-shadow-button-light: 0 0 120px 0 rgb(0 0 0 / 24%);
  --type-xs-size: 8px;
  --leading-xs-size: 1;
  --tracking-xs-size: 0;
  --type-s-size: 8px;
  --leading-s-size: 1.3;
  --tracking-s-size: 0;
  --type-m-size: 12.5px;
  --leading-m-size: 1.5;
  --tracking-m-size: 0;
  --type-l-size: 17px;
  --leading-l-size: 140%;
  --tracking-l-size: 0;
  --type-xl-size: 26px;
  --leading-xl-size: 1.05;
  --tracking-xl-size: 0;
  --ots-tracking: 0;
  --ots-space-1: 6px;
  --ots-space-2: 8px;
  --ots-space-3: 12px;
  --ots-space-4: 13px;
  --ots-space-5: 28px;
  --ots-space-6: 30px;
  --ots-size-button-min-height: 34px;
  --ots-size-icon-button-mobile: 40px;
  --ots-size-icon-sidebar-width: 13px;
  --ots-size-icon-sidebar-height: 12px;
  --ots-size-icon-chevron-width: 7px;
  --ots-size-icon-chevron-height: 4px;
  --ots-radius-panel: 14px;
  --ots-radius-pill: 22px;
  --ots-motion-duration: 0.3s;
  --ots-motion-easing: ease;
  --text: var(--ots-color-text);
  --secondarytext: var(--ots-color-text-muted);
  --surface: var(--ots-color-canvas);
  --surfacepanel: var(--ots-color-pill);
  --surfacepanelplus: #eeeeee;
  --accent: var(--ots-color-text);
  --accentsecondary: var(--ots-color-copy);
  --font-regular: var(--ots-font-body);
  --space-1: 4px;
  --space-2: var(--ots-space-2);
  --space-3: var(--ots-space-3);
  --space-4: var(--ots-space-6);
  --motion-duration: var(--ots-motion-duration);
  --motion-easing: var(--ots-motion-easing);
}

html {
  background: var(--ots-color-canvas);
  color: var(--ots-color-text);
  font-family: var(--ots-font-body);
}

body {
  background: var(--ots-color-canvas);
  color: var(--ots-color-text);
  font-family: var(--ots-font-body);
  font-size: var(--type-s-size);
  line-height: var(--leading-s-size);
  letter-spacing: var(--tracking-s-size);
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--accent);
  color: var(--text);
}

::-moz-selection {
  background: var(--accent);
  color: var(--text);
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: inherit;
}

.ots-surface {
  background: var(--ots-color-canvas);
  color: var(--ots-color-text);
}

.lab-serif {
  font-family: "Lab Serif";
}

.lab-regular {
  font-family: "Lab Regular";
}

.h-regular {
  font-family: "H Regular";
}

.xs-size {
  font-size: var(--type-xs-size);
  line-height: var(--leading-xs-size);
  letter-spacing: var(--tracking-xs-size);
}

.s-size {
  font-size: var(--type-s-size);
  line-height: var(--leading-s-size);
  letter-spacing: var(--tracking-s-size);
}

.m-size {
  font-size: var(--type-m-size);
  line-height: var(--leading-m-size);
  letter-spacing: var(--tracking-m-size);
}

.l-size {
  font-family: var(--ots-font-display);
  font-size: var(--type-l-size);
  line-height: var(--leading-l-size);
  letter-spacing: var(--tracking-l-size);
}
.l-size span {
  line-height: var(--leading-l-size);
  letter-spacing: var(--tracking-l-size);
}

.xl-size {
  font-family: var(--ots-font-display);
  font-size: var(--type-xl-size);
  line-height: var(--leading-xl-size);
  letter-spacing: var(--tracking-xl-size);
}
.xl-size span {
  line-height: var(--leading-xl-size);
  letter-spacing: var(--tracking-xl-size);
}

.ots-text-default {
  color: var(--ots-color-text);
}

.ots-text-muted,
.ots-muted {
  color: var(--ots-color-text-muted);
}

.ots-text-subtle {
  color: var(--ots-color-text-subtle);
}

.ots-text-copy {
  color: var(--ots-color-copy);
}

.ots-text-inverse {
  color: var(--ots-color-white);
}

.ots-panel {
  border-radius: var(--ots-radius-panel);
  background: var(--ots-color-pill);
  color: var(--ots-color-text);
  padding: 20px;
}

.ots-label {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: var(--ots-radius-pill);
  background: var(--ots-color-pill);
  padding: 7px 10px;
  color: var(--ots-color-text);
  font-size: var(--type-s-size);
  line-height: var(--leading-s-size);
  letter-spacing: var(--tracking-s-size);
}

.ots-link {
  color: var(--ots-color-text);
  transition: color var(--ots-motion-duration) var(--ots-motion-easing);
}

.ots-nav-link,
.ots-link-muted {
  color: var(--ots-color-text-muted);
  white-space: nowrap;
  transition: color var(--ots-motion-duration) var(--ots-motion-easing);
}

.ots-link:hover,
.ots-nav-link:hover,
.ots-link-muted:hover {
  color: var(--ots-color-text);
}

.ots-button {
  display: inline-flex;
  box-sizing: border-box;
  min-height: var(--ots-size-button-min-height);
  align-items: center;
  justify-content: center;
  border: 1.6px solid transparent;
  border-radius: var(--ots-radius-pill);
  padding: 7px 11px;
  font: inherit;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
  cursor: pointer;
  font-size: var(--type-s-size);
  line-height: var(--leading-s-size);
  letter-spacing: var(--tracking-s-size);
  white-space: nowrap;
  transition: background-color var(--ots-motion-duration) var(--ots-motion-easing), border-color var(--ots-motion-duration) var(--ots-motion-easing), color var(--ots-motion-duration) var(--ots-motion-easing), box-shadow var(--ots-motion-duration) var(--ots-motion-easing);
  line-height: 50%;
}

.ots-button--light {
  border-color: var(--ots-color-button-light-border);
  background: var(--ots-color-button-light-bg);
  box-shadow: var(--ots-shadow-button-light);
  color: var(--ots-color-text);
}

.ots-button--light:hover {
  background: var(--ots-color-white);
}

.ots-button--dark {
  background: var(--ots-color-pill-dark);
  color: var(--ots-color-white);
}

.ots-button--dark:hover {
  background: var(--ots-color-text);
}

.ots-button--icon-end {
  justify-content: space-between;
  gap: 24px;
}

.ots-button__icon {
  display: block;
  flex: 0 0 auto;
}

.ots-button__icon--chevron-right {
  width: var(--ots-size-icon-chevron-width);
  height: var(--ots-size-icon-chevron-height);
  transform: rotate(-90deg);
}

.ots-icon-button {
  display: inline-flex;
  box-sizing: border-box;
  width: var(--ots-size-icon-button-mobile);
  height: var(--ots-size-icon-button-mobile);
  align-items: center;
  justify-content: center;
  border: 1.6px solid transparent;
  padding: 0;
  color: var(--ots-color-text);
  cursor: pointer;
  transition: background-color var(--ots-motion-duration) var(--ots-motion-easing), border-color var(--ots-motion-duration) var(--ots-motion-easing), color var(--ots-motion-duration) var(--ots-motion-easing), box-shadow var(--ots-motion-duration) var(--ots-motion-easing);
}

.ots-icon-button--light {
  border-color: var(--ots-color-button-light-border);
  background: var(--ots-color-button-light-bg);
  box-shadow: var(--ots-shadow-button-light);
}

.ots-icon-button--light:hover {
  background: var(--ots-color-white);
}

.ots-icon-button--round {
  border-radius: 50%;
}

.ots-icon-button__icon {
  display: block;
  flex: 0 0 auto;
  background: currentColor;
  opacity: 1;
}

.ots-icon-button__icon--sidebar {
  width: var(--ots-size-icon-sidebar-width);
  height: var(--ots-size-icon-sidebar-height);
  -webkit-mask: url("/assets/icon-sidebar.svg") center/contain no-repeat;
  mask: url("/assets/icon-sidebar.svg") center/contain no-repeat;
}

.ots-media-contain {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ots-dither-logo {
  position: relative;
  display: block;
  overflow: visible;
}

.ots-dither-logo__canvas,
.ots-dither-logo__fallback {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.ots-dither-logo__canvas {
  opacity: 0;
  transition: opacity var(--ots-motion-duration) var(--ots-motion-easing);
}

.ots-dither-logo.is-ready .ots-dither-logo__canvas {
  opacity: 1;
}

.ots-dither-logo__fallback {
  display: none;
}

.ots-dither-logo.has-fallback .ots-dither-logo__fallback {
  display: block;
}

.ots-dither-controls {
  position: fixed;
  z-index: 1200;
  right: 18px;
  bottom: 18px;
  width: min(320px, 100vw - 36px);
  max-height: min(760px, 100vh - 36px);
  box-sizing: border-box;
  overflow: auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: rgba(249, 249, 249, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  color: var(--ots-color-text);
  font-family: var(--ots-font-body);
  backdrop-filter: blur(12px);
  display: none;
}

.ots-dither-controls__title {
  margin: 0;
  padding: 18px 20px 10px;
  font-family: var(--ots-font-display);
  font-size: 18px;
  line-height: var(--leading-l-size);
  letter-spacing: var(--tracking-l-size);
}

.ots-dither-controls__body {
  display: grid;
  gap: 10px;
  padding: 10px 20px 16px;
}

.ots-dither-controls__row {
  display: grid;
  gap: 8px;
}

.ots-dither-controls__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ots-color-text-muted);
  font-size: 12px;
  line-height: var(--ots-leading-ui);
  letter-spacing: var(--ots-tracking);
}

.ots-dither-controls__head output {
  color: var(--ots-color-text);
  font-variant-numeric: tabular-nums;
}

.ots-dither-controls__slider {
  appearance: none;
  width: 100%;
  height: 18px;
  background: transparent;
  accent-color: var(--ots-color-text);
}

.ots-dither-controls__slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.ots-dither-controls__slider::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--ots-color-text);
  cursor: grab;
}

.ots-dither-controls__slider::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.ots-dither-controls__slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  background: var(--ots-color-text);
  cursor: grab;
}

.ots-dither-controls__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 14px 20px 20px;
}

.ots-dither-controls__button {
  min-height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ots-color-text-muted);
  cursor: pointer;
  font: inherit;
  transition: background-color var(--ots-motion-duration) var(--ots-motion-easing), color var(--ots-motion-duration) var(--ots-motion-easing);
}

.ots-dither-controls__button:hover {
  background: var(--ots-color-white);
  color: var(--ots-color-text);
}

@media (max-width: 850px) {
  :root {
    --type-s-size: 12.5px;
    --type-m-size: 13px;
  }
  .ots-dither-controls {
    right: 12px;
    bottom: 12px;
    width: min(300px, 100vw - 24px);
    max-height: min(440px, 100vh - 24px);
    overflow: auto;
  }
}
:root {
  --color-900: var(--text);
  --color-700: var(--secondarytext);
  --color-300: var(--surfacepanelplus);
  --color-100: var(--surface);
  --color-x: var(--accent);
  --color-x2: var(--accentsecondary);
}

#pageContent {
  background-color: var(--surface);
  color: var(--text);
}

.bg-1 {
  background-color: var(--surface);
}

.bg-grey {
  background-color: var(--surfacepanel);
}

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

.color-grey {
  color: var(--secondarytext);
}

.grey-on-hover {
  color: var(--text);
  transition: color var(--motion-duration) var(--motion-easing);
  cursor: pointer;
}
.grey-on-hover:hover {
  color: var(--secondarytext);
}

.x-on-hover {
  transition: color var(--motion-duration) var(--motion-easing);
  cursor: pointer;
}
.x-on-hover:hover {
  color: var(--accentsecondary);
}

.large-em {
  letter-spacing: 0.04em;
}

button {
  color: var(--text);
}

.uppercase {
  text-transform: uppercase;
}

.underlined {
  text-underline-offset: 5px;
  text-decoration: underline;
}

.dashed {
  text-underline-offset: 3px;
  text-decoration: underline dotted;
  cursor: text;
}

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

.dotted {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 12%;
  text-underline-offset: 2px;
  text-underline-position: from-font;
}

.turned-arrow {
  display: inline-block;
  transform: rotate(90deg) !important;
}

.semi-turned-arrow {
  display: inline-block;
  transform: rotate(-45deg) !important;
}

a {
  text-decoration: none;
  outline: none !important;
  color: var(--text);
}

.semi-grey {
  color: var(--secondarytext);
}

.dark-grey {
  color: var(--secondarytext);
}

.link-hover {
  opacity: 1;
  transition: opacity var(--motion-duration) var(--motion-easing);
  line-height: 100%;
  outline: none !important;
}
.link-hover:hover {
  opacity: 0.4;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
input,
span {
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

.glass-button {
  background-color: #f7f7f7;
  border-radius: 100px;
  border: 1.5px solid white;
  color: #494949;
  transition: 0.3s ease;
}
.glass-button:hover {
  transition: 0.3s ease;
}

.glass-button-2 {
  background-color: #f7f7f7;
  border-radius: 14px;
  border: 1.5px solid white;
  color: #494949;
  padding: 10px 14px;
  transition: 0.3s ease;
}
.glass-button-2:hover {
  background-color: var(--bg-3);
  border: 1.5px solid var(--bg-3);
  color: white;
}

.basic-button {
  display: flex;
  padding: 11px 13px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 70px;
  background: var(--ots-color-button-light-bg);
  box-shadow: var(--ots-shadow-button-light);
  line-height: 100%;
  transition: 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--ots-color-button-light-border);
  width: fit-content;
}
.basic-button:hover {
  box-shadow: none;
  background-color: var(--ots-color-pill);
  color: #000;
  border: 1px solid var(--ots-color-white);
}

@media (max-width: 850px) {
  .basic-button {
    padding: 14px 14px;
  }
}
.x-button {
  display: flex;
  padding: 11px 13px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 70px;
  background-color: var(--color-x);
  color: white;
  line-height: 100%;
  transition: 0.3s ease;
  cursor: pointer;
  width: fit-content;
  border: 1px solid var(--color-x);
}
.x-button:hover {
  box-shadow: 0 11px 18px 0 #fff;
  background-color: var(--bg-2);
  color: #000;
  border: 1px solid white;
}

@media (max-width: 850px) {
  .x-button {
    padding: 14px 14px;
  }
}
.truncate-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

:root {
  --color-900: var(--text);
  --color-700: var(--secondarytext);
  --color-300: var(--surfacepanelplus);
  --color-100: var(--surface);
  --color-x: var(--accent);
  --color-x2: var(--accentsecondary);
}

#pageContent {
  background-color: var(--surface);
  color: var(--text);
}

.bg-1 {
  background-color: var(--surface);
}

.bg-grey {
  background-color: var(--surfacepanel);
}

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

.color-grey {
  color: var(--secondarytext);
}

.grey-on-hover {
  color: var(--text);
  transition: color var(--motion-duration) var(--motion-easing);
  cursor: pointer;
}
.grey-on-hover:hover {
  color: var(--secondarytext);
}

.x-on-hover {
  transition: color var(--motion-duration) var(--motion-easing);
  cursor: pointer;
}
.x-on-hover:hover {
  color: var(--accentsecondary);
}

.cta-indic-color-component {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-indic-color-component a {
  display: flex;
  gap: 10px;
  padding: 4px 4px;
  padding-right: 14px;
  border-radius: 1000px;
  width: fit-content;
  align-items: center;
}
.cta-indic-color-component .color-indic-cta {
  padding: 7px 12px;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section {
  text-align: center;
  padding: 50px;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: #666;
}

.landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features {
  padding: 30px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
}

.landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features {
  padding: 30px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
}

.hero-section {
  text-align: center;
  padding: 50px;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: #666;
}

html,
body {
  width: 100%;
  display: flex;
  flex-direction: column;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: var(--space-3);
  padding-top: 0px;
}

@media (max-width: 850px) {
  body {
    padding: var(--space-3);
    padding-top: 0;
  }
}
main {
  display: flex;
  flex-direction: column;
}

#pageContent {
  transition: opacity var(--motion-duration) var(--motion-easing);
}

.only-mobile {
  display: none !important;
}

@media (max-width: 850px) {
  .no-mobile {
    display: none !important;
  }
  .only-mobile {
    display: flex !important;
  }
}
.pointer {
  cursor: pointer;
}

.z15 {
  z-index: 15;
}

.margin15 {
  margin-top: 15vh;
}

.margin20 {
  margin-top: 20vh;
}

.margin25 {
  margin-top: 25vh;
}

.margin15px {
  margin-top: var(--space-3);
}

/* Cacher scrollbar sur Webkit (Chrome, Safari, Edge Chromium, Opera) */
::-webkit-scrollbar {
  display: none;
}

/* Cacher scrollbar sur Firefox */
* {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE et Edge Legacy */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary,
menu,
main {
  display: block;
}

audio,
canvas,
video,
progress {
  display: inline-block;
  vertical-align: middle;
}

audio:not([controls]),
[hidden],
template {
  display: none;
  height: 0;
}

* {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}
*:after, *:before {
  box-sizing: inherit;
}

:after,
:before {
  vertical-align: inherit;
  text-decoration: inherit;
}

:root {
  box-sizing: border-box;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

a {
  background: transparent;
}
a:focus {
  outline: thin dotted;
}
a:active, a:hover {
  outline: 0;
}

iframe,
img,
svg {
  vertical-align: middle;
}

iframe,
embed,
object {
  max-width: 100%;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: inherit;
}

code,
kbd,
pre,
samp {
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: auto;
  margin: 1em 0;
}

nav ul,
nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

fieldset,
legend {
  border: 0;
}

legend {
  white-space: normal;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
}

select {
  cursor: pointer;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

button[disabled],
input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  vertical-align: baseline;
  font: inherit;
  background: none;
  border-radius: 0;
  margin: 0;
}

button,
input,
select {
  overflow: visible;
}

input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input[type=checkbox], input[type=radio] {
  cursor: pointer;
  padding: 0;
}
input[type=checkbox] {
  -moz-appearance: checkbox;
  -webkit-appearance: checkbox;
}
input[type=radio] {
  -moz-appearance: radio;
  -webkit-appearance: radio;
}
input[type=number] {
  width: auto;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  height: auto;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  appearance: button;
  -moz-appearance: button;
  -webkit-appearance: button;
  cursor: pointer;
}

textarea {
  vertical-align: top;
  overflow: auto;
  resize: vertical;
  -moz-appearance: none;
  -webkit-appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

menu {
  margin: 1em 0;
  padding: 0 0 0 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

sup {
  position: relative;
  top: -0.5em;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

.cta-indic-color-component {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-indic-color-component a {
  display: flex;
  gap: 10px;
  padding: 4px 4px;
  padding-right: 14px;
  border-radius: 1000px;
  width: fit-content;
  align-items: center;
}
.cta-indic-color-component .color-indic-cta {
  padding: 7px 12px;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}
