:root {
  font-size: 62.5%;
}

.backend a {
  pointer-events: none !important;
}

.block-valeurs {
  max-width: 1360px;
  margin: 40px auto;
}
.block-valeurs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  max-width: 1380px;
  margin: 0 auto;
}
.block-valeurs__card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 480px;
          flex: 1 1 480px;
  max-width: 692px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #FFFFFF;
  border: 2px solid rgba(106, 114, 130, 0.2);
  border-radius: 35px;
  padding: 38px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.block-valeurs__card:nth-child(odd) {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}
.block-valeurs__card:nth-child(even) {
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
  margin-top: 56px;
}
.block-valeurs__card:hover {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-box-shadow: 0 18px 40px rgba(28, 28, 28, 0.08);
          box-shadow: 0 18px 40px rgba(28, 28, 28, 0.08);
}
.block-valeurs__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--carte-bg, #59C15B);
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 20px;
}
.block-valeurs__icon img {
  display: block;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.block-valeurs__title {
  margin: 0 0 12px;
  font-family: "General Sans", sans-serif;
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  color: #1C1C1C;
}
.block-valeurs__content {
  font-size: 18px;
  line-height: 29.25px;
  color: #1C1C1C;
}
.block-valeurs__content > :first-child {
  margin-top: 0;
}
.block-valeurs__content > :last-child {
  margin-bottom: 0;
}
.block-valeurs__content p {
  margin: 0 0 12px;
}
.block-valeurs__content a {
  color: #5980F7;
  text-decoration: underline;
}
.block-valeurs__content ul,
.block-valeurs__content ol {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.block-valeurs__content li {
  position: relative;
  padding-left: 18px;
}
.block-valeurs__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: #FF5959;
  border-radius: 20px;
}
.block-valeurs__content ol {
  counter-reset: valeurs-li;
}
.block-valeurs__content ol li {
  counter-increment: valeurs-li;
}
.block-valeurs__content ol li::before {
  content: counter(valeurs-li);
  background: transparent;
  color: #FF5959;
  font-weight: 600;
  width: auto;
  height: auto;
  top: 0;
  border-radius: 0;
}
@media (max-width: 781px) {
  .block-valeurs__inner {
    gap: 20px;
  }
  .block-valeurs__card, .block-valeurs__card:nth-child(odd), .block-valeurs__card:nth-child(even) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    max-width: 100%;
    -webkit-transform: none;
            transform: none;
    margin-top: 0;
    padding: 28px;
  }
  .block-valeurs__title {
    font-size: 30px;
    line-height: 36px;
  }
  .block-valeurs__content {
    font-size: 16px;
    line-height: 26px;
  }
  .block-valeurs__icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
  }
  .block-valeurs__icon img {
    width: 48px;
    height: 48px;
  }
}