:root {
    --navy: #061f42;
    --navy-deep: #04182f;
    --navy-button: #052653;
    --gold: #d28d0b;
    --gold-light: #e2a21b;
    --ink: #091c3b;
    --muted: #687386;
    --line: #dce1e8;
    --page: #ffffff;
    --soft: #f8f9fb;
    --danger: #f04444;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--page);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

.home-page-background {
    position: relative;
    min-height: 100vh;
    background-color: #f4f4f2;
    background-image: linear-gradient( rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) ), url("Images/slo-legal-background.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
}



button, input, select, textarea {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

.page-shell {
    width: min(1390px, calc(100% - 150px));
    margin: 0 auto;
}

.topbar {
    height: 76px;
    background: linear-gradient(90deg, #051b39 0%, #08274d 52%, #061b38 100%);
    color: #fff;
}

.topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
}

.brand-mark {
    width: 58px;
    height: 58px;
    fill: var(--gold-light);
    flex: 0 0 auto;
}

.brand-mark-inner {
    fill: #06224a;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

    .brand-copy strong {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 25px;
        letter-spacing: 1.8px;
        font-weight: 500;
    }

    .brand-copy small {
        margin-top: 8px;
        font-size: 8px;
        letter-spacing: 1px;
    }

.main-nav {
    display: flex;
    align-items: stretch;
    height: 100%;
    gap: 48px;
}

    .main-nav a {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 14px;
        color: #fff;
    }

        .main-nav a.active {
            color: #f2a317;
        }

            .main-nav a.active::after {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 3px;
                background: var(--gold);
            }

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 24px;
}



.information-section {
    padding: 27px 0 26px;
    background: rgba(255, 255, 255, 0.35);
}

.hero {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    border-bottom: 1px solid rgba(230, 232, 236, 0.8);
    background: transparent;
}



.architectural-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 57%;
    height: 100%;
    opacity: .16;
    overflow: hidden;
    filter: grayscale(1);
}

.pediment {
    position: absolute;
    left: 9%;
    top: -33px;
    width: 430px;
    height: 230px;
    border: 18px double #8a8f98;
    transform: skewX(-30deg) rotate(-6deg);
    border-bottom-width: 28px;
}

.column {
    position: absolute;
    top: 115px;
    width: 66px;
    height: 385px;
    background: repeating-linear-gradient(90deg, #8c9198 0 4px, transparent 4px 9px), linear-gradient(#858b93, #a1a6ad);
    border-radius: 8px 8px 0 0;
    box-shadow: -12px 0 0 -7px #737981, 12px 0 0 -7px #737981;
}

    .column::before {
        content: '';
        position: absolute;
        left: -14px;
        top: -24px;
        width: 94px;
        height: 28px;
        border-top: 9px double #777d85;
        border-bottom: 7px solid #777d85;
    }

.c1 {
    left: 19%;
}

.c2 {
    left: 36%;
}

.c3 {
    left: 53%;
}

.c4 {
    left: 70%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.38fr .82fr;
    gap: 70px;
    align-items: start;
    padding-top: 44px;
    padding-bottom: 30px;
}

.hero-copy h1 {
    margin: 12px 0 22px;
    color: #081d3d;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(42px, 3.15vw, 56px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.7px;
}

    .hero-copy h1 span {
        color: #c88408;
    }

.hero-copy > p {
    margin: 0;
    color: #142541;
    font-size: 17px;
    line-height: 1.75;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 660px;
    margin-top: 28px;
}

.benefit {
    min-width: 0;
}

.benefit-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #092c5b, #021936);
    color: #e4a11c;
    font-size: 24px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.benefit strong {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.13;
}

.gold-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
    min-width: 226px;
    height: 47px;
    padding: 0 25px;
    border-radius: 6px;
    background: linear-gradient(135deg, #cd8607, #dfa217);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(188,117,0,.17);
}

.login-card {
    width: 300px;
    align-self: start;
    margin-top: 0;
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 15px 31px rgba(0,0,0,.22);
    overflow: hidden;
}

.login-tabs {
    width: 300px;
    height: 66px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--line);
}



.login-tab {
    width: 300px;
    border: 0;
    background: #fff;
    color: #121F6B;
    cursor: pointer;
    font-weight: 700;
}

    .login-tab i {
        margin-right: 10px;
        font-size: 20px;
        color: #121F6B;
    }

    .login-tab.active {
        background: linear-gradient(135deg, #06244d, #031a38);
        color: #121F6B;
    }

.login-body {
    padding: 0px 44px 31px;
}

.input-wrap {
    position: relative;
    display: block;
    margin-bottom: 19px;
}

    .input-wrap > i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #0b0b0b;
        font-size: 17px;
    }

    .input-wrap input {
        width: 100%;
        height: 46px;
        padding: 0 40px;
        color: #12213a;
        border: 1px solid #d9dfe8;
        border-radius: 5px;
        outline: none;
    }

        .input-wrap input:focus, select:focus, textarea:focus {
            border-color: #9eb1c8;
            box-shadow: 0 0 0 3px rgba(6,39,82,.08);
        }

    .input-wrap > span, .textarea-wrap > span {
        position: absolute;
        right: -11px;
        top: 15px;
        color: var(--danger);
    }

.navy-button {
    border: 0;
    border-radius: 5px;
    background: linear-gradient(135deg, #062854, #031a38);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}

.login-button {
    display: block;
    width: 61%;
    min-width: 205px;
    height: 44px;
    margin: 7px auto 0;
}

    .login-button i {
        margin-left: 15px;
    }

.forgot {
    display: table;
    margin: 18px auto 0;
    color: #006edb;
    font-size: 13px;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr .9fr 1.02fr;
    gap: 38px;
}

.info-card {
    min-height: 282px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.14);
}

.card-heading {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    background: linear-gradient(90deg, #052650, #031b3a);
    color: #fff;
    font-weight: 700;
}

    .card-heading i {
        font-size: 21px;
        font-weight: 400;
    }

.card-body {
    padding: 18px 18px 15px;
}

.field-label {
    display: block;
    margin: 0 0 8px;
    color: #080f1d;
    font-weight: 700;
}

.rates-body select {
    width: 100%;
    height: 40px;
    padding: 0 18px;
    border: 1px solid #d5dbe4;
    border-radius: 5px;
    color: #17243a;
    background: #fff;
}

.rate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 19px;
}

    .rate-grid label {
        color: #090e17;
        font-weight: 700;
    }

    .rate-grid input {
        width: 100%;
        height: 40px;
        margin-top: 8px;
        padding: 0 14px;
        border: 1px solid #e2ca8a;
        border-radius: 5px;
        background: linear-gradient(100deg, #fff8e5, #fff2c8);
        color: #4b5566;
    }

.updated {
    margin: 24px 0 0;
    color: #27354a;
    font-size: 13px;
}

    .updated i {
        margin-right: 8px;
    }

.links-body {
    display: flex;
    flex-direction: column;
    padding: 16px 24px 14px;
}

    .links-body a {
        padding: 5px 0;
        color: #16243a;
    }

        .links-body a i {
            width: 18px;
            margin-right: 2px;
            color: #cf8500;
        }

.view-links {
    align-self: flex-start;
    width: 244px;
    height: 36px;
    margin-top: 10px;
}

    .view-links i {
        margin-left: 22px;
    }

.feedback-body > p {
    margin: 0 0 17px;
    font-weight: 700;
}

.textarea-wrap {
    position: relative;
    display: block;
}

    .textarea-wrap textarea {
        display: block;
        width: 100%;
        height: 112px;
        resize: vertical;
        padding: 13px 14px;
        border: 1px solid #d6dce5;
        border-radius: 5px;
        color: #18263b;
    }

.submit-button {
    width: 165px;
    height: 38px;
    margin-top: 18px;
}

    .submit-button i {
        margin-left: 10px;
    }

.site-footer {
    min-height: 140px;
    border-top: 3px solid #df9815;
    background: linear-gradient(90deg, #062143, #08284e 52%, #031a37);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .9fr .82fr;
    gap: 100px;
    align-items: start;
    padding-top: 22px;
}

.footer-brand .brand-mark {
    width: 52px;
    height: 52px;
}

.footer-brand .brand-copy strong {
    font-size: 24px;
}

.footer-brand-block > p {
    margin: 17px 0 0 10px;
    font-size: 14px;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #e59b13;
    font-size: 14px;
}

.footer-contact p {
    margin: 7px 0;
}

.footer-contact i {
    width: 18px;
    color: #e39a14;
}

.socials {
    display: flex;
    gap: 11px;
}

    .socials a {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border: 1px solid #fff;
        border-radius: 50%;
        font-size: 18px;
    }

@media (max-width: 1180px) {
    .page-shell {
        width: min(100% - 50px, 1100px);
    }

    .main-nav {
        gap: 22px;
    }

    .hero-grid {
        grid-template-columns: 1.1fr .9fr;
        gap: 30px;
    }

    .benefits {
        gap: 16px;
    }

    .cards-grid {
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .home-page-background {
        background-attachment: scroll;
        background-position: center top;
        background-size: auto 100%;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: calc(100% - 28px);
    }

    .brand-copy strong {
        font-size: 19px;
    }

    .brand-copy small {
        font-size: 6.5px;
    }

    .brand-mark {
        width: 47px;
        height: 47px;
    }

    .hero-copy h1 {
        font-size: 38px;
    }

    .desktop-break {
        display: none;
    }

    .benefits {
        grid-template-columns: 1fr 1fr;
        max-width: 350px;
    }

    .benefit {
        text-align: center;
    }

    .benefit-icon {
        margin: 0 auto;
    }

    .login-tabs {
        height: 58px;
    }

    .login-body {
        padding: 28px 24px 25px;
    }

    .login-button {
        width: 100%;
    }

    .rate-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-bottom: 28px;
    }

    .footer-social {
        grid-column: auto;
    }

    #example .demo-container {
        width: 600px;
        padding: 125px 120px 0 20px;
        height: 500px;
        background-color: transparent;
    }

    .demo-container .outerMultiPage {
        height: 387px;
        width: 593px;
        margin-left: 15px;
        margin-top: 30px;
    }

    .demo-container .innerMultiPage {
        display: inline-block;
        *display: inline;
        zoom: 1;
        position: relative;
        margin-bottom: -3px;
    }

    .demo-container .qsf-ib {
        display: inline-block;
        *display: inline;
        zoom: 1;
    }

    .demo-container ul {
        margin: 0;
        padding: 0;
    }

    .demo-container .RadRating {
        margin-bottom: 22px;
        position: relative;
        top: 15px;
        *top: -3px;
    }
}
