*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

html.no-scroll body {
  overflow: hidden;
}

/*
@supports (-webkit-touch-callout: none) {
  // html.no-scroll,
  // html.no-scroll body {
  //   overflow: hidden !important;
  //   //height: -webkit-fill-available !important;
  // }

  body {

    min-height: -webkit-fill-available;
  }
}
*/
ol,
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

@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;
}

/**
 * Basic typography style for copy text
 */
body {
  color: #111827;
  font: 500 16px/1.4 "Inter", -apple-system, "system-ui", "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  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";
}

/**
 * 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;
}

.upper-nav {
  position: relative;
  z-index: 100000;
  background: #f3f4f5;
}

.upper-nav__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  position: relative;
  z-index: 999;
}

.upper-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #6B7280;
  position: relative;
}

.upper-nav .sub-nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 38px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  -webkit-column-gap: 10px;
          column-gap: 10px;
  line-height: 18px;
  letter-spacing: -0.014em;
  color: #6B7280;
  border-radius: 8px;
  padding: 0 12px;
  -webkit-transition: background .2s, color .2s;
  transition: background .2s, color .2s;
}

.upper-nav .sub-nav-item:hover {
  background: #F9FAFB;
  color: #111827;
}

.upper-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
          column-gap: 10px;
}

.upper-nav__splitter {
  width: 1px;
  height: 24px;
  background: #6B7280;
  opacity: .3;
}

.upper-nav .sub-nav {
  position: absolute;
  top: 100%;
  width: auto;
  right: -20px;
  left: unset;
  opacity: 0;
  visibility: hidden;
  height: auto;
  overflow: visible;
}

.upper-nav .sub-nav__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), inset 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), inset 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.upper-nav .sub-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 4px;
  margin: 0;
  padding: 22px 20px;
}

.upper-nav-item,
.upper-nav .lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 18px;
  color: #6B7280;
  -webkit-column-gap: 6px;
          column-gap: 6px;
  padding: 5px 10px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.upper-nav .lang {
  padding: 5px 10px 5px 0;
}

.upper-nav-item {
  -webkit-transition: background .2s, color .2s;
  transition: background .2s, color .2s;
}

.upper-nav-item[aria-expanded="true"] {
  background: #ffffff;
  color: #111827;
  cursor: pointer;
}

.upper-nav-item[aria-expanded="true"] {
  background: #FFFFFF;
  color: #111827;
}

.upper-nav-item--link {
  background: transparent;
}

.upper-nav-item--link:hover {
  color: #111827;
  background: transparent;
  text-decoration: underline;
}

.desktop-nav {
  background: #FFFFFF;
  -webkit-box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.04);
  box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 3;
}

.desktop-nav__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.desktop-nav__logo {
  margin-right: 20px;
}

.desktop-nav__logo .logo {
  display: block;
}

.desktop-nav__logo .logo__elm {
  -webkit-transition: fill .2s ease, opacity .2s ease;
  transition: fill .2s ease, opacity .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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.desktop-nav__list--actions {
  margin-left: auto;
}

.desktop-nav__list--actions .desktop-nav__item {
  padding: 0;
}

.desktop-nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 15px;
  padding: 8px 12px;
  line-height: 20px;
  letter-spacing: -0.016em;
  color: #6B7280;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: background .2s, color .2s;
  transition: background .2s, color .2s;
}

.desktop-nav-item--large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  padding: 0 4px;
  border-radius: 0;
  line-height: 0;
  width: 100%;
  height: 100%;
}

.desktop-nav-item--large:hover {
  background: transparent;
}

.desktop-nav-item[aria-expanded="true"] .desktop-nav-item__inner {
  background: #F5F7FA;
  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: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.desktop-nav-item--cta-button:hover {
  background: #1D4ED8;
  color: #FFFFFF;
}

.desktop-nav-item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 15px;
  padding: 8px 12px;
  line-height: 20px;
  letter-spacing: -0.016em;
  color: #6B7280;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: background .2s, color .2s;
  transition: background .2s, color .2s;
}

.desktop-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.desktop-nav__item:first-child .desktop-nav-item--large {
  padding-left: 16px;
}

.desktop-nav__item:last-child .desktop-nav-item--large {
  padding-right: 16px;
}

body.no-touch .desktop-nav-item[aria-haspopup="true"]:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
}

body.no-touch .desktop-nav-item[aria-haspopup="true"]:hover:before {
  height: 12px;
}

.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__container--contrast {
  background: #F5F7FA;
}

.desktop-nav .sub-nav__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  background: #ffffff;
  overflow: hidden;
}

.desktop-nav .sub-nav__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 22px 20px;
  min-width: 220px;
  background: #ffffff;
}

.desktop-nav .sub-nav__section--contrast {
  background: #F5F7FA;
}

.desktop-nav .sub-nav__section--contrast .sub-nav-item--card {
  background: transparent;
}

.desktop-nav .sub-nav__section--contrast .sub-nav-item--card:hover {
  background: transparent;
}

.desktop-nav .sub-nav__section--has-multi-col .sub-nav__item--title {
  margin: 0 0 12px;
  padding: 0 12px 10px;
}

.desktop-nav .sub-nav__section--has-multi-col .sub-nav__list--multi-col {
  width: auto;
  min-width: unset;
}

.desktop-nav .sub-nav__section--has-multi-col .sub-nav__list--multi-col:first-child .sub-nav__item {
  margin: 0 4px 0 0;
}

.desktop-nav .sub-nav__section--has-multi-col .sub-nav__list--multi-col:first-child .sub-nav__item--title {
  margin: 0 0 12px 12px;
  padding: 0 12px 10px 0;
}

.desktop-nav .sub-nav__section--has-multi-col .sub-nav__list--multi-col:last-child .sub-nav__item--title {
  margin: 0 12px 12px 0;
  padding: 0 0 10px 0;
}

.desktop-nav .sub-nav__item--title {
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.016em;
  color: #9CA3AF;
  padding-bottom: 10px;
  margin: 0 12px 12px;
  min-height: 28px;
  -webkit-box-shadow: inset 0px -1px 0px #E5E7EB;
  box-shadow: inset 0px -1px 0px #E5E7EB;
}

.desktop-nav .sub-nav__item--footer {
  margin: auto 12px 0;
  padding-top: 6px;
  -webkit-box-shadow: inset 0px 1px 0px #e5e7eb;
  box-shadow: inset 0px 1px 0px #e5e7eb;
}

.desktop-nav .sub-nav__item--card-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.desktop-nav .sub-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  min-height: 100%;
  min-width: 100%;
}

.desktop-nav .sub-nav__list--has-footer .sub-nav__item:nth-last-child(2) {
  margin-bottom: 12px;
}

.desktop-nav .sub-nav__list--gap-0 {
  row-gap: 0;
}

.desktop-nav .sub-nav__list--self-height {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.desktop-nav .sub-nav__list--has-card {
  row-gap: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 490px;
}

.desktop-nav .sub-nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 12px;
  gap: 10px;
  border-radius: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.014em;
  color: #6B7280;
  -webkit-transition: background .2s, color .2s;
  transition: background .2s, color .2s;
}

.desktop-nav .sub-nav-item--has-icon {
  padding: 10px 16px 10px 12px;
}

.desktop-nav .sub-nav-item--has-copy {
  min-height: 68px;
  padding: 10px 16px 10px 12px;
}

.desktop-nav .sub-nav-item__icon--product .shape {
  -webkit-transition: fill .2s ease;
  transition: fill .2s ease;
  fill: #4B5563;
}

.desktop-nav .sub-nav-item__icon--product .bg {
  -webkit-transition: fill-opacity .2s ease;
  transition: fill-opacity .2s ease;
  fill-opacity: 0;
}

.desktop-nav .sub-nav-item__title {
  padding: 0;
  margin: 0;
  color: #4B5563;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.desktop-nav .sub-nav-item__title--has-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.desktop-nav .sub-nav-item__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
}

.desktop-nav .sub-nav-item__desc {
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.01em;
  color: #4B5563;
  font-weight: 400;
}

.desktop-nav .sub-nav .link-arrowed {
  padding: 10px 20px 10px 5px;
  gap: 0;
  line-height: 22px;
  letter-spacing: -0.014em;
  color: #1B62F1;
  font-size: 15px;
}

.desktop-nav .sub-nav .link-arrowed:hover {
  color: #111827;
}

.desktop-nav .sub-nav-item:hover {
  background: #F9FAFB;
  color: #111827;
}

.desktop-nav .sub-nav-item:hover .sub-nav-item__title {
  color: #111827;
}

.desktop-nav .sub-nav-item:hover .sub-nav-item__desc {
  color: #1F2937;
}

.desktop-nav .sub-nav-item:hover .sub-nav-item__icon--product {
  -webkit-transition: fill .4s ease, fill-opacity .4s ease;
  transition: fill .4s ease, fill-opacity .4s ease;
}

.desktop-nav .sub-nav-item:hover .sub-nav-item__icon--product .shape {
  fill: #FFFFFF;
}

.desktop-nav .sub-nav-item:hover .sub-nav-item__icon--product .bg {
  fill-opacity: 1;
}

.desktop-nav .sub-nav__section--contrast .sub-nav-item:hover {
  background: #FFFFFF;
}

.mobile-nav {
  width: 100%;
  position: relative;
  height: 48px;
}

.mobile-nav__header {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr auto 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 48px;
  position: relative;
  z-index: 10;
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 0px 0px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 0px 0px;
  background: #fff;
  -webkit-transition: background .4s ease;
  transition: background .4s ease;
}

.mobile-nav__inner {
  position: absolute;
  left: 0;
  width: 100%;
  top: 48px;
  bottom: 0;
  background: #ffffff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 0px 0px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 0px 0px;
  overflow: hidden;
}

.mobile-nav__body {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 48px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-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 {
  -webkit-transform: translateY(0px) rotate(0deg);
  transform: translateY(0px) rotate(0deg);
}

.mobile-nav__burger .burger__bar--bottom {
  -webkit-transform: translateY(6px) rotate(0deg);
  transform: translateY(6px) rotate(0deg);
}

.mobile-nav__logo,
.mobile-nav .logo-link, .mobile-nav__header-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.mobile-nav .logo-link {
  width: 146px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mobile-nav .logo {
  display: block;
  position: relative;
}

.mobile-nav .logo--square {
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.mobile-nav .logo--letters {
  opacity: 0;
}

.mobile-nav__header-cta {
  padding-right: 16px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.mobile-nav__header-cta > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #EFF1F5;
  color: #111827;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.mobile-nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.mobile-nav__menu--root .mobile-nav__menu-item {
  position: relative;
  -webkit-transform: translateY(-12px);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: auto;
  padding-right: 40px;
}

.mobile-nav .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  color: #374151;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  -webkit-box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.08);
  box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.08);
  -webkit-column-gap: 10px;
          column-gap: 10px;
}

.mobile-nav .item:active {
  color: #111827;
}

.mobile-nav .trigger-item {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mobile-nav__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav__footer .mobile-nav__menu-item {
  position: relative;
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
  opacity: 0;
}

.mobile-nav .item-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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 .site-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6px;
          column-gap: 6px;
  margin-top: 20px;
  opacity: .6;
}

.mobile-nav__menu-item .site-lang .lang {
  font-size: 12px;
  line-height: 14px;
}

.mobile-nav .sub-menu__controls .slide-back {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
}

.mobile-nav .sub-menu__controls .slide-back .item-arrow {
  -webkit-transform: scale(-1);
  transform: scale(-1);
}

.mobile-nav .sub-menu__controls .slide-back .item-arrow path {
  fill: #111827;
}

.mobile-nav .sub-menu__controls .origin {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.016em;
  color: #111827;
}

@media (orientation: landscape) {
  .mobile-nav__menu-container {
    margin-bottom: 20px;
  }
  .mobile-nav .sub-menu__controls {
    margin-bottom: 0;
  }
}

.product-nav {
  background: #fff;
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.product-nav__title {
  width: 150px;
  height: 40px;
  background: limegreen;
}

.product-nav__content {
  background: orange;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

@media (max-width: 999px) {
  .product-nav__list {
    position: absolute;
    width: 100%;
    background: #eee;
    top: 100%;
    left: 0;
  }
}

.product-nav-item {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -.01em;
}

.product-nav__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-nav__cta-button {
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -.01em;
  padding: 6px 12px;
  background: #1B62F1;
  border-radius: 50px;
  color: #fff;
  font-weight: 400;
}

.product-nav__menu-toggler {
  display: none;
}

@media (max-width: 999px) {
  .product-nav__menu-toggler {
    display: block;
  }
}

/***********************************************/
/******************** $FOOTER ******************/
/***********************************************/
/*** FOOTER TOP ***/
#main-footer {
  position: relative;
  z-index: 1;
}

