/* =========================================================
   Limitless Order Builder
   ========================================================= */

.lt-order-builder,
.lt-order-builder * {
    box-sizing: border-box;
}

.lt-order-builder {
    width: 80%;
    max-width: 2000px;
    margin: 30px auto 0;
    padding: 32px 44px 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 25px 25px 0 0;
    color: #111;
}

/* =========================================================
   Main desktop layout
   ========================================================= */

.lt-order-builder__grid {
    display: grid;
    grid-template-columns:
        minmax(260px, 1.65fr)
        repeat(5, minmax(150px, 1fr));
    align-items: stretch;
}

.lt-order-builder__intro,
.lt-order-builder__feature {
    min-width: 0;
}

/* =========================================================
   Intro column
   ========================================================= */

.lt-order-builder__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 32px 0 20px;
}

.lt-order-builder__intro h2 {
    margin: 0;
    padding: 0;
    color: #050505;
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(42px, 3.1vw, 68px);
    font-weight: 800;
    line-height: 0.88;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.lt-order-builder__intro h2 span {
    display: block;
    margin: 0;
    padding: 0;
    color: #108da3;
    font-size: 0.88em;
    line-height: 1;
    letter-spacing: 0.04em;
}

.lt-order-builder__intro p {
    max-width: 100%;
    margin: 18px 0 0;
    padding: 0;
    color: #111;
    font-size: clamp(12px, 0.8vw, 16px);
    font-style: italic;
    font-weight: 700;
    line-height: 1.35;
    white-space: normal;
}

.lt-order-builder__intro strong {
    color: #108da3;
    font-weight: 700;
}

/* =========================================================
   Feature columns
   ========================================================= */

.lt-order-builder__feature {
    min-width: 0;
    padding: 20px 22px 10px;
    overflow: hidden;
    border-left: 1px solid #c9c9c9;
}

.lt-order-builder__heading {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    min-width: 0;
    min-height: 56px;
    align-items: center;
    column-gap: 10px;
    margin: 0 0 12px;
    padding: 0;
}

.lt-order-builder__heading img {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    object-fit: contain;
    object-position: center;
}

.lt-order-builder__heading h3 {
    display: flex;
    min-width: 0;
    min-height: 48px;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    color: #080808;
    font-size: clamp(8px, 0.6vw, 12px);
    font-weight: 800;
    line-height: 1 !important;
    white-space: nowrap;
    text-transform: uppercase;
}

.lt-order-builder__feature p {
    margin: 0;
    padding: 0;
    color: #202020;
    font-size: clamp(9px, 0.58vw, 12px);
    font-weight: 500;
    line-height: 1.55;
    overflow-wrap: break-word;
}

/* =========================================================
   Legacy builder row
   ========================================================= */

.lt-order-builder__legacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.lt-order-builder__legacy p {
    margin: 0;
    padding: 0;
    color: #111;
    font-size: 16px;
    font-weight: 600;
}

.lt-order-builder__legacy a {
    display: inline-flex;
    min-width: 320px;
    align-items: center;
    justify-content: center;
    padding: 9px 26px;
    border: 2px solid #108da3;
    border-radius: 9px;
    background-color: transparent;
    color: #108da3 !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.lt-order-builder__legacy a:hover,
.lt-order-builder__legacy a:focus,
.lt-order-builder__legacy a:focus-visible {
    border-color: #108da3;
    background-color: #108da3;
    color: #fff !important;
    text-decoration: none;
}

/* Force nested button text to remain white if Divi inserts a span. */

.lt-order-builder__legacy a:hover *,
.lt-order-builder__legacy a:focus *,
.lt-order-builder__legacy a:focus-visible * {
    color: #fff !important;
}

/* =========================================================
   Smaller desktop
   ========================================================= */

@media (max-width: 1700px) {
    .lt-order-builder {
        width: 92%;
        padding-right: 36px;
        padding-left: 36px;
    }

    .lt-order-builder__grid {
        grid-template-columns:
            minmax(270px, 1.65fr)
            repeat(5, minmax(140px, 1fr));
    }

    .lt-order-builder__intro {
        padding-right: 28px;
    }

    .lt-order-builder__intro strong {
        display: block;
        margin-top: 2px;
    }

    .lt-order-builder__feature {
        padding-right: 18px;
        padding-left: 18px;
    }

    .lt-order-builder__heading h3 {
        font-size: clamp(8px, 0.68vw, 11px);
    }

    .lt-order-builder__feature p {
        font-size: clamp(9px, 0.65vw, 11px);
    }
}

/* =========================================================
   Laptop
   ========================================================= */

@media (max-width: 1250px) {
    .lt-order-builder {
        width: 96%;
        padding: 26px 20px 20px;
    }

    .lt-order-builder__grid {
        grid-template-columns:
            minmax(220px, 1.5fr)
            repeat(5, minmax(125px, 1fr));
    }

    .lt-order-builder__intro {
        padding: 0 18px 0 10px;
    }

    .lt-order-builder__intro h2 {
        font-size: clamp(38px, 4vw, 50px);
    }

    .lt-order-builder__intro p {
        font-size: 12px;
    }

    .lt-order-builder__feature {
        padding: 18px 15px 10px;
    }

    .lt-order-builder__heading {
        grid-template-columns: 40px minmax(0, 1fr);
        min-height: 48px;
        column-gap: 7px;
    }

    .lt-order-builder__heading img {
        width: 40px;
        height: 40px;
    }

    .lt-order-builder__heading h3 {
        min-height: 40px;
        font-size: 8px;
    }

    .lt-order-builder__feature p {
        font-size: 9px;
    }
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 980px) {
    .lt-order-builder {
        width: calc(100% - 30px);
        padding: 28px;
    }

    .lt-order-builder__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lt-order-builder__intro {
        grid-column: 1 / -1;
        padding: 10px 10px 30px;
    }

    .lt-order-builder__intro h2 {
        font-size: 56px;
    }

    .lt-order-builder__intro p {
        font-size: 14px;
    }

    .lt-order-builder__intro strong {
        display: inline;
        margin-top: 0;
    }

    .lt-order-builder__feature {
        padding: 26px;
        border-bottom: 1px solid #c9c9c9;
    }

    .lt-order-builder__feature:nth-child(even) {
        border-left: 0;
    }

    .lt-order-builder__feature:nth-child(odd) {
        border-left: 1px solid #c9c9c9;
    }

    .lt-order-builder__feature:last-child {
        border-bottom: 0;
    }

    .lt-order-builder__heading {
        grid-template-columns: 50px minmax(0, 1fr);
        min-height: 58px;
        column-gap: 12px;
    }

    .lt-order-builder__heading img {
        width: 50px;
        height: 50px;
    }

    .lt-order-builder__heading h3 {
        min-height: 50px;
        font-size: 14px;
    }

    .lt-order-builder__feature p {
        font-size: 12px;
    }

    .lt-order-builder__legacy {
        margin-top: 24px;
    }
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 600px) {
    .lt-order-builder {
        width: calc(100% - 30px);
        margin: 20px auto 0;
        padding: 26px 22px;
    }

    .lt-order-builder__grid {
        display: block;
    }

    .lt-order-builder__intro {
        padding: 4px 0 28px;
    }

    .lt-order-builder__intro h2 {
        font-size: 50px;
    }

    .lt-order-builder__intro p {
        font-size: 14px;
    }

    .lt-order-builder__intro strong {
        display: block;
        margin-top: 3px;
    }

    .lt-order-builder__feature,
    .lt-order-builder__feature:nth-child(even),
    .lt-order-builder__feature:nth-child(odd) {
        padding: 26px 0;
        border-left: 0;
        border-bottom: 1px solid #c9c9c9;
    }

    .lt-order-builder__feature:last-child {
        border-bottom: 0;
    }

    .lt-order-builder__heading {
        grid-template-columns: 52px minmax(0, 1fr);
        min-height: 60px;
        column-gap: 12px;
    }

    .lt-order-builder__heading img {
        width: 52px;
        height: 52px;
    }

    .lt-order-builder__heading h3 {
        min-height: 52px;
        font-size: 15px;
        white-space: normal;
    }

    .lt-order-builder__feature p {
        font-size: 13px;
        line-height: 1.6;
    }

    .lt-order-builder__legacy {
        align-items: stretch;
        flex-direction: column;
        margin-top: 22px;
        text-align: center;
    }

    .lt-order-builder__legacy p {
        font-size: 14px;
    }

    .lt-order-builder__legacy a {
        width: 100%;
        min-width: 0;
        font-size: 14px;
    }
}
/* Keep the Divi row containing the Code Module above all other content */
.et_pb_row.always-on-top {
    position: relative !important;
    z-index: 2147483646 !important;
}

/* Raise the entire section containing that row */
.et_pb_section:has(.et_pb_row.always-on-top) {
    position: relative !important;
    z-index: 2147483646 !important;
    overflow: visible !important;
}

/* Prevent the row, column, and module from clipping the modal */
.et_pb_row.always-on-top,
.et_pb_row.always-on-top > .et_pb_column,
.et_pb_row.always-on-top .et_pb_code,
.et_pb_row.always-on-top .et_pb_code_inner {
    overflow: visible !important;
}

/* Keep any fixed overlay inside the Code Module above everything */
.et_pb_row.always-on-top [class*="modal"],
.et_pb_row.always-on-top [class*="overlay"],
.et_pb_row.always-on-top [role="dialog"] {
    z-index: 2147483647 !important;
}

/* ==================================================
   Limitless Transfers – Order Builder Landing Page
================================================== */

.lt-lob {
    --lt-teal: #00bdcb;
    --lt-dark-teal: #007d91;
    --lt-black: #000000;
    --lt-white: #ffffff;
    --lt-border: rgba(0, 189, 203, 0.55);

    width: 100%;
    overflow: hidden;
    background: var(--lt-black);
    color: var(--lt-white);
}

.lt-lob,
.lt-lob * {
    box-sizing: border-box;
}

.lt-lob img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.lt-lob h1,
.lt-lob h2,
.lt-lob p {
    padding: 0;
}

.lt-lob__container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

/* HERO */

.lt-lob__hero {
    position: relative;
    padding: 80px 0 72px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 189, 203, 0.08),
            transparent 34%
        ),
        radial-gradient(
            circle at 85% 25%,
            rgba(0, 189, 203, 0.06),
            transparent 30%
        ),
        var(--lt-white);
    color: var(--lt-black);
    text-align: center;
}

