.circulation .img {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .circulation .img {
    flex-direction: column;
    align-items: center;
  }
}

.circulation img {
  width: 100%;
}

.circulation figure {
  position: relative;
}

@media screen and (max-width: 767px) {
  .circulation figure:nth-child(1) img {
    height: 25rem;
  }
}

.circulation figure:nth-child(2):before {
  content: '';
  position: absolute;
  background: #b5b5b6;
  transition: height .4s;
}

@media screen and (min-width: 768px) {
  .circulation figure:nth-child(2):before {
    left: -3rem;
    top: 0;
    height: 0;
    width: 1px;
  }
}

@media screen and (max-width: 767px) {
  .circulation figure:nth-child(2):before {
    transition-property: width;
    height: 1px;
    width: 0;
    left: 0;
    top: -1.4rem;
  }
}

@media screen and (min-width: 768px) {
  .circulation figure.show:before {
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .circulation figure.show:before {
    width: 100%;
  }
}

.circulation figure.show img {
  opacity: 1;
}

.circulation figure.show .svg {
  opacity: 1;
}

.circulation figure.show .svg .draw-mask-line {
  animation: draw-line 2s ease-in-out forwards;
}

.circulation figure img {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: 34.7rem;
  transition: opacity .3s ease-in;
}

.circulation figure img:nth-child(1) {
  transition-delay: 0s;
}

.circulation figure img:nth-child(2) {
  transition-delay: 0.1s;
}

.circulation figure img:nth-child(3) {
  transition-delay: 0.2s;
}

.circulation figure img:nth-child(4) {
  transition-delay: 0.3s;
}

.circulation figure img:nth-child(5) {
  transition-delay: 0.4s;
}

.circulation figure img:nth-child(6) {
  transition-delay: 0.5s;
}

.circulation figure img:nth-child(7) {
  transition-delay: 0.6s;
}

.circulation figure img:nth-child(8) {
  transition-delay: 0.7s;
}

.circulation figure img:nth-child(9) {
  transition-delay: 0.8s;
}

.circulation figure img:nth-child(10) {
  transition-delay: 0.9s;
}

.circulation figure img:nth-child(11) {
  transition-delay: 1s;
}

.circulation figure img:nth-child(12) {
  transition-delay: 1.1s;
}

.circulation figure img:nth-child(13) {
  transition-delay: 1.2s;
}

.circulation figure img:nth-child(14) {
  transition-delay: 1.3s;
}

@media screen and (max-width: 767px) {
  .circulation figure img {
    height: 20rem;
  }
}

.circulation figure img:nth-child(1) {
  position: static;
}

.circulation .svg {
  transition: opacity .3s ease-in 1s;
  opacity: 0;
  position: absolute;
  top: -1.2rem;
  left: 0;
}

@media screen and (max-width: 767px) {
  .circulation .svg {
    top: 0;
  }
}

.circulation .svg svg {
  aspect-ratio: 139 / 186;
  height: 37.4rem;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .circulation .svg svg {
    height: 25rem;
  }
}

.circulation .svg .cls-1 {
  fill: none;
  stroke: #91bee6;
  stroke-dasharray: 0 0 .14 4.67;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8px;
}

.circulation .svg .cls-2 {
  fill: #fff;
  opacity: 0;
  stroke-width: 0px;
}

.circulation .svg .draw-mask-line {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 455.18;
  stroke-dashoffset: 455.18;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

/*# sourceMappingURL=add.css.map */