@charset "UTF-8";

:root {
    --tw-ink: #071a33;
    --tw-navy: #0b2b4d;
    --tw-blue: #2f7df6;
    --tw-blue-soft: #eef5ff;
    --tw-amber: #f5b335;
    --tw-green: #159669;
    --tw-red: #d65b4c;
    --tw-paper: #f7f9fc;
    --tw-line: #e3e9f0;
    --tw-text: #10243e;
    --tw-muted: #66798d;
    --tw-display: "Space Grotesk", sans-serif;
    --tw-body: "DM Sans", sans-serif;
}

.tw-page {
    color: var(--tw-text);
    background: #fff;
    font-family: var(--tw-body);
    overflow: hidden;
}

.tw-page h1,
.tw-page h2,
.tw-page h3,
.tw-page h4,
.tw-page h5 {
    font-family: var(--tw-display);
    letter-spacing: -.04em;
    line-height: 1.04;
}

.tw-page h2.text-primary,
.tw-page h3.text-primary,
.tw-page h4.text-primary {
    color: var(--tw-navy) !important;
}

.tw-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.tw-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--tw-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.tw-kicker::before {
    content: "";
    width: 25px;
    height: 2px;
    background: currentColor;
}

.tw-kicker--light {
    color: var(--tw-amber);
}

.tw-lead {
    color: var(--tw-muted);
    font-size: 16px;
    line-height: 1.8;
}

.tw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 23px;
    border: 0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.tw-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.tw-btn--amber {
    color: #10243e !important;
    background: var(--tw-amber);
    box-shadow: 0 12px 28px rgba(245, 179, 53, .22);
}

.tw-btn--amber:hover {
    color: #10243e !important;
    background: #ffc34e;
}

.tw-btn--white {
    color: var(--tw-text) !important;
    background: #fff;
}

.tw-btn--outline {
    color: var(--tw-blue) !important;
    background: #fff;
    border: 1px solid #d8e3ef;
}

/* HERO */
.tw-hero {
    position: relative;
    padding: 94px 0 92px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(47, 125, 246, .25), transparent 30%),
        linear-gradient(135deg, #06172c 0%, #0b294b 56%, #10385f 100%);
    overflow: hidden;
}

.tw-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .075;
    background-image:
        linear-gradient(rgba(255, 255, 255, .8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .8) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, #000 15%, transparent 90%);
    -webkit-mask-image: linear-gradient(to bottom, #000 15%, transparent 90%);
}

.tw-hero__inner {
    position: relative;
    z-index: 2;
}

.tw-hero__grid {
    display: grid;
    grid-template-columns: .96fr 1.04fr;
    gap: 64px;
    align-items: center;
}

.tw-hero h1 {
    max-width: 620px;
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(42px, 4.4vw, 62px);
    font-weight: 700;
}

.tw-hero h1 em {
    color: #78aaff;
    font-style: normal;
}

.tw-hero__copy {
    max-width: 590px;
    margin: 0 0 30px;
    color: #bdccdc;
    font-size: 17px;
    line-height: 1.8;
}

.tw-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tw-hero__note {
    margin-top: 14px;
    color: #8da5bf;
    font-size: 11px;
}

/* PRODUCT PREVIEW */
.tw-product {
    position: relative;
}

.tw-product__panel {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 38px 100px rgba(0, 0, 0, .34);
}

.tw-window {
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    background: #f3f6fa;
    border-bottom: 1px solid #e2e8ef;
}

.tw-window__dots {
    display: flex;
    gap: 6px;
}

.tw-window__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c7d1dc;
}

.tw-window__label {
    margin-left: auto;
    color: #7e8d9e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.tw-product img {
    display: block;
    width: 100%;
    height: auto;
}

.tw-float {
    position: absolute;
    z-index: 3;
    min-width: 155px;
    padding: 15px 17px;
    border-radius: 14px;
    color: var(--tw-text);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .23);
}

.tw-float--top {
    top: -22px;
    right: -24px;
}

.tw-float--bottom {
    bottom: -25px;
    left: -24px;
}

.tw-float small {
    display: block;
    margin-bottom: 5px;
    color: #7c8d9f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tw-float strong {
    display: block;
    font-family: var(--tw-display);
    font-size: 25px;
    line-height: 1;
}

.tw-float span {
    color: var(--tw-green);
    font-size: 10px;
    font-weight: 700;
}

/* ROLES */
.tw-roles {
    border-bottom: 1px solid var(--tw-line);
    background: #fff;
}

.tw-roles__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 21px 0;
    list-style: none;
}

