.flow-container{
  width: calc(100% - 30px);
  margin: 10px auto 0;
}
.flow-container img{
  width:32%;
  display: block;
  margin:0 auto;
}
.flow-box {
  padding-bottom: 10px;
  position: relative;
}
.flow-box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -.75em;
  display: inline-block;
  vertical-align: middle;
  color: #9f9f9f;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) translateX(-50%) rotate(135deg);
}
.flow-box.last::after {
  content: none;
}
.flow-box-inner {
  border-radius: 40px;
  border: solid 2.5px var(--main-color);
  background-color: #fff;
  margin: 0 auto;
  padding: 8px 20px;
  position: relative;
}
.flow-box-inner h3{
  font-size: 1.5em;
}
.flow-box.last .flow-box-inner {
  background-color: var(--main-color);
  color: #fff;
}
.flow-circle{
  border-radius: 50px;
  background-color: var(--main-color);
  width: 40px;
  height: 40px;
  position: absolute;
  left: 10%;
  top: -28%;
}
.flow-circle.last{
  background-color: #fff;
  border: solid 2.5px var(--main-color);
}
.flow-number{
  position: absolute;
  top: 48%;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
.flow-number.last{
  color: var(--main-color);
}
@media (max-width: 767px) {
  body {
    font-weight: 400;
  }
  .interview-image-area .profile .profile-name {
    display: none;
  }
}
@media (min-width: 768px) {
  .interview-image-area .profile .profile-text {
    font-size: 100%;
  }
  .flow-container {
    width: 80%;
    margin-top: 40px;
  }
  .flow-box {
    padding-bottom: 20px;
    padding-right: 28px;
  }
  .flow-box::after {
    left: inherit;
    bottom: calc(50% - 5px);
    right: 0;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    transform: translateX(-25%) translateY(-50%) rotate(45deg);
  }
  .flow-circle {
    top: -18%;
  }
}
@media (min-width: 992px) {
  .flow-container {
    width: 70%;
  }
  .flow-box-inner {
    border-radius: 15px;
  }
  .flow-circle{
    border-radius: 50px;
    background-color: var(--main-color);
    width: 50px;
    height: 50px;
    position: absolute;
    left:1%;
    top:-25%;
  }
  .flow-circle-last{
    border-radius: 50px;
    background-color: #fff;
    border: solid 2px var(--main-color);
    width: 50px;
    height: 50px;
    position: absolute;
    left:-1%;
    top:-16%;
  }
}