.list-flow-chart {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.list-flow-chart > li {
  border-top: 2px solid var(--dark-gold);
  width: 260px;
  background: var(--beige);
  padding-bottom: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.list-flow-chart > li > span {
  display: block;
  width: fit-content;
  text-transform: uppercase;
  font-size: var(--fz12);
  font-weight: 700;
  padding: 0 23px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  background: var(--dark-gold);
  color: #fff;
}

[lang="en"] .list-flow-chart > li > span {
  min-height: 32.4px;
}

.list-flow-chart > li > span b {
  font-size: var(--fz18);
}

.list-flow-chart > li:not(:first-child)::after {
  content: '';
  display: block;
  width: 24px;
  height: 16px;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: var(--gold);
  position: absolute;
  top: -28px;
  left: 50%;
  translate: -50% 0;
}

.list-flow-chart > li > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.list-flow-chart > li img {
  display: block;
  margin: 16px auto 0;
}

.list-flow-chart > li p {
  margin-top: 16px;
  text-align: center;
  font-weight: 700;
  flex: 1;
  display: grid;
  place-items: center;
}

@media (min-width:768px) {
  .list-flow-chart {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .list-flow-chart > li {
    width: calc((100% - 36px - 48px) / 3 );
  }

  .list-flow-chart > li:not(:first-child)::after {
    width: 12px;
    height: 20px;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    top: 50%;
    left: -17px;
    translate: 0 -50%;
  }

  .list-flow-chart > li p {
    margin-top: 16px;
    text-align: center;
    font-weight: 700;
    
  }

}

@media (min-width:1200px) {
  .list-flow-chart {
    gap: 90px 50px;
    position: relative;
  }
  .list-flow-chart > li {
    width: calc((100% - 150px) / 4 );
    min-height: 214px;
    padding: 0;
  }

  .list-flow-chart > li:not(:first-child)::after {
    width: 16px;
    height: 24px;
    left: -32px;
  }

   .list-flow-chart > li:nth-child(5)::after {
    content: none;
  }
    
  .list-flow-chart > li img {
    display: block;
    margin: 8px auto 0;
  }

  .list-flow-chart > li p {
    font-size: var(--fz20);
    margin-top: 8px;
    margin-bottom: 14px;
  }

  
  [lang="en"] .list-flow-chart > li:nth-child(6) {
    line-height: 1;
  }

  [lang="en"] .list-flow-chart > li:nth-child(6) > span {
    padding-top: 6px;
  }

  .list-flow-chart::after {
    content: '';
    display: block;
    width: 810px;
    height: 62px;
    background: url(/assets/img/img_410_flow_arrow.svg) no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }
}