.how-it-works {
    background-color: white;
    position: relative;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-section);
}

.how-it-works>header {
    text-align: center;
}

.how-it-works-flex {
    flex-direction: column;
    display: flex;
    gap: var(--spacing-md);
}

.how-it-works-flex-card {
    padding: var(--spacing-md) 0;
}

.how-it-works-flex-card img {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
}

.bg-road {
    width: 100%;
    height: 100px;
    left: 0;
    bottom: -12px;
    position: absolute;
}

@media screen and (min-width: 750px) {

    .how-it-works-flex {
        flex-direction: row;
    }

    .how-it-works-flex-card {
        width: 33.33%;
        padding: var(--spacing-lg) 0;
    }

}

.cartoon-runner {
    width: 100px;
    height: 100px;
    bottom: 24px;
    position: absolute;
}

.cartoon-runner:first-child {
    left: 15%;
    bottom: 36px;
}

.cartoon-runner:nth-child(2) {
    left: 20%;
    bottom: 24px;
}

.cartoon-runner:nth-child(4) {
    left: 50%;
    bottom: 36px;
}

.cartoon-runner:nth-child(5) {
    left: 33%;
}

.cartoon-runner:nth-child(6) {
    right: 20%;
    bottom: 36px;
}

.cartoon-runner:nth-last-child(2) {
    right: 50%;
}

.cartoon-runner:last-child {
    right: 33%;
}