/* =========================================================
   APEX ACTIVE PHYSIOTHERAPY
   MAIN WEBSITE STYLESHEET
========================================================= */

:root {
    --orange: #ff5a00;
    --black: #080808;
    --dark: #111111;
    --white: #ffffff;
    --offwhite: #f5f5f3;
    --grey: #686868;
    --line: #dededb;

    --max-width: 1280px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;

    color: var(--black);
    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font: inherit;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
    width: min(calc(100% - 64px), var(--max-width));

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   GLOBAL COMPONENTS
========================================================= */

.eyebrow,
.mini-label {
    display: block;

    color: var(--orange);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.35px;

    text-transform: uppercase;
}


.rule {
    width: 50px;
    height: 3px;

    margin: 28px 0;

    background: var(--orange);
}


.btn {
    min-height: 50px;

    padding: 0 28px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.6px;

    text-transform: uppercase;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.btn:hover {
    transform: translateY(-2px);
}


.btn-orange {
    color: white;
    background: var(--orange);
}


.btn-orange:hover {
    background: #e95100;
}


.btn-outline {
    color: white;

    border: 1px solid rgba(255, 255, 255, 0.6);
}


.btn-outline:hover {
    color: black;
    background: white;
}


.text-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding-bottom: 4px;

    border-bottom: 1px solid #aaaaaa;

    font-size: 11px;
    font-weight: 900;

    text-transform: uppercase;
}


.text-link b {
    color: var(--orange);
}


.light-link {
    color: white;

    border-color: #444444;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;
    height: 90px;

    background: white;

    border-bottom: 1px solid #eeeeee;
}


.nav-wrap {
    height: 90px;

    display: flex;

    align-items: center;

    gap: 28px;
}


.logo {
    flex-shrink: 0;
}


.logo img {
    width: 145px;
    height: auto;
}


.main-nav {
    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 25px;
}


.main-nav a {
    white-space: nowrap;

    font-size: 10px;
    font-weight: 900;

    text-transform: uppercase;
}


.main-nav a.active,
.main-nav a:hover {
    color: var(--orange);
}


.nav-book {
    flex-shrink: 0;

    margin-left: 5px;
}


.menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    margin-left: auto;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    margin: 5px auto;

    background: #111111;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    width: 100%;

    min-height: 620px;

    display: flex;

    align-items: center;

    color: white;

    background:
        linear-gradient(
            90deg,
            #080808 0%,
            #111111 48%,
            #d9d9d9 100%
        );
}


.hero-inner {
    width: 100%;
}


.hero-copy {
    max-width: 650px;
}


.hero-copy .eyebrow {
    margin-bottom: 22px;
}


.hero h1 {
    color: white;

    font-size: clamp(54px, 6vw, 86px);

    font-weight: 900;

    line-height: 0.9;

    letter-spacing: -4px;

    text-transform: uppercase;
}


.hero h1 em {
    color: var(--orange);

    font-style: normal;
}


.hero p {
    max-width: 520px;

    color: #c7c7c7;

    font-size: 16px;
}


