@font-face {
    font-family: "Open Sans";
    src: url("../fonts/open-sans-regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/open-sans-semibold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/open-sans-bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --blue: #1f54a4;
    --blue-hover: #4c88e2;
    --orange: #f15a27;
    --green: #3cb54a;
    --purple: #7b61ff;
    --ink: #333333;
    --card-ink: #182033;
    --light-gray: #f5f5f5;
    --footer: #121922;
    --container: 1170px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.61;
}

body.menu-open {
    overflow: hidden;
}

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

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

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

button,
input {
    font: inherit;
}

.container {
    width: min(calc(100% - 30px), var(--container));
    margin-right: auto;
    margin-left: auto;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    padding: 8px 12px;
    color: #fff;
    background: var(--footer);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.button,
.button:visited {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 10px 30px 11px;
    border: 1px solid var(--blue);
    border-radius: 5px;
    color: #ffffff;
    background: var(--blue);
    box-shadow: #cccccc 0 5px 15px 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 27px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transform: scale(1);
    transform-origin: center;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover,
.button:focus-visible {
    color: #ffffff;
    background: var(--blue-hover);
    border-color: var(--blue-hover);
    transform: scale(1.05);
}

.button-reverse,
.button-reverse:visited {
    color: var(--blue);
    background: #ffffff;
}

.button-reverse:hover,
.button-reverse:focus-visible {
    color: #ffffff;
    background: var(--blue-hover);
}

.site-header {
    position: relative;
    z-index: 100;
    height: 117px;
    padding-top: 5px;
    background: #ffffff;
	box-shadow: 0 0 15px #00112244;
}

.header-shell {
    position: relative;
    display: block;
    height: 112px;
    margin-top: 0;
}

.brand {
    position: absolute;
    top: 13px;
}

.header-content {
    position: static;
}
.tagline-shell {
    color: #FFFFFF;
    background: var(--blue);
    width: 100%;
    position: relative;
    height: 30px;
    top: -5px;
}
.tagline-content {
    margin: auto;
    font-size: 15px;
    text-align: right;
    width: min(calc(100% - 30px), var(--container));
    padding-top: 2px;
}

.primary-nav {
    position: absolute;
    top: 17px;
    right: 0;
    height: 55px;
    background: #ffffff;
}

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

.primary-nav > ul {
    display: flex;
    height: 55px;
    align-items: flex-start;
    gap: 15px;
}

.primary-nav > ul > li {
    position: relative;
    display: flex;
    height: 55px;
    align-items: flex-start;
}

.primary-nav a,
.primary-nav button {
    display: block;
    height: 55px;
    padding: 14px 0;
    border: 0;
    color: #171717;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.primary-nav .submenu-toggle {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin: 0;
    appearance: none;
    font-family: inherit;
    vertical-align: top;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav button:hover,
.primary-nav button:focus-visible {
    color: var(--blue-hover);
}

.primary-nav .submenu-wedge {
    font-size: 10px;
    line-height: 14px;
}

.primary-nav .header-button,
.primary-nav .header-button:visited {
    display: inline-flex;
    width: 144px;
    height: 39px;
    min-height: 39px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 20px;
    border: 0;
    border-radius: 5px;
    color: #ffffff;
    background: var(--blue);
    box-shadow: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
    text-transform: none;
}

.primary-nav .header-button:hover,
.primary-nav .header-button:focus-visible {
    color: #ffffff;
    background: var(--blue-hover);
}

.submenu {
    position: absolute;
    z-index: 20;
    top: 48px;
    left: -15px;
    display: none;
    width: 250px;
    padding: 8px 0;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

.submenu-wide {
    display: none;
    width: 520px;
    grid-template-columns: repeat(2, 1fr);
}

.submenu-right {
    right: 0;
    left: auto;
}

.submenu a {
    height: auto;
    padding: 9px 15px;
    line-height: 20px;
    white-space: normal;
}

.has-submenu:hover > .submenu,
.has-submenu.submenu-open > .submenu {
    display: block;
}

.has-submenu:hover > .submenu-wide,
.has-submenu.submenu-open > .submenu-wide {
    display: grid;
}

.menu-toggle {
    display: none;
}

.hero-actions {
    display: flex;
    gap: 13px;
}

.hero-actions .button:first-child {
    min-width: 280px;
}

.hero-actions .button:last-child {
    min-width: 220px;
}

/* Shared callout */
.callout-band {
    min-height: 210px;
    background: #2a2a2a;
}

.callout-card {
    position: relative;
    top: -80px;
    display: grid;
    min-height: 238px;
    grid-template-columns: 180px minmax(0, 1fr) 268px;
    align-items: center;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, .1) 0 8px 32px;
}

.callout-media {
    align-self: stretch;
}

.callout-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.callout-copy {
    min-width: 0;
    padding: 28px 30px;
}

.callout-copy h2 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 30px;
    font-weight: 400;
    line-height: 42.86px;
}

.callout-copy p {
    margin: 0;
}

.callout-action {
    padding: 28px 29px;
    text-align: center;
}

.callout-action .button {
    width: 100%;
}

/* Reasons table */
.reasons-table {
    width: 100%;
    border-collapse: collapse;
}

.reasons-table th {
    width: 60px;
    height: 2em;
    padding: 0;
    color: #ffffff;
    background: var(--orange);
    font-size: 42.6667px;
    font-weight: 700;
    line-height: 2em;
    text-align: center;
    vertical-align: middle;
}

.reasons-table td {
    padding: 0 20px 20px;
    font-size: 17px;
    line-height: 27.37px;
    vertical-align: middle;
}

.reasons-table h4 {
    margin: 0;
    color: var(--ink);
    font-size: 17px;
    font-weight: 700;
    line-height: 27.37px;
}

.content-card {
    min-height: 388px;
    padding: 20px;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, .1) 0 8px 32px;
}

.content-card p {
    margin: 0 0 10px;
}

.content-card p:last-child {
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    padding: 55px 0;
    background: #ffffff;
}

.testimonials > .container {
    padding: 0 5px;
}

.testimonials > .container > h2,
.testimonials > .container > h3 {
    margin: 0 0 30px;
    color: var(--ink);
    font-size: 30px;
    font-weight: 700;
    line-height: 42px;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: 30px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 26px 22px;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, .1) 0 8px 32px;
}

.testimonial-card h3,
.testimonial-card h4 {
    margin: 0 0 12px;
    color: #222222;
    font-size: 19px;
    font-weight: 700;
    line-height: 29px;
}

.testimonial-card h3 a {
    color: inherit;
    text-decoration: none;
}

.testimonial-card h3 a:hover,
.testimonial-card h3 a:focus-visible {
    color: var(--blue);
}

.active-hr {
    width: 0;
    height: 4px;
    margin-bottom: 10px;
    border-radius: 999px;
    transition: width .3s ease;
}

.testimonial-card:hover .active-hr,
.testimonial-card:focus-within .active-hr {
    width: 100%;
}

.accent-orange .active-hr { background: var(--orange); }
.accent-green .active-hr { background: var(--green); }
.accent-purple .active-hr { background: var(--purple); }

.testimonial-card p {
    margin: 0 0 17px;
}

.testimonial-author {
    margin-top: auto !important;
    margin-bottom: 0 !important;
    line-height: normal;
}

.testimonial-author strong,
.testimonial-author span {
    display: block;
    line-height: normal;
}

.testimonials-action {
    margin: 30px 0 0;
    text-align: center;
}

/* Interior pages */
.callout-copy h2 span,
.reasons-card h2 span,
.story-card h2 span,
.faq-section h2 span {
    color: var(--orange);
}

.banner {
    min-height: 620px;
    margin-top: -40px;
    padding: 120px 0 140px;
    background-color: #f5f5f5;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.simple-banner {
    min-height: 310px;
    padding: 88px 0 140px;
    background-color: #f5f5f5;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.dark-mode,
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode p {
    color: #ffffff;
}

.dark-mode {
    background-color: #071e32;
}

.dark-mode .button {
	box-shadow: 5px 5px 15px #002244CC;
	transition:.25s;
}
.dark-mode .button:hover {
	box-shadow: 5px 5px 15px #001122DD;
}

.banner-row {
    padding-left: 5px;
}

.banner-copy {
    width: 750px;
}

.banner-copy h1 {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 400;
    line-height: 37px;
}

.banner-copy h2 {
    margin: 0 0 14px;
    font-size: 36px;
    font-weight: 700;
    line-height: 43.56px;
}

.banner-copy h3 {
    margin: 0 0 28px;
    font-size: 24px;
    font-weight: 400;
    line-height: 34.29px;
}

.reasons-section {
    padding: 60px 20px;
    background: var(--light-gray);
}

.reasons-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    gap: 30px;
    align-items: start;
}

.reasons-card h2,
.story-card h2,
.faq-section h2 {
    margin: 0 0 20px;
    font-size: 30px;
    font-weight: 400;
    line-height: 42.86px;
}

.story-section {
    padding: 60px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.story-card p {
    margin-bottom: 12px;
}

.story-card hr {
    margin: 15px 0;
    border: 0;
    border-top: 1px solid #aaaaaa;
}

.three-steps-table {
    width: 100%;
    border-collapse: collapse;
}

.three-steps-table th {
    width: 90px;
    padding: 5px 10px;
    color: #ffffff;
    background: var(--blue);
    font-size: 1.2em;
    font-weight: 600;
    text-align: left;
    vertical-align: top;
}

.three-steps-table td {
    padding: 5px 0 5px 20px;
    vertical-align: top;
}

.faq-section {
    padding: 50px 0;
    background: #ffffff;
}

.faq-item {
    border-bottom: 1px solid rgba(74, 85, 109, .5);
    transition: border-color .2s linear;
}

.faq-item:hover {
    border-bottom-color: #4d89e2;
}

.faq-item h3 {
    margin: 0;
}

.faq-toggle {
    display: flex;
    width: 100%;
    align-items: baseline;
    padding: 10px 0;
    border: 0;
    color: #333333;
    background: transparent;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 34.4px;
    text-align: left;
    cursor: pointer;
    transition: color .2s linear;
}

.faq-toggle:hover {
    color: #4d89e2;
}

.faq-toggle:focus-visible {
    outline: #101010 auto 1px;
    outline-offset: 1px;
}

.faq-toggle[aria-expanded="true"] {
    color: #2861bb;
}

.faq-icon {
    display: inline-grid;
    width: 25px;
    min-width: 25px;
    height: 25px;
    margin-right: 18px;
    place-items: center;
    color: #ffffff;
    background: #4a556d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    transition: background-color .2s linear;
}

.faq-icon::before {
    content: "+";
}

.faq-toggle:hover .faq-icon {
    background: #4d89e2;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
    background: #2861bb;
}

.faq-toggle[aria-expanded="true"] .faq-icon::before {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    margin: 0 0 20px;
    padding: 10px 0 15px;
    color: #333333;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.52px;
}

.features-section {
    padding: 70px 0 60px;
    background: #ffffff;
}

.features-section > .container > h2 {
    margin: 0 0 30px;
    font-size: 30px;
    line-height: 42px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    display: block;
    padding: 20px 20px 30px;
    border-radius: 5px;
    color: var(--ink);
    background: #ffffff;
    box-shadow: none;
    text-decoration: none;
    text-align: center;
    transition: background-color .4s ease, box-shadow .4s ease;
}

.feature-card:hover,
.feature-card:focus-visible {
    color: var(--ink);
    background: var(--light-gray);
    box-shadow: rgba(60, 64, 67, .3) 0 1px 2px, rgba(60, 64, 67, .15) 0 2px 6px 2px;
}

.feature-card:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

.feature-card h3 {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 29px;
}

.feature-icon {
    display: block;
    width: auto;
    height: 48px;
    margin: 0 auto 18px;
    color: var(--orange);
    fill: currentColor;
    overflow: visible;
}

.feature-card p {
	margin-bottom: 0;
	font-size: 17px;
}

/* Footer */
.site-footer {
    height: 376px;
    padding: 40px 0 10px;
    color: #ffffff;
    background: var(--footer);
}

.footer-grid {
    display: grid;
    height: 255px;
    grid-template-columns: repeat(3, 378px);
    gap: 18px;
}

.site-footer h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 22.3125px;
    font-weight: 700;
    line-height: 31.875px;
    text-transform: uppercase;
}

.site-footer p,
.site-footer address,
.site-footer time {
    color: #ffffff;
    font-size: 15px;
    font-style: normal;
    line-height: 26px;
}

.site-footer address {
    margin-bottom: 2px;
}

.site-footer p {
    margin-bottom: 0;
}

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

.footer-article-list {
    display: grid;
    gap: 22px;
}

.footer-article {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: start;
    border-radius: 4px;
    transition: background-color .2s ease, transform .2s ease;
}

.footer-article:hover,
.footer-article:focus-visible {
    background: rgba(255, 255, 255, .08);
    transform: scale(1.02);
}

.footer-article:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.footer-article-no-image {
    grid-template-columns: 1fr;
}

.footer-article img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.footer-article-copy,
.footer-article-copy strong,
.footer-article time {
    display: block;
    font-size: 15px;
    line-height: 21px;
}

.footer-article-copy strong {
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 5px;
}

.social-links a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    color: #333333;
    background: #ffffff;
    font-size: 19px;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .24);
}

