:root {
    --pmd-red: #de2826;
    --pmd-red-dark: #bd081c;
    --pmd-coral: #f95959;
    --pmd-dark: #1a1a1a;
    --pmd-text: #6b6b6b; /* 5.3:1 on white — WCAG AA */
}

html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Work Sans", Arial, sans-serif;
    color: var(--pmd-text);
    background: #fff;
}

a {
    text-decoration: none;
}

/* ---------- Header (brand red) ---------- */
.site-header {
    background: var(--pmd-red);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .18);
}

.top-bar {
    background: var(--pmd-red-dark);
    font-size: .8rem;
    letter-spacing: .05em;
    padding: .45rem 0;
}

.top-bar a {
    color: rgba(255, 255, 255, .88);
    font-weight: 600;
    transition: color .2s;
}

.top-bar a:hover {
    color: #fff;
}

.top-bar .divider {
    color: rgba(255, 255, 255, .4);
}

.main-nav {
    padding: .5rem 0;
}

.main-nav .navbar-brand img {
    height: 72px;
    width: auto;
}

.main-nav .navbar-nav {
    gap: .35rem;
}

/* base link colors serve the white fullscreen mobile menu; desktop overrides below */
.main-nav .nav-link {
    color: var(--pmd-dark);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: .5rem .7rem;
    transition: color .2s;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus,
.main-nav .nav-link.active {
    color: var(--pmd-red);
}

@media (min-width: 992px) {
    /* on the red header bar the links are white */
    .main-nav .nav-link {
        color: rgba(255, 255, 255, .92);
    }

    .main-nav .nav-link:hover,
    .main-nav .nav-link:focus,
    .main-nav .nav-link.active {
        color: #fff;
    }

    .main-nav .nav-link.active {
        text-decoration: underline;
        text-underline-offset: 6px;
        text-decoration-thickness: 2px;
    }

    /* the desktop phone CTA sits on red — flip it to white */
    .nav-cta-group .btn-call {
        --bs-btn-hover-color: var(--pmd-red-dark);
        --bs-btn-hover-bg: #ffe9e8;
        --bs-btn-hover-border-color: #ffe9e8;
        --bs-btn-active-color: var(--pmd-red-dark);
        --bs-btn-active-bg: #ffe9e8;
        --bs-btn-active-border-color: #ffe9e8;
        background: #fff;
        border-color: #fff;
        color: var(--pmd-red-dark);
    }

    .nav-cta-group .btn-call:hover,
    .nav-cta-group .btn-call:focus {
        background: #ffe9e8;
        border-color: #ffe9e8;
        color: var(--pmd-red-dark);
    }

    .main-nav .nav-link:focus-visible,
    .nav-cta-group .btn-call:focus-visible {
        outline-color: #fff;
    }
}

.top-bar a:focus-visible {
    outline-color: #fff;
}

.main-nav .nav-link:focus-visible,
.top-bar a:focus-visible,
.btn-call:focus-visible,
.btn-order:focus-visible,
.btn-ghost:focus-visible,
.footer-loc-link:focus-visible,
.footer-links a:focus-visible {
    outline: 2px solid var(--pmd-red);
    outline-offset: 2px;
    box-shadow: none;
}

/* footer CTA band is red — use a white ring there so focus stays visible */
.btn-cta-call:focus-visible,
.btn-cta-order:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: none;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .45);
}

.main-nav .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .4);
}

/* ---------- Call buttons ---------- */
.icon-phone {
    width: 1em;
    height: 1em;
    margin-right: .4rem;
    vertical-align: -.12em;
}

.btn-call {
    /* feed Bootstrap's .btn focus-visible/active rules so the fill survives those states */
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--pmd-red-dark);
    --bs-btn-hover-border-color: var(--pmd-red-dark);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--pmd-red-dark);
    --bs-btn-active-border-color: var(--pmd-red-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pmd-red);
    color: #fff;
    font-weight: 700;
    letter-spacing: .05em;
    padding: .55rem 1.1rem;
    border-radius: 2px;
    border: 2px solid var(--pmd-red);
    transition: background .2s, border-color .2s;
}

.btn-call:hover,
.btn-call:focus {
    background: var(--pmd-red-dark);
    border-color: var(--pmd-red-dark);
    color: #fff;
}

/* compact header CTA always sits on the red bar — white fill */
.btn-call-compact {
    --bs-btn-hover-color: var(--pmd-red-dark);
    --bs-btn-hover-bg: #ffe9e8;
    --bs-btn-hover-border-color: #ffe9e8;
    --bs-btn-active-color: var(--pmd-red-dark);
    --bs-btn-active-bg: #ffe9e8;
    --bs-btn-active-border-color: #ffe9e8;
    background: #fff;
    border-color: #fff;
    color: var(--pmd-red-dark);
    font-size: .78rem;
    padding: .45rem .8rem;
    white-space: nowrap;
}

