@charset "UTF-8";

/*
Theme Name: FGFramework B Child
Author: Firegang
Author URI: https://www.firegang.com/
Version: 1.5
Template: fgBFramework
Description: Base theme for Wordpress. Includes: Flexible Content Layout Homepage and Interior Pages, Contact Form w/ Map and Hours, Removed POIs From API Maps, Lazy Loading API Maps, Added Tracking Script Fields to Theme Settings, Added API Map to Book Appt Popup, Homepage Review Slider, Product or Service Sliders, jQuery Animated Stat Counters and, Various Bug Fixes
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fgBChild
Tags: one-column, two-columns
Theme URI:
 */

@font-face {
    font-family: 'La Orleans';
    src: url('fonts/subset-LaOrleans-Regular.woff2') format('woff2'),
    url('fonts/subset-LaOrleans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    text-rendering: optimizeLegibility;
}

/* CLS reduction: metric-adjusted fallback fonts. While the real fonts are loading, these
   stand in at the same approximate size — so when the swap happens, no layout shift.
   Values are reasonable defaults; fine-tune with https://screenspan.net/fallback if needed. */
@font-face {
    font-family: 'La Orleans Fallback';
    src: local('Georgia'), local('Times New Roman'), local('serif');
    size-adjust: 100%;
    ascent-override: 88%;
    descent-override: 23%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Plus Jakarta Sans Fallback';
    src: local('Arial'), local('Helvetica'), local('sans-serif');
    size-adjust: 107%;
    ascent-override: 96%;
    descent-override: 25%;
    line-gap-override: 0%;
}

/* CLS guard: enforce intrinsic aspect-ratio for any <img> with width/height attrs. */
img[width][height] {
    height: auto;
}

/* Reserve space for news-block video thumbnails before section CSS loads (prevents layout shift). */
.cVidWrap {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.cVidWrap > a,
.cVidWrap > picture,
.cVidWrap > img,
.cVidWrap a > img,
.cVidWrap picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

:root {
    --black: #212121;
    --white: #FFF;
    --alt-bg: #f8f8f8;
    --gray: #EAEAEA;
    --dkBlue: #004F6E;
    --blue: #0074A3;
    --ltBlue: #8CB5C1;
    --primary-color: var( --dkBlue );
    --primary-hover: var( --blue );
    --secondary-color: #3D79AC;
    --secondary-hover: #4e8cc2;
    --heading-font: 'La Orleans', 'La Orleans Fallback', Georgia, serif;
    --body-font: 'Plus Jakarta Sans', 'Plus Jakarta Sans Fallback', Arial, sans-serif;
    --disp-font-size: clamp( 60px, 4.792vw, 92px );
    --disp-line-height: 100%;
    --h1-font-size: clamp( 36px, 2.708vw, 52px );
    --h1-line-height: 115%;
    --h2-font-size: clamp( 32px, 2.344vw, 45px );
    --h2-line-height: 115%;
    --h3-font-size: clamp( 24px, 1.875vw, 36px );
    --h3-line-height: 125%;
    --h4-font-size: clamp( 20px, 1.458vw, 28px );
    --h4-line-height: 115%;
    --h4-letter-spc: clamp( .7px, 0.073vw, 1.4px );
    --heading-font-weight: 400;
    --heading-line-height: 125%;
    --body-font-size: clamp( 16px, 0.938vw, 18px );
    --body-font-weight: 400;
    --body-line-height: 150%;
    --btn-border-radius: 0;
    --btn-font-weight: 700;
    --btn-letter-spc: clamp( 1.2px, 0.125vw, 2.4px );
    --card-border-rad: 10px;
    --roundedTop: 10px 10px 0 0;
    --secPadding: clamp( 80px, 7.29vw, 140px ) 0;
    --secPaddingNoTop: 0 0 clamp( 80px, 7.29vw, 140px );
    --secPaddingNoBtm: clamp( 80px, 7.29vw, 140px ) 0 0;
    --ltSecPadding: clamp( 56px, 5.208vw, 100px ) 0;
    --ltSecPaddingNoTop: 0 0 clamp( 56px, 5.208vw, 100px );
    --ltSecPaddingNoBtm: clamp( 56px, 5.208vw, 100px ) 0 0;
    --shadyMid: 0 30px 40px 0 rgba(0, 0, 0, 0.10), 0 50px 60px 0 rgba(0, 0, 0, 0.05);
    --shadyLarge: 0 50px 60px 0 rgba(0, 0, 0, 0.05), 0 30px 40px 0 rgba(0, 0, 0, 0.10);

    /* Figma Overline / Caption tokens (Plus Jakarta Sans Bold uppercase) */
    --overline-font-size: 16px;
    --overline-font-weight: 700;
    --overline-letter-spc: 2.4px;
    --overline-line-height: 1.5;

    /* Section content column gap (Figma: 254px between copy & image) */
    --content-col-gap: clamp( 32px, 13.23vw, 254px );
    --content-col-gap-vert: clamp( 60px, 7.29vw, 140px );

    /* Image-overlay tint used to dim hero-style background images (Figma 40% black) */
    --image-overlay: rgba( 0, 0, 0, 0.4 );
    accent-color: var( --primary-color );
}

html {
    scroll-behavior: smooth;
}

/* WCAG 2.2 SC 2.4.7 / 2.4.13: visible keyboard focus indicator on all focusable elements */
:focus-visible {
    outline: 3px solid var( --primary-hover ) !important;
    outline-offset: 2px !important;
}

/* WCAG 2.2 SC 2.4.11: ensure focused / anchor-targeted elements clear sticky header */
:target,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    scroll-margin-top: 152px;
}

body {
    font-family: var( --body-font );
    font-weight: var( --body-font-weight );
    font-size: var( --body-font-size );
    line-height: var( --body-line-height );
    background-color: var( --white );
    color: var( --black );
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100vw;
}

.home #main {
    background-color: var( --white );
}

.row.flex,
.container.flex {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    clear: both;
}

.row.flex.wrap {
    flex-wrap: wrap;
}

.container.flex.col-reverse {
    flex-direction: column-reverse;
}

.flex.reverse {
    flex-direction: row-reverse;
}

section {
    clear: both;
}

.grid-mid {
    position: relative;
    display: grid;
    align-content: center;
    align-items: center;
}

.container, #header .container {
    width: min(95%, 1636px);
    max-width: unset;
    padding: 0;
    margin: 0 auto;
}

#header .container {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding-bottom: 0;
}

h1, .h1 {
    font-family: var( --heading-font );
    font-weight: var( --heading-font-weight );
    color: inherit;
}

.h2, h2 {
    font-family: var( --heading-font );
    font-weight: var( --heading-font-weight );
    color: inherit;
    font-size: var( --h2-font-size );
}

h2 .light, .h2 .light {
    font-weight: 300;
}

h3, .h3  {
    font-family: var( --body-font );
    font-weight: var( --heading-font-weight );
    font-size: var( --h3-font-size );
    color: inherit;
    line-height: var( --h3-line-height );
    text-transform: uppercase;
    letter-spacing: var( --btn-letter-spc );
}

h4, h5, h6,
.h4, .h5, .h6 {
    font-family: var( --body-font );
    font-weight: var( --heading-font-weight );
}

small {
    font-size: clamp( 12px, 0.833vw, 16px );
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: var( --btn-letter-spc );
}

.tagline {
    font-weight: var( --body-font-weight );
}

.round {
    border-radius: 50%;
}

.float-right {
    float: right;
}

#nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: flex-end;
}

.h1 strong, .h2 strong, .h3 strong {
    font-weight: 500;
}

a {
    color: inherit;
}

p a {
    text-decoration: underline;
}

a.popVid::after {
    content: '\f04b';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var( --black );
    background-color: var( --primary-color );
    border-radius: 0;
    border: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -4px;
    z-index: 998;
}

a.popVid:hover::after {
    background-color: var( --primary-hover );
}

#header {
    position: fixed;
    width: min( 100vw, 1920px );
    border-top: 0;
    background-color: transparent;
    transition: all .5s linear;
    z-index: 99;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

#header:hover {
    background-color: var( --white );
}

.header-promo-holder.mobile-show {
    display: none;
}

.conBlock {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0;
}

.socBlock {
    margin-left: clamp(20px, 2.083vw, 40px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
}

.socBlock .social {
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
}

.socBlock .social li {
    display: inline-flex;
    padding: 0 4px;
}

.header-promo {
    display: inline-flex;
    width: 30%;
    text-align: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.header-promo a {
    font-size: 16px;
    color: var( --black );
}

.phoneBlock {
    color: var( --black );
    display: inline-flex;
    margin-right: 0;
    gap: 16px;
}

.headAdd {
    float: right;
    width: fit-content;
    width: -moz-fit-content;
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.headAdd a, .phoneBlock a {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    color: var( --white );
    font-size: 16px;
    gap: 16px;
}

.phoneBlock a,
.headAdd a {
    color: var( --white );
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: clamp(20px, 1.25vw, 24px);
    float: right;
}

#header:hover .phoneBlock a,
#header:hover .headAdd a,
.page:not(.home) .phoneBlock a,
.page:not(.home) .headAdd a,
.page-scrolled  .phoneBlock a,
.page-scrolled  .headAdd a {
    color: var( --black );
}

#header .phoneBlock span {
    display: inline-block;
}

.addBlock {
    background-color: transparent;
}

#header .header-holder {
    height: auto;
    padding: 22px 0;
    display: flex;
    background-color: transparent;
    flex-direction: row;
    align-content: stretch;
    align-items: stretch;
    overflow: visible;
    font-family: var( --body-font );
}

.conBlock.flex {
    position: relative;
    display: flex;
    padding: 0 0 11px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    gap: 48px;
    align-items: center;
}

.navBtns.row.flex {
    overflow: visible;
    gap: 12px;
}

.phoneBlock a {
    font-weight: 400;
    color: var( --white );
    font-size: 16px;
}

#header:hover .header-holder .headAdd a,
#header:hover .phoneBlock a,
.page-scrolled .header-holder .headAdd a,
.page-scrolled .phoneBlock a {
    color: var( --black );
    text-decoration: none;
}

#header:hover .header-holder .headAdd a:hover,
#header:hover .phoneBlock a:hover,
.page-scrolled .header-holder .headAdd a:hover,
.page-scrolled .phoneBlock a:hover
.headAdd a:hover,
.phoneBlock a:hover {
    text-decoration: underline;
}

.header-holder .headAdd .fas,
.phoneBlock .fa {
    color: var( --white );
    font-size: 14px;
}

#header:hover .header-holder .headAdd .fas,
#header:hover .phoneBlock .fa,
.page-scrolled #header .header-holder .headAdd .fas,
.page-scrolled #header .phoneBlock .fa,
.page:not(.home).page-scrolled #header .header-holder .headAdd .fas,
.page:not(.home).page-scrolled #header .phoneBlock .fa {
    color: var( --primary-color );
}