.lt-lob__hero .lt-lob__container {
    width: min(1240px, calc(100% - 48px));
}

.lt-lob__eyebrow {
    margin: 0 0 18px;
    color: var(--lt-teal);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 7px;
    text-transform: uppercase;
}

.lt-lob__hero-title {
    margin: 0;
    color: var(--lt-black);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
}

.lt-lob__hero-title span {
    display: table;
    max-width: 100%;
    margin: 14px auto 20px;
    padding: 12px 24px 15px;
    border-radius: 12px;
    background: var(--lt-black);
    color: var(--lt-teal);
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.05;
}

.lt-lob__hero-subtitle {
    margin: 0 0 18px;
    color: var(--lt-dark-teal);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(20px, 2.5vw, 30px);
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
}

.lt-lob__hero-copy {
    max-width: 820px;
    margin: 0 auto 44px;
    color: var(--lt-black);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
}

.lt-lob__hero-image {
    max-width: 1180px;
    margin: 0 auto 40px;
}

.lt-lob__hero-image img {
    max-height: 680px;
    object-fit: contain;
}

/* BUTTONS */

.lt-lob__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 16px 34px;
    border: 2px solid transparent;
    border-radius: 9px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.lt-lob__button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.lt-lob__button--teal {
    min-width: min(100%, 390px);
    background: var(--lt-dark-teal);
    border-color: var(--lt-dark-teal);
    color: var(--lt-white) !important;
}

