
:root {
    --navy:#062f68;
    --blue:#0d659d;
    --orange:#ed7b16;
    --text:#24384a;
    --muted:#647789;
    --line:#dce6ef;
    --page:#f4f7fa;
    --white:#fff;
    --shadow:0 10px 30px rgba(15,49,82,.08);
}

*,
*::before,
*::after {
    box-sizing:border-box;
}

html,
body {
    margin:0;
    padding:0;
}

html {
    overflow-x:hidden;
}

body {
    min-height:100vh;
    overflow-x:hidden;
    background:var(--page);
    color:var(--text);
    font-family:Arial,Helvetica,sans-serif;
    font-size:14px;
    line-height:1.72;
}

a {
    color:var(--blue);
}

a:hover {
    color:var(--navy);
}


/* ==========================================
   HEADER
   ========================================== */

.sv-head {
    width:100%;
    background:#fff;
    box-shadow:0 3px 18px rgba(8,47,87,.08);
}

.sv-head-inner {
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;

    width:min(1440px,94vw);
    min-height:108px;

    margin:0 auto;
    padding:12px 0;
}

.sv-brand {
    display:flex;
    align-items:center;
    text-decoration:none;
}

.sv-brand img {
    display:block;
    width:245px;
    max-width:245px;
    height:82px;
    object-fit:contain;
    object-position:left center;
}

.sv-account {
    display:flex;
    align-items:center;
    gap:8px;
}

.sv-account a {
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:40px;
    padding:9px 16px;

    border:1px solid var(--navy);
    border-radius:5px;

    font-size:13px;
    font-weight:700;
    line-height:1;
    text-decoration:none;
}

.sv-register {
    background:#fff;
    color:var(--navy);
}

.sv-login {
    background:var(--navy);
    color:#fff;
}

.sv-account a:hover {
    border-color:var(--blue);
    background:var(--blue);
    color:#fff;
}


/* ==========================================
   NAVIGATION
   ========================================== */

.sv-nav {
    width:100%;
    background:var(--navy);
}

.sv-nav-inner {
    display:flex;
    align-items:center;

    width:min(1440px,94vw);

    margin:0 auto;
}

.sv-nav a {
    display:flex;
    align-items:center;

    min-height:52px;

    padding:0 13px;

    color:#fff;

    font-size:13px;
    font-weight:700;

    white-space:nowrap;
    text-decoration:none;
}

.sv-nav a:hover,
.sv-nav a:focus {
    background:rgba(255,255,255,.12);
    color:#fff;
}

.sv-search {
    margin-left:auto;
}


/* ==========================================
   PAGE BODY
   ========================================== */

.sv-page {
    width:min(1440px,94vw);

    margin:32px auto 46px;
    padding:38px 44px;

    border:1px solid var(--line);
    border-radius:10px;

    background:#fff;

    box-shadow:var(--shadow);
}

.sv-page h1 {
    margin:0 0 28px;
    padding:0 0 14px;

    border-bottom:3px solid var(--orange);

    color:var(--navy);

    font-size:36px;
    line-height:1.2;
}

.sv-page h2 {
    margin:32px 0 15px;
    padding-bottom:9px;

    border-bottom:1px solid var(--line);

    color:var(--navy);

    font-size:22px;
}

.sv-page h3 {
    margin-top:25px;
    color:var(--blue);
    font-size:18px;
}

.sv-page p,
.sv-page li,
.sv-page td,
.sv-page th {
    font-size:14px;
    line-height:1.75;
}

.sv-page table {
    width:100%;
    margin:18px 0 25px;
    border-collapse:collapse;
}

.sv-page th,
.sv-page td {
    padding:11px 13px;
    border:1px solid var(--line);
    text-align:left;
    vertical-align:top;
}

.sv-page th {
    background:#eef5fb;
    color:var(--navy);
    font-weight:700;
}

.note {
    margin:20px 0;
    padding:18px 20px;

    border-left:4px solid var(--blue);
    border-radius:5px;

    background:#edf6fc;
}

.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:43px;
    padding:10px 18px;

    border-radius:5px;

    background:var(--navy);
    color:#fff;

    font-weight:700;
    text-decoration:none;
}

.btn:hover {
    background:var(--blue);
    color:#fff;
}


/* ==========================================
   FOOTER
   ========================================== */

.sv-foot {
    width:100%;
    margin:0;
    background:var(--navy);
    color:#d7e5f2;
}

