/* steps */

.steps .line{
    background: var(--electric_blue);
    background: linear-gradient(90deg, #9DC8EA 3.03%, #00C389 60.92%, #2D3494 114.36%);
    position: absolute;
    top: 78px;
    width: calc(100% - 260px);
    left: 130px;
    height: 3px;
}
.steps .item .image-wrapper{
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.steps .item .step{
    position: relative;
    z-index: 9999;
    color: #fff;
    font-family: var(--heading);
    font-size: 40px;
    font-weight: 700;
}
.steps .shape{
    width: 167px;
    height: 155px;
    background: var(--light_blue);
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.steps .item.step-3 .image-wrapper .shape{
    transform: rotate(25deg);
}
.steps .item.step-4 .image-wrapper .shape{
    transform: rotate(135deg);
}
.steps .shape.gradient_1{
    background: linear-gradient(180deg, #35B887 0%, #29345D 100%);
}
.steps .shape.gradient_2{
    background: linear-gradient(180deg, #14A2DC 0%, #35B887 100%);
}
.steps .shape.gradient_3{
    background: linear-gradient(180deg, #14A2DC 0%, #2D3185 100%);
}
.steps .shape.gradient_4{
    background: linear-gradient(180deg, #35B887 0%, #29345D 100%);
}

@media screen and (max-width: 991px){
    .steps .item{
        text-align: left!important;
        margin-bottom: 30px;
    }
    .steps .item:last-child{
        margin-bottom: 0;
    }
    .steps .item .content-wrapper{
        padding-left: 100px;
    }
    .steps .item .content-wrapper p:last-child{
        margin-bottom: 0;
    }
    .steps .line{
        height: calc(100% - 100px);
        width: 3px;
        left: 60px;
        top: 10px;
        background: linear-gradient(180deg, #9DC8EA 3.03%, #00C389 60.92%, #2D3494 114.36%);
    }
    .steps .item .wrapper{
        position: relative;
    }
    .steps .item .image-wrapper{
        position: absolute;
        left: 0;
        top: 0;
        height: 80px;
        width: 80px;
    }
    .steps .item .step{
        font-size: 30px;
    }
    .steps .shape{
        width: 80px;
        height: 80px;
    }
}


