.seo-lines{
  position: relative;
  background-image: url('../img/lines.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.seo-lines .roadmap {
  width: 90%;
  max-width: 800px;
  margin: auto;
  position: relative;
}

.seo-lines .step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: -95px;
}
.seo-lines .roadmap .step:last-child svg.arrow{
	display:none;
}
.seo-lines .step.left {
  align-items: flex-end;
}

.seo-lines .content {
    background: white;
    border-radius: 16px;
    padding: 15px;
    width: 320px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    position: relative;
    transform: rotate(-4deg);
    z-index: 1;

}
.seo-lines .content .content-txt{
    border: 1px solid transparent;
    background: linear-gradient(341.29deg, #FFFFFF -34.9%, #CCE4F9 106.77%) padding-box, 
    linear-gradient(180deg, rgba(255, 255, 255, 0) 37%, #67AFEE 50%, #67AFEE 100%) border-box;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 15px 25px;
    border-radius: 16px;
}
.seo-lines .step.left .content {
  transform: rotate(4deg);
}
.seo-lines .content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.seo-lines .circle {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: rgba(38, 72, 199, 0.12) 0px 9px 18px 0px, rgba(38, 72, 199, 0.32) 0px 4px 32px 0px;
}
.seo-lines .circle .icon-wrapper {
    display: flex;
    justify-content: center;
}

.seo-lines h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #002b5b;
}

.seo-lines p {
  font-size: 14px;
  color: #333;
}

.seo-lines .arrow {
  position: absolute;
  top: 30%;
  left: 40%;
  transform: translateY(0);
  z-index: 0;
}

.seo-lines .step.right .arrow {
  right: 40%;
  left: auto;
  top: 28%;
}
.circle {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}


@media (max-width: 540px) {
  .seo-lines .step{
    margin-bottom: 100px;
  }
  .seo-lines .step:last-child{
    margin-bottom: 0;
  }
  .seo-lines .arrow{
    display: none;
  }
  .seo-lines .step:after{
    position: absolute;
    content: "";
    top: 90%;
    left: calc(50% - 30px);
    width: 60px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='200'%3E%3Cpath d='M 30 10 A 20 90 0 0 1 30 190' stroke='%23B1B2B2' stroke-width='3' stroke-dasharray='4,4' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .seo-lines .step:last-child:after{
    content: none;
  }
  .seo-lines .step.left:after{
    transform: rotate(180deg);
  }
}