@charset "UTF-8";
/* copy this :
@include button-color($color, $bgColor, $bgColor-hover, $color-hover)
*/
/* copy this :
@include link-color($color, $color-hover)
*/
/* put that inside .pricing-card selector */
/* copy this :
@include fade-down($offset, $duration, $delay)
*/
/* copy this :
@include keyframes--vertical-fade-in
*/
/**
 * ––––––––––––––––––––––––
 * Marquee
 * Infinite auto scroll loop
 * A marquee-element need at least two marquee-element-inner 
 *
 * Expected HTML structure :
 *
 *  <div class="marquee">
 *    <div class="marquee-wrapper">
 *      <div class="marquee-element">
 *        <div class="marquee-element-inner">item1, item2, item3...</div>
 *        <div class="marquee-element-inner">item1, item2, item3...</div> // clone
 *      </div>
 *    </div>
 *  </div>

 * Add as many ".marquee-element-inner" as needed
 * to cover twice the width of the visible area.
 * Add "overflow-x : hidden" to the marquee element or
 * to one of the marquee parents.
 * ––––––––––––––––––––––––
 * @param $inner-element-length - the number total of ".marquee-element-inner"
 * @param $duration - the duration of the loop
 * @param $animation-name - the unique name to define for the created keyframe
 * @param $vertical - set the direction of the marquee
 * @param $in-viewport - if true, marquee will run only if he has the ".in-viewport" class (js IntersectClassInViewport)
*/
/* copy this :
@include marquee($inner-element-length, $duration, $animation-name, $vertical, $in-viewport)
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  overflow: hidden auto;
  width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  color: #111827;
}

#page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#et-main-area {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.site-main {
  flex-grow: 1;
}

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

ol,
ul,
li,
dl,
dt,
dd,
hgroup,
blockquote,
figure,
form,
input,
legend,
pre,
abbr,
button,
p {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
  max-width: 100%;
  height: auto;
}

picture {
  display: block;
}

@media (max-width: 999px) {
  .upper-nav,
  .desktop-nav {
    display: none;
  }
}

@media (min-width: 1000px) {
  .mobile-nav {
    display: none;
  }
}

.site-header {
  z-index: 99999;
  position: relative;
  width: 100%;
}

ion-icon {
  pointer-events: none;
  flex-shrink: 0;
}

svg {
  display: block;
  flex-shrink: 0;
}

/**
 * Basic typography style for copy text
 */
body {
  color: #111827;
  font: 500 16px/1.4 "Inter var", "Inter", ui-sans-serif, system-ui, -apple-system, "BlinkMacSystemFont", "system-ui", "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "case", "calt", "ccmp", "kern";
  -webkit-font-feature-settings: "case", "calt", "ccmp", "kern";
  -moz-font-feature-settings: "case", "calt", "ccmp", "kern";
}

@supports (font-variation-settings: normal) {
  *, :after, :before {
    font-optical-sizing: auto !important;
  }
}
.mano {
  font-family: "Caveat", monospace;
}

/**
 * Content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges
 */