#main-footer a {
  cursor: pointer;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  -webkit-tap-highlight-color: transparent;
}

#main-footer img,
#main-footer svg {
  display: block;
}

#main-footer #global-footer_top {
  padding-left: 20px;
  padding-right: 20px;
}

#main-footer #global-footer_top a {
  color: #fff;
}

#global-footer_cta #global-footer_logo_col a {
  display: block;
  width: 194px;
}

#global-footer_cta #global-footer_logo_col a img {
  opacity: .9;
}

#global-footer_cta #global-footer_logo_col a:hover img {
  opacity: 1;
}

#global-footer_cta .Cta_button {
  background: -webkit-gradient(linear, left top, left bottom, from(#056BF0), to(#0066CC));
  background: linear-gradient(180deg, #056BF0 0%, #0066CC 100%);
}

#global-footer_cta .Cta_button:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#057DF5), to(#056BF0));
  background: linear-gradient(180deg, #057DF5 0%, #056BF0 100%);
}

.global-footer_page_links_container a {
  display: inline-block;
  padding: 2px 0;
  font: 400 14px/16px "Inter", -apple-system, "system-ui", "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: -0.024em;
  color: rgba(255, 255, 255, 0.8);
}

#global-footer_menu_container h4 {
  margin-bottom: 16px;
  font: 500 15px/1.5 "Inter", -apple-system, "system-ui", "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: rgba(255, 255, 255, 0.9) !important;
  letter-spacing: -.03em;
}

#global-footer_menu_container a:hover {
  color: white;
}