.phoneBlock .fa {
    transform: rotate(100deg);
    font-size: 14px;
}


#header:hover, .page-scrolled #header,
.page:not(.home).page-scrolled #header,
.page-scrolled #header:hover {
    position: fixed;
    max-height: unset;
    max-width: 1920px;
    background-color: var( --white );
    box-shadow: 0 0px 5px rgb(0 0 0 / 30%);
    top: 0;
    transition: all .5s linear;
    z-index: 999;
}

.page-scrolled #header .header-holder,
.page:not(.home).page-scrolled #header .header-holder {
    position: relative !important;
    box-shadow: none;
}

#logo {
    float: left;
    margin: 0;
    min-width: unset;
}

#header:hover #logo,
.sLogo {
    width: auto;
    display: block;
}

#scLogo {
    display: none;
    opacity: 0;
    top: -100%;
}

#header:hover #scLogo,
.page:not(.home) #scLogo {
    display: block;
    opacity: 1;
}

.page-scrolled .sLogo #logo {
    float: none;
    margin: 0 auto;
}

.page-scrolled .sLogo #scLogo {
    opacity: 1;
    display: block;
    padding-top: 0;
    transition: all .85s ease;
}

#scLogo img {
    width: min( 18.177vw, 349px );
    height: auto;
    margin: 0 auto;
}

#logo img {
    width: min( 13.229vw, 254px );
    filter: grayscale(1) brightness(10);
    transition: all .5s linear;
}

.nav-bar {
    margin: 0;
    display: flex;
    flex-grow: 25;
    justify-content: flex-end;
    float: none;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    font-family: var( --body-font );
}

.btn-block {
    position: relative;
    margin: 0;
    display: flex;
    flex-grow: 1;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
}

.btn-block.mobile-show {
    display: none;
}

.page-scrolled .btn-block {
    margin: 0;
}

#header .social a {
    color: var( --primary-color );
    font-size: 20px;
}

#header:hover .header-promo-holder .socialLinks ul li a,
.page-scrolled .header-promo-holder .socialLinks ul li a {
    color: var( --primary-color ) !important;
}

.addBlock .loc-address a {
    color: var( --black );
    font-size: 16px;
}

.addBlock .tel a {
    color: var( --black );
    font-weight: 400;
}

.addBlock .tel a .fa {
    color: var( --primary-color );
}

.logo-block {
    display: flex;
    padding: 0;
    margin: 0;
    background-color: transparent;
    flex-grow: 1;
    align-items: center;
}

#header:hover #logo img,
.page-scrolled .sLogo #logo img,
.page:not(.home) #logo img,
.page:not(.home) #header:hover #logo img {
    height: auto;
    max-height: unset;
    width: min( 13.229vw, 254px );
    filter: unset;
}

#nav > li a {
    color: var( --white );
    font-size: clamp(14px, .833vw, 16px);
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    line-height: clamp(22px, 1.25vw, 24px);
}

header:hover #nav > li a,
.page-scrolled #nav > li a,
.page:not(.home) #nav > li a {
    color: var( --black );
}

#nav .sub-menu > li > a {
    color: var( --black );
    letter-spacing: normal;
    font-family: var( --body-font );
}

#nav ul.sub-menu>li.hover a:hover {
    color: var( --primary-hover );
}

#nav ul,
#nav ul.sub-menu > li.hover a,
#nav ul li.hover ul.sub-menu {
    background-color: var( --white );
    z-index: 6;
}

#nav > li.current_page_item > a, #nav > li a:hover {
    color: var( --black );
}

#nav ul.sub-menu > li.current-menu-item > a {
    color: var( --secondary-color );
}

#nav > li {
    padding: 0 0.521vw; /* JRF */
}

.page:not(.home).page-scrolled #nav {
    margin: 1px 0 0;
}

#wrapper {
    max-width: 1920px;
    margin: 0 auto;
    background-color: var( --white );
}

.home #wrapper {
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: center 40%;
}

.btn, button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    font-size: clamp( 14px, 0.833vw, 16px );
    font-family: var( --body-font );
    letter-spacing: var( --btn-letter-spc );
    line-height: clamp( 24px, 1.25vw, 24px );
    font-weight: var( --btn-font-weight );
    width: fit-content;
    width: -moz-fit-content;
    clear: both;
    border-radius: var( --btn-border-radius );
    padding: clamp(14px, 0.833vw, 16px) clamp(22px, 1.667vw, 32px);
    text-transform: uppercase;
}

.btn-secondary {
    clear: both;
    display: block;
    margin: 36px auto 0;
    background-color: var( --secondary-color );
    color: var( --white );
    border-radius:  var( --btn-border-radius );
    text-decoration: none;
    transition: all .75s ease-in-out;
}

.btn-secondary:hover {
    color: var( --white );
    background-color: var( --secondary-hover );
    margin: 31px auto 5px;
    transition: all .75s ease-in-out;
}



.btn.btn-danger,
.btn.btn-orange,
button.btn-orange,
input[type="button"].btn-orange,
input[type="reset"].btn-orange,
input[type="submit"].btn-orange {
    position: relative;
    background-color: var( --primary-color );
    color: var(--white);
    text-decoration: none;
    display: block;
    width: fit-content;
    font-size: 16px;
    border-radius:  var( --btn-border-radius );
    margin: 0 auto;
    transition: all .75s ease;
    z-index: 1;
}

.btn.btn-white {
    background-color: var( --white );
    color: var( --primary-color );
    font-weight: var( --btn-font-weight );
    border-radius:  var( --btn-border-radius );
}

.btn-list a {
    background-color: var( --secondary-color );
    color: var( --white );
    height: fit-content;
    height: -moz-fit-content;
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 5px 0 0;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 1.54px;
    line-height: 24px;
    border-radius:  var( --btn-border-radius );
}

.btn-list a:hover {
    background-color: var( --secondary-hover );
    color: var( --white );

}

.btn.btn-orange.booking-opener,
#header .btn.btn-orange {
    position: relative;
    padding: min(15px, 0.781vw) min(32px, 1.667vw);
    text-shadow: none;
    color: var(--dkBlue);
    border: 0;
    margin: 0;
    background-color: var( --white );
    border-radius: var( --btn-border-radius );
    z-index: 1;
}

#header:hover .btn.btn-orange.booking-opener,
#header:hover .btn.btn-orange,
.page-scrolled #header .btn.btn-orange.booking-opener,
.page-scrolled #header .btn.btn-orange {
    color: var( --white );
    background-color: var( --primary-color );
    outline: none;
}

.btn.btn-orange.booking-opener:hover {
    background-color: var( --primary-hover );
    color: var( --white );
    margin: 0;
}

.page-scrolled .btn-list a {
    display: block;
}

.page-scrolled .btn.btn-orange.booking-opener:hover,
.page:not(.home) .btn.btn-orange.booking-opener:hover{
    background-color: var( --primary-hover );
    color: var( --white );
}

.page-scrolled #main {
    margin-top: 0;
}

.btn.btn-orange:hover,
#header .btn.btn-orange:hover,
#header:hover .btn.btn-orange:hover,
button.btn-orange:hover,
input[type="button"].btn-orange:hover,
input[type="reset"].btn-orange:hover,
input[type="submit"].btn-orange:hover {
    color: var(--white);
    background-color: var(--primary-hover);
    margin: 0 auto;
    transition: all .75s ease;
    box-shadow: none;
}

#header .btn.btn-orange:hover,
#header:hover .btn.btn-orange:hover {
    margin: 0;
}

.btn.btn-orange.booking-opener:before,
.offers a.btn.btn-orange:before,
.revCards a.btn:before,
.specialties a.btn.btn-orange:before {
    content: "";
    position: absolute;
    display: none;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 100%;
    transition: width 0.5s ease-in-out;
}

.btn.btn-orange.booking-opener:hover:before,
.offers a.btn.btn-orange:hover:before,
.revCards a.btn:hover:before,
.specialties a.btn.btn-orange:hover:before {
    width: 100%;
}

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

.revCards a.btn.btn-orange:hover {

    text-decoration: none;
}

.btn.btn-orange.btn-content {
    text-align: center;
    margin: 10px auto;
    padding: 15px 24px;
    border-radius:  var( --btn-border-radius );
}

.btn-round {
    border-radius:  var( --btn-border-radius );
}

.booking-opener {
    max-width: 310px;
    padding: 20px;
}

.slick-next {
    right: -5%;
    z-index: 9999;
}

.slick-prev {
    left: -5%;
    z-index: 9999;
}