.hero-actions {
    margin-top: 34px;

    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


/* =========================================================
   WHY APEX ACTIVE
========================================================= */

.why {
    width: 100%;

    padding: 100px 0;

    background: white;
}


.section-head {
    max-width: 760px;

    margin: 0 auto 58px;

    text-align: center;
}


.section-head .eyebrow {
    margin-bottom: 16px;
}


.section-head h2 {
    margin-bottom: 20px;

    font-size: clamp(40px, 4.2vw, 58px);

    font-weight: 900;

    line-height: 0.98;

    letter-spacing: -2px;

    text-transform: uppercase;
}


.section-head h2 span,
.services-copy h2 span,
.team-copy h2 span,
.locations-head h2 span,
.approach-head h2 span {
    color: var(--orange);
}


.section-head p {
    max-width: 620px;

    margin: 0 auto;

    color: var(--grey);

    font-size: 15px;
}


.why-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


.why-item {
    min-width: 0;

    padding: 35px 26px 38px;

    text-align: center;

    border-right: 1px solid var(--line);
}


.why-item:last-child {
    border-right: 0;
}


.why-item .number {
    display: block;

    margin-bottom: 36px;

    color: var(--orange);

    font-size: 11px;
    font-weight: 900;
}


.why-item h3 {
    margin-bottom: 10px;

    font-size: 14px;

    text-transform: uppercase;
}


.why-item p {
    max-width: 230px;

    margin: 0 auto;

    color: var(--grey);

    font-size: 13px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    width: 100%;
    padding: 105px 0;

    background: #080808;
    color: white;
}


.services-wrap {
    width: 100%;

    display: grid;

    grid-template-columns: 410px minmax(0, 1fr);

    gap: 55px;

    align-items: stretch;
}


/* LEFT SIDE */

.services-copy {
    width: 100%;
    min-width: 0;
}


.services-copy .eyebrow {
    margin-bottom: 18px;
}


.services-copy h2 {
    width: 100%;
    max-width: 410px;

    margin-bottom: 26px;

    font-size: clamp(38px, 3vw, 44px);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -1.2px;

    text-transform: uppercase;
}


.services-copy h2 span {
    color: var(--orange);
}


.services-copy p {
    max-width: 370px;

    margin-bottom: 32px;

    color: #aaaaaa;

    font-size: 14px;

    line-height: 1.7;
}


/* RIGHT SIDE */

.service-grid {
    width: 100%;
    min-width: 0;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 10px;
}


.service-card {
    width: 100%;
    min-width: 0;
    min-height: 235px;

    padding: 28px;

    display: flex;
    flex-direction: column;

    background: #141414;

    border: 1px solid #292929;
}


.service-card > span {
    color: var(--orange);

    font-size: 10px;
    font-weight: 900;
}


.service-card > div {
    margin-top: auto;
}


.service-card h3 {
    margin-bottom: 8px;

    font-size: 17px;
    font-weight: 900;

    line-height: 1.08;

    text-transform: uppercase;
}


.service-card p {
    color: #999999;

    font-size: 12px;

    line-height: 1.6;
}


/* TABLET */

@media (max-width: 1100px) {

    .services-wrap {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .services-copy h2 {
        max-width: 600px;
    }

    .services-copy p {
        max-width: 600px;
    }

}


/* SMALL TABLET */

@media (max-width: 820px) {

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .services {
        padding: 72px 0;
    }

    .services-copy h2 {
        max-width: 100%;

        font-size: 40px;
    }

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

    .service-card {
        min-height: 190px;
    }

}
/* =========================================================
   TEAM
========================================================= */

.team {
    width: 100%;

    padding: 105px 0;

    background: var(--offwhite);
}


.team-wrap {
    width: 100%;

    display: grid;

    grid-template-columns:
        340px minmax(0, 1fr);

    gap: 75px;

    align-items: center;
}


.team-copy {
    width: 100%;
}


.team-copy .eyebrow {
    margin-bottom: 18px;
}


.team-copy h2 {
    margin-bottom: 24px;

    font-size: clamp(40px, 4vw, 56px);

    font-weight: 900;

    line-height: 0.97;

    letter-spacing: -2px;

    text-transform: uppercase;
}


.team-copy p {
    margin-bottom: 30px;

    color: var(--grey);

    font-size: 14px;
}


.team-grid {
    width: 100%;

    min-width: 0;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}


.person-card {
    min-width: 0;

    background: white;
}


.photo-placeholder {
    width: 100%;
    height: 315px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #888888;

    background:
        linear-gradient(
            135deg,
            #e9e9e6,
            #d7d7d4
        );

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.person-body {
    padding: 24px;
}


.person-body h3 {
    margin-top: 7px;

    font-size: 20px;

    text-transform: uppercase;
}


.person-body > p {
    color: var(--grey);

    font-size: 12px;
}


.person-actions {
    margin-top: 20px;

    padding-top: 16px;

    display: flex;

    gap: 25px;

    border-top: 1px solid #eeeeee;
}


.person-actions a {
    font-size: 10px;
    font-weight: 900;

    text-transform: uppercase;
}


.person-actions a:hover {
    color: var(--orange);
}


/* =========================================================
   LOCATIONS
========================================================= */

.locations {
    width: 100%;

    padding: 105px 0;

    background: white;
}


.locations-head {
    width: 100%;

    margin-bottom: 50px;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
}


.locations-head .eyebrow {
    margin-bottom: 18px;
}


.locations-head h2 {
    font-size: clamp(40px, 4.3vw, 58px);

    font-weight: 900;

    line-height: 0.97;

    letter-spacing: -2px;

    text-transform: uppercase;
}


.location-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}


.location-card {
    position: relative;

    min-width: 0;

    min-height: 400px;

    padding: 42px;

    display: flex;

    flex-direction: column;

    background: var(--offwhite);
}


.dark-card {
    color: white;

    background: #080808;
}


.big-number {
    position: absolute;

    top: 24px;
    right: 32px;

    color: #d5d5d2;

    font-size: 72px;
    font-weight: 900;

    line-height: 1;
}


.dark-card .big-number {
    color: #202020;
}


.location-bottom {
    position: relative;

    z-index: 1;

    margin-top: auto;
}


.location-bottom h3 {
    margin-bottom: 14px;

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1;

    text-transform: uppercase;
}


.location-bottom p {
    margin-bottom: 16px;

    color: #626262;

    font-size: 14px;
}


.dark-card .location-bottom p {
    color: #aaaaaa;
}


.location-bottom strong {
    display: block;

    margin-bottom: 24px;

    font-size: 11px;
}


.location-bottom a {
    color: var(--orange);

    font-size: 10px;
    font-weight: 900;

    text-transform: uppercase;
}


/* =========================================================
   APEX APPROACH
========================================================= */

.approach {
    width: 100%;

    padding: 105px 0;

    color: white;

    background: #111111;
}


.approach-head {
    width: 100%;

    margin-bottom: 50px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 430px;

    gap: 70px;

    align-items: end;
}


.approach-head .eyebrow {
    margin-bottom: 18px;
}


.approach-head h2 {
    font-size: clamp(44px, 4.6vw, 62px);

    font-weight: 900;

    line-height: 0.94;

    letter-spacing: -2px;

    text-transform: uppercase;
}


.approach-head > div:last-child p {
    margin-bottom: 22px;

    color: #aaaaaa;

    font-size: 14px;
}


.approach-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        1.35fr 1fr 1fr;

    gap: 8px;
}


.approach-card {
    min-width: 0;

    min-height: 330px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    background: #181818;
}


.approach-card.featured {
    background: #202020;
}


.approach-card > div {
    margin-top: auto;
}


.approach-card small {
    display: block;

    margin-bottom: 8px;

    color: #777777;

    font-size: 10px;

    text-transform: uppercase;
}


.approach-card h3 {
    margin-bottom: 9px;

    font-size: 22px;

    line-height: 1.05;

    text-transform: uppercase;
}


.approach-card p {
    color: #999999;

    font-size: 13px;
}


/* =========================================================
   CONTACT BAND
========================================================= */

.contact-band {
    width: 100%;

    color: white;

    background: var(--orange);
}


.contact-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;
}


