:root{

    --ss-primary:#0f2747;
    --ss-secondary:#2f5e9e;

    --ss-bg:#ffffff;

    --ss-border:#e6e9ee;

    --ss-text:#2e3540;

    --ss-muted:#6f7782;

    --ss-radius:6px;

    --ss-transition:.2s ease;

    --ss-font:Arial,sans-serif;

    --ss-page-width:1400px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    background:#fff;
    color:var(--ss-text);
    font-family:var(--ss-font);
    font-size:15px;
    font-weight:400;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
}

input,
select,
textarea,
button{
    font:inherit;
}