.slick-next::before, .slick-prev::before {
    color: var( --primary-color );
    font-weight: 900;
    font-family: 'Font Awesome 5 Free', fantasy;
}

.slick-next::before {
    content: '\f105';
}

.slick-prev::before {
    content: '\f104';
}

.slick-dots li.slick-active button::before {
    background-color: var( --primary-color );
}

.smiles .slick-dots li.slick-active button::before {
    box-shadow: none;
    background-color: var( --white ) !important;
    opacity: 1.0;
    border: 0;
}

.smiles .slick-dots li button::before {
    opacity: .65;
    border: 0;
    width: 10px;
    height: 10px;
}

.slick-dots li,
.slick-dots li button,
.slick-dots li button::before {
    border-color: var( --white );
    width: 12px;
    height: 12px;
}

.slick-dots li button::before {
    background-color: var( --white );
    opacity: .5
}

.slick-dots li.slick-active button::before {
    opacity: 1;
}

.headCont {
    max-width: 812px;
    font-size: 16px;
}

.headCont p {
    font-size: 18px;
}

.heading,
.heading h2 {
    color: inherit;
}

.heading h2 strong {
    font-size: inherit;
    color: inherit;
}

.teamIntro h2::after, .widget-fgCta h2::after {
    display: none;
}

.heading h2 {
    display: block;
    float: none;
    color: inherit;
    font-size: var( --h2-font-size );
    font-weight: var( --heading-font-weight );
    font-style: normal;
    letter-spacing: normal;
    line-height: var( --h2-line-height );
    margin: 0 0 56px;
    text-transform: none;
}

.heading h2 span.italic {
    font-style: italic;
    color: var( --primary-hover );
}

.heading h2:after,
.widget-fgCta h2:after {
    border: none;
    margin: 8px auto clamp(16px, 1.667vw, 32px);
    height: 4px;
    width: 60px;
    background-color: var( --primary-color );
    display: none;
}

.hide-me .col-md-7 h3, .hide-me .col-md-7 p {
    color: var( --white );
}

.hide-me .col-md-7 p {
    font-weight: 300;
}

.hide-me .mfp-close {
    color: var( --white );
}

section.featured {
    background-size: initial;
    background-repeat: no-repeat;
    background-position: right bottom;
    clear: both;
}

/** SLIDE FROM SIDE ANIMATIONS **/
.align-left {
    float: left;
    margin-right: 20px;
}

.align-right {
    float: right;

}

.slide-in {
    opacity: 0;
    transition: all .5s ease;
    transition-delay: 1s;
}

.align-left.slide-in {
    transform: translateX(-30%) scale(.95);
}

.align-right.slide-in {
    transform: translateX(30%) scale(.95);
}

.slide-up.slide-in {
    transform: translateY(30%) scale(.95);
}

.slide-in.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.slide-up.slide-in.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#main .fullContent.onPageCon .btn.btn-orange, #newButton, #newButton3 {
    background-color: var( --primary-color );
    color: var( --white );
    text-decoration: none;
    position: relative;
    z-index: 1;
}

#oldButton, #oldButton2, #oldButton3 {
    display: none;
}

#newButton3:before, #newButton2:before, #newButton:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0px;
    right: 0px;
    width: 0;
    height: 100%;
    background-color: var( --primary-color ); /* same color as button background */
    transition: width 0.5s ease-in-out;
}

#newButton3:hover, #newButton2:hover, #newButton:hover {
    transition: all .75s ease;
}

#newButton3:hover:before, #newButton2:hover:before, #newButton:hover:before {
    width: 100%;
}

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

.twentytwenty-container img {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
}

.driftDwn img, .driftDwn #map {
    margin-bottom: min(-60px, -3.125vw);
    margin-top: min(80px, 7.292vw);
    z-index: 9;
    box-shadow: 0 10px 25px rgba(232, 232, 229, 0.1);
}

.entry img {
    box-shadow: none;
}

.footer-logo img {
    width: clamp( 185px, 13.229vw, 254px );
    margin: 0 auto;
    filter: saturate(0) brightness(10);
}

.footer-holder .bottom {
    margin-top: 0;
    background-color: var( --black );
    padding-bottom: 20px;
    border-top: 2px solid #FFFFFF26;
}

.footer-holder .bottom .container {
    border-top: none;
    padding-top: 16px;
}

.footer-holder ul a, .fAddress a, span.tel-footer a, .fLocation p.practice {
    color: var( --white );
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.5;
    display: inline-block;
    min-height: 24px;
}

.fLocation p.practice {
    font-weight: 500;
}

.footer-holder .bottom a {
    color: var( --black );
}

.footer-holder .copyright {
    color: var( --white );
    float: left;
    margin-right: 40px;
}

/** DIFFERENTIATORS **/

.diff,
.widget.widget-diff {
    position: relative;
    padding: clamp( 50px, 4.167vw, 80px ) 0;
    background-color: var( --gray );
    z-index: 2;
}

.diff .container,
.widget.widget-diff .container {
    position: relative;
    width: 100%;
    background-color: transparent;
    margin: 0 auto;
    padding: 100px min( 7.292vw, 140px );
    border-top: 2px solid rgb(33 33 33 / 5%);
    border-bottom: 2px solid rgb(33 33 33 / 5%);
}

.diff .container > div {
    padding: 0;
}

.page-template-flexible .diff {
    padding: clamp( 25px, 2.083vw, 40px ) 0 clamp(45px, 9.375vw, 180px );
}

.diff .heading {
    margin-bottom: 36px;
}

.diff .row.flex,
.widget.widget-diff .row.flex {
    flex-wrap: nowrap;
    align-items: stretch;
    justify-items: center;
    justify-content: center;
    gap: clamp(42px, 4.427vw, 85px );
}

.diff .heading h1,
.widget.widget-diff .heading h2 {
    color: inherit;
    font-family: var(--heading-font);
    font-size: clamp( 28px, 1.458vw, 36px );
    line-height: 1.25;
    font-weight: var( --heading-font-weight );
    text-transform: none;
    margin-bottom: 56px;
}

.diffBox {
    position: relative;
    display: block;
    height: fit-content;
    padding: 0;
    text-align: center;
    overflow: visible;
    transition: all .75s ease;
    margin-bottom: 0px;
}

.diff.beforeAfter .diffBox {
    margin-bottom: 0px;
}

.diff.beforeAfter .spWrap {
    padding: 0px;
    background-color: transparent;
}

.diff .spWrap,
.widget-diff .spWrap {
    position: relative;
    display: flex;
    background-color: transparent;
    color: var( --black );
    border-radius: 0;
    height: fit-content;
    width: 100%;
    padding: 0;
    align-items: end;
    z-index: auto;
    flex-direction: column;
    justify-content: center;
}

.diff.beforeAfter .diffImg {
    padding-bottom: 0px;
}

.diffImg {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 0;
    padding-bottom: 12px;
}

.diff.beforeAfter .diffImg img {
    width: clamp(200px, 20.729vw, 398px);
    height: clamp(111px, 11.563vw, 222px);
}

.diffImg img {
    width: 80px;
    border-radius: 0;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); */
}

.diffContent {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    padding: 8px 0;
    z-index: 5;
    color: inherit;
    width: 100%;
}

.diffList, .widget ul.diffList {
    padding: 0;
    font-size: var( --body-font-size );
    list-style-type: none;
}

.diffList li {
    padding: 10px 0 14px;
    display: block;
}

.diffList li .fas {
    margin-right: 5px;
}

.diffList li a {
    text-decoration: underline;
}

.diffBox:hover a.specialLink::after,
a.specialLink:hover::after {
    margin-left: 5px;
    opacity: 1;
}

.diffContent .specialLink:hover {
    color: inherit;
    text-decoration: none;
}

.diffBox .overCon {
    position: absolute;
    color: var( --white );
    background-color: rgb(56 76 93 / 50%);
    font-size: clamp( 14px, 0.833vw, 16px );
    line-height: clamp( 22px, 1.25vw, 24px );
    top: 0;
    left: 0;
    width: 100%;
    height: clamp( 563px, 33.333vw, 640px );
    display: grid;
    padding: 0 40px 30px;
    align-items: end;
    justify-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: all .75s ease;
}

.diffBox:hover .overCon {
    opacity: 1;
}

.diffContent p {
    color: inherit;
    font-size: clamp( 14px, 0.781vw, 15px );
}

.spBtn .btn.btn-orange {
    margin: 0;
}

@media ( max-width: 1024px ) {
    .diff .row.flex {
        flex-direction: column;
        gap: 56px;
        height: fit-content;
        align-items: center;
    }

    .diff.beforeAfter .diffImg img {
        width: 100%;
        height: auto;
    }

    .diff.beforeAfter .diffBox:hover {
        margin-bottom: 0px;
    }

    .diffBox {
        max-width: 398px;
        width: 50%;
    }

    .diffContent {
        clear: both;
    }

}

@media ( max-width: 567px ) {
    .diff .container {
        margin-bottom: 0
    }

    .diffContent .specialLink {
        font-size: 16px;
    }

    .diff .heading h2::after {
        margin: 18px auto;
    }

    .diff a.btn.btn-orange {
        margin-top: 56px;
    }

    .diffBox {
        width: min( 100%, 326px );
        padding: 0;
        margin: 0 auto;
    }

    .diffContent h4,
    .diffContent h4 a {
        font-size: 22px;
    }
}

/* LOCATION SECTION CSS */

.section-location,
.widget.section-location {
    position: relative;
    padding: 0;
    background-color: var( --white );
    overflow: hidden;
    clear: both;
}

.widget.loc-widget.section-location {
    /* padding: var( --secPadding ); */
}