.root-container {
  display: block;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
  width: 100%;
}
@media (max-width: 999px) {
  .root-container {
    padding-inline: 16px;
  }
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/**
 * Make element untargeted by click event
 */
.click--disabled {
  pointer-events: none;
}

/**
 * Suppresses line breaks (text wrapping)
 */
.no-wrap {
  white-space: nowrap;
}

.max-1line {
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.max-3line {
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-max {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

/**
* Discard price line through
* (need relative parent)
*/
.red-line {
  position: relative;
}

.red-line:after {
  content: "";
  display: block;
  position: absolute;
  left: -2px;
  top: -1px;
  right: -3px;
  bottom: -1px;
  background: linear-gradient(to top left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) calc(50% - 1px), #E9323D 50%, rgba(0, 0, 0, 0) calc(50% + 1px), rgba(0, 0, 0, 0) 100%);
}

.prg-acc {
  margin-top: 60px;
}
.prg-acc_header {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 1px solid #E4E4E7;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.prg-acc_header:not(.prg-acc_header_alone):hover {
  color: #111827;
  cursor: pointer;
}
.prg-acc_header:not(.prg-acc_header_alone):hover .toggler-icon {
  color: #111827;
}
.prg-acc_body {
  display: none;
}
.prg-acc_body .prg-acc_body__content {
  padding: 20px 0 20px 0;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.prg-acc .prg-acc_item:last-child .prg-acc_body .prg-acc_body__content {
  padding-bottom: 0;
}
.prg-acc .prg-acc_item > .prg-acc_header .toggler-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  position: relative;
  transition: 0.3s all;
  --ionicon-stroke-width: 32px;
  font-size: 24px;
}
.prg-acc .prg-acc_item.active > .prg-acc_header {
  color: #111827;
}
.prg-acc .prg-acc_item.active > .prg-acc_header .toggler-icon {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  color: #111827;
}
.prg-acc .prg-acc_item .toggler-icon {
  flex-shrink: 0;
  display: block;
  color: #6B7280;
}
.prg-acc .prg-acc_item .toggler-icon line {
  stroke-width: 0.05em;
}

.et_pb_module .prg-acc {
  margin-top: 0;
  padding-top: 0;
}

.tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #EFF6FF;
  color: #1D4ED8;
  /* Usage for tag with border-gradient (need inner container):

    <element class="tag tag--round-border-gradient">
      <element> Content... </element>  // inner container
    </element>
  **/
}
.tag--s {
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  letter-spacing: 0;
}
.tag--xs {
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 10px;
  line-height: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.tag--round {
  border-radius: 50px;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0;
  background: #1B62F1;
  color: #FFFFFF;
}
.tag--round-l-outline {
  border-radius: 50px;
  padding: 6px 14px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.01em;
  background: transparent;
  color: inherit;
  box-shadow: inset 0px 0px 0px 1px #1B62F1;
}
.tag--round-xs {
  border-radius: 50px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0;
  background: #1B62F1;
  color: #FFFFFF;
}
.tag--round-border-gradient {
  position: relative;
  padding: 0;
  border: 7px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#ffffff, #ffffff), linear-gradient(90deg, #818CF8 0%, #E879F9 100%);
  background-repeat: no-repeat;
  background-origin: padding-box, border-box;
  font-size: 12px;
  font-weight: 600;
  color: #18181B;
}
.tag--round-border-gradient::before {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -6px;
  right: -6px;
  border: 6px solid #ffffff;
  border-radius: 50px;
}
.tag--round-border-gradient > * {
  display: block;
  padding: 0 0.62em;
  font-weight: inherit;
  font-size: inherit;
  line-height: 130%;
  line-height: 1.3em;
  text-align: center;
  color: inherit;
  letter-spacing: normal;
}
.tag--promo {
  background: #E9323D;
  color: #fff;
  font-weight: 700;
}
.tag--promo-light {
  background: #FFF5F3;
  color: #E34140;
  font-weight: 700;
}
.tag--promo-outline {
  background: transparent;
  color: #E34140;
  box-shadow: inset 0px 0px 0px 1px #E9323D;
  font-weight: 700;
}

a {
  color: #1B62F1;
}

.link {
  display: inline-flex;
  gap: 0.24em;
  align-items: center;
  line-height: 1.4em;
  transition: color 3ms ease;
  color: #1B62F1;
  cursor: pointer !important;
}
.link ion-icon {
  font-size: 1.2em;
  --ionicon-stroke-width: 48px;
}

.link-underline:hover {
  text-decoration: underline;
  color: #1D4ED8;
}

.link-arrowed {
  height: -moz-fit-content;
  height: fit-content;
  text-decoration: none;
  cursor: pointer !important;
  display: inline-block;
  align-items: center;
  color: #1B62F1;
  transition: transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1), color 3ms ease;
}
.link-arrowed__arrow-container {
  display: inline-block;
  margin-left: 0.2em;
  margin-top: 0.08em;
  transition: transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.link-arrowed__arrow-container .arrow-tip {
  transition: transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  stroke: currentColor;
}
.link-arrowed__arrow-container .arrow-line {
  stroke: currentColor;
  opacity: 0;
  transform: translateX(-40%);
}
.link-arrowed__arrow-container .arrow-tip-container,
.link-arrowed__arrow-container .arrow-line {
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.nav-banner span.link-arrowed {
  color: #FAFAFB !important;
  cursor: default !important;
  pointer-events: none !important;
}

.link-circle-icon ion-icon {
  font-size: 1.64em;
  --ionicon-stroke-width: 32px;
}

button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  border: none;
  letter-spacing: inherit;
  background: transparent;
  padding: 0;
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  font-weight: 500;
  transition: background 200ms ease 0s;
  cursor: pointer !important;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.02em;
  border-radius: 12px;
  color: #FFFFFF;
  background: #1B62F1;
}

.cta-button:hover {
  background: #1D4ED8;
}

.cta-button:active {
  background: #1B62F1;
}

.cta-button--s {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.01em;
}

.cta-button--icon-left {
  align-items: center;
  gap: 8px;
  padding: 14px 24px 14px 14px;
}
.cta-button--icon-left ion-icon {
  font-size: 1.38em;
}

.dive-button {
  --dive-button-copy-width: 190px;
  --dive-button-gap: 16px;
  --dive-button-icon-size: 36px;
  --dive-button-icon-outer-space: 6px;
  --dive-button-anim-duration: 1.8s;
  --dive-button-icon-ease: cubic-bezier(0.47,0.01,0.4,0.99);
  --dive-button-mask-progress: 0;
  display: inline-flex;
  gap: var(--dive-button-gap);
  align-items: center;
  cursor: pointer;
}
.dive-button-copy {
  width: var(--dive-button-copy-width);
  opacity: 0;
  white-space: pre-line;
  text-align: right;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.02em;
  mask-image: linear-gradient(90deg, rgb(0, 0, 0) calc(var(--dive-button-mask-progress) * 100% - 210px * (1 - var(--dive-button-mask-progress))), rgba(0, 0, 0, 0) calc(var(--dive-button-mask-progress) * (100% + 210px)));
  -webkit-mask-image: linear-gradient(90deg, rgb(0, 0, 0) calc(var(--dive-button-mask-progress) * 100% - 210px * (1 - var(--dive-button-mask-progress))), rgba(0, 0, 0, 0) calc(var(--dive-button-mask-progress) * (100% + 210px)));
}
.dive-button:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.dive-button-icon {
  margin: var(--dive-button-icon-outer-space);
  isolation: isolate;
  color: #111827;
  font-size: var(--dive-button-icon-size);
  position: relative;
  contain: unset;
  transform: translateX(calc(var(--dive-button-copy-width) * -1 - var(--dive-button-gap) - (var(--dive-button-icon-size) + var(--dive-button-icon-outer-space) * 2) / 2));
}
.dive-button-icon:before {
  content: "";
  position: absolute;
  inset: calc(var(--dive-button-icon-outer-space) * -1);
  z-index: -1;
  border-radius: 50%;
  background: #1B62F1;
}
.dive-button-animated .dive-button-icon {
  transform: translateX(0);
  transition: transform var(--dive-button-anim-duration) var(--dive-button-icon-ease);
}
.dive-button-animated .dive-button-copy {
  opacity: 1;
  transition: opacity 1.5s cubic-bezier(0.37, 0, 0.29, 1);
}
@media (max-width: 1080px) {
  .dive-button {
    --dive-button-gap: 12px;
    --dive-button-icon-size: 30px;
    font-size: 16px;
  }
}

.Cta_button {
  display: inline-block;
  text-align: center;
  background: #1B62F1;
  border-radius: 12px;
  color: #FFFFFF;
  position: relative;
  text-decoration: none;
  cursor: pointer !important;
  white-space: nowrap;
  transition: background 200ms ease 0s;
}

.Cta_button.small {
  padding: 12px 18px;
  font: 500 15px/24px "Inter var", "Inter", ui-sans-serif, system-ui, -apple-system, "BlinkMacSystemFont", "system-ui", "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.Cta_button:hover {
  background: #056BF1;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
}

.lang-switcher {
  display: flex;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0px;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
  perspective: 500px;
  color: #6B7280;
  transition: color 3ms ease;
}
.lang-switcher:hover {
  color: #18181B;
}
.lang-switcher:active {
  color: #6B7280;
}
.lang-switcher .icon {
  width: 16px;
  aspect-ratio: 1/1;
}
.lang-switcher .lang {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 16px;
  transition: all 0.2s ease-in;
}
.lang-switcher .current-lang {
  padding-right: 10px;
  position: relative;
  transform-origin: 100% 100%;
}
.lang-switcher .dest-lang {
  position: absolute;
  left: 24px;
  transform-origin: 0% 0%;
  transform: rotateX(90deg);
}
.lang-switcher:hover .current-lang {
  transform: rotateX(-90deg);
}
.lang-switcher:hover .dest-lang {
  transform: rotateX(0deg);
}

.upper-nav {
  /*
  The site header wrapper element (.pin-spacer) generated by gsap ScrollTrigger has a z-index of 99999
  */
  position: relative;
  z-index: 100000;
  background: #F3F4F5;
}
.upper-nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  position: relative;
}
.upper-nav__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6B7280;
  position: relative;
}
.upper-nav .sub-nav-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  line-height: 36px;
  letter-spacing: -0.01em;
  color: #52525B;
  border-radius: 4px;
  padding: 0 12px;
  transition: background 0.2s, color 0.2s;
}
.upper-nav .sub-nav-item:hover {
  color: #000000;
  background: #FAFAFA;
}
.upper-nav__list {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.upper-nav__splitter {
  width: 1px;
  height: 24px;
  background: #6B7280;
  opacity: 0.3;
}
.upper-nav .sub-nav {
  position: absolute;
  top: 100%;
  width: auto;
  right: -20px;
  left: unset;
  opacity: 0;
  visibility: hidden;
  height: auto;
  overflow: hidden;
  z-index: -1;
  transform: translateY(-6px);
}
.upper-nav .sub-nav__layout {
  display: flex;
  min-width: 200px;
  background: #FFFFFF;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), inset 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.upper-nav .sub-nav__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4px;
  margin: 0;
  padding: 6px;
}
.upper-nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 40px;
  padding: 0 10px;
  color: #6B7280;
  -moz-column-gap: 6px;
  column-gap: 6px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  cursor: pointer;
}
.upper-nav-item {
  transition: color 0.2s;
}
.upper-nav-item[aria-expanded=true] {
  color: #111827;
  cursor: pointer;
}
.upper-nav-item--link:hover {
  color: #111827;
}

.desktop-nav {
  background: #FFFFFF;
  box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 3;
}
.desktop-nav__container {
  display: flex;
  height: 60px;
  align-items: center;
}
.desktop-nav__logo {
  padding-right: 32px;
}
.desktop-nav__logo .logo {
  display: block;
}
.desktop-nav__logo .logo__elm {
  transition: fill 0.2s ease, opacity 0.2s ease;
}
.desktop-nav .logo-link {
  display: block;
  padding: 8px 0;
}
.desktop-nav .logo-link:hover .logo__elm--color-primary {
  fill: #3F3F46;
}
.desktop-nav .logo-link:hover .logo__elm--color-secondary {
  fill: #A1A1AA;
}
.desktop-nav__list {
  display: flex;
  height: 100%;
  align-items: center;
}
.desktop-nav__list--actions {
  margin-left: auto;
  padding-left: 32px;
}
.desktop-nav__list--actions .desktop-nav__item {
  padding: 0;
}
.desktop-nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  padding: 8px 12px;
  line-height: 20px;
  letter-spacing: -0.016em;
  color: #6B7280;
  cursor: pointer;
  transition: color 0.2s;
}
.desktop-nav-item--large {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 0;
  line-height: 0;
  width: 100%;
  height: 100%;
}
.desktop-nav-item--large:hover {
  background: transparent;
}
.desktop-nav-item--large:hover .desktop-nav-item__inner {
  color: #111827;
}
.desktop-nav-item[aria-expanded=true] .desktop-nav-item__inner {
  color: #111827;
}
.desktop-nav-item--cta-button {
  padding: 12px 16px;
  font-size: 14px;
  color: #FFFFFF;
  background: #1B62F1;
  line-height: 16px;
  letter-spacing: -0.01em;
  border-radius: 10px;
  transition: background 0.2s;
}
.desktop-nav-item--cta-button:hover {
  background: #1D4ED8;
}
.desktop-nav-item__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  padding: 8px 12px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #6B7280;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.desktop-nav__item {
  display: flex;
  align-self: stretch;
  align-items: center;
}

