/* --- Adjust the nav to work with the hero background --- */

#nav .container .content .buttons a.button.blueberry.outline {
    color: #FFF;
    border-color: #FFF;
    background-color: transparent;
}

#nav .container .content .buttons a.button.blueberry.outline:hover {
    color: #112867;
    border-color: #FFF;
    background-color: #FFF;
}

/* ------ End nav adjustments ------ */

#hero.hero-section .container .columns .column.is-6.text-card {
    padding-right: 38px;
}

.numbered-section {
    --timeline-circle-size: 90px;
    --timeline-line-width: 3px;
    position: relative;
}

.numbered-section .columns .is-5 {
    width: 45%;
}

.numbered-section > .columns {
    position: static;
}

.column.is-2.number-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-direction: column;
    align-self: stretch;
    position: static;
    width: 10%;
}

.numbered-section .text-card h2 {
    font-size: 44px;
}

.number-circle {
    border: 3px solid #4155FF;
    border-radius: 100%;
    height: var(--timeline-circle-size);
    width: var(--timeline-circle-size);
    min-width: var(--timeline-circle-size);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 42px;
    color: #4155FF;
    background: #FFF;
    position: relative;
    z-index: 1;
}

.number-line {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--timeline-line-width);
    height: 0;
    background: #4155FF;
    pointer-events: none;
}


/* --- Media Queries -------------------- */

@media all and (max-width: 1028px) {
    #hero.hero-section .container .columns .column.is-6.text-card {
        padding-right: 0;
    }
}



@media all and (max-width: 768px) {
    /* --- Adjust the nav to work with the hero background --- */

    #nav .container .content .buttons a.button.blueberry.outline {
        color: #112867;
        border-color: #112867;
        background-color: transparent;
    }

    #nav .container .content .buttons a.button.blueberry.outline:hover {
        color: #FFF;
        border-color: #112867;
        background-color: #112867;
    }

    /* ------ End nav adjustments ------ */

    .number-line {
        display: none;
    }

    .number-circle {
        display: none;
    }

    .number-line {
        display: none;
    }

    .numbered-section .columns .is-5,
    .numbered-section .columns .is-2 {
        display: block;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .numbered-section .text-card h2 {
        font-size: 34px;
        text-align: center;
    }

    .mobile-number-circle {
        border: 2px solid #4155FF;
        border-radius: 100%;
        height: 54px;
        width: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 22px;
        color: #4155FF;
        margin: 0 auto 20px auto;
    }

    .numbered-section .columns:not(:last-child) {
        padding-bottom: 40px;
    }

    #hero p.line-height-30 {
        padding-bottom: 0;
    }

    #hero.section.padding-bottom-120 {
        padding-bottom: 75px;
    }

    .section.numbered-section p {
        text-align: center;
    }

    article.section.small.background-logo-repeating.mobile-repeating-section .action {
        padding-top: 0;
    }

    .section.xxxlarge {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .how-it-work-subtext {
        max-width: 360px;
        margin: auto;
        margin-bottom: 30px;
    }
}