section.section-location .heading h2 {
    color: inherit;
    font-size: 36px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    line-height: 50px;
    margin-bottom: 80px;
}

.section-location .heading h2::after {
    border-color: var( --primary-color );
}

.section-location .map-block {
    position: relative;
    display: block;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
}

.map-block.container.flex {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.section-location .mapWrap {
    overflow: visible;
    text-align: left;
    float: right;
}

.section-location #map, .widget.section-location #map {
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 25px rgb(0 0 0 / 10%);
    height: 812px;
    border: 40px solid var( --white );
    box-sizing: content-box;
}

.widget.section-location #map {
    /* border: 0; */
}

.mapWrp {
    padding: 0;
}

address .row-location a {
    color: var(--black);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    line-height: 24px;
}

.fwMap address .row-location a {
    color: var(--black);
}

address .row-location a.locTel {
    margin-bottom: 24px;
    display: inline-block;
}

address hr {
    border-color: var( --white );
}

.section-location .address {
    position: relative;
    display: grid;
    align-content: center;
    align-items: center;
}

.section-location #lg-address {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: clamp( 40px, 5.21vw, 100px );
    width: clamp( 384px, 31.25vw, 600px );
    background-color: var( --white );
    color: var( --black );
    z-index: 99;
    box-shadow: 0 40px 50px 0 rgba( 0, 0, 0, 0.05 ), 0 20px 30px 0 rgba( 0, 0, 0, 0.10 );
}

.section-location #lg-address .address-holder {
    padding: clamp( 40px, 4.17vw, 80px );
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-location #lg-address .address-holder address {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0;
    font-size: var( --body-font-size );
    line-height: 1.5;
    font-style: normal;
}

.section-location #lg-address .address-holder address .row-location {
    margin: 0;
    padding: 0;
}

.section-location #lg-address .address-holder address .row-location.row-place .row {
    margin: 0;
}

.section-location .map-block .row-tel a.btn.btn-danger {
    margin-left: 0px;
    margin-top: min(1.406vw, 27px);
}

#xs-address {
    display: none;
}

.section-location .address .address-holder {
    text-align: left;
    border-radius: 0;
    padding: 0 clamp(70px, 7.292vw, 140px);
}

.section-location .address .address-holder .pin {
    padding: 0 8px;
    font-size: 16px;
    color: var( --primary-color );
}

.section-location .address .address-holder .inf {
    padding: 0;
    overflow: visible;
}

.section-location .address address {
    margin: 0;
    font-size: 22px;
    line-height: 1.2em;
    font-style: normal;
    overflow: hidden;
}

.section-location .address .address-holder .btn.btn-orange {
    margin: 56px 0
}

.section-location .address .shedule dl {
    color: var( --black );
    margin: 0;
    display: grid;
    grid-template-columns: .2fr 1fr;
    grid-column-gap: 8px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    overflow: visible;
}

.section-location .fwMap .address .shedule dl {
    color: inherit;
}

.section-location .address .shedule dt {
    font-weight: normal;
    width: 100%;
    text-align: left;
}

.section-location .address .shedule dd {
    margin: 0;
    text-align: left;
    white-space: nowrap;
    overflow: visible;
}

.row-location {
    padding: 0;
    font-size: 16px;
    line-height: 1.3em;
    font-weight: 300;
    margin: 0;
}

.row-location.row-place .row {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    margin: 0 0 16px;
    gap: 16px;
}

.row-location.row-tel {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    clear: both;
    margin-bottom: 24px;
    gap: 16px;
}

.row-location.row-tel a {
    margin: clamp( 20px, 1.250vw, 24px ) 0;
}

.row-location hr {
    margin: 10px 0;
    width: 65%;
}

.row-location.row-place .place h4 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 29px;
}


.section-location .row-location .place h4::after,
.section-location .row-location .place .h4::after {
    content: '';
    width: 80px;
    display: none;
    margin: 16px 0;
    border-bottom: 4px solid #E2E3B9;
}

.row-location a {
    font-weight: 400;
}

.row-location .place span {
    overflow: hidden;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 24px;
}

.row-location.row-place .h4, .row-location.row-place h4 {
    font-family: var( --heading-font );
    color: inherit;
    font-weight: var(--heading-font-weight );
    font-size: var( --h2-font-size );
    line-height: var( --h2-line-height );
    letter-spacing: normal;
    text-transform: none;
    padding-left: 10px;
    margin-bottom: 24px;
    margin-top: 0;
}

/* Widget-rendered Full Width Map: use Display headline per Figma (Map Title field, falls back to Title) */
.widget.loc-widget .row-location.row-place .h4,
.widget.loc-widget .row-location.row-place h4 {
    font-size: clamp( 24px, 1.875vw, 36px );
    line-height: var( --disp-line-height );
    padding-left: 0;
    margin-bottom: 32px;
}

@media ( max-width: 1024px ) {
    .widget.loc-widget .row-location.row-place .h4,
    .widget.loc-widget .row-location.row-place h4 {
        font-size: 36px;
        line-height: 1.15;
    }
}

.fwMap .row-location.row-place .h4, .fwMap .row-location.row-place h4 {
    font-family: var( --body-font );
    font-size: clamp( 24px, 1.875vw, 36px );
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
    color: inherit;
    padding-left: 0;
    margin: 0 0 32px;
    display: block;
}

.fwMap address .row-location,
.fwMap address .row-location a,
.fwMap address .row-location span,
.fwMap address .row-location .place span {
    font-family: var( --body-font );
    font-size: var( --body-font-size );
    font-weight: 400;
    line-height: 1.5;
    color: inherit;
}

.row-location.row-place .place .h4::after,
.row-location.row-place .place h4::after {
    position: relative;
    content: '';
    display: none;
    width: 60px;
    border-bottom: 4px solid var( --primary-color );
    margin: 8px 0 24px;
}

.lIcon {
    color: var( --primary-color );
    font-size: 20px;
    padding: 0;
}

.section-location .address .shedule {
    margin: 0;
}

.section-location .address .shedule .row {
    display: flex;
    gap: 16px;
    overflow: visible;
}

.schd-note {
    padding: 30px 0 0;
    font-size: small;
}

.bottom-opener {
    margin-top: 56px;
}

.section-location .btn.btn-orange:hover {
    background-color: var( --primary-hover );
    color: var( --white );
}

@media ( max-width: 1280px ) {
    .section-location .container {
        width: 100%;
    }
}

@media ( max-width: 479px ) {
    .section-location .map-block {
        padding: 0;
    }

    .section-location .address .shedule {
        width: 100%;
    }
}

#map [role="button"],
.map-show-canvas-f [role="button"] {
    background-color: transparent;
}

div#formPop .iMap>.map-show-canvas-f,
div#formPop2 .iMap>.map-show-canvas-f {
    border-radius: 0;
    box-shadow: 0px 20px 40px #00000026;
}

/** FORMS AND STUFF **/
.wrap-form-question form .top p {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
}

.wrap-form-question form .top label {
    display: flex;
    align-content: center;
    flex-direction: row-reverse;
    align-items: center;
}

.wpcf7-form-control.wpcf7-radio {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

span#service.wpcf7-form-control.wpcf7-radio,
span#service2.wpcf7-form-control.wpcf7-radio{
    flex-wrap: wrap;
    justify-content: start;
}

.wrap-form-question form .top label input[type="radio"] {
    float: right;
    display: inline-block;
    margin: 1px 0 0 10px;
    width: 20px;
    height: 20px;
}

span#service.wpcf7-form-control.wpcf7-radio .wpcf7-list-item,
span#service.wpcf7-form-control.wpcf7-radio .wpcf7-list-item.last {
    margin-left: 0
}

fieldset.rServ {
    clear: both;
    display: block;
    width: 100%
}

div#formPop .contactHead,
div#formPop2 .contactHead {
    color: inherit;
    font-weight: var( --heading-font-weight );
    font-family: var( --heading-font );
    text-transform: none;
    letter-spacing: normal;
}

div#formPop .contactHead strong,
div#formPop2 .contactHead strong {
    color: inherit;
}

.hide-me .wpcf7 {
    background-color: var( --secondary-color );
    color: var( --white );
}

div#formPop .contactHead.phone a,
div#formPop2 .contactHead.phone a {
    color: var( --black );
    font-weight: 500;
    font-family: var( --body-font );
    letter-spacing: normal;
}

div#formPop .contactHead.phone a:hover,
div#formPop2 .contactHead.phone a:hover {
    color: var( --black );
}

.hide-me input[type="submit"].wpcf7-submit,
.wrap-form-question input[type="submit"] {
    background-color: var( --primary-color );
    color: var( --white );
    margin: 10px auto;
    outline: 2px solid var( --primary-color );
    outline-offset: -2px;
    float: none;
    font-size: clamp(14px, 0.833vw, 16px);
    font-weight: var( --btn-font-weight );
    line-height: normal;
    padding: clamp(14px, 0.833vw, 16px) clamp(22px, 1.667vw, 32px);
    box-shadow: none;
    font-family: var( --body-font );
    border-radius: var( --btn-border-radius );
    letter-spacing: var( --btn-letter-spc );
    text-transform: uppercase;
    transition: all .75s ease;
}

#oldButton, #oldButton2, #oldButton3 {
    display: none;
}

.wpcf7-spinner {
    display: block;
    clear: both;
    display: none;
}

.hide-me input[type="submit"].wpcf7-submit:hover,
.wrap-form-question input[type="submit"]:hover {
    background-color: var( --primary-hover );
    color: var( --white );
    transition: all .75s ease;
}

.wrap-form-question form input:not([type="submit"]):focus, .wrap-form-question form textarea:focus {
    border-color: var( --primary-color ) !important;
}

