﻿.steps {
    display: flex;
    flex-direction: column;
    counter-reset: steps;
}

section.step {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    position: relative;
    padding-bottom: 25px;
}

.step-image {
    width: 25%;
    max-width: 200px;
    flex-shrink: 0;
    user-select: none;
}

    .step-image > img {
        max-height: 125px;
        max-width: 125px;
    }

.step-content {
    width: 75%;
    padding-left: 50px;
}

h2.step-title {
    color: #4CAF50;
    font-size: 1.6em;
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 15px;
}

h3.step-step {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    margin: 15px 0;
    font-size: 1.5em;
    font-weight: 200;
}

span.step-id:before {
    content: counter(steps);
    counter-increment: steps;
}

.step-content > p {
    margin-top: 25px;
    margin-bottom: 0;
}


hr.step-section-divider {
    width: 100%;
    height: 4px;
    background: #4CAF50;
    border: none;
}

@media screen and (max-width: 600px) {
    section.step {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .step-content {
        padding-left: 0;
        width: 100%;
        text-align: left;
    }

    .step-image {
        width: 100%;
        max-width: unset;
        margin-bottom: 50px;
    }

        .step-image > img {
            display: block;
            margin: 0 auto;
            max-width: 200px;
            max-height: 200px;
        }
}