.contact-grid > div {
    min-width: 0;

    min-height: 110px;

    padding: 24px 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-right:
        1px solid rgba(255, 255, 255, 0.3);
}


.contact-grid > div:last-child {
    border-right: 0;
}


.contact-grid span {
    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;

    opacity: 0.75;
}


.contact-grid a {
    font-size: 15px;
    font-weight: 800;

    overflow-wrap: anywhere;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    width: 100%;

    padding: 75px 0;

    color: white;

    background: #080808;
}


.cta-wrap {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


.cta-wrap .eyebrow {
    margin-bottom: 15px;
}


.cta-wrap h2 {
    font-size: clamp(40px, 4.5vw, 62px);

    line-height: 0.95;

    text-transform: uppercase;
}


.cta-wrap p {
    color: #999999;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: 100%;

    padding: 65px 0 24px;

    color: #888888;

    background: #050505;
}


.footer-grid {
    width: 100%;

    padding-bottom: 48px;

    display: grid;

    grid-template-columns:
        1.35fr
        1fr
        0.8fr
        0.95fr
        1.4fr;

    gap: 38px;
}


.footer-grid > div {
    min-width: 0;
}


.footer-brand img {
    width: 140px;

    margin-bottom: 20px;

    filter: invert(1);
}


.footer-brand p {
    color: #aaaaaa;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
}


.footer-grid h4 {
    margin-bottom: 10px;

    color: white;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.footer-grid p,
.footer-grid a {
    display: block;

    margin-bottom: 6px;

    color: #888888;

    font-size: 12px;

    overflow-wrap: anywhere;
}


.footer-grid a:hover {
    color: var(--orange);
}


.footer-bottom {
    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid #222222;

    font-size: 10px;

    text-transform: uppercase;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1080px) {

    .container {
        width: min(
            calc(100% - 44px),
            var(--max-width)
        );
    }


    .nav-book {
        display: none;
    }


    .main-nav {
        gap: 15px;
    }


    .main-nav a {
        font-size: 9px;
    }


    .services-wrap,
    .team-wrap {
        grid-template-columns: 1fr;
    }


    .services-copy,
    .team-copy {
        max-width: 620px;
    }


    .approach-head {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    .footer-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 820px) {

    .site-header,
    .nav-wrap {
        height: 75px;
    }


    .logo img {
        width: 125px;
    }


    .menu-toggle {
        display: block;
    }


    .main-nav {
        position: fixed;

        top: 75px;
        left: 0;

        width: 100%;
        height: calc(100vh - 75px);

        padding: 28px 22px;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        overflow: auto;

        background: white;
    }


    .main-nav.open {
        display: flex;
    }


    .main-nav a {
        width: 100%;

        padding: 15px 0;

        border-bottom: 1px solid #eeeeee;

        font-size: 13px;
    }


    .why-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .why-item:nth-child(2) {
        border-right: 0;
    }


    .service-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


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


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


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


    .contact-grid > div {
        border-right: 0;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.3);
    }


    .locations-head {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 32px);
    }


    .hero {
        min-height: 570px;
    }


    .hero h1 {
        font-size: clamp(46px, 13vw, 64px);

        letter-spacing: -3px;
    }


    .hero-actions {
        flex-direction: column;
    }


    .hero-actions .btn {
        width: 100%;
    }


    .why,
    .services,
    .team,
    .locations,
    .approach {
        padding: 72px 0;
    }


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


    .why-item {
        border-right: 0;

        border-bottom: 1px solid var(--line);
    }


    .why-item:last-child {
        border-bottom: 0;
    }


    .service-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }


    .photo-placeholder {
        height: 280px;
    }


    .location-card {
        min-height: 350px;

        padding: 32px 26px;
    }


    .cta-wrap {
        align-items: flex-start;

        flex-direction: column;
    }


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


    .footer-bottom {
        flex-direction: column;
    }

}