.global-footer_page_links_container a:hover {
  text-decoration: none;
}

.global-footer_page_links_container a:hover span {
  text-decoration: underline;
}

.global-footer_page_links_container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 6px;
}

#global-footer_menu_container li a .footer-item-label {
  margin: 0 0 0 8px;
  vertical-align: middle;
  background: rgba(2, 191, 111, 0.12);
  border-radius: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px;
  font: 700 10px/12px "Inter", -apple-system, "system-ui", "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #02BF6F;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.global-footer_page_links_container a.footer-job:hover .footer-item-label.hiring-label {
  background: rgba(2, 191, 111, 0.16) !important;
}

#global-footer_menu_container p {
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
}

#global-footer_menu_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

#global-footer_menu_container:after {
  display: none !important;
}

#global-footer_menu_container .et_pb_column {
  width: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 275px;
}

.global-footer_page_links_container .et_pb_text ul, .et_pb_text ol {
  padding-bottom: 0;
}

#global-footer_menu_container .et_pb_column:first-child {
  margin-right: auto !important;
}

#global-footer_menu_container .et_pb_column:not(:last-child):not(:first-child) {
  margin: 0 60px 0 0;
}

#global-footer_menu_container .et_pb_column:last-child {
  margin-right: 0;
}

#global-footer_tp {
  margin-bottom: 20px;
}