.wrap-form-question.wrap-form-question-fixed {
    border-radius: 0;
    background-color: var( --white );
    color: inherit;
    padding: 40px;
    z-index: 999;
}

.cInfo form input:not([type=submit]), .cInfo form textarea, .wrap-form-question form input:not([type=submit]), .wrap-form-question form textarea {
    border: 1px solid #2c2c2c; 
}

div#formPop form,
div#formPop2 form {
    background-color: transparent;
    color: var( --white );
}

div#formPop .iMap > .map-show-canvas,
div#formPop .iMap > .map-show-canvas-f,
div#formPop2 .iMap > .map-show-canvas,
div#formPop2 .iMap > .map-show-canvas-f {
    height: 364px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    display: block;
    max-width: 435px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    background-color: var( --white );
}

div#formPop form,
div#formPop2 form {
    margin: 0 auto;
    width: 90%;
    overflow: hidden;
}

/* Book Now popup form — placeholder copy #767676 */
div#formPop input::placeholder,
div#formPop textarea::placeholder,
div#formPop2 input::placeholder,
div#formPop2 textarea::placeholder {
    color: #767676;
    opacity: 1; /* Firefox dims placeholders by default */
}

div#formPop input::-webkit-input-placeholder,
div#formPop textarea::-webkit-input-placeholder,
div#formPop2 input::-webkit-input-placeholder,
div#formPop2 textarea::-webkit-input-placeholder {
    color: #767676;
}

div#formPop .shedule,
div#formPop2 .shedule {
    text-align: center;
}

div#formPop .shedule dt,
div#formPop2 .shedule dt {
    text-align: left;
    font-weight: 400;
}

div#formPop .shedule dd,
div#formPop2 .shedule dd {
    text-align: right;
}

div#formPop .row,
div#formPop2 .row {
    width: 100%;
    float: left;
    display: block;
    margin-bottom: 10px;
}

div#formPop .contactHead,
div#formPop2 .contactHead {
    text-align: center;
    color: var( --black );
    margin-top: 0;
}

div#formPop .contactHead.phone a,
div#formPop2 .contactHead.phone a {
    color: var( --black );
    font-size: 16px;
}

div#formPop .contactHead.phone a:hover,
div#formPop2 .contactHead.phone a:hover {
    color: inherit;
}

.fMapWrap {
    display: grid;
    align-content: center;
    align-items: center;
    min-height: 650px;
}

.footer-holder {
    position: relative;
    background-color: transparent;
    border-top: 2px solid #ffffff26;
    padding: clamp(30px, 2.917vw, 56px ) 0px 0px;
}

.footer-holder .servNav {
    padding-left: min( 7.292vw, 140px );
}

.footer-holder > .container {
    padding-bottom: 20px;
    display: flex;
    align-items: stretch;
}

.footer-holder .foot {
    display: flex;
    justify-content: start;
    justify-items: start;
    align-items: flex-start;
    align-content: center;
}

.footer-holder .foot:first-of-type {
    position: relative;
    padding: 0;
    z-index: 4;
}

.footer-holder .footLogo {
    position: relative;
    display: grid;
    align-content: center;
}

.footer-holder .footer-logo {
    position: relative;
    display: block;
    margin: 0;
    text-align: left;
    height: fit-content;
    width: 100%;
}

.footer-holder .loc {
    display: grid;
}

.footer-holder .mod-btn.accordion {
    background-color: transparent;
    color: var( --white );
    padding: 0 18px 18px;
}

.footer-holder .col-md-3 {
    padding-top: 20px;
}

/* Column heading typography (matches Figma "LEAVE A REVIEW" / "CONTACT US" overline) */
.footer-holder .mod-btn.accordion .h3,
.footer-holder .fLocation h3,
.footer-holder .fLocation .h3 {
    font-family: var( --body-font );
    font-size: var( --overline-font-size );
    font-weight: var( --overline-font-weight );
    line-height: var( --overline-line-height );
    letter-spacing: var( --overline-letter-spc );
    text-transform: uppercase;
    color: var( --white );
}

#footer a.btn.btn-orange {
    display: none;
}

/* MISC CSS FOR SITE QA DAC */

.entry img.no-shadow {
    box-shadow: none;
}

.heading h6 {
    display: none;
}

.rll-youtube-player .play::before {
    content: '\f144' !important;
    font-weight: 900;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var( --white );
}

.compare {
    position: relative;
    width: 100%;
    max-width: 674px;
    margin: 0 auto;
    display: block;
    font-size: 18px;
}

.compare h3 {
    margin: 50px 0 15px;
    font-size: 24px;
}

#menu-services li:hover a::after,
.widget_categories ul li:hover a::after {
    content: unset;
    display: unset;
    font-family: unset;
    margin-left: unset;

    vertical-align: unset;
    margin-top: unset;
}

#menu-services li:hover a {
    text-decoration: underline;
}

#menu-services {
    width: 100%;
}

.heading p {
    font-size: 18px;
    color: inherit;
    font-weight: 400;
}

.main-map [role='button'],
.main-map [role='button']:hover,
.main-map [role='button']:focus {
    background-color: transparent;
    box-shadow: none;
    border: none;
    margin-top: 0;
}

#map [role="button"],
.map-show-canvas [role="button"],
#map [role="button"]:hover,
.map-show-canvas [role="button"]:hover,
#map [role="button"]:focus,
.map-show-canvas [role="button"]:focus,
#map [role="button"],
.map-show-canvas-locations [role="button"],
.map-show-canvas-locations [role="button"]:hover,
.map-show-canvas-locations [role="button"]:focus,
.map-block.widget-map [role="button"],
.map-block.widget-map [role="button"]:hover,
.map-block.widget-map [role="button"]:focus {
    background-color: transparent;
    border-color: transparent;
}

div#formPop .iMap > .map-show-canvas,
div#formPop2 .iMap > .map-show-canvas {
    height: 515px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    display: block;
    max-width: 435px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    background-color: var( --white );
}

#locPop {
    position: relative;
    width: 100%;
    z-index: 1;
}

div#locPop .mfp-close {
    color: var( --white );
}

.map-show-canvas-locations {
    position: relative;
    width: 90%;
    margin: 10% auto;
    height: 515px;
    z-index: 1;
}

#locPop > .popAddress {
    position: absolute;
    max-width: 380px;
    background-color: rgb(39 39 39 / 80%);
    backdrop-filter: blur(3px);
    top: 128px;
    left: 10%;
    padding: 20px;
    z-index: 999;
}

#locPop > .popAddress ~ .popAddress {
    right: 10%;
    left: unset;
}

div.popAddress:nth-of-type(1) {
    top: 0;
}

.gm-style .gm-style-iw-c {
    text-align: center;
    color: inherit;
}

/* END MISC CSS FOR SITE QA */

/** Footer Navs **/
.infoNav h3, .servNav h3, .fLocation h3,
.infoNav .h3, .servNav .h3, .fLocation .h3 {
    color: var( --white );
    font-weight: 500;
    font-family: var( --heading-font );
    font-size: 16px;
    line-height: 24px;
    margin-bottom: clamp( 22px, 1.458vw, 28px );
    letter-spacing: clamp( 0.87px, 0.08vw, 1.54px );
    text-transform: uppercase;
}

.fLocation h3 {
    margin-top: 0;
}

.footer-holder .panel {
    display: block;
}

.footer-holder .social a {
    color: var( --white );
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    min-height: 24px;
}

.footer-holder .social a:hover {
    color: var( --white );
    opacity: .7;
    text-decoration: none;
}

.footer-holder .social a img {
    filter: grayscale(1) brightness(15);
    max-width: 30px;
}

.footer-holder ul a,
.fAddress a {
    color: var( --white );
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-decoration: none;
}

.fAddress a:hover, span.tel-footer a:hover {
    text-decoration: underline;
}

.footer-holder ul a {
    padding: 10px 0
}

.footer-holder ul a:hover, .fAddress a:hover {
    color: var( --white );
    text-decoration: underline;
}

.footer-holder .bottom ul a {
    color: var( --white );
    padding: 0 6px;
    font-size: 14px;
}

.bottom-nav li {
    position: relative;
    color: var( --white );
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.bottom-nav li::after {
    content: ' | ';
    width: 16px;
    display: grid;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
    position: absolute;
    right: -11px;
}

.bottom-nav li:last-of-type::after {
    display: none
}

#menu-services li a {
    text-transform: unset;
}

.fLocation p {
    width: 90%;
    margin-bottom: 20px;
}

.footer-holder ul {
    text-transform: unset;
}

.footer-holder .social,
.connect .social {
    display: flex;
    margin: 24px auto 0;
    padding: 0;
    flex-direction: row;
    gap: 16px;
}

.footer-holder .social li,
.connect .social li {
    padding: 0;
}

.connect .social li a {
    color: var( --white );
}

.connect .social li a:hover {
    opacity: .7;
}

.google-button-container {
    position: fixed;
    left: 96px;
    top: auto;
    bottom: 24px;
    z-index: 9999999;
    width: fit-content;
    width: -moz-fit-content;
    padding: 15px 32px;
    margin-bottom: 0;
    border-radius: 2px;
    background-color: var( --white );
    border-radius: 38px;
    box-shadow: 0px 10px 20px #0000000D;
}

.scrollBottom .google-button-container {
    bottom: 80px;
}

.google-button-container .container {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: fit-content;
    gap: 15px;
}

.g-image {
    display: flex;
}

.g-image .fab {
    font-size: 32px;
}

.g-image img {
    width: 100%;
    max-width: 32px;
}

.num-reviews-and-stars {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
}

.google-button-container .num-reviews-and-stars>p {
    color: inherit;
    font-family: var( --body-font );
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.34px;
    padding-bottom: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: normal;
}