.desktop-nav-trial-button-secondary-style .desktop-nav-item--cta-button {
  color: #4B5563;
  background: #fff;
  box-shadow: inset 0px 0px 0 1px #D1D5DB;
}

.desktop-nav-trial-button-secondary-style .desktop-nav-item--cta-button:hover {
  background: #EFF1F5;
  color: #111827;
  box-shadow: inset 0px 0px 0 1px transparent;
}

.site-header-focus-overlay {
  background: rgba(232, 232, 237, 0.4);
  visibility: hidden;
  position: fixed;
  opacity: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /*
  The site header wrapper element (.pin-spacer) generated by gsap ScrollTrigger has a z-index of 99999
  */
  z-index: 99998;
}
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .site-header-focus-overlay {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }
}

.desktop-nav .sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 0;
  background: #fff;
  z-index: unset;
}
.desktop-nav .sub-nav__layout {
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 8px 64px;
  background: #ffffff;
  overflow: hidden;
}
.desktop-nav .sub-nav__section {
  display: flex;
  flex-shrink: 0;
  min-width: 220px;
  background: #ffffff;
}
.desktop-nav .sub-nav__item--title {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
  color: #6B7280;
  padding-bottom: 16px;
  margin: 0 12px 16px 12px;
  box-shadow: inset 0px -1px 0px #E4E4E7;
}
.desktop-nav .sub-nav__item--footer {
  padding-top: 16px;
}
.desktop-nav .sub-nav__list {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 100%;
}
.desktop-nav .sub-nav__list--self-height {
  height: -moz-fit-content;
  height: fit-content;
}
.desktop-nav .sub-nav-item {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 12px;
  gap: 10px;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #52525B;
  transition: color 0.2s;
}
.desktop-nav .sub-nav-item.spotlight {
  font-weight: 600;
  font-size: 21px;
  line-height: 28px;
  letter-spacing: -0.03em;
}
.desktop-nav .sub-nav-item span[aria-hidden=true] {
  color: #A1A1AA;
}
.desktop-nav .sub-nav-item:hover {
  color: #000000;
}
.desktop-nav .sub-nav-item:hover span[aria-hidden=true] {
  color: #000000;
}
.desktop-nav .sub-nav .spotlight .sub-nav-item__title {
  font-size: 21px;
  line-height: 28px;
  letter-spacing: -0.03em;
}

.desktop-nav .sub-nav--course .sub-nav-item--product {
  padding: 12px;
  height: 72px;
}
.desktop-nav .sub-nav--course .sub-nav-item {
  width: 100%;
  border-radius: 4px;
  transition: background 0.3s;
}
.desktop-nav .sub-nav--course .sub-nav-item__icon .shape {
  transition: stroke 0.15s ease 0.05s;
  stroke: #A1A1AA;
}
.desktop-nav .sub-nav--course .sub-nav-item__icon .bg {
  transition: fill-opacity 0.3s ease 0.05s;
  fill-opacity: 0;
}
.desktop-nav .sub-nav--course .sub-nav-item__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.desktop-nav .sub-nav--course .sub-nav-item__title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  font-size: 13px;
  line-height: 24px;
  font-weight: 600;
}
.desktop-nav .sub-nav--course .sub-nav-item__desc {
  font-size: 13px;
  line-height: 18px;
  color: #52525B;
  font-weight: 400;
  letter-spacing: 0;
}
.desktop-nav .sub-nav--course .spotlight .sub-nav-item__title {
  font-size: 17px;
  letter-spacing: -0.02em;
}
.desktop-nav .sub-nav--course .sub-nav-item:hover {
  background: #FAFAFA;
  color: #000000;
}
.desktop-nav .sub-nav--course .sub-nav-item:hover .sub-nav-item__desc {
  color: #000000;
}
.desktop-nav .sub-nav--course .sub-nav-item:hover .sub-nav-item__icon .shape {
  stroke: #FFFFFF;
}
.desktop-nav .sub-nav--course .sub-nav-item:hover .sub-nav-item__icon .bg {
  fill-opacity: 1;
}
.desktop-nav .sub-nav--course .sub-nav__item--footer:hover .sub-nav-item {
  width: -moz-fit-content;
  background: transparent;
}