.tw-roles__list li {
    padding: 4px 23px;
    color: #738499;
    border-left: 1px solid var(--tw-line);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.tw-roles__list li:first-child {
    border-left: 0;
}

/* GENERIC SECTIONS */
.tw-section {
    padding: 105px 0;
}

.tw-section--soft {
    background: var(--tw-paper);
}

.tw-section__heading {
    max-width: 780px;
    margin-bottom: 52px;
}

.tw-section__heading h2 {
    margin: 0 0 16px;
    font-size: clamp(38px, 5vw, 56px);
}

/* QUESTION CARDS */
.tw-question-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tw-q {
    min-height: 230px;
    padding: 29px;
    border: 1px solid var(--tw-line);
    border-top: 3px solid var(--tw-blue);
    border-radius: 16px;
    background: #fff;
    transition: .25s ease;
}

.tw-q:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(16, 36, 62, .08);
}

.tw-q__num {
    margin-bottom: 28px;
    color: #9aabba;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.tw-q h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.tw-q p {
    margin: 0;
    color: var(--tw-muted);
    font-size: 14px;
    line-height: 1.75;
}

/* CAPABILITY GRID */
.tw-cap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tw-cap {
    min-height: 205px;
    padding: 26px;
    border: 1px solid var(--tw-line);
    border-radius: 16px;
    background: #fff;
    transition: .25s ease;
}

.tw-cap:hover {
    transform: translateY(-4px);
    border-color: #b7d1fa;
    box-shadow: 0 18px 45px rgba(16, 36, 62, .07);
}

.tw-cap__tag {
    display: block;
    margin-bottom: 19px;
    color: var(--tw-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
}

.tw-cap h3 {
    margin: 0 0 9px;
    font-size: 20px;
}

.tw-cap p {
    margin: 0;
    color: var(--tw-muted);
    font-size: 13px;
    line-height: 1.75;
}

/* WORKFLOW */
.tw-dark {
    position: relative;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(47, 125, 246, .22), transparent 30%),
        var(--tw-ink);
}

.tw-dark h2 {
    color: #fff;
}

.tw-dark p {
    color: #b8c8d6;
}

.tw-dark h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 3.6vw, 46px);
}

.tw-rule {
    width: 42px;
    height: 3px;
    margin-bottom: 22px;
    background: var(--tw-amber);
}

.tw-chain {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: tw-step;
}

.tw-chain li {
    position: relative;
    padding: 0 0 30px 68px;
    counter-increment: tw-step;
}

.tw-chain li::before {
    content: counter(tw-step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .23);
    border-radius: 50%;
    color: var(--tw-amber);
    background: rgba(255, 255, 255, .035);
    font-size: 10px;
    font-weight: 800;
}

.tw-chain li::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 42px;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, .15);
}

.tw-chain li:last-child {
    padding-bottom: 0;
}

.tw-chain li:last-child::after {
    display: none;
}

.tw-chain h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 20px;
}

.tw-chain p {
    margin: 0;
    color: #91a9c0;
    font-size: 14px;
    line-height: 1.7;
}

/* PRODUCT FEATURE ROW */
.tw-product-row {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 78px;
    align-items: center;
}

.tw-product-row--reverse {
    grid-template-columns: 1.18fr .82fr;
}

.tw-product-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(38px, 4vw, 52px);
}

.tw-product-copy p {
    color: var(--tw-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* ---- included Front-theme blocks, brought into this page's system ---- */
.tw-page .tw-legacy .w-md-80,
.tw-page .tw-legacy .w-lg-80 {
    width: 100% !important;
    max-width: 640px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
}

/* the theme's mint pill becomes the same kicker used everywhere else */
.tw-page .tw-legacy .btn-soft-success {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--tw-blue);
    font-family: var(--tw-body);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    pointer-events: none;
}

.tw-page .tw-legacy .btn-soft-success::before {
    content: "";
    width: 25px;
    height: 2px;
    background: currentColor;
}

/* the theme's blue tick circles match .tw-checks */
.tw-page .tw-legacy .btn-soft-primary {
    background: var(--tw-green);
    box-shadow: none;
    color: #fff;
}

.tw-page .tw-legacy .media-body {
    color: #40566e !important;
    font-size: 14px;
}

.tw-page .tw-legacy h2,
.tw-page .tw-legacy h3 {
    letter-spacing: -.03em;
}

/* section heading reads above the block titles under it */
.tw-page .tw-legacy .w-md-80 h3,
.tw-page .tw-legacy .w-lg-80 h2 {
    margin-bottom: 14px;
    font-size: clamp(34px, 3.4vw, 44px);
}

.tw-page .tw-legacy .w-md-80 p,
.tw-page .tw-legacy .w-lg-80 p {
    color: var(--tw-muted);
    font-size: 16px;
    line-height: 1.8;
}

.tw-page .tw-legacy h2.text-primary {
    font-size: clamp(26px, 2.4vw, 32px);
}

.tw-checks {
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.tw-checks li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 28px;
    color: #40566e;
    font-size: 14px;
}

.tw-checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: var(--tw-green);
    font-size: 11px;
    font-weight: 800;
}