.btn-call-compact:hover,
.btn-call-compact:focus {
    background: #ffe9e8;
    border-color: #ffe9e8;
    color: var(--pmd-red-dark);
}

.btn-call-compact:focus-visible {
    outline-color: #fff;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-left: 1rem;
}

/* ---------- Locations dropdown ---------- */
.locations-dropdown {
    min-width: 300px;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    padding: .5rem 0;
}

.locations-dropdown .dropdown-item {
    display: flex;
    flex-direction: column;
    gap: .05rem;
    padding: .5rem 1.1rem;
    white-space: normal;
}

.locations-dropdown .dropdown-item strong {
    color: var(--pmd-dark);
    font-size: .9rem;
}

.locations-dropdown .dropdown-item small {
    color: var(--pmd-text);
    font-size: .78rem;
}

.locations-dropdown .dropdown-item:hover,
.locations-dropdown .dropdown-item:focus {
    background: #fdf0f0;
}

.locations-dropdown .dropdown-item:hover strong,
.locations-dropdown .dropdown-item:focus strong {
    color: var(--pmd-red);
}

/* Squeeze the navbar at the narrow end of the desktop range so 7 links + call button fit */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .main-nav .navbar-brand img {
        height: 56px;
    }

    .main-nav .navbar-nav {
        gap: .1rem;
    }

    .main-nav .nav-link {
        font-size: .74rem;
        padding: .5rem .4rem;
    }

    .nav-cta-group {
        margin-left: .5rem;
    }

    .nav-cta-group .btn-call {
        font-size: .8rem;
        padding: .5rem .75rem;
    }
}

/* ---------- Fullscreen mobile nav ---------- */
@media (max-width: 991.98px) {
    #mainNav {
        width: 100%;
        max-width: 100%;
        background: #fff;
    }

    #mainNav .offcanvas-header {
        border-bottom: 1px solid #ececec;
        padding: 1rem 1.5rem;
    }

    #mainNav .offcanvas-title {
        font-weight: 800;
        letter-spacing: .12em;
        color: var(--pmd-dark);
    }

    #mainNav .offcanvas-body {
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
        overflow-y: auto;
    }

    #mainNav .navbar-nav {
        gap: 0;
        text-align: center;
        width: 100%;
    }

    #mainNav .nav-link {
        font-size: 1.25rem;
        font-weight: 700;
        padding: .85rem 0;
        border-bottom: 1px solid #f2f2f2;
        width: 100%; /* the dropdown toggle is a <button>; stretch it like the anchors */
    }

    #mainNav .dropdown-menu {
        box-shadow: none;
        border: 0;
        border-bottom: 1px solid #f2f2f2;
        border-radius: 0;
        width: 100%;
        min-width: 0;
        text-align: center;
        background: #fafafa;
        margin-bottom: .5rem;
    }

    #mainNav .locations-dropdown .dropdown-item {
        align-items: center;
        padding: .65rem 1rem;
    }

    #mainNav .nav-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: .75rem;
        margin: 1.5rem 0 0;
        width: 100%;
    }

    #mainNav .btn-call,
    #mainNav .btn-order-nav {
        width: 100%;
        padding: .85rem 1rem;
        font-size: 1rem;
    }
}

/* ---------- Primary order button ---------- */
.btn-order {
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--pmd-red-dark);
    --bs-btn-hover-border-color: var(--pmd-red-dark);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--pmd-red-dark);
    --bs-btn-active-border-color: var(--pmd-red-dark);
    display: inline-block;
    background: var(--pmd-red);
    color: #fff;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .85rem 2.6rem;
    border-radius: 2px;
    border: 2px solid var(--pmd-red);
    transition: background .2s, border-color .2s, transform .1s;
}

.btn-order:hover {
    background: var(--pmd-red-dark);
    border-color: var(--pmd-red-dark);
    color: #fff;
    transform: translateY(-1px);
}

/* ---------- Feature cards ---------- */
.features {
    padding: 3.5rem 0;
    background: #f7f7f7;
}

.feature-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}

.feature-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.feature-card:hover img {
    transform: scale(1.08);
}

.feature-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, 0) 55%);
    transition: background .3s;
}

.feature-card:hover .feature-caption {
    background: linear-gradient(to top, rgba(222, 40, 38, .82) 0%, rgba(222, 40, 38, .15) 70%);
}

.feature-caption span {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 1rem;
    text-align: center;
}