.desktop-sub-nav-background {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  height: 60px;
  z-index: -1;
  transform: translate3d(0, 0, 0);
  transform-origin: center top;
}
.desktop-sub-nav-background[active=true] {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  width: 100%;
  position: relative;
  z-index: 3;
  height: 48px;
}
.mobile-nav__header {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr auto 1fr;
  align-items: center;
  height: 48px;
  position: relative;
  z-index: 10;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 0px 0px;
  background: #fff;
  transition: background 0.4s ease;
}
.mobile-nav__inner {
  position: absolute;
  left: 0;
  width: 100%;
  top: 48px;
  bottom: 0;
  background: #ffffff;
  overflow: hidden;
}
.mobile-nav__body {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-X: hidden;
  overflow-y: scroll;
  position: relative;
  min-height: 100%;
  min-height: -webkit-fill-available;
}
.mobile-nav__menu-item {
  padding: 0 40px;
}
.mobile-nav__burger {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 48px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mobile-nav__burger .burger {
  display: block;
  width: 18px;
  height: 8px;
}
.mobile-nav__burger .burger__bar {
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
  background: #000;
}
.mobile-nav__burger .burger__bar--top {
  transform: translateY(0px) rotate(0deg);
}
.mobile-nav__burger .burger__bar--bottom {
  transform: translateY(6px) rotate(0deg);
}
.mobile-nav__logo,
.mobile-nav .logo-link, .mobile-nav__header-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.mobile-nav .logo-link {
  width: 146px;
  justify-content: space-between;
}
.mobile-nav .logo {
  display: block;
  position: relative;
}
.mobile-nav .logo--square {
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}
.mobile-nav .logo--letters {
  opacity: 0;
}
.mobile-nav__header-cta {
  padding-right: 16px;
  justify-content: flex-end;
}
.mobile-nav__header-cta > a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: #EFF1F5;
  color: #111827;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 14px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.mobile-nav__menu-container {
  width: 100%;
  position: relative;
  display: flex;
  margin-bottom: 40px;
}
.mobile-nav__menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
.mobile-nav__menu--root .mobile-nav__menu-item {
  position: relative;
  transform: translateY(-12px);
  opacity: 0;
}
.mobile-nav__menu-item svg {
  pointer-events: none;
}
.mobile-nav__menu--sub {
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
}
.mobile-nav .sub-menu__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: auto;
  padding-right: 40px;
}
.mobile-nav .item {
  display: flex;
  height: 45px;
  align-items: center;
  position: relative;
  color: #374151;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  width: 100%;
  box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.08);
  -moz-column-gap: 10px;
  column-gap: 10px;
  cursor: pointer;
}
.mobile-nav .item:active {
  color: #111827;
}
.mobile-nav .trigger-item {
  justify-content: space-between;
}
.mobile-nav__footer {
  display: flex;
  justify-content: stretch;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav__footer .mobile-nav__menu-item {
  position: relative;
  transform: translateY(-12px);
  opacity: 0;
}
.mobile-nav .item-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.02em;
  background: #1B62F1;
  color: #ffffff;
}
.mobile-nav .item-button--connect {
  background: #EFF1F5;
  color: #111827;
}
.mobile-nav__menu-item--lang {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 50px;
}
.mobile-nav__menu-item--lang * {
  letter-spacing: 0;
}
.mobile-nav .current-lang {
  font-size: 12px;
  line-height: 14px;
  color: #111827;
  position: relative;
}
.mobile-nav .current-lang:after {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  aspect-ratio: 1/1;
  background: currentColor;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 4px;
}
.mobile-nav .site-lang {
  font-size: 12px;
  line-height: 14px;
  color: #6B7280;
}
.mobile-nav .site-lang:active {
  color: #111827;
}

.mobile-nav .sub-menu__controls .slide-back {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
}
.mobile-nav .sub-menu__controls .slide-back .item-arrow {
  transform: scale(-1);
}
.mobile-nav .sub-menu__controls .slide-back .item-arrow path {
  fill: #111827;
}
.mobile-nav .sub-menu__controls .origin {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #71717A;
}

