.solution-how-it-works {
    padding:40px 0 136px;
}

.solution-how-it-works h1 {
    text-align: center;
}

.solution-how-it-works .single-step {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-top: -4.6%;
    position:relative;
}

.solution-how-it-works .single-step > div {
    width: 50%;
    position:relative;
}

.solution-how-it-works .steps > .single-step:nth-child(2n) {
    display: flex;
    flex-direction: row-reverse;
}

.solution-how-it-works .single-step > div.content-block {
    padding: 30px 28px 30px;
    border-radius: 3px;
    box-shadow: 10px 10px 25px 0 rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    max-width: 317px;
    z-index: 1;
    position: relative;
    margin:0 25px 25px;
}

.solution-how-it-works .single-step > div.empty-block .step-vertical-separator {
    position: absolute;
    content: '';
    height: 5px;
    background: url(https://www.realise.nl/hubfs/Mar%2021/Line%204.svg);
    width: calc(100% - 25px);
    left: calc(100% + 10px);
    z-index: -1;
    top: 0;
    bottom: 13px;
    margin: auto;
    background-size: auto 100%;
}

.steps > .single-step:last-child:after {
/*     position: absolute;
    content: '';
    position: absolute;
    content: '';
    height: 10000%;
    border-right: 5px dotted #f8bc06;
    width: 5px;
    left:2.5px;
    right:2.5px;
    top: auto;
    bottom: calc(50% - 5px);
    margin: auto;
    /* left: 2.5px; */
    /* right: 2.5px; */
    margin: 0 auto; */
}

.solution-how-it-works .steps .single-step:nth-child(2n) > div.empty-block .step-vertical-separator {
    left: auto;
    right: calc(100% + 10px);
}

.solution-how-it-works .single-step > div.content-block {
    padding: 27px 28px 30px;
    border-radius: 3px;
    box-shadow: 10px 10px 25px 0 rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    max-width: 317px;
    z-index: 1;
    position: relative;
}

.solution-how-it-works .single-step > div.content-block p:last-of-type {
    margin-bottom:0;
}

.solution-how-it-works h1 {
    text-align: center;
}

.solution-how-it-works .steps {
    position: relative;
    padding-top: 105px;
    overflow-y:hidden;
}

@media (max-width:767px) {
  
  .solution-how-it-works {
      padding: 40px 0 46px;
  }

  .solution-how-it-works .steps:before {
    display:none;
  }
  
  .solution-how-it-works .single-step {
      display: block;
      margin-top: 0;
      margin-bottom: 30px;
  }
  
  .solution-how-it-works .steps:before {
        display: none;
    }

    .solution-how-it-works .single-step > div {
        width: auto;
    }

    .solution-how-it-works .single-step > div.empty-block:before {
        display: none;
    }

    .solution-how-it-works .steps {
        padding-top: 40px;
    }
  
    
}


/* Separator */

.steps-wrapper {
    position:relative;
}



.steps-wrapper.visible span.separator {
    height: 100%;
    position: absolute;
    background: url(https://www.realise.nl/hubfs/Mar%2021/Line%202.svg);
    width: 5px;
    background-size: 100% auto;
    left: 0;
    right: 0;
    margin: auto;
    animation-name: steps-line;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;


}
.solution-how-it-works .steps-wrapper.visible .single-step:nth-child(n+1)>div.empty-block .step-vertical-separator {
    width:0;
    animation-name: steps-line-left;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-duration:1.5s;
}

@keyframes steps-line {
  0%   { height:0px;}
  100% {height:100%;}
}

@keyframes steps-line-left {
  0%   { width:0px;}
  100% {width:calc(40% - 28px);}
}

@keyframes content-left {
  0%   { opacity:0; left:-10px;} 
  100% { opacity:1; left:0px;}
}

@media (min-width:768px) {
  .solution-how-it-works .steps-wrapper .single-step:nth-child(n+1)>div.empty-block .step-vertical-separator {
    width:0;
  }
  
  .solution-how-it-works .steps-wrapper.visible .single-step .content-block {
    left:-10px;
    opacity:0;
    animation-name: content-left;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-duration:1.5s;
  }
}

@media (max-width:767px) {
.solution-how-it-works .single-step>div.empty-block .step-vertical-separator {
    display: none;
}
  
  .steps-wrapper span.separator {
    display:none;
  }
  .solution-how-it-works .single-step > div.content-block {
    margin:0 auto;
  }
}