#global-footer_rs_icons .icon {
  margin: 0 !important;
}

#global-footer_rs_icons .icon::before {
  color: rgba(255, 255, 255, 0.7);
}

#global-footer_rs_icons .icon:hover {
  background-color: rgba(0, 0, 0, 0.4) !important;
}

#global-footer_rs_icons .icon:hover::before {
  color: white;
}

#global-footer_rs_nbr {
  margin-bottom: 24px;
}

div#global-footer_rs_container {
  -ms-flex-preferred-size: 30% !important;
  flex-basis: 30% !important;
}

#main-footer .Menu_commencer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.et_pb_social_icon a.icon,
.et_pb_social_icon a.icon:hover {
  -webkit-transform: none !important;
  transform: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

#global-footer_help .getHelp {
  font: 400 16px/1.4 "Inter", -apple-system, "system-ui", "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
}

#global-footer_help .getHelp a {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: rgba(255, 255, 255, 0.8);
}

#global-footer_help .getHelp a:hover {
  text-decoration: underline;
  color: white;
}

@media (max-width: 1000px) {
  #global-footer_menu_container {
    padding-bottom: 40px !important;
  }
  #global-footer_menu_container .et_pb_column:first-child {
    margin-left: auto;
    max-width: 100%;
    margin-bottom: 10px;
  }
  #global-footer_menu_container .et_pb_column:nth-child(3) {
    min-width: 175px;
  }
  #global-footer_cl_col {
    margin-right: 0 !important;
  }
  #global-footer_logo_col,
  #global-footer_cl_col {
    margin-bottom: 0;
  }
  #global-footer_menu_container p {
    text-align: center;
    padding-right: 0;
    margin-top: 20px;
  }
  #global-footer_menu_container .et_pb_column:nth-child(2) {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  #global-footer_menu_container .et_pb_column:nth-child(3) {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #global-footer_menu_container .et_pb_column:nth-child(4) {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  #global-footer_help .getHelp {
    text-align: center;
  }
}