.footer-bottom p,
.footer-bottom a {
    font-size: 12.75px;
    line-height: 20.5275px;
}

@media (max-width: 1024px) {
    .primary-nav > ul { gap: 10px; }
    .primary-nav a,
    .primary-nav button { font-size: 13px; }
    .footer-grid { grid-template-columns: 1fr 1.2fr .8fr; gap: 35px; }
}

@media (max-width: 991px) {
    .site-header {
        height: 88px;
    }

    .header-shell {
        height: 88px;
        margin-top: 0;
    }

    .brand {
        top: 17px;
    }

    .tagline-shell {
        display: none;
    }

    .menu-toggle {
        position: absolute;
        top: 22px;
        right: 0;
        display: grid;
        width: 44px;
        height: 42px;
        padding: 9px;
        border: 1px solid #dddddd;
        border-radius: 4px;
        background: #ffffff;
        cursor: pointer;
    }

    .menu-toggle span:not(.sr-only) {
        display: block;
        width: 100%;
        height: 2px;
        align-self: center;
        background: #333333;
    }

    .primary-nav {
        position: fixed;
        top: 118px;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        height: auto;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        background: #ffffff;
        transition: max-height .35s ease, visibility 0s linear .35s;
    }

    .primary-nav.is-open {
        max-height: calc(100vh - 88px);
        max-height: calc(100dvh - 88px);
        overflow-y: auto;
        visibility: visible;
        transition: max-height .35s ease, visibility 0s linear 0s;
    }

    .primary-nav > ul {
        display: block;
        width: min(calc(100% - 30px), 720px);
        height: auto;
        margin: 20px auto;
    }

    .primary-nav > ul > li {
        display: block;
        height: auto;
    }

    .primary-nav a,
    .primary-nav button {
        width: 100%;
        height: auto;
        padding: 13px 0;
        border-bottom: 1px solid #eeeeee;
        font-size: 16px;
        line-height: 24px;
        text-align: left;
    }

    .primary-nav .header-button {
        width: 170px;
        height: 44px;
        margin-top: 15px;
        padding: 14px 20px;
        text-align: center;
    }

    .submenu,
    .submenu-wide,
    .submenu-right {
        position: static;
        display: block;
        width: 100%;
        max-height: 0;
        padding: 0 0 0 20px;
        overflow: hidden;
        visibility: hidden;
        box-shadow: none;
        transition: max-height .35s ease, visibility 0s linear .35s;
    }

    .has-submenu:hover > .submenu {
        max-height: 0;
        visibility: hidden;
    }

    .has-submenu.submenu-open > .submenu {
        visibility: visible;
        transition: max-height .35s ease, visibility 0s linear 0s;
    }

    .submenu-toggle .submenu-wedge {
        transition: transform .35s ease;
    }

    .submenu-toggle[aria-expanded="true"] .submenu-wedge {
        transform: rotate(180deg);
    }

    body { font-size: 16px; line-height: 1.6; }

    .hero-actions { flex-direction: column; }
    .hero-actions .button:first-child,
    .hero-actions .button:last-child {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

    .callout-band { min-height: 0; padding-bottom: 35px; }
    .callout-card {
		display: block;
        top: 18px;
    }
	.callout-media {
		float: left;
		margin: 0 20px 20px 0;
		max-width: 140px;
	}
    .callout-copy { padding: 25px 20px; }
    .callout-copy h2 { font-size: 26px; line-height: 35px; }
    .callout-action {
        padding: 0 20px 25px;
    }

    .reasons-table th { width: 45px; font-size: 34px; }
    .reasons-table td { padding: 0 0 20px 15px; }

    .reasons-card h2,
    .story-card h2,
    .faq-section h2 { font-size: 27px; line-height: 36px; }

    .testimonials > .container > h2,
    .testimonials > .container > h3 { font-size: 28px; line-height: 36px; }

    .banner, .simple-banner {
        min-height: 0;
        margin-top: 0;
        padding: 55px 0 120px;
        background-position: 62% center;
    }
    .banner-copy { width: 100%; }
    .banner-copy h1, .simple-banner h1 { font-size: 22px; line-height: 32px; }
    .banner-copy h2, .simple-banner h2 { font-size: 28px; line-height: 35px; }
    .banner-copy h3, .simple-banner h3 { font-size: 20px; line-height: 29px; }
    .reasons-section { padding: 45px 0; }
    .reasons-layout { grid-template-columns: 1fr; }
    .three-steps-table th { width: 74px; }
    .three-steps-table td { padding-left: 14px; }

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

    .site-footer {
        height: auto;
        padding: 40px 0 30px;
    }
    .footer-grid {
        height: auto;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; margin-top: 35px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .faq-answer { transition: none; }
    .feature-card { transition: none; }
    .footer-article { transition: none; }
    .primary-nav,
    .submenu,
    .submenu-wide,
    .submenu-right,
    .submenu-toggle .submenu-wedge { transition: none; }
}