.lt-lob__button--teal:hover {
    background: var(--lt-black);
    border-color: var(--lt-black);
    color: var(--lt-white) !important;
}

.lt-lob__button--black {
    min-width: min(100%, 390px);
    background: var(--lt-black);
    border-color: var(--lt-black);
    color: var(--lt-white) !important;
}

.lt-lob__button--black:hover {
    background: var(--lt-white);
    border-color: var(--lt-white);
    color: var(--lt-black) !important;
}

/* FEATURES INTRODUCTION */

.lt-lob__features-intro {
    padding: 74px 0 66px;
    border-bottom: 1px solid var(--lt-border);
    background:
        radial-gradient(
            circle at 18% 25%,
            rgba(0, 189, 203, 0.12),
            transparent 35%
        ),
        radial-gradient(
            circle at 82% 22%,
            rgba(0, 189, 203, 0.09),
            transparent 34%
        ),
        var(--lt-black);
    text-align: center;
}

.lt-lob__features-intro .lt-lob__container {
    max-width: 850px;
}

.lt-lob__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 0 22px;
    padding: 8px 14px;
    border: 1px solid var(--lt-teal);
    border-radius: 9px;
    color: var(--lt-teal);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-align: center;
    text-transform: uppercase;
}

.lt-lob__section-title {
    margin: 0 0 18px;
    color: var(--lt-white);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 800;
    text-transform: uppercase;
}

