.new-steps {
    position: relative;
    padding: 80px 0;
    padding-bottom: 180px;
    overflow: hidden;
    z-index: 1;
    background-color: #F2F0ED;
    background-size: cover !important;
}

.new-steps .content-inner {
    padding: 40px 60px;
    background-color: #fff;
    border-radius: 25px;
    margin: 0 auto;
}

.new-steps .content-inner h2 {
    color: #6A6C9D;
    font-size: 48px;
    font-weight: 500;
    line-height: 100%;
}

.new-steps .background-image {
    height: auto;
    top: unset;
    overflow: visible;
}


.new-steps .steps-header .step {
    text-align: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding: 15px 0;
}

.new-steps .steps-header .step span {
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
}

.new-steps .new-steps .acf-steps-tabs {
    margin: 20px 0;
}

.new-steps .step-tabs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    gap: 25px;
}

.new-steps .step-tabs li {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    padding: 0 25px;
    border-radius: 10px;
}

.new-steps .step-tabs li.active {
    font-weight: bold;
}

.new-steps .step-tabs li svg {
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
}

.new-steps .step-tab-content-wrap .step-content {
    display: none;
}

.new-steps .step-tab-content-wrap .step-content.active {
    display: flex;
    gap: 100px;
    padding: 50px 50px 0 50px;
}

.new-steps .step-tab-content-wrap .step-content img {
    max-width: 120px;
    height: fit-content;
}

.new-steps .step-tab-content-wrap .step-content .title {
    font-size: 30px !important;
    color: #6A6C9D;
    margin-bottom: 20px;
}



@media only screen and (max-width: 1500px) {
    .new-steps {
        padding-top: 40px;
        padding-bottom: 115px;
    }
}

@media only screen and (max-width: 991px) {
    .new-steps .content-inner {
        padding: 30px;
    }
    .new-steps .step-tab-content-wrap .step-content.active {
        padding: 30px 0 0 0;
        gap: 30px;
    }
    .new-steps .step-tabs {
        gap: 10px;
    }
    .new-steps .step-tabs li {
        padding: 0 15px;
        border-width: 3px;
    }
    .new-steps .content-inner h2 {
        font-size: 38px;
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 768px) {
    .new-steps .steps-header {
        display: flex;
        justify-content: center;
    }
    .new-steps .step-tabs {
        justify-content: center;
    }
    .new-steps .step-tab-content-wrap .step-content img {
        width: 60px;
    }
    .new-steps .step-tab-content-wrap .step-content.active {
        flex-direction: column;
        align-items: center;
    }
    .new-steps .content-inner {
        padding: 40px 20px;
        text-align: center;
    }
    .new-steps .step-tab-content-wrap .step-content .title {
        text-align: center;
    }
    .new-steps .step-tab-content-wrap .step-content .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    } 
}