/* ---------- Location pages (modern, image-less hero) ---------- */
.loc-hero {
    background:
        radial-gradient(1100px 480px at 50% -12%, #ffecea 0%, rgba(255, 236, 234, 0) 70%),
        linear-gradient(180deg, #fffcfc 0%, #fff 100%);
    border-bottom: 1px solid #f3f3f3;
    padding: 4.25rem 0 3.75rem;
}

.loc-kicker {
    display: inline-block;
    background: #fdeeee;
    color: var(--pmd-red-dark);
    border-radius: 999px;
    padding: .45rem 1.15rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.loc-title {
    color: var(--pmd-dark);
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    letter-spacing: -.01em;
    text-transform: uppercase;
    margin-bottom: .6rem;
}

.loc-sub {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.service-chips {
    display: flex;
    gap: .6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.1rem;
}

.chip {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    padding: .45rem 1.1rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--pmd-dark);
}

.chip::before {
    content: "";
    display: inline-block;
    width: .5rem;
    height: .5rem;
    background: var(--pmd-red);
    border-radius: 50%;
    margin-right: .5rem;
    vertical-align: .08em;
}

.hero-ctas {
    display: flex;
    gap: .8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-xl {
    font-size: 1rem;
    padding: .95rem 2.3rem;
}

.btn-ghost {
    --bs-btn-hover-color: var(--pmd-dark);
    --bs-btn-hover-bg: #fafafa;
    --bs-btn-hover-border-color: var(--pmd-dark);
    --bs-btn-active-color: var(--pmd-dark);
    --bs-btn-active-bg: #fafafa;
    --bs-btn-active-border-color: var(--pmd-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #8f8f8f; /* ≥3:1 against white — WCAG 1.4.11 component boundary */
    color: var(--pmd-dark);
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: border-color .2s, background .2s;
}

.btn-ghost:hover,
.btn-ghost:focus {
    background: #fafafa;
    border-color: var(--pmd-dark);
    color: var(--pmd-dark);
}

/* storefront photo banner under the hero CTAs */
.loc-photo-wrap {
    max-width: 900px;
    margin: 2.75rem auto 0;
}

.loc-photo {
    display: block;
    width: 100%;
    aspect-ratio: 5 / 2;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .04), 0 18px 44px rgba(0, 0, 0, .14);
}

@media (max-width: 767.98px) {
    .loc-photo {
        aspect-ratio: 4 / 3;
        border-radius: 14px;
    }
}

/* pill buttons + softer cards, scoped to the location pages */
.loc-page .btn-call,
.loc-page .btn-order,
.loc-page .btn-ghost {
    border-radius: 999px;
}

.loc-page .info-card {
    border-radius: 18px;
    border-color: #f1f1f1;
    padding: 2rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .03), 0 12px 32px rgba(0, 0, 0, .07);
}

.loc-page .map-wrap {
    border-radius: 18px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .03), 0 12px 32px rgba(0, 0, 0, .07);
}

.loc-page .info-title {
    display: flex;
    align-items: center;
    gap: .6rem;
    border-bottom: 0;
    padding-bottom: 0;
}

.icon-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 12px;
    background: #fdeeee;
    color: var(--pmd-red);
    flex-shrink: 0;
}

.icon-chip svg {
    width: 1.05rem;
    height: 1.05rem;
}

.loc-page .hours-table td {
    border-bottom: 1px solid #f4f4f4;
    padding: .55rem 0;
}

.loc-page .nearby-card {
    border-radius: 14px;
    padding: 1.15rem 1.25rem;
}

.loc-page .about-copy {
    font-size: 1.02rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 575.98px) {
    .loc-hero .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .loc-hero .btn-xl {
        width: 100%;
    }
}

.btn-order-dark {
    --bs-btn-hover-bg: #000;
    --bs-btn-hover-border-color: #000;
    --bs-btn-active-bg: #000;
    --bs-btn-active-border-color: #000;
    background: var(--pmd-dark);
    border-color: var(--pmd-dark);
}

.btn-order-dark:hover {
    background: #000;
    border-color: #000;
}

.section-title {
    color: var(--pmd-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.section-sub {
    margin-bottom: 2rem;
}

.location-details {
    padding: 3.5rem 0;
}

.info-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
    padding: 1.75rem;
    height: 100%;
}

.info-title {
    color: var(--pmd-dark);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 2px solid var(--pmd-red);
    display: inline-block;
    padding-bottom: .25rem;
    margin-bottom: 1rem;
}

.loc-address {
    font-style: normal;
    line-height: 1.7;
    margin-bottom: .5rem;
}

.loc-address strong {
    color: var(--pmd-dark);
}

.loc-phone a {
    color: var(--pmd-red);
    font-weight: 700;
    font-size: 1.15rem;
}

.hours-table {
    width: 100%;
}

.hours-table td {
    padding: .35rem 0;
    border-bottom: 1px dashed #e5e5e5;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--pmd-dark);
    font-weight: 600;
}

.hours-note {
    font-size: .8rem;
    margin-top: .6rem;
    color: var(--pmd-text);
}

.map-wrap {
    height: 100%;
    min-height: 420px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

.about-copy {
    line-height: 1.8;
}

.about-copy a {
    color: var(--pmd-red);
    font-weight: 600;
}

.locations-grid {
    padding: 3.5rem 0 1rem;
}

.nearby {
    padding: 3rem 0 4rem;
    background: #f7f7f7;
}

.nearby-card {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 1rem 1.1rem;
    height: 100%;
    font-size: .88rem;
    color: var(--pmd-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    transition: transform .15s, box-shadow .15s, border-color .15s;
}

.nearby-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    border-color: var(--pmd-coral);
    color: var(--pmd-text);
}

.nearby-card strong {
    color: var(--pmd-dark);
    font-size: .95rem;
}

.nearby-cta {
    margin-top: .4rem;
    color: var(--pmd-red);
    font-weight: 600;
}

/* ---------- Footer (modern) ---------- */
.site-footer {
    background: linear-gradient(180deg, #131313 0%, #0b0b0b 100%);
    color: rgba(255, 255, 255, .72);
    padding: 4rem 0 1.75rem;
    font-size: .9rem;
}

/* pill CTAs inside the footer */
.site-footer .btn {
    border-radius: 999px;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--pmd-red) 0%, var(--pmd-red-dark) 100%);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin-bottom: 3.5rem;
    box-shadow: 0 16px 40px rgba(222, 40, 38, .25);
}

.footer-cta-title {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: .25rem;
}

.footer-cta-sub {
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

.footer-cta-btns {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}

.btn-cta-call {
    --bs-btn-hover-color: var(--pmd-red-dark);
    --bs-btn-hover-bg: #ffe9e8;
    --bs-btn-hover-border-color: #ffe9e8;
    --bs-btn-active-color: var(--pmd-red-dark);
    --bs-btn-active-bg: #ffe9e8;
    --bs-btn-active-border-color: #ffe9e8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #fff;
    color: var(--pmd-red-dark);
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: background .2s, color .2s;
}

.btn-cta-call:hover,
.btn-cta-call:focus {
    background: #ffe9e8;
    border-color: #ffe9e8;
    color: var(--pmd-red-dark);
}

.btn-cta-order {
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #000;
    --bs-btn-hover-border-color: #000;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #000;
    --bs-btn-active-border-color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pmd-dark);
    border: 2px solid var(--pmd-dark);
    color: #fff;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: background .2s, border-color .2s;
}

.btn-cta-order:hover,
.btn-cta-order:focus {
    background: #000;
    border-color: #000;
    color: #fff;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-link:focus-visible {
    outline: 2px solid var(--pmd-coral);
    outline-offset: 4px;
}

.footer-logo {
    height: 60px;
    width: auto;
    display: block;
}

.footer-blurb {
    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
}

.site-footer h5 {
    color: rgba(255, 255, 255, .45);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .14em;
    margin-bottom: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: .55rem;
}

.footer-links a {
    color: rgba(255, 255, 255, .72);
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--pmd-coral);
}

.footer-hours {
    line-height: 1.6;
    color: rgba(255, 255, 255, .6);
}

.footer-loc-link {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: .7rem .85rem;
    height: 100%;
    transition: background .2s, border-color .2s, transform .15s;
}

.footer-loc-link:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(249, 89, 89, .45);
    transform: translateY(-2px);
}

.footer-loc-link .loc-pin {
    display: inline-flex;
    color: var(--pmd-coral);
    flex-shrink: 0;
    margin-top: .15rem;
}

.footer-loc-link .loc-pin svg {
    width: .95rem;
    height: .95rem;
}

.footer-loc-link .loc-text {
    display: flex;
    flex-direction: column;
    gap: .05rem;
}

.footer-loc-link strong {
    color: #fff;
    font-weight: 600;
    font-size: .86rem;
}

.footer-loc-link small {
    color: rgba(255, 255, 255, .55);
    font-size: .76rem;
}

.footer-loc-link:hover strong {
    color: var(--pmd-coral);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 3rem;
    padding-top: 1.5rem;
}

.bankcards {
    max-width: 280px;
    width: 100%;
    height: auto;
    opacity: .85;
}

.copyright {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    margin: 0;
}

@media (max-width: 767.98px) {
    .footer-cta {
        justify-content: center;
        text-align: center;
        padding: 1.75rem 1.5rem;
    }

    .footer-cta-btns {
        width: 100%;
        flex-direction: column;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

