div.etapes div.etape {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  div.etapes div.etape {
    flex-wrap: wrap;
    margin-bottom: 150px;
  }
}
div.etapes div.etape div.left {
  flex: 0 0 40%;
  padding: 0 50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  div.etapes div.etape div.left {
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  div.etapes div.etape div.left {
    flex: 1 0 100%;
  }
}
div.etapes div.etape div.line {
  flex: 0 0 200px;
  position: relative;
  z-index: -1;
  height: 700px;
}
@media screen and (max-width: 1024px) {
  div.etapes div.etape div.line {
    flex: 0 0 140px;
  }
}
@media screen and (max-width: 767px) {
  div.etapes div.etape div.line {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
  }
}
div.etapes div.etape div.line svg {
  position: absolute;
  top: 0;
  height: 100%;
  width: auto;
}
div.etapes div.etape div.right {
  position: relative;
  z-index: 1;
  flex: 0 0 45%;
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  div.etapes div.etape div.right {
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  div.etapes div.etape div.right {
    flex: 1 0 100%;
  }
}
div.etapes div.etape div.img-sizer {
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 55%;
  transition: 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
}
div.etapes div.etape div.img-sizer img {
  translate: 20px 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
div.etapes div.etape h3 {
  font-family: "Scarlet-Jazz";
  font-weight: 400;
  font-size: 38px;
  line-height: 40px;
  color: var(--e-global-color-primary);
  margin: 0 0 10px;
  text-align: center;
  transition: 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
div.etapes div.etape div.description {
  transition: 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
div.etapes div.etape div.description p {
  font-size: 17px;
  line-height: 22px;
  color: var(--e-global-color-text);
  margin-bottom: 0;
  text-align: center;
}
div.etapes div.etape:nth-child(n) div.img-sizer:before {
  content: none;
}
div.etapes div.etape:nth-child(n) div.img-sizer:after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--e-global-color-primary);
  position: absolute;
  top: 10%;
  right: -193px;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 1024px) {
  div.etapes div.etape:nth-child(n) div.img-sizer:after {
    right: -174px;
  }
}
@media screen and (max-width: 767px) {
  div.etapes div.etape:nth-child(n) div.img-sizer:after {
    content: none;
  }
}
div.etapes div.etape:nth-child(n) div.img-sizer img {
  transition: 0.3s ease-out;
  transform: rotate(0deg);
}
div.etapes div.etape:nth-child(n).active div.img-sizer img {
  transform: rotate(-3deg);
}
div.etapes div.etape:nth-child(n).active div.img-sizer:after {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
div.etapes div.etape:nth-child(2n) div.img-sizer {
  transform: rotate(0deg);
}
div.etapes div.etape:nth-child(2n) div.img-sizer:after {
  content: none;
}
div.etapes div.etape:nth-child(2n) div.img-sizer:before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--e-global-color-primary);
  position: absolute;
  top: 10%;
  left: -120px;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 1024px) {
  div.etapes div.etape:nth-child(2n) div.img-sizer:before {
    left: -38px;
  }
}
@media screen and (max-width: 767px) {
  div.etapes div.etape:nth-child(2n) div.img-sizer:before {
    content: none;
  }
}
div.etapes div.etape:nth-child(2n) div.img-sizer img {
  transition: 0.3s ease-out;
  transform: rotate(0deg);
}
div.etapes div.etape:nth-child(2n).active div.img-sizer img {
  transform: rotate(3deg);
}
div.etapes div.etape:nth-child(2n).active div.img-sizer:before {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
div.etapes div.etape:first-child div.left {
  margin-top: 150px;
}
div.etapes div.etape:first-child div.img-sizer:after {
  right: -121px;
}
@media screen and (max-width: 1024px) {
  div.etapes div.etape:first-child div.img-sizer:after {
    right: 110px;
  }
}
div.etapes div.etape.active h3 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
div.etapes div.etape.active div.description {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
div.etapes div.etape.active div.img-sizer {
  opacity: 1;
  visibility: visible;
}
div.etapes div.etape.active div.img-sizer img {
  translate: 0px 0px;
}
