﻿
.flow-wrapper {
    display: flex;
    margin: 20px 0;
}
.flow-step {
    border-radius: 8px;
    padding: 15px;
    width: 19%;
    min-width:200px;
    background-color: #ccc;
    color: #fff;
    min-height: 400px;
}
@media (max-width: 991px) {
    .flow-step {
      width:90%;
      min-height: 300px;
      margin-bottom:15px;
    }
    .arrow-right{display:none;}
    .flow-wrapper {
        display: block;
    }
  }
.flow-step h3{
    color:#fff;
    font-size:25px;
    margin:20px 0;
}
.flow-step p{
    color:#fff;
}
    .flow-step.one {
        background-color: #37A1AF;
    }

    .flow-step.two {
        background-color: #3AA9B8;
    }

    .flow-step.three {
        background-color: #4AB7C6;
    }

    .flow-step.four {
        background-color: #70C6D2;
    }

    .flow-step.five {
        background-color: #FFAA01;
    }


.arrow-right {
    margin: 30px -15px 0 0;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid green;
    z-index: 1;
}

    .arrow-right.one {
        border-left: 30px solid #37A1AF;
    }

    .arrow-right.two {
        border-left: 30px solid #3AA9B8;
    }

    .arrow-right.three {
        border-left: 30px solid #4AB7C6;
    }

    .arrow-right.four {
        border-left: 30px solid #70C6D2;
    }
