/* SDX_NAVIGATION_REDESIGN_V1: offcanvas */
.sdx-offcanvas {
  display: grid;
  align-content: start;
  gap: 1.15rem;
  padding: .25rem .1rem .6rem;
  color: #344b63;
}

.sdx-offcanvas__kicker {
  margin: 0;
  color: #087b90;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sdx-offcanvas h2 {
  margin: -.15rem 0 0;
  color: #0b3440;
  font-size: clamp(1.85rem, 6vw, 2.55rem);
  font-weight: 820;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.sdx-offcanvas .sdx-offcanvas__intro {
  margin: 0;
  color: #526d75;
  line-height: 1.65;
}

.sdx-offcanvas__services {
  display: grid;
  gap: .65rem;
  margin-top: .15rem;
}

.sdx-offcanvas__services > a {
  display: grid;
  grid-template-columns: 2.55rem minmax(0, 1fr) auto;
  gap: .8rem;
  align-items: center;
  padding: .9rem;
  border: 1px solid rgb(8 123 144 / 15%);
  border-radius: 1rem;
  color: #264d58;
  background: rgb(255 255 255 / 74%);
  box-shadow: 0 .65rem 1.6rem rgb(18 69 78 / 5%);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sdx-offcanvas__services > a:hover,
.sdx-offcanvas__services > a:focus-visible {
  border-color: rgb(8 123 144 / 38%);
  box-shadow: 0 .8rem 1.8rem rgb(18 69 78 / 10%);
  transform: translateY(-1px);
}

.sdx-offcanvas__icon {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border-radius: .8rem;
  color: #087b90;
  background: #dff4f4;
  font-size: 1.05rem;
}

.sdx-offcanvas__services strong,
.sdx-offcanvas__services small {
  display: block;
}

.sdx-offcanvas__services strong {
  color: #123944;
  font-size: .95rem;
  line-height: 1.35;
}

.sdx-offcanvas__services small {
  margin-top: .22rem;
  color: #617981;
  font-size: .78rem;
  line-height: 1.45;
}

.sdx-offcanvas__services > a > .bi-arrow-up-right {
  color: #4c7c87;
  font-size: .85rem;
}

.sdx-offcanvas__repere {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .7rem;
  align-items: start;
  padding: .85rem .95rem;
  border-radius: .9rem;
  color: #28525d;
  background: #e5f3f3;
}

.sdx-offcanvas__repere > i {
  margin-top: .08rem;
  color: #087b90;
}

.sdx-offcanvas__repere strong,
.sdx-offcanvas__repere small {
  display: block;
}

.sdx-offcanvas__repere strong {
  color: #123944;
  font-size: .86rem;
}

.sdx-offcanvas__repere small {
  margin-top: .2rem;
  color: #617981;
  font-size: .75rem;
  line-height: 1.4;
}

.sdx-offcanvas__actions {
  display: grid;
  gap: .7rem;
  margin-top: .15rem;
}

.sdx-offcanvas__actions .btn {
  justify-content: center;
  border-radius: 999px;
  background: #087f95;
  border-color: #087f95;
  font-weight: 800;
}

.sdx-offcanvas__secondary {
  justify-self: center;
  color: #087383;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
}

.sdx-offcanvas__secondary:hover,
.sdx-offcanvas__secondary:focus-visible {
  text-decoration: underline;
  text-underline-offset: .22rem;
}

@media (max-width: 390px) {
  .sdx-offcanvas__services > a {
    grid-template-columns: 2.4rem minmax(0, 1fr);
  }

  .sdx-offcanvas__services > a > .bi-arrow-up-right {
    display: none;
  }
}