.stars-and-rating p {
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-left: 5px;
    margin-bottom: 0;
    font-family: var( --body-font );
    color: inherit;
    font-size: 12px;
    font-weight: 400;
}

.google-button-container .star-rating {
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.stars-and-rating {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.google-button-container .star-rating li {
    margin: 0 0 15px 0;
    color: #fbbf00;
    font-size: 12px;
    line-height: 23px;
}
.google-button-container .h2.npw {
    color: inherit;
    font-weight: 400;
    font-size: clamp(28px, 2.083vw, 40px);
}

.g-and-number-rating p {
    display: flex;
    float: right;
    align-items: center;
    justify-content: center;
    margin: 3px 5px 0;
    font-family: var( --body-font );
    color: inherit;
    font-size: 20px;
    font-weight: 600;
}

.g-and-number-rating img { /* JRF */
    margin-right: 1px;
    margin-top: 1px;
}



.star-rating {
    padding-top: 18px;
    margin: 0 0 32px;
    color: #fbbf00;
}

.google-button-container a { /* JRF */
    margin-top: 5px;
    margin-left: 10px;
    color: inherit;
    font-size: 16px;
    font-weight: 600;
    font-family: var( --body-font );
    text-transform: uppercase;
}

.google-button-container .star-rating li {
    margin: 0 2px;
}

span.tel-footer a:hover {
    color: var( --white );
}

.mfp-content .shedule {
    max-width: unset;
}

div#formPop .shedule .h3,
div#formPop .shedule h3,
div#formPop .shedule,
div#formPop .top,
div#formPop2 .shedule .h3,
div#formPop2 .shedule,
div#formPop2 .top{
    color: var( --black );
    font-family: var( --body-font );
    font-weight: 400;
}

div#formPop .shedule h3 {
    margin-top: 0;
    font-family: var(--heading-font);
    text-transform: unset;
}

#footer {
    max-width: 1920px;
    margin: 0 auto;
    z-index: 1;
    background-color: var( --black );
    padding: 0;
    clear: both;
}

#footer .connect {
    padding: 100px 0;
    color: var( --white );
}

.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}

.splide__pagination__page.is-active {
    background: var( --ltBlue );
}

@media ( max-width: 1440px ) {
    #nav > li a {
        font-size: 0.972vw;
        padding: 0.694vw 0;
    }

    .container {
        width: 95%;
        max-width: 1500px;
        padding: 0 15px;
        margin: 0 auto;
        z-index: 5;
    }

    #nav > li {
        padding: 0 0.694vw
    }

    .page-scrolled .sLogo #logo img {
        margin-top: 0;
    }

    .header-promo-holder .phoneBlock { /* JRF */
    }

    .slide_content::before {
        left: -10px;
    }

    .sCont .contWrap {
        width: 85%;
    }

    .bar h1 {
        font-size: 1.806vw;
    }

    .specContent h4 {
        font-size: 1.806vw;
    }

    .news-list li:nth-last-of-type(odd) .image.video {
        padding: 2.083333333333333vw 0;
    }

    .compare {
        margin: 20px 0;
    }

    #patientTest .news-list li {
        background-position: 10% center;
    }

    .servSect .container {
        width: 85%;
    }

    .servList {
        padding: 0 5px;
    }

    .section-location #map {
        height: 600px;
    }
}

@media ( max-width: 1366px ) {
    #header .container {
        width: 95%;
    }
}

@media ( max-width: 1280px ) {
    .header-promo-holder .phoneBlock {

 /* JRF */
    }

    .sub-nav li {
        padding: 0.234vw 1.563vw;
    }
}

@media (max-width: 1225px) and (min-width: 1025px) {
    a#openForm {
        padding: 20px 10px;
        font-size: 14px;
    }
}

@media (min-width: 1025px) {

    #nav {
        font-size: inherit;
        margin: 0;
    }

    #nav > li {
        display: inline-block;
        position: relative;
        padding: 0 min(0.521vw, 10px);
    }

    #nav > li a {
        font-size: clamp(14px, 0.833vw, 16px);
        line-height: 24px;
        display: inline-block;
        padding: min( 1.198vw, 23px ) min(0.260vw, 5px);
        position: relative;
        text-transform: uppercase;
        letter-spacing: var( --btn-letter-spc );
        font-weight: 500;
    }

    #nav > li > a::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        display: block;
        width: 0;
        height: 2px;
        background-color: var( --primary-color );
        transition: all .5s ease;
    }

    #nav > li > a:hover::after,
    #nav > li.current_page_item > a::after {
        width: 100%;
    }

    #nav > li.current_page_item > a {
        color: var( --secondary-color );
    }

    .page-scrolled #nav > li.current_page_item > a,
    .page:not(.home) #nav > li.current_page_item > a {
        color: var( --black );
    }

    #nav .sub-menu > li > a {
        font-size: 16px !important;
        font-weight: 400;
    }

    #nav .sub-menu > li.current-menu-item > a {
        color: var( --secondary-color );
    }

    #nav > li a:hover {
        text-decoration: none;
        color: var( --black );
    }

    .page-scrolled #nav > li a:hover {
        color: var( --black );
    }

    #nav > li.hover ul {
        display: block;
    }

    #nav ul {
        position: absolute;
        top: 100%;
        width: 240px;
        left: 10px;
        display: none;
        padding: 6px 0 6px 6px;
        background-color: var( --white );
        box-shadow: 0 8px 59px 0 rgba(0, 0, 0, .1);
    }

    #nav ul.sub-menu > li {
        position: relative;
    }

    #nav ul.sub-menu > li.hover a {
        background-color: var( --white );
    }

    #nav ul.sub-menu > li.current-menu-item {
        background-color: var( --white );
    }

    #nav ul li ul.sub-menu {
        display: none;
        position: absolute;
        /*left: 169px; DAC */
        left: 200px; /* DAC */
    }

    #nav ul li.hover ul.sub-menu {
        display: block;
        top: 0;
    }

    #nav ul a {
        display: block;
        position: relative;
        padding: 15px 20px 15px 20px;
        text-transform: none;
    }

    #nav ul a:hover {
        color: var( --black );
        background: var( --white );
    }

    #nav > li > a .opener {
        display: none;
    }

    #nav .opener::after {
        position: relative;
        top: 0;
        z-index: 2;
        content: "\f0d7";
        display: inline-block;
        font-family: 'Font Awesome 5 Free', fantasy;
        margin: 0 0 0 10px;
        font-weight: 900;
    }

    #nav li ul.sub-menu .opener::after {
        content: "\f0da";
    }

    #nav li.menu-item-has-children:hover>ul.sub-menu {
        display: block;
    }
    
    #nav li.menu-item-has-children:hover>ul.sub-menu>li.menu-item-has-children>ul.sub-menu {
        top: 0;
    }

    #nav .sub-menu li .opener:after {
        right: 0;
    }

    #nav .opener.actives:after {
        border-width: 0 4px 5px 4px;
        border-color: transparent transparent #36a3d2 transparent;
    }
}

