.rupture-product {
  width: 100%;
  height: 60vh;
  margin-top: 2rem;
  min-height: 400px;
  max-height: 700px;
  position: relative;
}
.rupture-product__item {
  position: relative;
}
.rupture-product__image-body {
  height: 100%;
  width: 100%;
  position: relative;
}
.rupture-product__image-item {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rupture-product__text {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 20% 10% 10%;
  row-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.rupture-product__text .heading-01 {
  text-transform: uppercase;
}
.rupture-product.rupture-product--single .rupture-product__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.rupture-product.rupture-product--double {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 1rem;
}
.rupture-product.rupture-product--double .rupture-product__item {
  width: 100%;
  height: 50%;
}
.rupture-product__puce {
  position: absolute;
  z-index: 3;
  cursor: pointer;
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.7);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}
.rupture-product__puce:hover .item__cta {
  background: white;
}
.rupture-product__puce:hover .item__cta .item__message {
  display: none;
}
.rupture-product__puce .item__cta {
  cursor: pointer;
  position: relative;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 10px;
}
.rupture-product__puce .item__cta.pulse {
  z-index: 2;
  animation: pulse-animation 1.5s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1rem;
}
.rupture-product__puce .item__cta .item__message {
  bottom: -270%;
  transition: 0.2s all ease-in;
  z-index: 3;
  border-radius: 2rem;
  position: absolute;
  transform: translate(-50%);
  left: 50%;
  padding: 0.15rem 0.7rem 0 0.5rem;
  opacity: 0;
  color: black;
  height: auto;
  background: white;
  display: none;
}
.rupture-product__puce .item__cta .item__message .item__text {
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}

.rupture-empty {
  width: 0;
  height: 0;
}

@media (min-width: 1024px) {
  .rupture-product__text {
    justify-content: center;
    padding: 10% 15% 0;
  }
  .rupture-product.rupture-product--double {
    flex-direction: row;
  }
  .rupture-product.rupture-product--double .rupture-product__item {
    width: 50%;
    height: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .rupture-product__puce:hover .item__cta .item__message {
    height: auto;
    opacity: 1;
    bottom: -160%;
    display: block;
  }
  .rupture-product__puce .item__cta {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 1440px) {
  .rupture-product__text {
    padding: 15% 25% 0;
  }
}

@media (max-width: 1023px) {
  .rupture-product.rupture-product--double {
    height: 100vh;
  }
}

/*# sourceMappingURL=/rupture-n1.a9179eb7.css.map */