/* =====================================================
   HOME - INTERACTIVE INJURY MAP
===================================================== */

.home-injury-map {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(241,90,36,.12),
            transparent 28%
        ),
        #090909;
    color: #fff;
}

.home-injury-grid {
    display: grid;
    grid-template-columns:
        minmax(0,.9fr)
        minmax(420px,1.1fr);
    gap: 90px;
    align-items: center;
}


/* CONTENT */

.home-injury-content {
    max-width: 570px;
}

.home-injury-content h2 {
    margin: 15px 0 28px;

    font-size: clamp(54px,6vw,86px);
    line-height: .88;

    font-weight: 900;
    letter-spacing: -4px;

    text-transform: uppercase;
}

.home-injury-content h2 span {
    color: #f15a24;
}

.home-injury-content p {
    margin: 0 0 22px;

    max-width: 530px;

    color: #999;

    font-size: 14px;
    line-height: 1.8;
}

.home-injury-content .home-injury-lead {
    color: #fff;

    font-size: 19px;
    font-weight: 700;

    line-height: 1.5;
}

.home-injury-content .btn {
    margin-top: 15px;
}


/* PREVIEW */

.home-injury-visual {
    position: relative;

    min-height: 570px;

    overflow: hidden;

    border: 1px solid #242424;

    background:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle at center,
            #181818,
            #0c0c0c 65%
        );

    background-size:
        40px 40px,
        40px 40px,
        auto;
}