@media ( max-width: 1024px ) {
    .container {
        width: 100%;
    }

    #header .btn.btn-orange:hover, #header:hover .btn.btn-orange:hover {
        margin: 0 auto;
    }

    #header:hover #logo img,
    .page-scrolled .sLogo #logo img {
        width: auto;
        height: 30px;
    }
    
    #scLogo img {
        width: auto;
        height: 30px;
        display: none;
    }

    .page-scrolled #header,
    .page:not(.home).page-scrolled #header {
        position: relative;
    }

    .page-scrolled #header .header-holder,
    .page-scrolled.page:not(.home) #header .header-holder {
        position: fixed !important;
        background-color: var( --white );
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    #header .container {
        display: block;
    }

    .footer-holder .servNav {
        padding-left: 15px;
    }


    .page-scrolled .sLogo #scLogo {
        padding-top: 0;
    }

    .page-scrolled:not(.home) .sLogo #scLogo {
        padding-top: 0;
    }

    #nav {
        display: block;
    }

    .float-right {
        float: none;
    }

    .addWrap {
        float: none;
        width: 100%;
        margin-bottom: 80px;
    }

    .mobile-hidden {
        display: none !important;
    }

    .mm-spn.mm-spn--navbar::after {
        font-family: var( --heading-font );
        color: var( --white );
        background-color: var( --primary-color );
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: var( --btn-letter-spc );
        opacity: 1;
    }

    .mm-spn.mm-spn--dark {
        background-color: var( --black );
    }

    .mm-spn li::after {
        color: var( --black );
    }

    .mm-spn.mm-spn--dark li::after {
        color: var( --white );
    }

    #nav .sub-menu.mm-spn--open,
    #nav ul, #nav ul.sub-menu > li.hover a,
    #nav ul li.hover ul.sub-menu {
        background-color: var( --white );
    }

    .mm-spn.mm-spn--dark #nav ul.sub-menu {
        background-color: var( --black );
    }

    .mm-spn.mm-spn--navbar::before {
        color: var( --white );
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

    #nav .sub-menu > li > a {
        color: var( --black );
    }

    #nav > li a, header:hover #nav > li a, .page-scrolled #nav > li a, .page:not(.home) #nav > li a {
        font-size: 16px;
        padding: 10px 0;
        line-height: normal;
        color: var( --black );
    }

    span.opener {
        display: none;
    }

    .heading br {
        display: unset;
    }

    #header, #header:hover,#header:hover,
    .page-scrolled #header, .page-scrolled #header:hover,
    .page:not(.home).page-scrolled #header {
        padding-bottom: 0;
        width: 100%;
        float: left;
        height: fit-content;
        margin-bottom: -1px;
        position: relative;
        background-color: var( --white );
    }

    .mob-logo-section {
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
        height: fit-content;
        height: -moz-fit-content;
        max-width: 244px;
    }

    /* Mobile header below the top nav bar — logo + Book Now CTA stacked & centered (Figma) */
    .mobHd.mobile-show {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 56px;
        padding: 56px 32px;
    }

    .page:not(.home) .mob-logo-section {
        padding: 0px 15px;
        max-width: 274px;
    }

    .diff, .widget.widget-diff {
        background-image: none;
    }

    .flRight,
    .flLeft,
    .align-right,
    .align-left {
        float: none;
    }

    .header-promo-holder.mobile-hidden {
        display: none;
    }

    .news-list .description p,
    .offers-list li .heading p,
    .offers-list li .heading strong,
    .box-offers .description p:last-of-type,
    .box-offers .description p,
    .box-offers .offers-info p,
    .half-content .text,
    .reviews .testimony p,
    .reviews .testimony p.tName,
    .reviews .center a,
    .specWrap a,
    .fullContent,
    .half-content,
    .oCaseStudies,
    .teamIntro {
        clear: both;
    }

    .offers-list li a.btn.btn-orange.moreOff,
    .btn.btn-orange.bottom-opener,
    .hide-me input[type="submit"].wpcf7-submit,
    .wrap-form-question input[type="submit"] {
        padding: 16px 24px;
        font-size: clamp(14px, 0.833vw, 16px);
    }

    .hide-me input[type="submit"].wpcf7-submit:hover,
    .wrap-form-question input[type="submit"]:hover {
        padding: 16px 24px;
    }

    .image.blank {
        height: fit-content;
    }

    .image.blank img {
        display: block;
        width: 100%;
        height: auto;
    }

    .nav-bar, .page-scrolled .nav-bar, 
    .page:not(.home).page-scrolled .nav-bar,
    .page:not(.home) .nav-bar {
        margin: 0;
    }

    .mob-logo-section img {
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    .header-promo-holder.promo-mobile {
        display: block;
        padding: 20px 0;
        text-align: center;
    }

    .header-promo {
        padding: 5px 0;
        text-align: center;
        display: block;
        float: none;
        width: 100%;
    }

    .header-promo a {
        font-size: 28px;
        text-align: center;
    }

    .sLogo {
        display: none;
    }

    .page-scrolled .sLogo {
        display: block;
        width: fit-content;
    }

    .logo-block {
        display: none;
        margin: 10px auto;
        padding: 0;
        width: fit-content;

        box-shadow: none;
    }

    .page-scrolled .logo-block {
        display: block;
    }

    .emApp .appointments .container {
        width: 90%;
    }

    #wrapper {
        margin-top: 47px;
        overflow-x: hidden;
    }

    .btn-block {
        width: 100%;
        height: 54px;
        float: none;
        position: absolute;
        top: 90px;
        right: 0;
        margin: 0;
    }

    .btn-block.mobile-show {
        position: relative;
        top: 0;
        right: unset;
        display: block;
        margin: 0px auto;
        float: none;
        height: fit-content;
        height: -moz-fit-content;
    }

    .btn-block.mobile-show .opener-form {
        right: unset;
        top: unset;
        display: flex;
    }

    .btn-block.mobile-show .booking-opener, .btn-list a, .btn.btn-orange.booking-opener, #header .btn.btn-orange {
        margin: 0 auto;
        position: relative;
        display: inline-block;
        padding: 16px 32px;
        font-family: var( --body-font );
        font-size: var( --overline-font-size );
        font-weight: var( --overline-font-weight );
        line-height: var( --overline-line-height );
        letter-spacing: var( --overline-letter-spc );
        text-transform: uppercase;
        color: var( --white );
        background-color: var( --primary-color );
        outline: none;
        float: none;
        right: unset;
        left: unset;
        top: unset;
        max-width: unset;
    }

    #header:hover .btn.btn-orange.booking-opener,
    #header:hover .btn.btn-orange,
    .page-scrolled #header .btn.btn-orange.booking-opener,
    .page-scrolled #header .btn.btn-orange {
        color: var( --white );
        outline: none;
        background-color: var( --primary-color );
    }

    .page-scrolled #header .btn.btn-orange.booking-opener, .page-scrolled #header .btn.btn-orange {
        position: fixed;
        right: 10px;
        top: 64px;
        background-color: var( --primary-color );
        color: var( --white );
    }

    .btn-block.mobile-show .btn.btn-orange.booking-opener:hover {
        margin: -5px auto 5px;
    }

    .btn-list {
        display: block;
        margin: 0 auto 20px;
        width: fit-content;
        text-align: center;
        display: none;
    }

    .splitServ, .bAndA {
        padding: 80px 0;
    }

    .servSumm {
        display: block;
        padding-bottom: 80px;
    }

    .servSumm .container {
        width: 90%;
    }

    .servList li, .cbCard {
        width: 90%;
        margin: 0 auto;
    }

    .cbCard {
        margin: 0 auto 40px;
    }

    #header .header-holder {
        padding: 8px 32px;
        height: 56px;
        width: 100%;
        background-color: var( --white );
        box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05), 0 5px 15px 0 rgba(0, 0, 0, 0.10);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    /* Empty-on-mobile container — kill its width so flex layout doesn't shift */
    #header .header-holder .locNavBtns {
        display: none;
    }

    .addBlock #logo img {
        height: auto;
        margin-bottom: 75px;
    }

    #logo {
        margin: 30px 0 20px;
        max-width: 300px;
        width: 100%;
        float: none;
    }

    .menu-opener {
        margin-right: 0;
        margin-left: auto;
        z-index: 5;
        order: 2;
    }

    .menu-opener span, .menu-opener::after, 
    .menu-opener::before {
        background: var( --primary-color );
    }

    .page-scrolled .menu-opener span,
    .page-scrolled .menu-opener::after,
    .page-scrolled .menu-opener::before {
        background: var( --primary-color );
    }

    .mm-spn li::before {
        top: 20px;
        right: 33px;
        display: none;
    }

    .mm-spn li.menu-item-has-children::before,
    .mm-spn li.has-drop::before {
        display: block;
        color: var( --black );
        opacity: 1;
    }

    .mm-spn.mm-spn--dark li.menu-item-has-children::before,
    .mm-spn.mm-spn--dark li.has-drop::before {
        color: var( --white );
    }

    .infoNav a,
    .servNav a {
        margin: 20px 0;
        display: block;
    }

    .mobile-show.moreInfo a {
        background-color: var( --primary-color );
        color: var( --white );
        outline-offset: -2px;
        font-size: 20px;
        box-shadow: none;
        border-radius: 0;
        border: none;
        outline: none;
    }

    .mobile-show.moreInfo a.btn.btn-orange .fa {
        color: var( --white );
        transform: rotate(90deg);
    }

    .mobile-show.moreInfo a:hover {
        color: var( --white );
        background-color: var( --primary-color );
    }

    .home #wrapper {
        background-position: center 55%;
        background-size: 100%;
    }

    .page-scrolled #main, #main {
        clear: both;
        overflow: hidden;
    }

    #content .holder {
        padding: 60px 0;
    }

    #header .social a {
        font-size: 20px;
    }

    .social li {
        vertical-align: middle;
    }

    .updated-contact-block {
        display: block;
        padding: 0 0 10px;
        width: 100%;
        text-align: center;
    }

    .updated-contact-block .booking-opener {
        position: relative;
        right: unset;
        top: unset;
        float: none;
    }

    .page-scrolled .updated-contact-block {
        display: none;
    }

    .opener-form {
        float: none;
        right: 10px;
        width: 100%;
        height: 54px;
        top: 0;
    }

    .booking-opener {
        position: relative;
        right: 5px;
        top: 0;
        margin: 0 auto;
        float: right;
        z-index: 99;
    }

    .page-scrolled a.btn.btn-orange.booking-opener {
        position: fixed;
        right: 3px;
        top: 56px;
        left: unset;
        transform: unset;
        z-index: 99;
        box-shadow: 0 3px 6px rgb(0 0 0 / 50%);
    }

    .page-scrolled a.btn.btn-orange.booking-opener:hover {
        outline: none;
        color: var( --white );
        background-color: var( --primary-hover );
    }


    .mobile-show.moreInfo {
        bottom: 8vh;
    }

    .sLogo {
        display: block;
    }

    .sLogo #logo,
    .page-scrolled .sLogo #logo {
        margin: 0;
    }

    .page-scrolled .logo-block {
        margin: 0 auto;
        padding: 2px 0;
        width: fit-content;
        width: -moz-fit-content;
    }

    .sLogo #logo img {
        max-width: 260px;
        max-height: 65px;
        width: auto;
    }

    .page-scrolled .sLogo #logo img {

        width: auto;
        height: 30px;
        max-width: 260px;
    }

    .popVid::after {
        width: 75px;
        height: 75px;
        font-size: 38px;
        line-height: 70px;
        padding-left: 6px;
    }

    .floatBox {
        margin-top: 0;
        min-height: 468px;
    }

    .smTop h3 {
        font-size: 2.734vw;
        line-height: 4.492vw;
    }

    .smContent {
        font-size: 1.563vw;
        line-height: 2.148vw;
        padding: 80px;
    }

    .map {
        padding: 50px 0;
        float: none;
    }

    .star-rating li {
        font-size: 24px;
    }
    
    .section-location,
    .widget.section-location,
    .widget.loc-widget.section-location {
        background-image: none;
        padding: 80px 32px 56px;
        clear: both;
        border-bottom: none;
    }

    .section-location::before,
    .section-location::after {
        display: none;
    }

    .map-block.container.flex {
        flex-direction: column-reverse;
        align-items: center;
    }

    /* fwMap variant on mobile: stack map first, then address card; 56px gap */
    .section-location .map-block.fwMap {
        display: flex;
        flex-direction: column-reverse;
        /* gap: 56px; */
    }

    /* Map: drop the 40px white border so it fits inside the 32px-padded section */
    .section-location .map-block.fwMap #map,
    .widget.section-location .map-block.fwMap #map {
        border: 0;
        width: 100%;
        margin: 0;
    }

    /* "Ready to Get Started?" headline — La Orleans 36px on mobile (Figma Mobile/H1) */
    .fwMap .row-location.row-place .h4,
    .fwMap .row-location.row-place h4 {
        font-family: var( --heading-font );
        font-size: var( --h1-font-size );
        line-height: var( --h1-line-height );
    }

    .row-location.row-place .place .h4, .row-location.row-place .place h4 {
        text-align: center;
    }

    .row-location.row-place .place h4::after {
        margin: 24px auto;
    }

    .section-location .address {
        width: 90%;
        float: none;
        text-align: center;
    }

    .section-location #xs-address.address {
        position: relative;
        background-color: transparent;
        width: 100%;
        top: unset;
        transform: unset;
        left: unset;
        padding: 0;
        display: block;
    }

    address .row-location a {
        font-size: clamp(16px, 0.938vw, 18px);
        font-weight: 400;
        font-style: normal;
        letter-spacing: 0;
        line-height: 24px;
        text-align: center;
    }

    .section-location #lg-address.address {
        display: none;
    }

    .section-location .address .address-holder .inf {
        padding: 0;
    }

    .section-location .address .address-holder {
        width: 100%;
        padding: 56px 0px 0;
        margin: 0;
    }

    .section-location .row-location .place h4::after,
    .section-location .row-location .place .h4::after {
        margin: 24px auto;
    }

    .section-location .address .shedule {
        margin: 0 auto 55px;
    }

    .section-location .address .shedule dl {
        width: 100%;
        margin: 0;
        display: grid;
        grid-template-columns: .5fr 1fr;
        grid-column-gap: 16px;
    }

    .section-location .address .shedule dd {
        margin: 0;
    }

    .section-location .mapWrp {
        width: 100%;
        height: clamp( 240px, 54.688vw, 560px );
        clear: both;
        float: none;
        margin: 0;
    }

    .section-location #map, .widget.section-location #map {
        height: clamp( 240px, 54.688vw, 560px );
        width: 100%;
        border: none;
    }

    .row-location.row-tel .tel a.btn.btn-danger {
        margin: 10px auto;
    }

    .footer-holder .mod-btn.accordion {
        text-align: center;
    }

    .footer-holder .mod-btn.accordion::after {
        position: absolute;
        content: '\f107';
        font-family: 'Font Awesome 5 Free', fantasy;
        font-weight: 900;
        width: 26px;
        right: 15%;
        top: 11px;
        margin: -7px 0 1px;
        font-size: 26px;
        display: inline-block;
        color: var( --white );
    }

    .footer-holder .mod-btn.accordion.active::after {
        content: '\f106';
    }

    .footer-holder .panel {
        display: none;
    }

    .footer-holder .social {
        text-align: center;
    }

    .infoNav h3, .servNav h3 {
        text-align: center;
    }

    .footer-holder > .container {
        display: block;
    }

    .footer-holder .foot:first-of-type {
        max-width: unset;
        width: 100%;
        margin-bottom: 20px;
        justify-content: center;
    }

    .footer-holder .foot {
        text-align: center;
    }

    .footer-holder .social {
        justify-content: center;
    }

    p.fAddress,
    .fLocBox p {
        text-align: center;
        width: 100%;
        margin-bottom: 24px;
    }

    .footer-holder > .container {
        padding-bottom: 45px;
    }

    .footer-holder .copyright {
        float: none;
    }

    .mobile-show.moreInfo {
        bottom: 1vh;
    }

    .google-button-container {
        left: 12px;
    }

    #footForm {
    margin: 56px 0;
    }

    #contInfo {
        width: fit-content;
        padding: 40px;
        text-align: center;
        color: var( --white );
        background-color: rgb(0 0 0 / 85%);
        overflow: hidden;
        margin: 0 auto;
        backdrop-filter: blur(3px);
    }
    
    #contInfo h2 {
        text-transform: unset;
        color: var( --white );
    }

    #contInfo .social {
        margin-bottom: 20px
    }

    #contInfo .social li {
        padding: 0 10px;
    }

    #contInfo .social a {
        color: var( --white );
    }

    #contInfo .floatLink {
        font-size: 24px;
        font-weight: 600;
        color: var( --white );
    }

    .footer-holder .footer-logo {
        margin: 0 auto;
        width: fit-content;
        
    }

}

