/* stylelint-disable scss/dollar-variable-empty-line-before */
/* Thematics colors (figma token color) */
/* Containers */
/* stylelint-disable scss/dollar-variable-empty-line-before */
/* stylelint-disable scss/dollar-variable-empty-line-before */
/* Deprecated media queries */
/* stylelint-disable scss/dollar-variable-empty-line-before */
@keyframes ci-spin-keyframes {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.cd-anim-spin {
  animation: ci-spin-keyframes 2s infinite linear;
}

:root .hidden {
  display: none !important;
}

:root .shadow-400 {
  box-shadow: 0 -20px 40px rgba(17, 36, 54, 0.04), 0 30px 50px rgba(17, 36, 54, 0.04);
}
:root .shadow-500 {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.15);
}
:root .shadow-600 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.15);
}
:root .shadow-700 {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05), 0 15px 25px rgba(0, 0, 0, 0.15);
}
:root .shadow-800 {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
:root .shadow-none {
  box-shadow: none;
}

/* Media queries */
/* Durations */
/* Sticky header heights */
/* Blog Breadcrumb heights */
.bloc-cards-with-icon .bloc-cards-with-icon__cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(236px, 100%), 1fr));
  grid-auto-rows: 1fr;
}
.bloc-cards-with-icon .bloc-cards-with-icon__card {
  background: #fbeada;
  align-items: center;
  --card-gap: 24px;
  --card-padding: 32px;
}
.bloc-cards-with-icon .bloc-cards-with-icon__card-img {
  object-fit: contain;
}
.bloc-cards-with-icon .bloc-cards-with-icon__card-title {
  font-family: "Crimson Pro", system-ui, "Helvetica Neue", "Arial", "sans-serif";
  margin-top: 8px;
}
.bloc-cards-with-icon .carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
@media only screen and (min-width: 576px) {
  .bloc-cards-with-icon .carousel-indicators {
    display: none;
  }
}
.bloc-cards-with-icon .carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  padding: 0;
  border: none;
  transition: background 0.3s ease;
  min-height: 0;
}
.bloc-cards-with-icon .carousel-indicator:not(.active) {
  --bg-color: #dfdfe2;
}
@media only screen and (max-width: 575px) {
  .bloc-cards-with-icon .bloc-cards-with-icon__cards {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    scroll-snap-type: x mandatory;
    padding: 16px 24px;
    left: 50%;
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    scroll-padding: 24px;
  }
  @supports (width: 100dvw) {
    .bloc-cards-with-icon .bloc-cards-with-icon__cards {
      width: 100dvw;
      margin-left: -50dvw;
    }
  }
  .bloc-cards-with-icon .bloc-cards-with-icon__card {
    width: 80vw;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  @supports (width: 80dvw) {
    .bloc-cards-with-icon .bloc-cards-with-icon__card {
      width: 80dvw;
    }
  }
}
