/* CSS VARIABLES */
:root {
    --bg-hero: #7a7a7a;
    --bg-footer: #6e6e6e;
    --txt: #111;
    --muted: #666;
    --white: #fff;
    --line: #e7e7e7;
    --shadow: 0 10px 26px rgba(0, 0, 0, .08);
    --radius: 10px;
    --red: #d21818;
    --red-dark: #b61212;
    --container: 1100px;
}

/* RESET & BASE STYLES */
* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--txt);
    background: #fff;
}

img {
    max-width: 100%;
    display: block
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none
}

h1, h2, h3 {
    margin: 0 0 .6rem
}

p {
    margin: .4rem 0
}

/* UTILITY CLASSES */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px
}

.center {
    text-align: center
}

.muted {
    color: var(--muted)
}

.small {
    font-size: .9rem
}

.max-620 {
    max-width: 620px;
    margin: 0 auto
}

.max-760 {
    max-width: 760px;
    margin: 0 auto
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 12px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    z-index: 9999
}

.req {
    color: #d00;
    margin-left: .25rem;
}
