.landing-page-onboard-section {
    padding: 64px 0px;
    background: #184a50
}

.landing-page-onboard-section .lpos-shell {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    box-sizing: border-box
}

.landing-page-onboard-section .lpos-top {
    display: grid;
    grid-template-columns: 35% minmax(0, 1fr);
    gap: 80px;
    align-items: start;
}

.landing-page-onboard-section .lpos-label {
    margin: 0;
    color: #A8D6DA;
    font-family: "Source Code Pro", monospace;
    font-size: 13px;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
}

.landing-page-onboard-section .lpos-heading {
    margin: 16px 0 0;
    max-width: 520px;
    color: #ddf4f6;
    font-size: clamp(32px, 4.7vw, 44px);
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -1.32px;
}

.landing-page-onboard-section .lpos-steps-wrap {
    border-top: 1px solid #327277;
    padding-top: 24px
}

.landing-page-onboard-section .lpos-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px
}

.landing-page-onboard-section .lpos-step-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #ddf4f6;
    color: #074F55;
    font-family: "Source Code Pro", monospace;
    font-size: 13px;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
}

.landing-page-onboard-section .lpos-step-title {
    margin: 24px 0 0;
    color: #D0F8FB;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.72px;
    line-height: 120%;
}

.landing-page-onboard-section .lpos-step-description {
    margin: 8px 0 0;
    color: #A8D6DA;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.32px;
    line-height: 140%;
}

.landing-page-onboard-section .lpos-bottom {
    margin-top: 64px;
    border-top: 1px solid #327277;
    padding-top: 16px
}

.landing-page-onboard-section .lpos-bottom-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px
}

.landing-page-onboard-section .lpos-bottom-text {
    margin: 0;
    max-width: 470px;
    color: #A8D6DA;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.32px;
    line-height: 1.40;
}

.landing-page-onboard-section .lpos-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    min-width: 380px;
    padding-top: 1px
}

.landing-page-onboard-section .lpos-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-height: 40px;
    padding: 16px;
    border-radius: 8px;
    font-family: "Source Code Pro", monospace;
    font-size: 13px;
    font-weight: 600;
    line-height: 123.077%;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .2s ease;
    min-height: 40px;
    letter-spacing: inherit;
    color: #074F55 !important;
}

.landing-page-onboard-section .lpos-button-primary {
    background: #1B6166;
    color: #D0F8FB !important;
}

.landing-page-onboard-section .lpos-button-primary:hover {
    background: #1B6166;
    color: #D0F8FB !important
}

.landing-page-onboard-section .lpos-button-secondary {
    background: #ddf4f6;
    color: #074F55;
}

.landing-page-onboard-section .lpos-button-secondary:hover {
    opacity: .9;
    color: #2b6470
}

.animate-button span{
    backface-visibility: hidden;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.animate-button span div{
    backface-visibility: hidden;
    transition: transform .44s cubic-bezier(.165, .84, .44, 1) 50ms;
}
.animate-button:hover span div{
    transform: translateY(calc(-100% - 10px)) translateZ(0);
} 

.animate-button span div:after{
    content: attr(data-content);
    left: 0;
    position: absolute;
    top: calc(100% + 10px);
}

@media (max-width:1600px) {
    .landing-page-onboard-section .lpos-shell{
        padding-inline: 16px;
    }
}

@media (max-width:1199px) {
    .landing-page-onboard-section .lpos-top {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .landing-page-onboard-section .lpos-heading {
        max-width: 760px
    }
}

@media (max-width:991px) {
    .landing-page-onboard-section .lpos-steps-grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .landing-page-onboard-section .lpos-step-title {
        margin-top: 22px
    }

    .landing-page-onboard-section .lpos-bottom-inner {
        flex-direction: column
    }

    .landing-page-onboard-section .lpos-actions {
        min-width: 0;
        justify-content: flex-start
    }
}

@media (max-width:767px) {
    .landing-page-onboard-section {
        padding: 28px 0 34px
    }

    .landing-page-onboard-section .lpos-shell {
        padding-left: 16px;
        padding-right: 16px
    }

    .landing-page-onboard-section .lpos-heading {
        margin-top: 18px;
        font-size: 44px
    }

    .landing-page-onboard-section .lpos-step-title {
        font-size: 24px
    }

    .landing-page-onboard-section .lpos-step-description,
    .landing-page-onboard-section .lpos-bottom-text {
        font-size: 18px
    }

    .landing-page-onboard-section .lpos-actions {
        width: auto;
        flex-direction: row
    }

    .landing-page-onboard-section .lpos-button {
        width: auto;
    }
}