/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.s-section-prestations--bg-white {
  background-color: var(--wp--preset--color--alteal-white, #ffffff);
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}
.s-section-prestations--bg-blue-light {
  background-color: var(--wp--preset--color--alteal-blue-light, #bfe9ff);
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}
.s-section-prestations--bg-green-light {
  background-color: var(--wp--preset--color--alteal-green-light, #ecffac);
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}
.s-section-prestations--bg-blue-dark {
  background-color: var(--wp--preset--color--alteal-blue-dark, #001a24);
  color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-section-prestations__inner {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6875rem;
}

.s-section-prestations__title {
  margin: 0;
  width: 100%;
  font-family: "Panton", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.125rem;
  color: inherit;
  word-break: break-word;
}
.s-section-prestations__title--h3 {
  font-family: "Panton", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75rem;
}
@media screen and (max-width: 991px) {
  .s-section-prestations__title--h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
@media screen and (max-width: 991px) {
  .s-section-prestations__title {
    font-size: 2rem;
    line-height: 2.25rem;
  }
  .s-section-prestations__title--h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

.s-section-prestations__grid {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1280px) {
  .s-section-prestations__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 991px) {
  .s-section-prestations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 580px) {
  .s-section-prestations__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.s-section-prestations__item {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
  min-height: 3rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 1.5rem;
  background-color: var(--wp--preset--color--alteal-blue-light, #bfe9ff);
  color: var(--wp--preset--color--alteal-blue-cta, #004e6a);
}
.s-section-prestations--bg-blue-light .s-section-prestations__item {
  background-color: var(--wp--preset--color--alteal-white, #ffffff);
}
.s-section-prestations--bg-blue-dark .s-section-prestations__item {
  background-color: var(--wp--preset--color--alteal-blue-light, #bfe9ff);
  color: var(--wp--preset--color--alteal-blue-cta, #004e6a);
}

.s-section-prestations__icon {
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 2.5rem;
  background-color: var(--wp--preset--color--alteal-blue-cta, #004e6a);
  overflow: hidden;
}

.s-section-prestations__icon-img {
  display: block;
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.s-section-prestations__label {
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625rem;
  line-height: 1rem;
  margin: 0;
  min-width: 0;
  word-break: break-word;
  color: inherit;
}