.editorBox {
  position: relative;
  z-index: 3;
  padding: 50px 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 640px) {
  .editorBox {
    padding: 30px 0;
  }
}
@media (min-width: 641px) {
  .editorBox.main + .dataBox {
    padding-top: 0;
  }
}

@media (min-width: 641px) {
  .dataBox {
    padding: 70px 0;
  }
}
.dataBox .editorBox:nth-child(even) {
  background-color: #fafafa;
}
@media (min-width: 641px) {
  .dataBox .editorBox {
    position: relative;
  }
  .dataBox .editorBox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: #ebebeb;
  }
  .dataBox .editorBox:first-child::after, .dataBox .editorBox:last-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 2px);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #c0c0c0;
  }
  .dataBox .editorBox:last-child::after {
    top: calc(100% - 5px);
  }
  .dataBox .editorBox .column.half {
    position: relative;
  }
  .dataBox .editorBox .column.half::after {
    content: "";
    position: absolute;
    top: 330px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #c0c0c0;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  .dataBox .editorBox .column.half:nth-child(odd) {
    padding-right: 60px;
  }
  .dataBox .editorBox .column.half:nth-child(odd)::before {
    content: "";
    position: absolute;
    top: 330px;
    right: -35px;
    width: 70px;
    height: 1px;
    background-color: #ebebeb;
  }
  .dataBox .editorBox .column.half:nth-child(odd)::after {
    right: 35px;
  }
  .dataBox .editorBox .column.half:nth-child(even) {
    padding-left: 60px;
  }
  .dataBox .editorBox .column.half:nth-child(even)::before {
    content: "";
    position: absolute;
    top: 330px;
    left: -4px;
    width: 9px;
    height: 9px;
    border: 2px solid #a40228;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  .dataBox .editorBox .column.half:nth-child(even)::after {
    left: 35px;
  }
}
.dataBox .textEditor .contentBuilder p {
  font-size: 13px;
}