

<style>
    .chd-colors {
        --brand-primary: #000000;
        --brand-secondary: #f26147;
        --brand-text-primary: #fff;
        --brand-text-secondary: #ffffff;
    }

  .chd-main {
    width: 100%;
    margin: 0 auto;
    --sm-size: 0.5rem;
    --md-size: 1rem;
    --lg-size: 2rem;
    --xl-size: 4rem;
    max-width: 1400px;
}

        .chd-main h3 {
            font-weight: 100;
        }

        .chd-main * {
            box-sizing: border-box;
        }

        .chd-main p:empty {
            display: none;
        }

        .chd-main *:is(header, section) {
            padding: var(--md-size);
        }

        .chd-main *:is(h1, h2, h3, h4) {
            margin: 0 0 var(--md-size);
            padding: 0;
        }

        .chd-main section {
            margin: var(--md-size) auto;
            max-width: 1600px;
        }



    .chd-flex-row,
    .chd-flex-col {
        display: flex;
    }

    .chd-flex-col {
        flex-direction: column;
    }

    .chd-main img {
        object-fit: cover;
        min-width: 0;
    }

    .chd-main *:is(.chd-flex-row, .chd-flex-col).justify-center,
    .chd-main *:is(.chd-flex-row, .chd-flex-col).center {
        justify-content: center;
    }

    .chd-main *:is(.chd-flex-row, .chd-flex-col).align-center,
    .chd-main *:is(.chd-flex-row, .chd-flex-col).center {
        align-items: center;
    }

    .chd-main *:is(.chd-flex-row, .chd-flex-col).gap-sm {
        gap: var(--sm-size);
    }

    .chd-main *:is(.chd-flex-row, .chd-flex-col).gap-md {
        gap: var(--md-size);
    }

    .chd-main *:is(.chd-flex-row, .chd-flex-col).gap-lg {
        gap: var(--lg-size);
    }

    .chd-flex-col.gap-md.pod {
        justify-content: center;
    }

    .chd-main .p-0 {
        padding: 0;
    }

    .chd-main .p-sm {
        padding: var(--sm-size);
    }

    .chd-main .p-md {
        padding: var(--md-size);
    }

    .chd-main .p-lg {
        padding: var(--lg-size);
    }

    .chd-main .m-0 {
        margin: 0;
    }

    .chd-main .m-sm {
        margin: var(--sm-size);
    }

    .chd-main .m-md {
        margin: var(--md-size);
    }

    .chd-main .m-lg {
        margin: var(--lg-size);
    }

    .chd-main .mx-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .fill,
    .fill-width,
    .full-width-children > * {
        width: 100%;
    }

    .chd-main .float-left {
        float: left;
        margin-right: var(--md-size);
    }

    .chd-main .float-right {
        float: right;
        margin-left: var(--md-size);
    }

    .clear {
        clear: both;
    }


    #models {
        --columns: 4;
        display: grid;
        grid-template-columns: repeat(var(--columns), 1fr);
        gap: 15px;
        margin-bottom: 2ch;
        font-size: 15px;
        text-align: center;
    }

section.link-list.flex-row.mobile-convert.full-width-children.divided.boxed a {
    border: 1px solid #bdbdbd;
    padding: 20px;
}

    a.chd-btn,
    a.chd-btn:active,
    a.chd-btn:visited {
       display: block;
    text-align: center;
    padding: 0.75rem;
    width: 100%;
    transition: all 0.25s ease;
    text-decoration: none !important;
    font-weight: 700;
    border: 1px solid var(--brand-primary);
    background: #05141f;
    color: white;
border-radius: 50px;
    }

        a.chd-btn:hover {
            background-color: #0f4166;
            color: white;
        }

    .chd-main #header-pods > * {
        width: 100%;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .chd-main #header-pods h3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        background: #324047;
        color: #fff;
        margin: 0;
        padding: var(--sm-size);
        text-align: center;
    }

    .chd-main #header-pods img {
        object-fit: contain;
        aspect-ratio: 16 / 9;
    }

    .chd-main #header-pods .chd-btn {
        width: fit-content;
        margin: 0 auto;
    }

    .flex-row, .flex-col {
        display: flex;
       
        text-align: center;
    }

    .boxed {
        border: 1px solid var(--accent-secondary);
    }

    @media(max-width:768px) {
        .chd-flex-row.mobile-convert {
            flex-direction: column;
        }

        .chd-flex-col.mobile-convert {
            flex-direction: row;
        }

        .mobile-first {
            order: -1;
        }

        .chd-main *:is(.float-left, .float-right) {
            float: unset !important;
            max-width: 100%;
            margin: 0;
        }
    }
</style>