.steps-con{
    background: var(--purple-color);
}
.steps-con .generic-title > span{
    color: var(--white-color);
}
.steps-box {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 22% 22% 22% 22%;
}
.steps-box-img figure{
    width: 130px;
    height: 130px;
    display: flex;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}
.steps-box .steps-box-item:first-child .steps-box-img figure,
.steps-box .steps-box-item:first-child .steps-box-img figure:before,
.steps-box .steps-box-item:first-child .steps-box-img figure:after{
    background: #abdfcd;
}
.steps-box .steps-box-item:nth-child(2) .steps-box-img figure,
.steps-box .steps-box-item:nth-child(2) .steps-box-img figure:before,
.steps-box .steps-box-item:nth-child(2) .steps-box-img figure:after{
    background: #ffecda;
}
.steps-box .steps-box-item:nth-child(3) .steps-box-img figure,
.steps-box .steps-box-item:nth-child(3) .steps-box-img figure:before,
.steps-box .steps-box-item:nth-child(3) .steps-box-img figure:after{
    background: #e7dcf7;
}
.steps-box .steps-box-item:last-child .steps-box-img figure,
.steps-box .steps-box-item:last-child .steps-box-img figure:before,
.steps-box .steps-box-item:last-child .steps-box-img figure:after{
    background: #fae8bd;
}
.steps-box-img figure img{
    transition: all 0.4s ease-in-out;
}
.steps-box-img:hover figure img{
    transform: translateY(5px);
}
.step-value{
    top: -2px;
    left: -10px;
    width: 44px;
    height: 44px;
    display: flex;
    font-size: 16px;
    position: absolute;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    background: var(--primary--color);
    border: 2px solid var(--white-color);
    box-shadow: 30px 30px 30px rgb(0 0 0 / 15%);
}
.steps-box-img {
    position: relative;
    width: max-content;
    margin:0 auto 80px;
    display: inline-block;
}
.steps-box-img figure:after{
    left: 50%;
    width: 3px;
    content: "";
    height: 30px;
    bottom: -30px;
    position: absolute;
    transform: translateX(-50%);
}
.steps-box-img figure:before{
    left: 50%;
    content: "";
    width: 25px;
    height: 25px;
    bottom: -55px;
    border-radius: 50%;
    position: absolute;
    transform: translateX(-50%);
}
.steps-box-item h4{
    padding: 0 31px;
    color: var(--white-color);
}
.steps-box-item {
    display: flex;
    flex-direction: column;
}
.steps-box-item p{
    margin-top: auto;
}
@media only screen and (max-width: 1440px) {
    .steps-box-img {
        margin: 0 auto 70px;
    }
}
@media only screen and (max-width: 1199px) {
    .steps-box-img figure {
        width: 120px;
        height: 120px;
    }
    .step-value {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
    .steps-box-img figure:before {
        width: 20px;
        height: 20px;
        bottom: -45px;
    }
}
@media only screen and (max-width: 991px) {
    .steps-box {
        gap: 30px;
        grid-template-columns: 48% 48%;
    }
    .steps-box-img figure {
        width: 110px;
        height: 110px;
    }
    .steps-box-img {
        margin: 0 auto 60px;
    }
}
@media only screen and (max-width: 767px) {
    .steps-box {
        gap: 20px;
    }
    .steps-box-img figure {
        width: 100px;
        height: 100px;
    }
}
@media only screen and (max-width: 575px) {
    .steps-box {
        gap: 14px;
    }
    .steps-box-img figure {
        width: 90px;
        height: 90px;
    }
    .step-value {
        width: 30px;
        height: 31px;
        font-size: 10px;
    }
    .steps-box-item h4 {
        padding: 0;
    }
}