@media all and (max-width: 1000px) and (min-width: 681px) {
  /* top-footer bottom part */
  #global-footer_menu_container {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: (auto)[2];
    -ms-grid-columns: 33% 33% 33%;
        grid-template: repeat(2, auto)/33% 33% 33%;
  }
  #global-footer_rs_container {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / span 3;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
    margin-right: 0;
  }
  #global-footer_tp {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 680px) {
  #global-footer_cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #global-footer_logo_col {
    margin-bottom: 24px;
    margin-left: auto;
  }
  #global-footer_top,
  #global-footer_cta,
  #global-footer_help {
    padding-bottom: 30px !important;
  }
  #global-footer_menu_container {
    padding-top: 30px !important;
  }
  #global-footer_menu_container .global-footer_page_links_container {
    max-width: 175px;
  }
  /* top-footer bottom part */
  #global-footer_menu_container {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: (auto)[4];
    -ms-grid-columns: 100%;
        grid-template: repeat(4, auto)/100%;
    row-gap: 30px;
  }
  #global-footer_menu_container .et_pb_column:first-child {
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  #global-footer_menu_container .et_pb_column:nth-child(2) {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
    min-width: 175px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  #global-footer_menu_container .et_pb_column:nth-child(3) {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1;
    min-width: 175px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  #global-footer_menu_container .et_pb_column:nth-child(4) {
    -ms-grid-row: 3;
    grid-row: 3;
    -ms-grid-column: 1;
    grid-column: 1;
    min-width: 175px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  #global-footer_menu_container .et_pb_column {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  #global-footer_menu_container .et_pb_column:first-child {
    margin-top: 0;
    margin-bottom: 0;
  }
}

/*** FOOTER BOTTOM ***/
body.et_divi_theme #footer-bottom {
  background-color: #222634 !important;
  padding: 0 20px 64px !important;
}

#footer-bottom .container {
  width: 100%;
}

#footer-bottom a {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font: 400 14px/1.5 "Inter", -apple-system, "system-ui", "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: rgba(255, 255, 255, 0.8);
}

#footer-bottom a:hover {
  color: white;
  text-decoration: underline;
}