@media ( max-width: 768px ) {
    .header-promo a {
        font-size: 22px;
    }

    #helping:before {
        width: clamp(200px, 13.542vw, 260px);
        height: clamp(104px, 7.031vw, 135px);
        top: min(4.167vw, 80px);
        left: min(36.849vw, 283px);
        background-size: clamp(200px, 13.542vw, 260px) clamp(104px, 7.031vw, 135px);
    }

    .news-list li:nth-of-type(even) h2::after {
        margin: 25px auto;
    }

    .fLocation p {
        width: 100%;
    }

    .mobile-show.moreInfo {
        top: 11px;
        left: 32px;
        width: 34px;
        height: 34px;
    }

    .mobile-show.moreInfo a.btn.btn-orange {
        width: 34px;
        height: 34px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .google-button-container {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .pForm {
        min-height: 450px;
    }

    .wrap-form-question.wrap-form-question-fixed {
        height: 100vh;
        overflow-y: scroll;
    }

    .wrap-form-question.wrap-form-question-fixed {
        width: 85%;
        padding: 16px;
    }

}

@media ( max-width: 567px ) {
    .entry ul > li::before {
        top: 4px;
    }

    .star-rating li {
        font-size: 20px;
    }

    .google-button-container .star-rating {
        display: none;
    }

    .google-button-container {
        width: 209px;
        padding: 15px;
        transform: unset;
        left: 8px;
    }

    .container, .sCont .contWrap {
        width: 100%;
        padding: 0;
    }
    
    .section-location .address .address-holder {
        width: 100%;
        padding: 56px 0px 0;
    }

    .row-location.row-place .h4, .row-location.row-place h4 {
        width: 80%
    }

    #xs-address .shedule {
        max-width: unset;
        width: 100%;
        margin-bottom: 0;
    }

    .section-location .address {
        width: 100%;
        padding: 0;
    }

    .section-location .mapWrp {
        margin: 0 auto;
    }

    div#formPop form, div#formPop2 form {
        width: 100%;
        padding: 0
    }

    .footer-holder .mod-btn.accordion {
        background-color: transparent;
    }

    .footer-holder {
        padding: 50px 0 0;
        z-index: 0;
    }

    div#formPop .shedule {
        margin-bottom: 80px;
    }
}

@media (max-width: 479px) {
    .page-scrolled .sLogo #logo img {
        display: none;
    }
    
    .smTop h3 {
        font-size: 22px;
        line-height: 30px
    }

    #helping:before {
        left: min(25.604vw, 106px);
    }

    .news-list .description p,
    .half-content .text,
    .reviews .testimony p,
    .reviews .testimony p.tName,
    .offers-list li .heading p,
    .offers-list li .heading strong,
    .box-offers .description p,
    .box-offers .offers-info p,
    .box-offers .description p:last-of-type,
    .section-location .address .shedule dl,
    .reviews .center a,
    .specWrap a {
        font-size: 16px;
        letter-spacing: 0.24px;
        line-height: 24px;
    }

    .mob-logo-section {
        /* padding-bottom: 10px; */
    }

    .mob-logo-section img {
        width: 100%;
    }

    img.alignleft, img.alignright {
        max-width: 100%;
    }

    .header-promo a {
        font-size: 20px;
    }

    #logo {
        max-width: 220px;
    }

    .btn.booking-opener {
        padding: 15px 24px;
        margin-top: 0;
        top: 24px;
    }

    .page-scrolled .btn.booking-opener {
        margin-top: 10px;
    }

    .mobile-show.moreInfo {
        bottom: 11vh;
    }

    .footer-holder .bottom:before {
        top: -20px;
    }

}

@media (max-width: 390px) {

    .btn-block {
        top: 175px;
        right: 75px;
    }

    .mobile-show.moreInfo {
        bottom: 12vh;
    }
}

@media (max-width: 320px) {
    /* DAC */
    .page-scrolled .sLogo #logo img {
        width: 100%;
    }

    .mobile-show.moreInfo {
        bottom: 14vh;
    }

    .google-button-container { /* JRF */
        left: 67px;
        top: auto;
        bottom: 0;
        z-index: 9999999;
        display: flex;
        width: 250px;
        width: -moz-fit-content;
        padding: 0 5px;
        height: 50px;
        margin-bottom: 10px;
        justify-content: center;
        align-items: center;
        border-radius: 2px;
        background-color: hsla(0, 0%, 100%, .8);
        box-shadow: 6px 6px 25px 0 rgb(0 0 0 / 41%);
        backdrop-filter: blur(1.5px);
    }

    .g-and-number-rating p {
        margin: 0 5px;
        margin-top: 3px;
        margin-bottom: 0;
        font-size: 18px;
    }

    .g-and-number-rating img { /* JRF */
        margin-right: 1px;
        margin-top: 2.5px;
        width: 20px
    }

    .star-rating {
        margin: 10px 0 27px;
    }

    .google-button-container a { /* JRF */
        margin-top: 5px;
        margin-left: 9px;
        font-size: 14px;
    }

    .google-button-container .star-rating li {
        margin: 0;
        font-size: 11px;
    }
}