.home-injury-visual::after {
    content: "";

    position: absolute;
    inset: 30px;

    border: 1px solid rgba(255,255,255,.035);

    pointer-events: none;
}

.injury-preview-label {
    position: absolute;

    left: 22px;
    top: 20px;

    z-index: 3;

    color: #555;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.2px;
}


/* ABSTRACT BODY */

.injury-preview-body {
    position: absolute;

    left: 50%;
    top: 51%;

    width: 270px;
    height: 455px;

    transform: translate(-50%,-50%);
}

.preview-head {
    position: absolute;

    left: 50%;
    top: 0;

    width: 66px;
    height: 78px;

    transform: translateX(-50%);

    border: 1px solid #666;

    border-radius: 48%;

    background: #292929;
}

.preview-neck {
    position: absolute;

    left: 50%;
    top: 70px;

    width: 42px;
    height: 45px;

    transform: translateX(-50%);

    background: #292929;

    border-left: 1px solid #666;
    border-right: 1px solid #666;
}

.preview-torso {
    position: absolute;

    left: 50%;
    top: 104px;

    width: 145px;
    height: 195px;

    transform: translateX(-50%);

    background: #292929;

    border: 1px solid #666;

    clip-path: polygon(
        17% 0,
        83% 0,
        100% 25%,
        80% 100%,
        20% 100%,
        0 25%
    );
}

.preview-arm {
    position: absolute;

    top: 112px;

    width: 31px;
    height: 220px;

    background: #292929;

    border: 1px solid #666;

    border-radius: 18px;
}

.preview-arm-left {
    left: 31px;

    transform: rotate(8deg);
}

.preview-arm-right {
    right: 31px;

    transform: rotate(-8deg);
}

.preview-leg {
    position: absolute;

    top: 287px;

    width: 45px;
    height: 165px;

    background: #292929;

    border: 1px solid #666;

    border-radius: 0 0 20px 20px;
}

.preview-leg-left {
    left: 83px;
}

.preview-leg-right {
    right: 83px;
}


/* ORANGE INJURY POINTS */

.preview-point {
    position: absolute;

    z-index: 5;

    width: 17px;
    height: 17px;

    border: 2px solid #f15a24;

    border-radius: 50%;

    background:
        rgba(241,90,36,.45);

    box-shadow:
        0 0 0 7px rgba(241,90,36,.07),
        0 0 20px rgba(241,90,36,.55);
}

.point-shoulder {
    left: 62px;
    top: 115px;
}

.point-back {
    left: 128px;
    top: 185px;
}

.point-hip {
    right: 82px;
    top: 275px;
}

.point-knee {
    left: 93px;
    top: 360px;
}

.point-ankle {
    right: 92px;
    top: 425px;
}


/* PREVIEW FOOTER */

.injury-preview-bottom {
    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 18px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    align-items: center;

    z-index: 4;
}

.injury-preview-bottom span {
    color: #666;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}

.injury-preview-bottom strong {
    color: #f15a24;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* TABLET */

@media (max-width: 950px) {

    .home-injury-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .home-injury-content {
        max-width: 650px;
    }

    .home-injury-visual {
        min-height: 550px;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .home-injury-map {
        padding: 75px 0;
    }

    .home-injury-grid {
        gap: 45px;
    }

    .home-injury-content h2 {
        font-size: 54px;

        letter-spacing: -3px;
    }

    .home-injury-content
    .home-injury-lead {
        font-size: 17px;
    }

    .home-injury-visual {
        min-height: 500px;
    }

    .injury-preview-body {
        transform:
            translate(-50%,-50%)
            scale(.88);
    }

}