:root {
    --am-blue: #0d6efd;
    --am-dark-blue: #084298;
    --am-light-blue: #e7f1ff;
    --am-ink: #1f2d3d;
    --am-muted: #6c757d;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--am-ink);
    background: #ffffff;
}

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

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    z-index: 2000;
    background: #ffffff;
    color: var(--am-blue);
    padding: .5rem .75rem;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.navbar-brand {
    letter-spacing: .02em;
}

.navbar-brand .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: #ffffff;
    color: var(--am-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: .55rem;
    box-shadow: inset 0 0 0 2px rgba(13,110,253,.15);
}

.navbar .dropdown-menu {
    border: 0;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.14);
}

.hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13,110,253,.95), rgba(8,66,152,.92));
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    opacity: .34;
    transform: scale(1.02);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-card {
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.22);
    border-radius: 1.25rem;
}

.page-hero {
    background: linear-gradient(135deg, var(--am-blue), var(--am-dark-blue));
    color: #ffffff;
    padding: 4.25rem 0 3.75rem;
}

.page-hero.with-image {
    position: relative;
    overflow: hidden;
}

.page-hero.with-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--page-image);
    background-size: cover;
    background-position: center;
    opacity: .28;
}

.page-hero.with-image .container {
    position: relative;
    z-index: 1;
}

.section-pad {
    padding: 4rem 0;
}

.section-pad-sm {
    padding: 2.5rem 0;
}

.content-card {
    border: 0;
    box-shadow: 0 .6rem 1.6rem rgba(0,0,0,.08);
    border-radius: 1rem;
}

.compliance-card {
    border-left: .35rem solid var(--am-blue);
}

.icon-circle {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: var(--am-light-blue);
    color: var(--am-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex: 0 0 auto;
}

.fee-list .list-group-item {
    padding: 1.1rem 1.25rem;
}

.fee-title {
    font-weight: 700;
    color: var(--am-dark-blue);
}

.document-link .fa-up-right-from-square,
.document-link .fa-external-link-alt {
    font-size: .82em;
    margin-left: .35rem;
}

.footer {
    background: #0b2447;
    color: rgba(255,255,255,.78);
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover,
.footer a:focus {
    text-decoration: underline;
}

.footer-small {
    font-size: .89rem;
}

.breadcrumb-item a {
    color: #ffffff;
}

.breadcrumb-item.active {
    color: rgba(255,255,255,.82);
}

.table-cookie th {
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .display-4 {
        font-size: 2.35rem;
    }

    .page-hero {
        padding: 3rem 0 2.75rem;
    }
}