@media (orientation: landscape) {
  .mobile-nav__menu-container {
    margin-bottom: 20px;
  }
  .mobile-nav .sub-menu__controls {
    margin-bottom: 0;
  }
}
.site-footer {
  padding: 80px 0;
  background: #FFFFFF;
  color: #71717A;
}
.site-footer .footer-top {
  margin-bottom: 24px;
}
.site-footer .footer-top__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #E4E4E7;
}
.site-footer .footer-top .alti-logo__primary {
  fill: #52525B;
}
.site-footer .footer-top .alti-logo__secondary {
  fill: #52525B;
  opacity: 0.5;
}
.site-footer .footer-top .alti-logo__arrow {
  opacity: 0;
}
.site-footer .footer-top .alti-logo:hover .alti-logo__primary,
.site-footer .footer-top .alti-logo:hover .alti-logo__secondary {
  fill: #27272A;
}
.site-footer .footer-top .cta-button {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.01em;
  border-radius: 12px;
  color: #3F3F46;
  background: #F3F4F5;
}
.site-footer .footer-top .cta-button:hover {
  background: #E4E4E7;
  color: #18181B;
}
.site-footer .footer-top .cta-button:active {
  background: #F3F4F5;
  color: #3F3F46;
}
@media (max-width: 600px) {
  .site-footer .footer-top .cta-button {
    display: none;
  }
}
.site-footer .footer-nav-container {
  margin-bottom: 24px;
}
.site-footer .footer-nav--desktop {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 999px) {
  .site-footer .footer-nav--desktop {
    display: none;
  }
}
.site-footer .footer-nav {
  color: #52525B;
}
.site-footer .footer-nav__column {
  gap: 24px;
  display: flex;
  flex-direction: column;
}
.site-footer .footer-nav__list-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.016em;
  margin-bottom: 12px;
  color: #3F3F46;
}
.site-footer .footer-nav__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}
.site-footer .footer-nav__item:last-child {
  margin-bottom: 0px;
}
.site-footer .footer-nav__item .tag {
  color: #3F3F46;
  background: #F3F4F5;
}
.site-footer .footer-nav__item .mano {
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0;
  color: #EC4899;
}
.site-footer .footer-nav-item {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #52525B;
  transition: color 3ms ease;
}
.site-footer .footer-nav-item:hover {
  color: #18181B;
}
.site-footer .footer-nav-item:active {
  color: #52525B;
}
.site-footer .footer-nav--mobile {
  display: none;
}
@media (max-width: 999px) {
  .site-footer .footer-nav--mobile {
    display: block;
  }
}
.site-footer .footer-nav--mobile .prg-acc {
  margin-top: 0;
}
.site-footer .footer-nav--mobile .prg-acc_header {
  padding: 12px 0;
  border-bottom-color: #E4E4E7;
}
.site-footer .footer-nav--mobile .prg-acc .prg-acc_item .toggler-icon {
  width: 20px;
  height: 20px;
  font-size: 20px;
  color: #71717A;
}
.site-footer .footer-nav--mobile .prg-acc .prg-acc_item:hover .toggler-icon,
.site-footer .footer-nav--mobile .prg-acc .prg-acc_item:hover h5 {
  color: #18181B;
}
.site-footer .footer-nav--mobile .prg-acc .prg-acc_item.active > .prg-acc_header .toggler-icon {
  color: #27272A;
}
.site-footer .footer-nav--mobile .prg-acc .prg-acc_item.active > .prg-acc_header h5 {
  color: #18181B;
}
.site-footer .footer-nav--mobile .prg-acc_body .prg-acc_body__content {
  padding: 12px 0;
}
.site-footer .footer-nav--mobile ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer .footer-nav--mobile h5 {
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #3F3F46;
  margin: 0;
  padding: 0;
}
.site-footer .footer-nav--mobile .link {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #52525B;
  transition: color 3ms ease;
}
.site-footer .footer-nav--mobile .link:hover {
  color: #27272A;
}
.site-footer .footer-nav--mobile .link:active {
  color: #52525B;
}
.site-footer .footer-nav--mobile .tag,
.site-footer .footer-nav--mobile .mano {
  margin-left: 6px;
}
.site-footer .footer-nav--mobile .tag {
  background: #F3F4F5;
  color: #3F3F46;
}
.site-footer .footer-nav--mobile .mano {
  letter-spacing: 0;
  font-size: 16px;
  color: #EC4899;
}
.site-footer .footer-nav__mini-contact {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 150%;
  color: #71717A;
  margin-top: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E4E4E7;
}
.site-footer .footer-nav__mini-contact a {
  color: #1B62F1;
  transition: color 3ms ease;
}
.site-footer .footer-nav__mini-contact a:hover {
  color: #1D4ED8;
}
.site-footer .footer-nav__mini-contact a:active {
  color: #1B62F1;
}
@media (max-width: 600px) {
  .site-footer .footer-nav__mini-contact {
    margin-top: 24px;
  }
}
.site-footer .footer-share {
  margin-bottom: 50px;
}
.site-footer .footer-share__layout {
  display: flex;
  justify-content: space-between;
}
.site-footer .footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer .footer-social__title {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.01em;
}
.site-footer .footer-social__icons {
  display: flex;
  gap: 12px;
}
.site-footer .footer-social .social-icon {
  width: 32px;
  height: 32px;
  padding: 4px;
  color: #71717A;
  transition: color 3ms ease;
  font-size: 24px;
}
.site-footer .footer-social .social-icon:hover {
  color: #3F3F46;
}
.site-footer .footer-social .social-icon:active {
  color: #71717A;
}
.site-footer .footer-social .trustpilot-widget {
  transform: translateX(-12px);
}
.site-footer .footer-social .trustpilot-widget[data-theme=dark] {
  display: none;
}
.site-footer .footer-qualiopi {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column-reverse;
}
.site-footer .footer-qualiopi__desc {
  font-weight: 400;
  font-size: 10px;
  line-height: 150%;
  max-width: 152px;
  letter-spacing: 0;
}
.site-footer .footer-bottom {
  font-weight: 400;
}
.site-footer .footer-bottom__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 150%;
}
.site-footer .footer-bottom__links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer .footer-bottom__links li {
  flex-shrink: 0;
}
.site-footer .footer-bottom__links a {
  color: #52525B;
  transition: color 3ms ease;
}
.site-footer .footer-bottom__links a:hover {
  color: #27272A;
}
.site-footer .footer-bottom__links a:active {
  color: #52525B;
}
.site-footer .footer-bottom .splitter {
  display: none;
  width: 1px;
  height: 20px;
  background: #E4E4E7;
}
.site-footer .footer-bottom .site-lang .lang {
  font-size: 14px;
  letter-spacing: -0.01em;
}
.site-footer .footer-bottom .site-lang--mobile {
  display: none;
}
.site-footer .footer-bottom__disclaimer {
  font-size: 10px;
  letter-spacing: 0;
  line-height: 150%;
  text-align: justify;
}
@media (max-width: 1079px) {
  .site-footer .footer-bottom__info {
    flex-direction: column-reverse;
    gap: 24px;
    margin-bottom: 20px;
    font-size: 12px;
  }
  .site-footer .footer-bottom .site-lang {
    display: none;
  }
  .site-footer .footer-bottom .site-lang--mobile {
    display: flex;
  }
  .site-footer .footer-bottom .site-lang--mobile .lang {
    font-size: 12px;
  }
  .site-footer .footer-bottom__links {
    gap: 12px;
  }
  .site-footer .footer-bottom .splitter {
    display: block;
  }
}
@media (max-width: 999px) {
  .site-footer {
    padding: 60px 0;
  }
  .site-footer .footer-social__title {
    display: none;
  }
}
@media (max-width: 800px) {
  .site-footer .footer-share {
    margin-bottom: 50px;
  }
  .site-footer .footer-share__layout {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .site-footer .footer-qualiopi__logo {
    width: 120px;
    height: auto;
  }
  .site-footer .footer-qualiopi__desc {
    text-align: center;
    max-width: 250px;
  }
}
@media (max-width: 600px) {
  .site-footer {
    padding: 40px 0;
  }
  .site-footer .footer-bottom__links {
    gap: 8px;
  }
}

.site-footer--theme-light-1 {
  background: #FAFAFB;
  color: #737373;
}
.site-footer--theme-light-1 .footer-top__layout {
  border-bottom: 1px solid #E5E5E5;
}
.site-footer--theme-light-1 .footer-top .alti-logo__primary {
  fill: #525252;
}
.site-footer--theme-light-1 .footer-top .alti-logo__secondary {
  fill: #525252;
  opacity: 0.5;
}
.site-footer--theme-light-1 .footer-top .alti-logo:hover .alti-logo__primary,
.site-footer--theme-light-1 .footer-top .alti-logo:hover .alti-logo__secondary {
  fill: #262626;
}
.site-footer--theme-light-1 .footer-top .cta-button {
  color: #262626;
  background: #E5E5E5;
}
.site-footer--theme-light-1 .footer-top .cta-button:hover {
  background: #D4D4D4;
  color: #171717;
}
.site-footer--theme-light-1 .footer-top .cta-button:active {
  background: #E5E5E5;
  color: #262626;
}
.site-footer--theme-light-1 .footer-nav {
  color: #525252;
}
.site-footer--theme-light-1 .footer-nav__list-title {
  color: #404040;
}
.site-footer--theme-light-1 .footer-nav__item .tag {
  color: #262626;
  background: #E5E5E5;
}
.site-footer--theme-light-1 .footer-nav-item {
  color: #525252;
  transition: color 3ms ease;
}
.site-footer--theme-light-1 .footer-nav-item:hover {
  color: #171717;
}
.site-footer--theme-light-1 .footer-nav-item:active {
  color: #525252;
}
.site-footer--theme-light-1 .footer-nav__mini-contact {
  color: #737373;
  border-bottom: 1px solid #E5E5E5;
}
.site-footer--theme-light-1 .footer-nav--mobile h5 {
  color: #404040;
}
.site-footer--theme-light-1 .footer-nav--mobile .link {
  color: #525252;
  transition: color 3ms ease;
}
.site-footer--theme-light-1 .footer-nav--mobile .link:hover {
  color: #171717;
}
.site-footer--theme-light-1 .footer-nav--mobile .link:active {
  color: #525252;
}
.site-footer--theme-light-1 .footer-nav--mobile .tag {
  background: #E5E5E5;
  color: #262626;
}
.site-footer--theme-light-1 .footer-nav--mobile .prg-acc_header {
  border-bottom-color: #E5E5E5;
}
.site-footer--theme-light-1 .footer-nav--mobile .prg-acc .prg-acc_item .toggler-icon {
  color: #737373;
}
.site-footer--theme-light-1 .footer-nav--mobile .prg-acc .prg-acc_item:hover .toggler-icon,
.site-footer--theme-light-1 .footer-nav--mobile .prg-acc .prg-acc_item:hover h5 {
  color: #171717;
}
.site-footer--theme-light-1 .footer-nav--mobile .prg-acc .prg-acc_item.active > .prg-acc_header .toggler-icon {
  color: #262626;
}
.site-footer--theme-light-1 .footer-nav--mobile .prg-acc .prg-acc_item.active > .prg-acc_header h5 {
  color: #171717;
}
.site-footer--theme-light-1 .footer-social .social-icon {
  color: #737373;
  transition: color 3ms ease;
}
.site-footer--theme-light-1 .footer-social .social-icon:hover {
  color: #404040;
}
.site-footer--theme-light-1 .footer-social .social-icon:active {
  color: #737373;
}
.site-footer--theme-light-1 .footer-bottom__links a {
  color: #262626;
  transition: color 3ms ease;
}
.site-footer--theme-light-1 .footer-bottom__links a:hover {
  color: #171717;
}
.site-footer--theme-light-1 .footer-bottom__links a:active {
  color: #262626;
}
.site-footer--theme-light-1 .footer-bottom .splitter {
  background: #E5E5E5;
}

.site-footer--theme-light-2 {
  background: #FAFAFA;
  color: #71717A;
}
.site-footer--theme-light-2 .footer-top__layout {
  border-bottom: 1px solid #E4E4E7;
}
.site-footer--theme-light-2 .footer-top .alti-logo__primary {
  fill: #52525B;
}
.site-footer--theme-light-2 .footer-top .alti-logo__secondary {
  fill: #52525B;
  opacity: 0.5;
}
.site-footer--theme-light-2 .footer-top .alti-logo:hover .alti-logo__primary,
.site-footer--theme-light-2 .footer-top .alti-logo:hover .alti-logo__secondary {
  fill: #27272A;
}
.site-footer--theme-light-2 .footer-top .cta-button {
  color: #27272A;
  background: #E4E4E7;
}
.site-footer--theme-light-2 .footer-top .cta-button:hover {
  background: #D4D4D8;
  color: #18181B;
}
.site-footer--theme-light-2 .footer-top .cta-button:active {
  background: #E4E4E7;
  color: #27272A;
}
.site-footer--theme-light-2 .footer-nav {
  color: #52525B;
}
.site-footer--theme-light-2 .footer-nav__list-title {
  color: #3F3F46;
}
.site-footer--theme-light-2 .footer-nav__item .tag {
  color: #27272A;
  background: #E4E4E7;
}
.site-footer--theme-light-2 .footer-nav-item {
  color: #52525B;
  transition: color 3ms ease;
}
.site-footer--theme-light-2 .footer-nav-item:hover {
  color: #18181B;
}
.site-footer--theme-light-2 .footer-nav-item:active {
  color: #52525B;
}
.site-footer--theme-light-2 .footer-nav__mini-contact {
  color: #71717A;
  border-bottom: 1px solid #E4E4E7;
}
.site-footer--theme-light-2 .footer-nav--mobile .prg-acc_header {
  border-bottom-color: #E4E4E7;
}
.site-footer--theme-light-2 .footer-nav--mobile .prg-acc .prg-acc_item .toggler-icon {
  color: #71717A;
}
.site-footer--theme-light-2 .footer-nav--mobile h5 {
  color: #3F3F46;
}
.site-footer--theme-light-2 .footer-nav--mobile .link {
  color: #52525B;
  transition: color 3ms ease;
}
.site-footer--theme-light-2 .footer-nav--mobile .link:hover {
  color: #18181B;
}
.site-footer--theme-light-2 .footer-nav--mobile .link:active {
  color: #52525B;
}
.site-footer--theme-light-2 .footer-nav--mobile .tag {
  background: #F3F4F5;
  color: #3F3F46;
}
.site-footer--theme-light-2 .footer-nav--mobile .prg-acc .prg-acc_item:hover .toggler-icon,
.site-footer--theme-light-2 .footer-nav--mobile .prg-acc .prg-acc_item:hover h5 {
  color: #18181B;
}
.site-footer--theme-light-2 .footer-nav--mobile .prg-acc .prg-acc_item.active > .prg-acc_header .toggler-icon {
  color: #27272A;
}
.site-footer--theme-light-2 .footer-nav--mobile .prg-acc .prg-acc_item.active > .prg-acc_header h5 {
  color: #18181B;
}
.site-footer--theme-light-2 .footer-social .social-icon {
  color: #71717A;
  transition: color 3ms ease;
}
.site-footer--theme-light-2 .footer-social .social-icon:hover {
  color: #3F3F46;
}
.site-footer--theme-light-2 .footer-social .social-icon:active {
  color: #71717A;
}
.site-footer--theme-light-2 .footer-bottom__links a {
  color: #27272A;
  transition: color 3ms ease;
}
.site-footer--theme-light-2 .footer-bottom__links a:hover {
  color: #18181B;
}
.site-footer--theme-light-2 .footer-bottom__links a:active {
  color: #27272A;
}
.site-footer--theme-light-2 .footer-bottom .splitter {
  background: #E4E4E7;
}

.site-footer--theme-light-3 {
  background: #F9FAFB;
  color: #6B7280;
}
.site-footer--theme-light-3 .footer-top__layout {
  border-bottom: 1px solid #E5E7EB;
}
.site-footer--theme-light-3 .footer-top .alti-logo__primary {
  fill: #4B5563;
}
.site-footer--theme-light-3 .footer-top .alti-logo__secondary {
  fill: #4B5563;
  opacity: 0.5;
}
.site-footer--theme-light-3 .footer-top .alti-logo:hover .alti-logo__primary,
.site-footer--theme-light-3 .footer-top .alti-logo:hover .alti-logo__secondary {
  fill: #1F2937;
}
.site-footer--theme-light-3 .footer-top .cta-button {
  color: #1F2937;
  background: #E5E7EB;
}
.site-footer--theme-light-3 .footer-top .cta-button:hover {
  background: #D1D5DB;
  color: #111827;
}
.site-footer--theme-light-3 .footer-top .cta-button:active {
  background: #E5E7EB;
  color: #1F2937;
}
.site-footer--theme-light-3 .footer-nav {
  color: #4B5563;
}
.site-footer--theme-light-3 .footer-nav__list-title {
  color: #374151;
}
.site-footer--theme-light-3 .footer-nav__item .tag {
  color: #1F2937;
  background: #E5E7EB;
}
.site-footer--theme-light-3 .footer-nav-item {
  color: #4B5563;
  transition: color 3ms ease;
}
.site-footer--theme-light-3 .footer-nav-item:hover {
  color: #111827;
}
.site-footer--theme-light-3 .footer-nav-item:active {
  color: #4B5563;
}
.site-footer--theme-light-3 .footer-nav__mini-contact {
  color: #6B7280;
  border-bottom: 1px solid #E5E7EB;
}
.site-footer--theme-light-3 .footer-nav--mobile .prg-acc_header {
  border-bottom-color: #E5E7EB;
}
.site-footer--theme-light-3 .footer-nav--mobile .prg-acc .prg-acc_item .toggler-icon {
  color: #6B7280;
}
.site-footer--theme-light-3 .footer-nav--mobile h5 {
  color: #374151;
}
.site-footer--theme-light-3 .footer-nav--mobile .link {
  color: #4B5563;
  transition: color 3ms ease;
}
.site-footer--theme-light-3 .footer-nav--mobile .link:hover {
  color: #111827;
}
.site-footer--theme-light-3 .footer-nav--mobile .link:active {
  color: #4B5563;
}
.site-footer--theme-light-3 .footer-nav--mobile .tag {
  background: #EFF1F5;
  color: #374151;
}
.site-footer--theme-light-3 .footer-nav--mobile .prg-acc .prg-acc_item:hover .toggler-icon,
.site-footer--theme-light-3 .footer-nav--mobile .prg-acc .prg-acc_item:hover h5 {
  color: #111827;
}
.site-footer--theme-light-3 .footer-nav--mobile .prg-acc .prg-acc_item.active > .prg-acc_header .toggler-icon {
  color: #1F2937;
}
.site-footer--theme-light-3 .footer-nav--mobile .prg-acc .prg-acc_item.active > .prg-acc_header h5 {
  color: #111827;
}
.site-footer--theme-light-3 .footer-social .social-icon {
  color: #6B7280;
  transition: color 3ms ease;
}
.site-footer--theme-light-3 .footer-social .social-icon:hover {
  color: #374151;
}
.site-footer--theme-light-3 .footer-social .social-icon:active {
  color: #6B7280;
}
.site-footer--theme-light-3 .footer-bottom__links a {
  color: #1F2937;
  transition: color 3ms ease;
}
.site-footer--theme-light-3 .footer-bottom__links a:hover {
  color: #111827;
}
.site-footer--theme-light-3 .footer-bottom__links a:active {
  color: #1F2937;
}
.site-footer--theme-light-3 .footer-bottom__links .splitter {
  background: #E5E7EB;
}

.site-footer--theme-dark-1 {
  background: #262626;
  color: #A3A3A3;
}
.site-footer--theme-dark-1 .footer-top__layout {
  border-bottom: 1px solid #404040;
}
.site-footer--theme-dark-1 .footer-top .alti-logo__primary {
  fill: #E5E5E5;
}
.site-footer--theme-dark-1 .footer-top .alti-logo__secondary {
  fill: #E5E5E5;
  opacity: 0.5;
}
.site-footer--theme-dark-1 .footer-top .alti-logo:hover .alti-logo__primary,
.site-footer--theme-dark-1 .footer-top .alti-logo:hover .alti-logo__secondary {
  fill: #F5F5F7;
}
.site-footer--theme-dark-1 .footer-top .cta-button {
  color: #F5F5F7;
  background: #171717;
}
.site-footer--theme-dark-1 .footer-top .cta-button:hover {
  background: #404040;
  color: #F5F5F7;
}
.site-footer--theme-dark-1 .footer-top .cta-button:active {
  background: #171717;
  color: #F5F5F7;
}
.site-footer--theme-dark-1 .footer-nav {
  color: #A3A3A3;
}
.site-footer--theme-dark-1 .footer-nav__list-title {
  color: #D4D4D4;
}
.site-footer--theme-dark-1 .footer-nav__item .tag {
  color: #D4D4D4;
  background: #404040;
}
.site-footer--theme-dark-1 .footer-nav-item {
  color: #A3A3A3;
  transition: color 3ms ease;
}
.site-footer--theme-dark-1 .footer-nav-item:hover {
  color: #E5E5E5;
}
.site-footer--theme-dark-1 .footer-nav-item:active {
  color: #A3A3A3;
}
.site-footer--theme-dark-1 .footer-nav__mini-contact {
  color: #A3A3A3;
  border-bottom: 1px solid #404040;
}
.site-footer--theme-dark-1 .footer-nav__mini-contact a {
  color: #3B82F6;
  transition: color 3ms ease;
}
.site-footer--theme-dark-1 .footer-nav__mini-contact a:hover {
  color: #60A5FA;
}
.site-footer--theme-dark-1 .footer-nav__mini-contact a:active {
  color: #3B82F6;
}
.site-footer--theme-dark-1 .footer-nav--mobile .prg-acc_header {
  border-bottom-color: #404040;
}
.site-footer--theme-dark-1 .footer-nav--mobile .prg-acc .prg-acc_item .toggler-icon {
  color: #737373;
}
.site-footer--theme-dark-1 .footer-nav--mobile h5 {
  color: #D4D4D4;
}
.site-footer--theme-dark-1 .footer-nav--mobile .link {
  color: #A3A3A3;
  transition: color 3ms ease;
}
.site-footer--theme-dark-1 .footer-nav--mobile .link:hover {
  color: #F5F5F7;
}
.site-footer--theme-dark-1 .footer-nav--mobile .link:active {
  color: #A3A3A3;
}
.site-footer--theme-dark-1 .footer-nav--mobile .tag {
  background: #404040;
  color: #E5E5E5;
}
.site-footer--theme-dark-1 .footer-nav--mobile .prg-acc .prg-acc_item:hover .toggler-icon,
.site-footer--theme-dark-1 .footer-nav--mobile .prg-acc .prg-acc_item:hover h5 {
  color: #F5F5F7;
}
.site-footer--theme-dark-1 .footer-nav--mobile .prg-acc .prg-acc_item.active > .prg-acc_header .toggler-icon {
  color: #E5E5E5;
}
.site-footer--theme-dark-1 .footer-nav--mobile .prg-acc .prg-acc_item.active > .prg-acc_header h5 {
  color: #F5F5F7;
}
.site-footer--theme-dark-1 .footer-social .social-icon {
  color: #A3A3A3;
  transition: color 3ms ease;
}
.site-footer--theme-dark-1 .footer-social .social-icon:hover {
  color: #E5E5E5;
}
.site-footer--theme-dark-1 .footer-social .social-icon:active {
  color: #A3A3A3;
}
.site-footer--theme-dark-1 .footer-social .trustpilot-widget[data-theme=dark] {
  display: block;
}
.site-footer--theme-dark-1 .footer-social .trustpilot-widget[data-theme=light] {
  display: none;
}
.site-footer--theme-dark-1 .footer-bottom__links a {
  color: #E5E5E5;
  transition: color 3ms ease;
}
.site-footer--theme-dark-1 .footer-bottom__links a:hover {
  color: #F5F5F7;
}
.site-footer--theme-dark-1 .footer-bottom__links a:active {
  color: #E5E5E5;
}
.site-footer--theme-dark-1 .footer-bottom .splitter {
  background: #404040;
}

.site-footer--theme-dark-2 {
  background: #27272A;
  color: #A1A1AA;
}
.site-footer--theme-dark-2 .footer-top__layout {
  border-bottom: 1px solid #3F3F46;
}
.site-footer--theme-dark-2 .footer-top .alti-logo__primary {
  fill: #E4E4E7;
}
.site-footer--theme-dark-2 .footer-top .alti-logo__secondary {
  fill: #E4E4E7;
  opacity: 0.5;
}
.site-footer--theme-dark-2 .footer-top .alti-logo:hover .alti-logo__primary,
.site-footer--theme-dark-2 .footer-top .alti-logo:hover .alti-logo__secondary {
  fill: #F3F4F5;
}
.site-footer--theme-dark-2 .footer-top .cta-button {
  color: #F3F4F5;
  background: #18181B;
}
.site-footer--theme-dark-2 .footer-top .cta-button:hover {
  background: #3F3F46;
  color: #F3F4F5;
}
.site-footer--theme-dark-2 .footer-top .cta-button:active {
  background: #18181B;
  color: #F3F4F5;
}
.site-footer--theme-dark-2 .footer-nav {
  color: #A1A1AA;
}
.site-footer--theme-dark-2 .footer-nav__list-title {
  color: #D4D4D8;
}
.site-footer--theme-dark-2 .footer-nav__item .tag {
  color: #E4E4E7;
  background: #3F3F46;
}
.site-footer--theme-dark-2 .footer-nav-item {
  color: #A1A1AA;
  transition: color 3ms ease;
}
.site-footer--theme-dark-2 .footer-nav-item:hover {
  color: #E4E4E7;
}
.site-footer--theme-dark-2 .footer-nav-item:active {
  color: #A1A1AA;
}
.site-footer--theme-dark-2 .footer-nav__mini-contact {
  color: #A1A1AA;
  border-bottom: 1px solid #3F3F46;
}
.site-footer--theme-dark-2 .footer-nav__mini-contact a {
  color: #3B82F6;
  transition: color 3ms ease;
}
.site-footer--theme-dark-2 .footer-nav__mini-contact a:hover {
  color: #60A5FA;
}
.site-footer--theme-dark-2 .footer-nav__mini-contact a:active {
  color: #3B82F6;
}
.site-footer--theme-dark-2 .footer-nav--mobile .prg-acc_header {
  border-bottom-color: #3F3F46;
}
.site-footer--theme-dark-2 .footer-nav--mobile .prg-acc .prg-acc_item .toggler-icon {
  color: #71717A;
}
.site-footer--theme-dark-2 .footer-nav--mobile h5 {
  color: #D4D4D8;
}
.site-footer--theme-dark-2 .footer-nav--mobile .link {
  color: #A1A1AA;
  transition: color 3ms ease;
}
.site-footer--theme-dark-2 .footer-nav--mobile .link:hover {
  color: #F3F4F5;
}
.site-footer--theme-dark-2 .footer-nav--mobile .link:active {
  color: #A1A1AA;
}
.site-footer--theme-dark-2 .footer-nav--mobile .tag {
  background: #3F3F46;
  color: #E4E4E7;
}
.site-footer--theme-dark-2 .footer-nav--mobile .prg-acc .prg-acc_item:hover .toggler-icon,
.site-footer--theme-dark-2 .footer-nav--mobile .prg-acc .prg-acc_item:hover h5 {
  color: #F3F4F5;
}
.site-footer--theme-dark-2 .footer-nav--mobile .prg-acc .prg-acc_item.active > .prg-acc_header .toggler-icon {
  color: #E4E4E7;
}
.site-footer--theme-dark-2 .footer-nav--mobile .prg-acc .prg-acc_item.active > .prg-acc_header h5 {
  color: #F3F4F5;
}
.site-footer--theme-dark-2 .footer-social .social-icon {
  color: #A1A1AA;
  transition: color 3ms ease;
}
.site-footer--theme-dark-2 .footer-social .social-icon:hover {
  color: #E4E4E7;
}
.site-footer--theme-dark-2 .footer-social .social-icon:active {
  color: #A1A1AA;
}
.site-footer--theme-dark-2 .footer-social .trustpilot-widget[data-theme=dark] {
  display: block;
}
.site-footer--theme-dark-2 .footer-social .trustpilot-widget[data-theme=light] {
  display: none;
}
.site-footer--theme-dark-2 .footer-bottom__links a {
  color: #E4E4E7;
  transition: color 3ms ease;
}
.site-footer--theme-dark-2 .footer-bottom__links a:hover {
  color: #F3F4F5;
}
.site-footer--theme-dark-2 .footer-bottom__links a:active {
  color: #E4E4E7;
}
.site-footer--theme-dark-2 .footer-bottom .splitter {
  background: #3F3F46;
}

.site-footer--theme-dark-3 {
  background: #1F2937;
  color: #9CA3AF;
}
.site-footer--theme-dark-3 .footer-top__layout {
  border-bottom: 1px solid #374151;
}
.site-footer--theme-dark-3 .footer-top .alti-logo__primary {
  fill: #E5E7EB;
}
.site-footer--theme-dark-3 .footer-top .alti-logo__secondary {
  fill: #E5E7EB;
  opacity: 0.5;
}
.site-footer--theme-dark-3 .footer-top .alti-logo:hover .alti-logo__primary,
.site-footer--theme-dark-3 .footer-top .alti-logo:hover .alti-logo__secondary {
  fill: #EFF1F5;
}
.site-footer--theme-dark-3 .footer-top .cta-button {
  color: #EFF1F5;
  background: #111827;
}
.site-footer--theme-dark-3 .footer-top .cta-button:hover {
  background: #374151;
  color: #EFF1F5;
}
.site-footer--theme-dark-3 .footer-top .cta-button:active {
  background: #111827;
  color: #EFF1F5;
}
.site-footer--theme-dark-3 .footer-nav {
  color: #9CA3AF;
}
.site-footer--theme-dark-3 .footer-nav__list-title {
  color: #D1D5DB;
}
.site-footer--theme-dark-3 .footer-nav__item .tag {
  color: #E5E7EB;
  background: #374151;
}
.site-footer--theme-dark-3 .footer-nav-item {
  color: #9CA3AF;
  transition: color 3ms ease;
}
.site-footer--theme-dark-3 .footer-nav-item:hover {
  color: #E5E7EB;
}
.site-footer--theme-dark-3 .footer-nav-item:active {
  color: #9CA3AF;
}
.site-footer--theme-dark-3 .footer-nav__mini-contact {
  color: #9CA3AF;
  border-bottom: 1px solid #374151;
}
.site-footer--theme-dark-3 .footer-nav__mini-contact a {
  color: #3B82F6;
  transition: color 3ms ease;
}
.site-footer--theme-dark-3 .footer-nav__mini-contact a:hover {
  color: #60A5FA;
}
.site-footer--theme-dark-3 .footer-nav__mini-contact a:active {
  color: #3B82F6;
}
.site-footer--theme-dark-3 .footer-nav--mobile .prg-acc_header {
  border-bottom-color: #374151;
}
.site-footer--theme-dark-3 .footer-nav--mobile .prg-acc .prg-acc_item .toggler-icon {
  color: #6B7280;
}
.site-footer--theme-dark-3 .footer-nav--mobile h5 {
  color: #D1D5DB;
}
.site-footer--theme-dark-3 .footer-nav--mobile .link {
  color: #9CA3AF;
  transition: color 3ms ease;
}
.site-footer--theme-dark-3 .footer-nav--mobile .link:hover {
  color: #EFF1F5;
}
.site-footer--theme-dark-3 .footer-nav--mobile .link:active {
  color: #9CA3AF;
}
.site-footer--theme-dark-3 .footer-nav--mobile .tag {
  background: #374151;
  color: #E5E7EB;
}
.site-footer--theme-dark-3 .footer-nav--mobile .prg-acc .prg-acc_item:hover .toggler-icon,
.site-footer--theme-dark-3 .footer-nav--mobile .prg-acc .prg-acc_item:hover h5 {
  color: #EFF1F5;
}
.site-footer--theme-dark-3 .footer-nav--mobile .prg-acc .prg-acc_item.active > .prg-acc_header .toggler-icon {
  color: #E5E7EB;
}
.site-footer--theme-dark-3 .footer-nav--mobile .prg-acc .prg-acc_item.active > .prg-acc_header h5 {
  color: #EFF1F5;
}
.site-footer--theme-dark-3 .footer-social .social-icon {
  color: #9CA3AF;
  transition: color 3ms ease;
}
.site-footer--theme-dark-3 .footer-social .social-icon:hover {
  color: #E5E7EB;
}
.site-footer--theme-dark-3 .footer-social .social-icon:active {
  color: #9CA3AF;
}
.site-footer--theme-dark-3 .footer-social .trustpilot-widget[data-theme=dark] {
  display: block;
}
.site-footer--theme-dark-3 .footer-social .trustpilot-widget[data-theme=light] {
  display: none;
}
.site-footer--theme-dark-3 .footer-bottom__links a {
  color: #E5E7EB;
  transition: color 3ms ease;
}
.site-footer--theme-dark-3 .footer-bottom__links a:hover {
  color: #EFF1F5;
}
.site-footer--theme-dark-3 .footer-bottom__links a:active {
  color: #E5E7EB;
}
.site-footer--theme-dark-3 .footer-bottom .splitter {
  background: #374151;
}