.oam-section-steps {
    --oam-steps-margin-y: 4.375em;
    --oam-steps-title-font-size: 1.5em;
    --oam-steps-title-margin-bottom: 2em;
    --oam-steps-name-font-size: 1.125em;
    --oam-steps-name-margin-bottom: 1.17em;
    --oam-steps-text-font-size: 0.875em;
    --oam-steps-offset: 0;

    margin-top: var(--oam-steps-margin-y);
    margin-bottom: var(--oam-steps-margin-y);
}

.oam-section-steps .oam-section-steps__title {
    margin-top: 0;
    margin-bottom: var(--oam-steps-title-margin-bottom);
    font-size: var(--oam-steps-title-font-size);
    font-weight: 700;
    text-align: center;
    color: #0b454a;
}

.oam-section-steps .oam-section-steps__list {
    margin: 0 calc(var(--oam-steps-offset) * -1);
    padding-left: 0;
    list-style: none;
    counter-reset: steps;
}

.oam-section-steps .oam-section-steps__item {
    padding-right: var(--oam-steps-offset);
    padding-left: var(--oam-steps-offset);
    text-align: center;
    counter-increment: steps;
}

.oam-section-steps .oam-section-steps__item:not(:last-child) {
    margin-bottom: 3.75em;
}

.oam-section-steps .oam-section-steps__icon {
    position: relative;
    display: block;
    width: 1em;
    margin: 0 auto 24px;
    font-size: 78px;
    color: #61aaa3;
}

.oam-section-steps .oam-section-steps__icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.oam-section-steps .oam-section-steps__icon::after {
    --oam-steps-icon-size: 2.375em;
    position: absolute;
    bottom: 9px;
    left: calc(50% - calc(var(--oam-steps-icon-size) * 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--oam-steps-icon-size);
    height: var(--oam-steps-icon-size);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: #0b454a;
    background-color: #b1e5df;
    border-radius: 50%;
    content: counter(steps);
}

.oam-section-steps .oam-section-steps__name {
    margin-top: 0;
    margin-bottom: var(--oam-steps-name-margin-bottom);
    font-size: var(--oam-steps-name-font-size);
    color: #3b4345;
}

.oam-section-steps .oam-section-steps__text {
    margin-top: 0;
    margin-bottom: 0;
    font-size: var(--oam-steps-text-font-size);
}

@media (min-width: 576px) {
    .oam-section-steps {
        --oam-steps-offset: 0.5em;
    }

    .oam-section-steps .oam-section-steps__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 33px;
    }

    .oam-section-steps .oam-section-steps__item {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .oam-section-steps {
        --oam-steps-margin-y: 6.25em;
        --oam-steps-title-font-size: 1.875em;
        --oam-steps-title-margin-bottom: 1.5em;
        --oam-steps-name-font-size: 1.25em;
        --oam-steps-name-margin-bottom: 1.1em;
        --oam-steps-text-font-size: 1em;
    }

    .oam-section-steps .oam-section-steps__item {
        width: 33.33%;
    }

    .oam-section-steps .oam-section-steps__item:not(:last-child) {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .oam-section-steps {
        --oam-steps-title-font-size: 2.25em;
        --oam-steps-title-margin-bottom: 1em;
        --oam-steps-name-margin-bottom: 0.75em;
        --oam-steps-offset: 0.625em;
    }
}
