@charset "UTF-8";
section.block-stacked-cards {
  display: flex;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  padding-top: 50px;
  margin: 0px auto !important;
  box-sizing: border-box;
}
section.block-stacked-cards * {
  box-sizing: border-box;
}
@media (max-width: 768px) {
  section.block-stacked-cards {
    width: 100vw;
    max-width: 100vw;
    margin: 0 !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Un peu d'espace avant/après les cartes */
    padding-left: 20px;
    padding-right: 20px;
  }
  section.block-stacked-cards::-webkit-scrollbar {
    display: none;
  }
}
section.block-stacked-cards .block-stacked-cards__card {
  padding: 140px 50px 100px 50px;
  background: var(--background-gradient);
  border-radius: 60px 60px 0 0;
  position: relative;
  flex: 0 0 300px;
  color: var(--text-color);
  margin-bottom: -50px;
  transition: transform 0.3s ease-in-out, z-index 0.3s ease-in-out;
}
@media (max-width: 768px) {
  section.block-stacked-cards .block-stacked-cards__card {
    flex: 0 0 270px;
    max-width: 400px;
  }
}
section.block-stacked-cards .block-stacked-cards__card:not(:first-child) {
  margin-left: -100px;
}
@media (max-width: 768px) {
  section.block-stacked-cards .block-stacked-cards__card:not(:first-child) {
    margin-left: -190px;
  }
}
section.block-stacked-cards .block-stacked-cards__card:nth-child(1) {
  z-index: 5;
}
section.block-stacked-cards .block-stacked-cards__card:nth-child(2) {
  z-index: 4;
}
section.block-stacked-cards .block-stacked-cards__card:nth-child(3) {
  z-index: 3;
}
section.block-stacked-cards .block-stacked-cards__card:nth-child(4) {
  z-index: 2;
}
section.block-stacked-cards .block-stacked-cards__card:nth-child(5) {
  z-index: 1;
}
section.block-stacked-cards .block-stacked-cards__card:hover {
  z-index: 10;
  transform: translateY(-50px);
}
section.block-stacked-cards .block-stacked-cards__card .stacked-card__index {
  position: absolute;
  top: 35px;
  right: 35px;
  border: 1px solid var(--text-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 20px;
  color: var(--text-color);
  padding: 0;
}
section.block-stacked-cards .block-stacked-cards__card .stacked-card__index span {
  font-size: 20px;
  line-height: 20px;
  margin: 0;
  display: block;
}
section.block-stacked-cards .block-stacked-cards__card__content {
  min-height: 180px;
}
section.block-stacked-cards .block-stacked-cards__card__content h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--text-color);
}
section.block-stacked-cards .block-stacked-cards__card__content p {
  font-size: 16px;
  color: var(--text-color);
}