.carSteps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.rightDiv {
    width: 30%;
}

.leftDiv {
    width: 65%;
}

.carStepsTitle .stepTitle {
    font-family: "Rubik-Regular";
    font-weight: normal;
    color: #000;
    font-size: 1.6rem;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.carStepsTitle .stepTitle span {
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 10px;
    cursor: pointer;
}

.carStepsTitle .stepTitle.active {
    font-family: "Rubik-Bold";
    font-weight: normal;
    color: #0072bc;
    font-size: 2rem;
}

.carStepsTitle .stepTitle.active span {
    border-bottom: 1px solid #ff9b41;
}

.stepLists ul li{
    padding-bottom: 30px;
    position: relative;
}

.stepLists ul li p {
    font-family: "Rubik-Regular";
    font-weight: normal;
    color: #005596;
    font-size: 1.6rem;
    text-align: left;
    padding: 8px 0px 0px 80px;
}

.stepLists ul li p a {
    font-size: 1.6rem;
    color: #ff9b41;
    text-decoration: underline;
}

.stepLists ul li:before {
    width: 5px;
    height: 5px;
    position: absolute;
    content: '';
    background: #ff9b41;
    left: 50px;
    top: 11px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    border: 5px solid #fff;
    -webkit-box-shadow: 0px 0px 0 4px #0072bc;
    -moz-box-shadow: 0px 0px 0 4px #0072bc;
    -ms-box-shadow: 0px 0px 0 4px #0072bc;
    -o-box-shadow: 0px 0px 0 1px #0072bc;
    box-shadow: 0px 0px 0 1px #0072bc;
}

.stepLists ul li:after {
    width: 1px;
    height: 100%;
    left: 57px;
    top: 20px;
    z-index: -1;
    content: '';
    position: absolute;
    background: url(clientlib/images/border-grey.png) repeat 0 0;  
}

.stepLists ul li:last-child:after {
    display: none;
}

.stepLists ul li span {
    width: 38px;
    height: 38px;
    float: left;
    position: absolute;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background: #005596;
    left: 0;
    color: #fff;
    font-family: "Rubik-Regular";
    font-weight: normal;
    font-size: 1.6rem;
    text-align: center;
    line-height: 38px;
}

.stepLists ul li span:before {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 5px solid #005596;
    border-bottom: 5px solid transparent;
    position: absolute;
    content: '';
    right: -4px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.carStepsData {
    display: none;
}

/**********Media Query Start*************/
@media only screen and (max-width: 1024px) {
    .carStepsTitle .stepTitle.active {
        font-size: 1.7rem;
    }
}

@media only screen and (max-width: 767px) {
    .carSteps {
        display: block;
    }

    .rightDiv, .leftDiv {
        width: 100%;
    }

    .carStepsTitle ul{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .carStepsTitle .stepTitle:first-child {
        margin-right: 25px;
    }

    .carStepsTitle .stepTitle.active {
        font-size: 1.6rem;
    }

    .stepLists ul li p, .stepLists ul li p a {
        font-size: 1.4rem;
    }
}


@media only screen and (max-width: 360px) {
    .carStepsTitle .stepTitle, .carStepsTitle .stepTitle.active {
        font-size: 1.5rem;
    }
}

/**********Media Query End*************/