.lt-lob__section-title span {
    color: var(--lt-teal);
}

.lt-lob__features-intro p:last-child {
    max-width: 760px;
    margin: 0 auto;
    color: var(--lt-white);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.65;
}

/* FEATURE ROWS */

.lt-lob__feature {
    position: relative;
    padding: 0;
    border-bottom: 1px solid var(--lt-border);
    background: var(--lt-black);
}

.lt-lob__feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: stretch;
    width: 100%;
    max-width: 1440px;
}

.lt-lob__feature-content {
    display: flex;
    min-height: 570px;
    padding: 70px clamp(32px, 5vw, 80px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lt-lob__feature-image {
    display: flex;
    min-width: 0;
    min-height: 570px;
    padding: 42px;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at center,
            rgba(0, 189, 203, 0.09),
            transparent 65%
        ),
        #050505;
}

.lt-lob__feature-image img {
    width: 100%;
    max-height: 530px;
    object-fit: contain;
}

.lt-lob__feature--reverse .lt-lob__feature-content {
    order: 2;
}

.lt-lob__feature--reverse .lt-lob__feature-image {
    order: 1;
}

.lt-lob__feature-title {
    margin: 0 0 24px;
    color: var(--lt-white);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.12;
    font-weight: 800;
    text-transform: uppercase;
}

.lt-lob__feature-title span {
    color: var(--lt-teal);
}

.lt-lob__feature-copy {
    max-width: 520px;
    margin: 0 auto 14px;
    color: var(--lt-white);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.65;
}

.lt-lob__feature-highlight {
    max-width: 520px;
    margin: 0 auto;
    color: var(--lt-teal);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 700;
}

/* FINAL CTA */

.lt-lob__cta {
    position: relative;
    padding: 90px 0 82px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(255, 255, 255, 0.18),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            var(--lt-teal) 0%,
            #00aaba 50%,
            var(--lt-dark-teal) 100%
        );
    color: var(--lt-black);
    text-align: center;
}

.lt-lob__cta .lt-lob__container {
    max-width: 850px;
}

.lt-lob__cta-eyebrow {
    margin: 0 0 18px;
    color: var(--lt-white);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.lt-lob__cta-title {
    margin: 0 0 22px;
    color: var(--lt-black);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.12;
    font-weight: 800;
    text-transform: uppercase;
}

.lt-lob__cta-title span {
    color: var(--lt-white);
}

.lt-lob__cta-copy {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--lt-black);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.65;
}

.lt-lob__legacy-note {
    max-width: 650px;
    margin: 22px auto 0;
    color: var(--lt-white);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.6;
}

/* TABLET */

@media only screen and (max-width: 980px) {
    .lt-lob__container,
    .lt-lob__hero .lt-lob__container {
        width: min(100% - 40px, 860px);
    }

    .lt-lob__hero {
        padding: 64px 0 58px;
    }

    .lt-lob__hero-title {
        font-size: clamp(40px, 7vw, 58px);
    }

    .lt-lob__hero-title span {
        font-size: clamp(34px, 6.5vw, 52px);
    }

    .lt-lob__features-intro {
        padding: 60px 0 54px;
    }

    .lt-lob__feature-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: none;
    }

    .lt-lob__feature-content {
        min-height: 0;
        padding: 64px 40px 52px;
        order: 1;
    }

    .lt-lob__feature-image {
        min-height: 0;
        padding: 32px 40px 58px;
        order: 2;
    }

    .lt-lob__feature--reverse .lt-lob__feature-content {
        order: 1;
    }

    .lt-lob__feature--reverse .lt-lob__feature-image {
        order: 2;
    }

    .lt-lob__feature-image img {
        max-width: 760px;
        max-height: none;
    }

    .lt-lob__cta {
        padding: 72px 0 66px;
    }
}