#footer-bottom_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 980px) {
  #footer-bottom_heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #footer-info {
    margin: 0 auto;
  }
  #footer-bottom_heading .footer-info-links {
    margin-top: 20px;
  }
}

#footer-info {
  margin-right: auto;
  padding-bottom: 0 !important;
  font-size: 14px;
  float: none;
  font: 400 14px/1.5 "Inter", -apple-system, "system-ui", "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: rgba(255, 255, 255, 0.55);
}

.footer-info-links a {
  white-space: nowrap;
}

#footer-CGV,
#footer-legale {
  margin-right: 12px;
}

#footer-legale,
#footer-CGV {
  color: #ffffff;
  float: none;
  font-size: 14px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

#footer-legale:hover,
#footer-CGV:hover {
  color: #02BF6F;
}

#footer-disclaimer {
  margin-top: 30px;
  text-align: justify;
  font: 400 10px/1.5 "Inter", -apple-system, "system-ui", "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: rgba(255, 255, 255, 0.55);
}

#global-footer_qualiopi .qualiopi_text {
  font-size: 8px;
  line-height: 12px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin: 8px 0 20px;
  letter-spacing: 0;
}

#global-footer_qualiopi {
  max-width: 150px;
}

@media (max-width: 1000px) {
  #global-footer_qualiopi > img {
    display: block;
    margin: auto;
  }
}

/*------------------ END FOOTER ---------------*/
.tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  background: #EFF6FF;
  color: #1D4ED8;
}

.tag--xs {
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  letter-spacing: 0;
}

.link-arrowed {
  text-decoration: none;
  cursor: pointer !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2px;
  padding-bottom: 4px;
  color: #1B62F1;
  -webkit-transition: 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.link-arrowed__arrow-container {
  margin-left: 0.4em;
  margin-top: 0.08em;
  transition: transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.link-arrowed__arrow-container .arrow-tip {
  transition: -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  stroke: currentColor;
}

.link-arrowed__arrow-container .arrow-line {
  stroke: currentColor;
  opacity: 0;
  transition: opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1), fill 0s, -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1), fill 0s, -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1), fill 0s;
  transition: transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1), fill 0s, -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translateX(-40%);
  transform: translateX(-40%);
  -moz-transition: opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1), fill 0s, -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1), fill 0s, -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1), fill 0s, -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.link-arrowed__arrow-container .arrow-tip-container,
.link-arrowed__arrow-container .arrow-line {
  -webkit-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  border: none;
  outline: none;
  letter-spacing: inherit;
  background: transparent;
  padding: 0;
}

.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;
  -webkit-transition: background 200ms ease 0s;
  transition: background 200ms ease 0s;
}

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

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

.nav-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 308px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background .2s;
  transition: background .2s;
  border-radius: 8px;
  overflow: hidden;
}

.nav-card__image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 110px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f5;
}

.nav-card__image-container.is-loading {
  background: linear-gradient(110deg, #EFF1F5 8%, #fafafb 18%, #EFF1F5 33%);
  background-size: 200% 100%;
  animation: 1.5s isLoading linear infinite;
  -webkit-animation: 1.5s isLoading linear infinite;
}

.nav-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav-card__image.hidden {
  opacity: 0;
  visibility: hidden;
}

.nav-card__copy-container {
  padding: 20px 16px;
}

.nav-card__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #9CA3AF;
  margin-bottom: 10px;
}

.nav-card__category .tag {
  margin-left: 8px;
}

.nav-card__category .contrast {
  color: #4B5563;
}

.nav-card__title {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #374151;
  -webkit-transition: color .2s;
  transition: color .2s;
}

.nav-card:hover {
  background: #FFFFFF;
}

.nav-card:hover__title {
  color: #111827;
}

.nav-card--long {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 490px;
  gap: 16px;
  max-height: 104px;
}

.nav-card--long .nav-card__image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  height: 104px;
}

.nav-card--long .nav-card__copy-container {
  padding: 0;
}

@-webkit-keyframes isLoading {
  to {
    background-position-x: -200%;
  }
}

@keyframes isLoading {
  to {
    background-position-x: -200%;
  }
}