.tw-screen {
    overflow: hidden;
    border: 1px solid #dce5ee;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(16, 36, 62, .12);
}

.tw-screen img {
    display: block;
    width: 100%;
    height: auto;
}

/* SUBCONTRACTOR PANEL */
.tw-subcontractor-card {
    padding: 34px;
    border-radius: 18px;
    background: var(--tw-navy);
    box-shadow: 0 25px 65px rgba(16, 36, 62, .14);
}

.tw-subcontractor-card h2 {
    color: #fff;
}

.tw-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tw-list li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 28px;
    color: #c9d7e4;
    font-size: 14px;
    line-height: 1.7;
}

.tw-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 11px;
    height: 11px;
    border: 2px solid var(--tw-amber);
}

/* TESTIMONIALS */
.tw-quote {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--tw-line);
    border-radius: 16px;
    background: #fff;
    transition: .25s ease;
}

.tw-quote:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(16, 36, 62, .07);
}

.tw-stars {
    margin-bottom: 17px;
    color: #ffb300;
    font-size: 12px;
    letter-spacing: 2px;
}

.tw-quote blockquote {
    flex: 1;
    margin: 0 0 22px;
    color: #40566e;
    font-size: 14px;
    line-height: 1.8;
}

.tw-quote figcaption {
    color: #8493a3;
    font-size: 11px;
}

.tw-quote figcaption strong {
    display: block;
    margin-bottom: 3px;
    color: var(--tw-text);
    font-family: var(--tw-display);
    font-size: 14px;
}

/* OFFER */
.tw-offer {
    padding: 30px;
    border: 1px solid rgba(245, 179, 53, .35);
    border-left: 3px solid var(--tw-amber);
    border-radius: 14px;
    background: rgba(245, 179, 53, .055);
}

.tw-offer__num {
    color: var(--tw-amber);
    font-family: var(--tw-display);
    font-size: 68px;
    font-weight: 700;
    line-height: .85;
}

.tw-offer__label {
    margin: 11px 0 10px;
    color: var(--tw-amber);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.tw-offer p {
    margin: 0;
    color: #cbd8e4;
    font-size: 14px;
    line-height: 1.75;
}

/* EXISTING SHARED COMPONENTS */
.tw-page .js-slick-carousel,
.tw-page .u-carousel-v5 {
    border-radius: 18px;
}

.tw-page .btn-primary {
    background: var(--tw-blue);
    border-color: var(--tw-blue);
}

.tw-page .btn-primary:hover {
    background: #1668ed;
    border-color: #1668ed;
}

.tw-page a:focus-visible,
.tw-page button:focus-visible {
    outline: 2px solid var(--tw-amber);
    outline-offset: 3px;
}

@media (max-width: 991.98px) {

    /* the header nav wraps to two rows at this width, so the hero starts lower */
    .tw-hero {
        padding: 150px 0 88px;
    }

    /* the floating stats hang outside the panel and would be clipped here */
    .tw-float {
        display: none;
    }

    .tw-hero__grid,
    .tw-product-row,
    .tw-product-row--reverse {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .tw-question-grid,
    .tw-cap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tw-product-row--reverse .tw-product-copy {
        order: -1;
    }

    .tw-roles__list li {
        border-left: 0;
        padding: 4px 11px;
    }
}

@media (max-width: 767px) {
    .tw-container {
        width: min(100% - 28px, 1180px);
    }

    .tw-section {
        padding: 76px 0;
    }

    .tw-hero {
        padding: 64px 0 84px;
    }

    .tw-hero h1 {
        font-size: 46px;
    }

    .tw-question-grid,
    .tw-cap-grid {
        grid-template-columns: 1fr;
    }

    .tw-float {
        display: none;
    }

    .tw-hero__actions {
        flex-direction: column;
    }

    .tw-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .tw-btn,
    .tw-q,
    .tw-cap,
    .tw-quote {
        transition: none !important;
    }
}

.logo_footer {
    height: 70px;
}

/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 992px) {
    .logo_footer {
        height: 50px;
    }
}

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 767px) {

    .u-header__navbar-brand,
    .u-header__navbar-brand>img {
        padding-top: 0;
        padding-bottom: 0;
        width: 7rem;
    }
}
/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.tw-facts {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    background: rgba(255, 255, 255, .05);
}