/* MOBILE */

@media only screen and (max-width: 767px) {
    .lt-lob__container,
    .lt-lob__hero .lt-lob__container {
        width: calc(100% - 32px);
    }

    .lt-lob__hero {
        padding: 48px 0 46px;
    }

    .lt-lob__eyebrow {
        margin-bottom: 14px;
        font-size: 11px;
        letter-spacing: 4px;
    }

    .lt-lob__hero-title {
        font-size: clamp(34px, 11vw, 48px);
        line-height: 1.08;
    }

    .lt-lob__hero-title span {
        display: block;
        margin: 12px 0 18px;
        padding: 11px 13px 13px;
        border-radius: 9px;
        font-size: clamp(27px, 8vw, 40px);
        line-height: 1.12;
    }

    .lt-lob__hero-subtitle {
        font-size: 20px;
        line-height: 1.3;
    }

    .lt-lob__hero-copy {
        margin-bottom: 30px;
        font-size: 16px;
        line-height: 1.6;
    }

    .lt-lob__hero-image {
        margin-bottom: 30px;
    }

    .lt-lob__features-intro {
        padding: 50px 0 46px;
    }

    .lt-lob__label {
        margin-bottom: 18px;
        padding: 7px 11px;
        font-size: 10px;
        letter-spacing: 1.8px;
    }

    .lt-lob__section-title {
        margin-bottom: 16px;
        font-size: 32px;
        line-height: 1.16;
    }

    .lt-lob__features-intro p:last-child {
        font-size: 16px;
        line-height: 1.6;
    }

    .lt-lob__feature-content {
        padding: 52px 24px 38px;
    }

    .lt-lob__feature-image {
        padding: 20px 16px 46px;
    }

    .lt-lob__feature-title {
        margin-bottom: 20px;
        font-size: clamp(31px, 9vw, 42px);
        line-height: 1.14;
    }

    .lt-lob__feature-copy {
        font-size: 16px;
        line-height: 1.6;
    }

    .lt-lob__feature-highlight {
        font-size: 15px;
        line-height: 1.55;
    }

    .lt-lob__cta {
        padding: 60px 0 54px;
    }

    .lt-lob__cta-eyebrow {
        font-size: 11px;
        letter-spacing: 3.5px;
    }

    .lt-lob__cta-title {
        font-size: clamp(32px, 9.5vw, 44px);
        line-height: 1.16;
    }

    .lt-lob__cta-copy {
        font-size: 16px;
        line-height: 1.6;
    }

    .lt-lob__button {
        width: 100%;
        min-width: 0;
        min-height: 56px;
        padding: 15px 18px;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .lt-lob__legacy-note {
        font-size: 12px;
    }
}

/* SMALL MOBILE */

@media only screen and (max-width: 420px) {
    .lt-lob__hero-title span {
        font-size: 25px;
    }

    .lt-lob__feature-content {
        padding-right: 18px;
        padding-left: 18px;
    }

    .lt-lob__feature-title {
        font-size: 29px;
    }

    .lt-lob__label {
        white-space: normal;
    }
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
    .lt-lob__button {
        transition: none;
    }

    .lt-lob__button:hover {
        transform: none;
    }
}

/* HERO DARK BACKGROUND UPDATE */

.lt-lob__hero {
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 189, 203, 0.09),
            transparent 34%
        ),
        radial-gradient(
            circle at 85% 25%,
            rgba(0, 189, 203, 0.07),
            transparent 30%
        ),
        #242424;
    color: #ffffff;
}

.lt-lob__hero-title {
    color: #ffffff;
}

.lt-lob__hero-title span {
    background-color: #000000;
    color: #00bdcb;
}

.lt-lob__hero-subtitle {
    color: #45b9cf;
}

.lt-lob__hero-copy {
    color: #ffffff;
}