
        .author-journey{
            background: #000000;
            color:#fff;
            overflow:hidden;
        }

        .journey-title{
            font-size:32px;
            font-weight:700;
            letter-spacing:1px;
            margin-bottom:15px;
            text-transform:uppercase;
            color:#fff;
        }

        .title-divider{
            width:100px;
            height:3px;
            background:#ff9900;
            margin:0 auto;
            position:relative;
        }

        .title-divider::after{
            content:'';
            position:absolute;
            width:12px;
            height:12px;
            background:#ff9900;
            border-radius:50%;
            left:50%;
            top:50%;
            transform:translate(-50%,-50%);
        }

        .journey-step{
            position:relative;
            padding:20px 10px;
            text-align:center;
        }

        .icon-circle{
            width:90px;
            height:90px;
            margin:0 auto 15px;
            border:2px solid #ff9900;
            border-radius:50%;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:34px;
            color:#ff9900;
            background:rgba(255,255,255,0.03);
            transition:.3s;
        }

        .journey-step:hover .icon-circle{
            transform:translateY(-5px);
            box-shadow:0 0 20px rgba(255,153,0,.35);
        }

        .step-number{
            width:30px;
            height:30px;
            margin:0 auto 15px;
            border-radius:50%;
            background:#ff9900;
            color:#000;
            font-weight:700;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:14px;
        }

        .journey-step h6{
            font-size:14px;
            font-weight:700;
            margin-bottom:10px;
            color:#fff;
        }

        .journey-step p{
            font-size:13px;
            line-height:1.7;
            color:#d8d8d8;
            margin:0;
        }
        
        
.author-journey .row.g-7 .col-lg.col-md-4.col-6 {
    width: 14%;
}

@media (max-width:1180px){

.author-journey .row.g-7 .col-lg.col-md-4.col-6 {width: 20%;}

.journey-step::before {
    DISPLAY: NONE;
}
}

@media (max-width:1024px){

    .author-journey .row {
        flex-wrap: wrap;
    }
    
    .author-journey .row.g-7 .col-lg.col-md-4.col-6 {
        width: 33%;
    }  
    
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
}

        @media (min-width:992px){
            .journey-step::before{
                content:'';
                position:absolute;
                top:65px;
                right: -60%;
                width:100%;
                height:2px;
                background:#ffffff;
                z-index:0;
            }

            .col-lg:last-child .journey-step::before{
                display:none;
            }

            .icon-circle,
            .step-number{
                position:relative;
                z-index:2;
            }
        }


@media (max-width:767px){
    
    .journey-step {
        padding: 10px 5px;
    }
    
    .author-journey .row.g-7 .col-lg.col-md-4.col-6 {
        width: 50%;
    }
    
