/**** fadeBox Slide Box ?  ****/
.fadeBox-container {
  position: relative;
  max-width: 1300px;
  width: 100%;
  margin: 2rem auto;
  overflow: hidden;
  background: #ffffff;
  /*box-shadow: 0 .4rem 2rem rgba(0, 0, 0, 0.3);*/
}

.fadeBox-wrapper {
  display: flex;
  transition: transform 0.4s ease;
}

.fadeBox-slide {
  position: absolute;
  min-width: 100%;
  max-width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  flex-direction: row;
  /*align-items: center;*/
  justify-content: left;
  padding: 1rem;
  z-index: 0;
  pointer-events: none;
  gap: 3rem;
}

.fadeBox-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.fadeBox-slide-illustration {
  background: transparent;
}

.fadeBox-slide-illustration img {
  max-width: 50rem;
  width: 100%;
  height: auto;
  /*border-radius: 0.8rem;*/
  border: 0.6rem solid #250614;
  object-fit: cover;
}

.fadeBox-slide-description {
  display: flex;
  flex-direction: column;
  max-width: 750px;
  width: 100%;
  padding: 0.5rem;
  gap: 1rem;
}

.fadeBox-slide-description h1 {
  font-weight: bold;
  font-size: var(--step-4);
  color: #981653;
  text-align: center;
  margin: 0;
  transition: transform 0.4s ease;
}

.fadeBox-slide-description h2 {
  font-weight: bold;
  font-size: var(--step-3);
  color: #981653;
  text-align: center;
  margin: 0;
  transition: transform 0.4s ease;
}

.fadeBox-slide-description h3 {
  font-weight: bold;
  font-size: var(--step-2);
  color: #981653;
  text-align: center;
  margin: 0;
  transition: transform 0.4s ease;
}

.fadeBox-slide-description p {
  display: block;
  min-height: 7.5rem;
  padding-top: 1.5rem;
  line-height: 2.5rem;
  font-weight: normal;
  font-size: var(--step-0);
  letter-spacing: 0px;
  text-align: center;
  color: #250614;
  margin: 0;
}

.fadeBox-fadeDots { /** = .carousel-dots **/
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.fadeBox-fadeDots button {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: none;
  background: rgba(125, 9, 9, 0.4);
  cursor: pointer;
}

.fadeBox-fadeDots button.active {
  background: #981653;
}