.steps_module {
    color: var(--soltech-color--violet);
    padding: calc(var(--margin-top) * 1.5) 0 0 0;
}

.steps_module.bg_full:after {
    background: var(--soltech-color--light-beige);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.steps_module.bg_full > .container {
    position: relative;
    z-index: 1;
}

.steps_module .steps_col {
    margin: 0 auto;
}

.steps_module .steps_list {
    position: relative;
    padding: 54px calc(var(--margin-top) * 1.5) 52px;
    margin: 0 auto;
}

.steps_module.bg_fixed .steps_list {
    background: var(--soltech-color--light-beige);
}

.steps_module .step_content p:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

.steps_module .step_content .sub_title {
    margin-bottom: 0;
    margin-top: 1.5rem;
}

.steps_module .step_content img {
    width: 100%;
}

.steps_module .step_content .wpforms-container {
    margin: 0;
    width: 100%;
    max-width: none;
}

/* .steps_module .steps_list::before {
    position: absolute;
    background: var(--soltech-color--violet);
    display: block;
    content: '';
    width: 4px;
    top: 100px;
    left: 126px;
    bottom: 100px;
} */

.steps_module .steps_list .step_item {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 76px;
    position: relative;
    font-size: 72px;
}

.steps_module .steps_list .step_item::before {
    position: absolute;
    background: var(--soltech-color--violet);
    display: block;
    content: '';
    width: 4px;
    top: 4px;
    left: 92px;
    bottom: 0;
}

.steps_module .steps_list .step_item:first-of-type::before {
    display: block;
}

.steps_module .steps_list .step_item:last-of-type::before {
    display: none;
}

.steps_module .steps_list .step_item:last-child {
    padding-bottom: 0;
}

.steps_module .steps_list .step_item .step_circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 184px;
    height: 184px;
    border-radius: 50%;
    margin-right: 36px;
}

.steps_module .steps_list .step_item.number .step_circle,
.steps_module .steps_list .step_item.custom .step_circle {
    background-color: var(--soltech-color--light-beige);
    border: 4px solid var(--soltech-color--violet);
    font-size: 1em;
    font-weight: 300;
    text-align: center;
    padding: 10px;
    line-height: 1;
}

.steps_module .steps_list .step_item.image .step_circle {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.steps_module .steps_list .step_item .step_content {
    flex: 1;
    font-size: 1rem;
}

.steps_module .step_content .step_title {
    margin-top: -6px;
    margin-bottom: 0;
}

.steps_module .step_content_section.vertical_layout .step_content_image {
    margin-top: 24px;
}

.steps_module .step_content_section.vertical_layout .step_content_image.cover {
    height: 400px;
}

.steps_module .step_content_section.vertical_layout .step_content_image.cover img {
    height: 100%;
    object-fit: cover;
}

.steps_module .step_content_section.vertical_layout .step_content_image.contain img {
    height: 100%;
    object-fit: contain;
}


.steps_module .step_content .step_content_section.horizontal_layout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.steps_module .step_content_section.horizontal_layout .step_text {
    flex: 3;
}

.steps_module .step_content_section.horizontal_layout .step_content_image {
    flex: 2;
    margin-top: 24px;
}

.steps_module .step_content_section.horizontal_layout .step_content_image.cover {
    height: 200px;
}

.steps_module .step_content_section.horizontal_layout .step_content_image.cover img {
    height: 100%;
    object-fit: cover;
}

.steps_module .step_content_section.horizontal_layout .step_content_image.contain img {
    height: 100%;
    object-fit: contain;
}


.steps_module .step_content .step_text {
    line-height: 1.5;
    padding-top: 24px;
}

.steps_module .step_content .step_text > *:last-child {
    margin-bottom: 0;
}

.steps_module .step_text .wpforms-container {
    margin-left: 0;
}

.steps_module .step_text .wpforms-submit-container {
    text-align: right;
}

.steps_module .step_content .step_buttons {
    padding-top: 36px;
    margin: -10px;
}

.steps_module .step_content .step_buttons a {
    margin: 10px;
}

@media (max-width: 992px) {

    .steps_module .steps_list .step_item::before {
        left: 58px;
    }

    .steps_module .steps_list .step_item .step_circle {
        width: 120px;
        height: 120px;
    }

    .steps_module .steps_list .step_item.number .step_circle,
    .steps_module .steps_list .step_item.custom .step_circle {
        font-size: 0.59em;
    }
}

@media (max-width: 768px) {
    .steps_module .step_content_section.vertical_layout .step_content_image.cover {
        height: 200px;
    }

    .steps_module .step_content .step_content_section.horizontal_layout {
        flex-direction: column;
        gap: 0;
    }

    .steps_module .step_content_section.horizontal_layout .step_content_image,
    .steps_module .step_content_section.horizontal_layout .step_text {
        flex: unset;
    }

    .steps_module .steps_list .step_item::before {
        left: 48px;
    }

    .steps_module .steps_list .step_item .step_circle {
        width: 100px;
        height: 100px;
    }

    .steps_module .steps_list .step_item.number .step_circle,
    .steps_module .steps_list .step_item.custom .step_circle {
        font-size: 0.46em;
    }
}

@media (max-width: 576px) {
    .steps_module .steps_list {
        padding: 25px 20px;
    }

    .steps_module .steps_list .step_item::before {
        left: 38px;
    }

    .steps_module .steps_list .step_item {
        padding-bottom: 50px;
    }

    .steps_module .steps_list .step_item .step_circle {
        width: 80px;
        height: 80px;
        margin-right: 25px;
    }

    .steps_module .steps_list .step_item.number .step_circle,
    .steps_module .steps_list .step_item.custom .step_circle {
        font-size: 0.36em;
        padding: 4px;
    }

    .steps_module .step_content .step_title {
        font-size: 25px;
    }
}