.sv-foot-inner {
    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(420px,.9fr);

    gap:50px;
    align-items:start;

    width:min(1440px,94vw);

    margin:0 auto;
    padding:35px 0 28px;
}

.sv-foot-brand {
    display:flex;
    flex-direction:column;
    gap:4px;

    font-size:13px;
    line-height:1.7;
}

.sv-foot-brand strong {
    color:#fff;
    font-size:14px;
}

.sv-foot a {
    color:#fff;
    text-decoration:none;
}

.sv-foot a:hover {
    color:#ffd26b;
}

.sv-foot-links {
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;

    gap:8px 20px;
}

.sv-foot-links a {
    font-size:13px;
    font-weight:700;
}

.sv-foot-bottom {
    width:min(1440px,94vw);

    margin:0 auto;

    padding:18px 0 22px;

    border-top:1px solid rgba(255,255,255,.16);

    color:#b9cbdd;

    font-size:12px;
}


/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width:1100px) {

    .sv-nav-inner {
        flex-wrap:wrap;
    }

    .sv-nav a {
        padding:0 9px;
        font-size:12px;
    }

}

@media (max-width:780px) {

    .sv-head-inner {
        flex-direction:column;
        justify-content:center;
        gap:10px;

        width:92vw;
    }

    .sv-brand img {
        width:190px;
        height:72px;
        object-position:center;
    }

    .sv-nav-inner {
        display:block;
        width:100%;
    }

    .sv-nav a {
        min-height:44px;
        padding:0 18px;
    }

    .sv-search {
        margin-left:0;
    }

    .sv-page {
        width:92vw;
        margin:22px auto 32px;
        padding:24px 21px;
    }

    .sv-page h1 {
        font-size:28px;
    }

    .sv-page table {
        display:block;
        overflow-x:auto;
    }

    .sv-foot-inner {
        grid-template-columns:1fr;
        gap:25px;

        width:92vw;
        text-align:center;
    }

    .sv-foot-links {
        justify-content:center;
    }

    .sv-foot-bottom {
        width:92vw;
        text-align:center;
    }

}



/* ==========================================================
   JSRM FINAL COMMON FOOTER
   ========================================================== */

.jsrm-global-footer {
    width:100%;
    margin:0;
    padding:0;
    background:#062f68;
    color:#d8e6f3;
    font-family:Arial,Helvetica,sans-serif;
}

.jsrm-global-footer-inner {
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(580px,1fr);
    gap:60px;
    align-items:start;

    width:min(1440px,94vw);
    max-width:1440px;

    margin:0 auto;
    padding:38px 0 30px;
}

.jsrm-footer-info {
    display:flex;
    flex-direction:column;
    gap:4px;

    color:#d8e6f3;
    font-size:13px;
    line-height:1.7;
}

.jsrm-footer-title {
    margin-bottom:2px;
    color:#fff;
    font-size:15px;
    font-weight:700;
}

.jsrm-global-footer a {
    color:#fff;
    text-decoration:none;
}

.jsrm-global-footer a:hover {
    color:#ffd166;
}

.jsrm-footer-links {
    display:grid;

    grid-template-columns:
        repeat(5,max-content);

    justify-content:end;

    column-gap:28px;
    row-gap:17px;

    padding-top:2px;
}

.jsrm-footer-links a {
    font-size:13px;
    font-weight:700;
    line-height:1.25;
    white-space:nowrap;
}

.jsrm-footer-bottom {
    width:min(1440px,94vw);
    max-width:1440px;

    margin:0 auto;

    padding:19px 0 23px;

    border-top:
        1px solid
        rgba(255,255,255,.20);

    color:#c6d7e7;

    font-size:12px;

    text-align:center;
}

@media (max-width:1100px) {

    .jsrm-global-footer-inner {
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

    .jsrm-footer-links {
        grid-template-columns:
            repeat(3,max-content);
    }

}

@media (max-width:780px) {

    .jsrm-global-footer-inner {
        grid-template-columns:1fr;
        width:92vw;
        gap:25px;
        text-align:center;
    }

    .jsrm-footer-links {
        grid-template-columns:
            repeat(2,1fr);

        justify-content:stretch;
        text-align:center;
    }

    .jsrm-footer-links a {
        white-space:normal;
    }

    .jsrm-footer-bottom {
        width:92vw;
    }

}

