.maintenance_process {
    align-items: flex-start;
}

.maintenance_process .process_image {
    height: 650px;
    position: sticky;
    top: 200px;
}

.maintenance_flex {
    display: flex;
    align-items: stretch;
    margin-top: 60px;
}

.bullet_dates,
.bullet_subheading {
    background-color: var(--brown);
    text-transform: uppercase;
    color: var(--white);
    font-family: area-normal, sans-serif;
    font-style: normal;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 8px 12px;
    margin-right: 10px;
    font-weight: 700;
    font-size: 15px;
    width: max-content;
}

.bullet_subheading {
    background-color: var(--green);
}

.maintenance_process .process_steps h2 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.image_text {
    position: absolute;
    bottom: 40px;
    right: 40px;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.6);
    padding: 20px;
    z-index: 5;
    box-sizing: border-box;
    width: calc(100% - 80px);
    font-weight: 500;
    text-align: center;
}

@media (max-width: 1150px) {
    .maintenance_process .process_image {
        position: relative;
        top: unset;
        height: 500px;
    }

    .maintenance_flex {
        margin: 60px auto 0;
        justify-content: center;
    }

    .bullet_dates {
        margin-right: 0;
    }

    .process_steps p {
        text-align: center;
    }
}

@media (max-width: 400px) {
    .maintenance_flex {
        flex-direction: column;
        align-items: center;
    }

    .bullet_subheading {
        margin-right: 0;
    }

    .bullet_dates {
        margin-top: 10px;
    }
}