.hpw-process {
    text-align: center;
}

.hpw-process h2 {
    font-size: 32px; font-weight:600;
    margin-bottom: 10px;
}

.hpw-process p {
    color: #777;
    margin-bottom: 20px;
}

.hpw-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

/* LINE */
.hpw-line::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: #ddd;
}

.hpw-line::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 5%;
    width: 0;
    height: 2px;
    background: #1f3c88;
    transition: width 1s ease;
}

.hpw-line.animate::after {
    width: 90%;
}

/* STEP */
.hpw-step {
    width: 23%;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s;
}

.hpw-line.animate .hpw-step {
    opacity: 1;
    transform: translateY(0);
}

.hpw-step:nth-child(1){transition-delay:.1s;}
.hpw-step:nth-child(2){transition-delay:.2s;}
.hpw-step:nth-child(3){transition-delay:.3s;}
.hpw-step:nth-child(4){transition-delay:.4s;}

/* CIRCLE */
.hpw-circle {
    width: 60px;
    height: 60px;
    background: #1f3c88;
    color: #fff;
    border-radius: 50%;
    line-height: 60px;
    margin: auto;
    transition: 0.3s;
}

/* HOVER */
.hpw-step:hover .hpw-circle {
    transform: scale(1.15);
    background: #ff6b35;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hpw-step h4 {
    margin-top: 15px;
    transition: 0.3s;
	color: #000;
    font-weight: bold;
}

.hpw-step:hover h4 {
    transform: translateY(-5px);
}

/* MOBILE */
@media(max-width:768px){
    .hpw-steps {flex-wrap:wrap;}
    .hpw-step {width:50%; margin-bottom:30px;}
}