.tw-facts__label {
    margin-bottom: 22px;
    color: var(--tw-amber);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.tw-facts dl {
    margin: 0;
}

.tw-facts dt {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-family: var(--tw-display);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -.02em;
}

.tw-facts dd {
    margin: 6px 0 20px;
    color: #b8c8d9;
    font-size: 14px;
    line-height: 1.7;
}

.tw-facts dd:last-child {
    margin-bottom: 0;
}

/* two-column prose */
/* CSS columns, not a grid: sequential prose has to read down one column first */
.tw-prose {
    columns: 2;
    column-gap: 54px;
}

.tw-prose p {
    margin: 0 0 20px;
    color: var(--tw-muted);
    font-size: 16px;
    line-height: 1.85;
}

.tw-prose p:last-child {
    margin-bottom: 0;
}

.tw-prose p strong {
    color: var(--tw-text);
    font-weight: 600;
}

/* mission statement */
.tw-statement {
    max-width: 940px;
}

.tw-statement blockquote {
    margin: 0 0 26px;
    color: #fff;
    font-family: var(--tw-display);
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.18;
}

.tw-statement blockquote em {
    color: var(--tw-amber);
    font-style: normal;
}

.tw-statement footer {
    color: #8fa8c2;
    font-size: 14px;
    line-height: 1.8;
}

/* project lifecycle rail */
.tw-lifecycle {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    gap: 8px 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: tw-stage;
}

.tw-lifecycle li {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 18px 13px 14px;
    border: 1px solid var(--tw-line);
    border-radius: 12px;
    background: #fff;
    color: var(--tw-text);
    font-size: 14px;
    font-weight: 500;
    counter-increment: tw-stage;
}

.tw-lifecycle li::before {
    content: counter(tw-stage, decimal-leading-zero);
    color: var(--tw-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}

.tw-lifecycle li:last-child {
    border-color: rgba(245, 179, 53, .5);
    background: rgba(245, 179, 53, .07);
}

.tw-lifecycle li:last-child::before {
    color: #a97a12;
}

@media (max-width: 767px) {
    .tw-prose {
        columns: 1;
    }

    .tw-lifecycle {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
    }

    .tw-facts {
        padding: 26px;
    }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.tw-product-row--top {
    align-items: start;
}

.tw-form-card {
    padding: 38px;
    border: 1px solid var(--tw-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(16, 36, 62, .08);
}

.tw-form-card .form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--tw-text);
    font-family: var(--tw-body);
    font-size: 13px;
    font-weight: 600;
    /* the theme uppercases and letterspaces form labels; this reads as a sentence */
    text-transform: none;
    letter-spacing: 0;
}

.tw-form-card .form-label .text-danger {
    color: var(--tw-amber) !important;
}

.tw-form-card .form-control {
    height: auto;
    min-height: 50px;
    padding: 13px 16px;
    border: 1px solid var(--tw-line);
    border-radius: 12px;
    background: var(--tw-paper);
    color: var(--tw-text);
    font-family: var(--tw-body);
    font-size: 15px;
    box-shadow: none;
    transition: border-color .18s ease, background .18s ease;
}

.tw-form-card textarea.form-control {
    min-height: 150px;
    line-height: 1.7;
}

.tw-form-card .form-control::placeholder {
    color: #9aabbb;
}

.tw-form-card .form-control:focus {
    border-color: var(--tw-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(47, 125, 246, .13);
    outline: none;
}

.tw-form-card .invalid-feedback {
    margin-top: 7px;
    color: var(--tw-red);
    font-size: 12.5px;
}

.tw-form-card .tw-btn {
    width: 100%;
}

.tw-form-note {
    margin: 16px 0 0;
    color: var(--tw-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* what to expect / sent confirmation */
.tw-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: tw-step-n;
}

.tw-steps li {
    position: relative;
    padding: 0 0 26px 44px;
    counter-increment: tw-step-n;
}

.tw-steps li::before {
    content: counter(tw-step-n, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--tw-line);
    border-radius: 50%;
    background: #fff;
    color: var(--tw-blue);
    font-size: 10px;
    font-weight: 800;
}

.tw-steps li:last-child {
    padding-bottom: 0;
}

.tw-steps li::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 30px;
    bottom: 8px;
    width: 1px;
    background: var(--tw-line);
}

.tw-steps li:last-child::after {
    display: none;
}

.tw-steps h3 {
    margin: 4px 0 6px;
    font-size: 18px;
}

.tw-steps p {
    margin: 0;
    color: var(--tw-muted);
    font-size: 14px;
    line-height: 1.75;
}

.tw-sent {
    padding: 44px 38px;
    border: 1px solid rgba(21, 150, 105, .3);
    border-left: 3px solid var(--tw-green);
    border-radius: 18px;
    background: rgba(21, 150, 105, .05);
}

.tw-sent__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--tw-green);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.tw-sent h2 {
    margin: 0 0 12px;
    font-size: 30px;
}

.tw-sent p {
    margin: 0 0 24px;
    color: var(--tw-muted);
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .tw-form-card {
        padding: 26px;
    }
}
