/* RESET */

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

ol[class],
ul[class] {
  padding: 0;
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol[class],
p,
ul[class] {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: 'Lora', sans-serif;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  position: relative;
  background-color: var(--white);
}

ol[class],
ul[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

/* COLORS */

	:root {
	--red: #d50000;
	--white: #fff;
	--gray: #efefef;
	--blue: #18116e;
	--lightBlue: #b2f0ff;
	--colorGrayFont: #404040;
	--colorDark: #212121;
	--colorDarkest: #000;
	}

/* FONTS */

@font-face {
  font-family: "Mont";
  src: url(../fonts/Montserrat-Regular.woff2);
  font-display: swap;
}

@font-face {
  font-family: "Mont Bold";
  src: url(../fonts/Montserrat-Bold.woff2);
  font-display: swap;
}

@font-face {
  font-family: "Mont ExtraBold";
  src: url(../fonts/Montserrat-ExtraBold.woff2);
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url(../fonts/Lato-Regular.woff2);
  font-display: swap;
}

@font-face {
  font-family: "Pacifico";
  src: url(../fonts/Pacifico-Regular.woff2);
  font-display: swap;
}

  p {
      color: var(--colorDark);
      font-family: 'Mont', sans-serif;
      font-weight: 400;
      font-size: 16px;
      margin-bottom: 20px;
      line-height: 160%;
  }

  h1 {
    font-family: 'mont', sans-serif;
    letter-spacing: .02em;
    font-size: 40px;
    color: rgb(255,255,255,1);
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    line-height: 110%;
    margin-bottom: 20px;
  }

  h2 {
    font-family: 'Mont Bold', sans-serif;
    letter-spacing: .02em;
    font-size: 24px;
    color: var(--colorDarkFont);
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    line-height: 120%;
    margin-bottom: 10px;
  }
  
  h3 {
    font-family: 'mont', sans-serif;
    letter-spacing: .02em;
    font-size: 24px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    line-height: 110%;
    margin-bottom: 10px;
  }

/* LINKS */

a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  font-family: inherit;
}

.post a:not(.learn-more) {
  color: var(--colorPrimary);
}

.post a:hover {
  border-bottom: 2px dotted var(--colorPrimary);
}

/* COMPONENTS */

.content-wrapper {
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 5%;
}

.split {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
}


.post {
  max-width: 1000px;
  margin: 0 auto;
}

.post p {
  text-align: left;
  color: var(--colorDarkFont);
  font-size: 20px;
  line-height: 1.8em;
}

.post p:last-of-type {
  margin-bottom: 0px;
}

.post h2 {
  text-align: left;
  margin: 1.4em 0 1em;
  color: var(--blue);
  text-transform: none;
}

.post h3 {
    color: var(--red);
    text-transform: capitalize;
    font-size: 20px;
    margin: 1em 0;
}

.post li:before {
  font-family: 'FontAwesome';
  content: '\f00c';
  margin: 0px 8px 0 0;
  color: var(--red);
  font-size: 16px;
}

.post ul {
  list-style: none;
  padding-left: 20px;
}

.post li {
  display: flex;
	font-family: 'Mont', sans-serif;
	font-weight: 400;
	margin-bottom: 20px;
	text-align: left;

  color: var(--colorDarkFont);
  font-size: 20px;
  
	
    line-height: 1.6em;
}

.post li p {
  margin-bottom: 10px;
}


/* BUTTONS */

  .learn-more {
    display: inline-block;
    color: var(--white);
    height: auto;
    width: auto;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    text-transform: uppercase;
    font-family: 'mont', sans-serif;
    font-weight: 600;
    line-height: 100%;
    border-radius: 24px;
    letter-spacing: .02em;
    font-size: 18px;
    background-color: var(--colorPrimary);
    transition: all .4s;
  }

  a.learn-more:hover {
  transform: scale(1.03);
  cursor: pointer;
  }

  input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

/* OVERLAYS */

  .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgb(0,50,100,.5);
  }

/* FORMATTING */

  .alignleft {
      float: left;
      margin: 0 20px 20px 0;
      height: auto;
  }

  .alignright {
      float: right;
      margin: 0 0px 20px 20px;
      height: auto;
  }

  .aligncenter {
      display: block;
      margin: 0 auto 20px;
      height: auto;
  }

  .split {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }

   /* Header */

   header {
    width: 100%;
    position: fixed;
    display: block;
    height: auto;
    background-color: var(--white);
    left: 0;
    top: 0;
    z-index: 15;
    transition: all .5s;
}

.nav-one-row-with-banner .header-content {
  padding: 0px 3% 0px 3%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  max-width: 1600px;
  margin: 0px auto;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    width: 100%;
}

.outer-margin {
    min-width: 60px;
    flex: 1 1 0;
    /* background-color: var(--red); */
    height: 100%;
}

header img.logo {
    max-width: 240px;
    height: 80px;
}

header a.logo-link {
    padding: 0px;
    margin: 0 30px 0 0;
}

.header-top-row-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex: 0 1 1600px; /* Shrinks/grows to fit content, max 1600px */
    max-width: 1600px;
    width: 100%;
}

/* Banner Row */

.nav-one-row-with-banner .nav-row.top-nav-row {
  background-color: var(--colorPrimary);
  padding: 2px 3%;
  height: 36px;
}

/* Logo */

a.logo-link {
    padding: 6px 0px;
    height: 100%;
    flex: 0 0 auto;
    margin-right: 2%;
    align-items: center;
    display: flex;
}

.logo {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    transition: width .3s;
}

/* Nav */

.nav-rows {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
}

.nav-row {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

/* Top Nav Row */

.nav-row.top-nav-row > * {
    margin-left: 5%;
}

.nav-one-row-with-banner a.nav-phone-link {
    font-size: 20px;
    letter-spacing: 0.06em;
    font-weight: 700;
    font-family: 'mont', sans-serif;
    color: var(--white);
}

.nav-one-row-with-banner .social-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 12px;
  padding: 0px 1em;
  margin-left: 30px;
}

.nav-one-row-with-banner a.nav-social {
  display: flex;
  align-items: center;
}

.nav-one-row-with-banner a.nav-social i {
  font-size: 28px;
  color: var(--white);
}

/* Bottom Nav Row */

nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex: 0 1 1360px;
    max-width: 1360px;
    height: 60px;
    padding-right: 30px;
}

/* Nav Menu */

.menu-main-menu-container {
    display: flex;
    justify-content: flex-start;
    height: 100%;
    background: var(--blue);
    flex: 0 0 auto;
    border-radius: 0 2em 2em 0;
    padding-right: 40px;
}

#menu-main-menu {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
    column-gap: 50px;
    /* flex: 0 0 100%; */
}

#menu-main-menu > li {
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.menu-main-menu-container li a {
    transition: margin .3s;
    display: flex;
    align-items: center;
    color: var(--white);
    text-transform: capitalize;
    font-family: 'mont', sans-serif;
    font-weight: 500;
    font-size: 18px;
    height: 100%;
}

.circle.white-bg {
    height: 50px;
    flex: 0 0 50px;
    background-color: var(--white);
    border-radius: 2em;
}

.nav-phone-inner-container {flex-grow: 1;display: flex;flex-direction: column;justify-content: center;row-gap: 6px;}

.nav-phone-inner-container p {
    margin-bottom: 0px;
    line-height: 100%;
    color: var(--white);
    font-family: 'Mont Bold';
    font-size: 15px;
}

.nav-phone-inner-container a {
    margin-bottom: 0px;
    line-height: 100%;
    color: var(--white);
}

/* Sub Menu */

#menu-main-menu li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  display: block;
  /* border-top: 4px solid var(--colorBlue); */
  position: absolute;
  left: 0;
  top: 55px;
  width: 260px;
  min-width: 200px;
  filter: drop-shadow(1px 1px 1px #999);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--white);
  }

  #menu-main-menu li:hover ul.sub-menu a {
      padding-bottom: 0px;
      color: var(--blue);
  }

  #menu-main-menu > li:not(.nav-cta):hover > a {
      text-decoration: none;
  }

  #menu-main-menu li.menu-item-has-children>a:after {
      font-family: 'Font Awesome 5 Free';
      content: '\f107';
      margin: 0 0 0 5px;
      font-weight:600;
  }

  .sub-menu {
      display: none;
      position: absolute;
      z-index: 20;
      margin: 0;
      height: auto;
      top: 23px;
      width: auto;
      min-width: 160px;
      background-color: var(--white);
  }

  .sub-menu li {
      margin: 0;
      display: block;
      text-align: left;
      background: var(--colorLight);
      padding: 8px 12px;
  }

  .sub-menu li:hover {
      background-color: var(--gray);
      color: var(--colorGrayFont);
  }

  .sub-menu li:hover a {
      color: var(--colorGrayFont);
  }

  .sub-menu a {
      font-size: 16px;
      font-weight: 500;
      color: var(--colorGrayFont);
      text-transform: none;
      height: 100%;
      display: block;
      width: 100%;
  }

  .sub-menu a:hover {
      color: var(--colorOrange) !important;
  }

  a.appointment-btn {
    background: var(--blue);
    height: 44px;
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Mont Bold';
}

.non-emergency-container {
    flex-grow: 1;
    background: var(--lightBlue);;
    height: 44px;
    display: flex;
    justify-content: flex-end;
    padding: 0px 20px;
    align-items: center;
}

.header-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    width: 100%;
}

.outer-margin.blue-bg {
    background: var(--blue);
    height: 60px;
}

.nav-phone-container {
    flex: 0 0 240px;
    height: 60px;
    display: flex;
    background-color: var(--red);
    padding: 5px;
    border-radius: 2em 0 2em 2em;
    column-gap: 10px;
}
  

/* Nav Contact Button */

.learn-more.nav-contact-btn {
    background-color: var(--colorPrimary);
    color: var(--white);
}

/* Fixed Space */

.fixed-header-space {
    height: 180px;
    width: 100%;
    background-color: var(--colorDark);
}


/* HOME PAGE */
/* Home - Hero */

section#hero {
  display: block;
  max-height: 600px;
  height: 80vh;
  background-color: var(--colorDark);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  margin: 0 auto;
}

#hero h1 {
  font-size: 48px;
  font-family: 'mont', sans-serif;
  color: var(--blue);
  text-align: left;
  max-width: 50%;
}

a.learn-more.schedule {
    background-color: var(--red);
    border-radius: 0em 2em 2em 2em;
    max-width: 280px;
    text-align: left;
}

#hero h2 {
  font-family: 'mont', sans-serif;
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--white);
  text-align: center;
}

.services-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-flow: wrap;
    column-gap: 20px;
    row-gap: 20px;
    margin-bottom: 20px;
}

.services-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 60px;
}

.services-container {
    flex: 2;
}

.membership-container {
    flex: 0 0 calc((100% / 3) - 60px);
    background-color: yellow;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 30px;
    background: transparent url('/wp-content/themes/remodeler-2024/images/membership.png') no-repeat center bottom / cover;
}

.services-row > a {
	flex: 0 0 calc((100% / 4) - 20px);
}

.service-container {

}

.service-icon-container {
    height: 160px;
    padding: 20px;
}

.service-icon-container img {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.services-container h2 {
    text-align: center;
}

p.service-title {
    font-weight: 600;
    color: var(--blue);
}

.rectangle.learn-more {
    background-color: var(--red);
    border-radius: 0;
    padding: 14px 36px;
    font-size: 16px;
}


.membership-container h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 30px;
}

.membership-container p {
    margin-bottom: 40px;
    font-size: 72px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.about-image {
    flex: 0 0 45%;
    position: relative;
}

.about-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-copy {
    background-color: var(--blue);
    border-top-right-radius: 100vw; /* Extreme value for a smooth curve */
    border-bottom-right-radius: 100vw;
    overflow: hidden; /* To clip content inside the rounded area */
    padding: 40px 60px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-copy p {
    text-align: left;
    color: var(--white);
}

.buttons-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
}

.buttons-container .learn-more {
    background-color: var(--white);
    color: var(--red);
    border-radius: 0 2em 2em 2em;
}

.about-copy h2 {
    color: var(--white);
}

.area-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.area-image {
    flex: 0 0 60%;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-copy {
    flex: 0 0 40%;
    padding: 40px 50px 40px 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.area-copy h2 {
    text-align: left;
    color: var(--blue);
}


.area-copy p {
    text-align: left;
}

/* INTERNAL PAGES */
/* Internal Pages - Internal Hero */

section.internal-header {
  height: 420px;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* z-index: 5; */
  /* margin-top: 0px; */
  /* background-color: var(--colorGold); */
  position: relative;
  background-color: var(--blue);
}

section.internal-header h1, section.internal-header p.hero-title {
  color: var(--white);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 0px;
  position: relative;
  z-index: 10;
  text-align: center;
  font-family: 'mont';
  width: 100%;
}

/* GALLERY PAGE */

.image-gallery-row {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: center;
  flex-flow: wrap;
  max-width: 1000px;
  margin: 40px auto 0;
  row-gap: 14px;
  column-gap: 14px;
  }

  .image-gallery-container {
  height: 188px;
  overflow: hidden;
  }

  .image-gallery-container img {
  min-height: 200px;
  min-width: 100%;
  object-fit: cover;
  transition: .5s all;
  }

  .image-gallery-container img:hover {
  transform: scale(1.05);
  }

  a.image-gallery-container {
  border-bottom: none;
  border-radius: 6px;
  flex: 0 0 calc(20% - 12px);
  }

  a.image-gallery-container:hover {
    border-bottom: none;
  }

  .area-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
}

#emergency-cta {
  background-color: #efefef;
  position: relative;
  overflow: hidden;
  height: 440px;
}

section#emergency-cta > img {
    position: absolute;
    top: -25%;
    left: 0;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.emergency-content {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    z-index: 10;
    position: relative;
    height: 100%;
}

.emergency-copy {
    flex: 0 0 auto;
    padding: 40px 0px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.emergency-copy h2 {
    text-align: left;
    color: var(--red);
    font-size: 32px;
}

.emergency-copy p {
    text-align: left;
    font-size: 24px;
    color: var(--blue);
    font-weight: 600;
    font-family: 'Mont Bold';
}

.emergency-copy .learn-more {
    margin: 0 auto 0 0;
}

section#area {
    min-height: 480px;
}

section#area .content-wrapper {padding-top: 10px;}

.credentials-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    row-gap: 30px;
    column-gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.credential {
    flex: 0 0 calc((100% / 4) - 30px);
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    background-color: var(--blue);
    padding: 40px 6%;
}

.social-row i {
    color: #fff;
    font-size: 30px;
    margin-right: 14px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 50px;
}

.footer-column {
    flex: 0 0 calc((100% / 4) - 40px);
}

.address-container p {
    color: var(--white);
    margin-bottom: 0px;
    font-family: 'Mont';
}

footer h2 {
    margin-bottom: 30px;
    text-align: center;
    color: var(--white) !important;
}

.address-container {
    margin-bottom: 20px;
}

.phones-container p {
    color: var(--white);
}

/* Service Area */

/* .single-service-area section.internal-header {
    height: 500px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    border-radius: 2vw;
    background-color: #fff;
    margin: 60px 60px 20px;
}

.single-service-area section.internal-header h1 {
    font-size: 40px;
    position: relative;
    z-index: 15;
    font-family: 'Mont Bold';
    letter-spacing: 3px;
    filter: drop-shadow(2px 4px 6px black);
} */

.single-service-area h2 {
    color: #212121;
    position: relative;
    z-index: 10;
    font-size: 28px;
    margin-bottom: 20px;
        text-align: center;
}

.single-service-area section.internal-header .overlay {
    border-radius: 2vw;
}

.single-service-area section p {
    font-size: 24px;
    text-align: left;
}

section#service-area-services .content-wrapper {
    padding-top: 30px;
}

.service-area-services-content {
    background-color: var(--lightBlue);
    padding: 40px 50px;
    max-width: 1130px;
    margin: 0 auto 40px;
    border-radius: 8em;
}

.service-area-services-content h2 {
    color: var(--blue);
    text-align: center;
}

.service-area-services-content p {
    color: var(--colorDark);
    text-align: center;
}

section#service-area-intro .content-wrapper {
    padding-bottom: 10px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px;
    column-gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-area-service-icon {
    flex: 0 0 180px;
}

.service-area-services-row .services {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    padding-top: 50px;
}

.service-area-info h3 {
    color: var(--blue);
    font-weight: 800;
    text-transform: capitalize;
}

.reasons {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 30px;
}

.reason {
    flex: 1;
    background: var(--blue);
    border-radius: 2vw;
    padding: 30px 20px;
}

.reason h3 {
    color: var(--white);
    font-family: 'Mont Bold';
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.reason p {
    font-family: 'Mont';
    color: var(--white);
}

.service-area-choose-row {
    padding-top: 20px;
    padding-bottom: 20px;
}

section#service-area-choose {
    background: #efefef;
}

div.contact-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0px;
    flex-direction: column;
    flex: 0 0 auto;
    row-gap: 20px;
}

.contact-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: anchor-center;
}

.contact-container i {
    color: var(--red);
    font-size: 20px;
    margin-right: 8px;
    padding-top: 4px;
}

.contact-container a {
    color: var(--colorDark);
    font-family: lora, sans-serif;
    font-weight: 400;
    font-size: 22px;
}

.internal-header-content {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

.internal-header-image {
    flex: 0 0 60%;
    overflow: hidden;
    border-radius: 0 0 0 26em;
    margin-top: 0px;
    max-width: 800px;
    margin-bottom: 0px;
}

.internal-header-text {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-left: 12%; */
    /* padding-right: 40px; */
    max-width: 863px;
}

section.internal-header .internal-header-text h1 {
    color: #fff;
    font-size: 45px;
    text-align: left;
    line-height: 120%;
    font-family: 'Mont';
    text-transform: capitalize;
    max-width: 570px;
    /* margin-left: 50px; */
    width: auto;
}

.post h1 {
    color: var(--dark);
    font-size: 36px;
    line-height: 130%;
    margin-top: 30px;
    text-transform: capitalize;
}

.testimonials {
    margin: 40px auto 20px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 30px;
}

.testimonial {
    flex: 0 0 calc((100% / 2) - 30px);
    padding: 0px 20px 0px;
    /* background-color: var(--lightBlue); */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
}

.testimonial p:last-of-type {
    color: var(--blue);
    font-family: 'Mont Bold';
}

.testimonial i.fa-solid.fa-quote-left {
    font-size: 80px;
    color: var(--lightBlue);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    opacity: .6;
}

.testimonial p {
    position: relative;
    z-index: 10;
}

p.quote {
    font-weight: 300;
    font-size: 20px;
}

.single-service-area footer h2 {
    color: var(--white);
}

.contact-address-container p {
    font-size: 24px;
    font-family: 'Mont';
    margin-bottom: 7px;
}

.contact-address-container p:first-of-type {
    font-family: 'Mont Bold';
    color: var(--blue);
}

.contact-address-container p i {
    color: var(--red);
}



.contact-us-page-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  column-gap: 30px;
}

.contact-us-content {
  flex-grow: 1;
  text-align: left;
}

.contact-us-content h2 {
  text-align: left;
}

.contact-us-form {
  flex: 0 0 50%;
}

section#contact-us-page-body h2 {
  text-align: center;
  margin-bottom: 40px;
}


.contact-address-container {
  margin-bottom: 20px;
  padding-top: 30px;
}

.contact-hours-container p {
  margin-bottom: 0px;
  font-family: 'Mont Medium';
  font-size: 15px;
}

.page-template-contact .footer-form-column > * {
  display: none;
}


.contact-us-page-container {
    margin: 0 auto;
    max-width: 800px;
}

.contact-address-container p {
    font-family: 'Mont';
    margin-bottom: 7px;
    font-size: 24px;
}

.nav-phone-inner-container a {
    font-family: 'Mont';
    font-family: 'Mont Bold';
}

.non-emergency-container a {
    font-family: 'Mont';
    letter-spacing: .03em;
}

section#service-area-choose .content-wrapper {
    padding: 20px;
}

.single-service-area section .reason p {
    text-align: center;
    font-size: 20px;
    margin-bottom: 0px;
}

.single-service-area section .service-area-services-content p {
    text-align: center;
    margin-bottom: 0px;
}

section#service-area-cta {
    background-color: var(--red);
}

.service-area-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.service-area-cta-content {
    flex-grow: 1;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.contact-row a.learn-more.schedule {
    background-color: #fff;
    color: var(--red);
    width: auto;
    max-width: none;
}

.service-area-cta-content h2 {
    color: #fff;
    text-align: left;
    max-width: 710px;
    font-size: 28px;
}

.service-area-cta-content p {
    color: #fff;
    margin-bottom: 0px;
    font-size: 24px;
    text-align: left;
}

.career-page-container {
    max-width: 960px;
    margin: 0 auto;
}

.career-page-container p {
    margin-bottom: 50px;
    font-size: 21px;
}

.career-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.career-form-container label {
    text-align: left;
}

.career-form-container .gform_wrapper.gravity-theme .gfield_label {
    text-align: left;
    font-family: 'Mont';
}

div#field_2_9 {
    text-align: left;
    margin-top: 20px;
}

input#gform_submit_button_1, input#gform_submit_button_2 {
    display: inline-block;
    color: var(--white);
    height: auto;
    width: auto;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    text-transform: uppercase;
    font-family: 'mont', sans-serif;
    font-weight: 600;
    line-height: 100%;
    border-radius: 24px;
    letter-spacing: .02em;
    font-size: 18px;
    background-color: var(--red);
    border: none;
    transition: all .4s;
}

input[type="text"], input[type="tel"], input[type="email"] {
    border-radius: 2em;
    height: 52px;
    border: 2px solid #bbb;
}

::placeholder {
	font-family: 'Lato', sans-serif;
padding-left: 10px;
}

.contact-us-form {
    background-color: var(--gray);
    padding: 30px 40px;
    border-radius: 4em;
}

.contact-us-form h3 {
    color: var(--blue);
}

.menu-main-menu-container li.disabled > a:hover {
    cursor: default;
    color: var(--white);
      pointer-events: none;
}

.credential img {
    max-height: 100%;
    width: 200px;
    object-fit: contain;
}

.menu-footer-menu-container a {
    color: #fff;
    font-family: 'Mont';
    margin-bottom: 10px;
    display: block;
}

.special-button-container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.special-button-container a:first-of-type {
    background-color: var(--blue);
}


.special-button-container a i {
    margin-right: 3px;
}

div#field_2_10 {
    text-align: left;
}

/* RESPONSIVE */

	@media screen and (max-width: 1450px) {
		section.internal-header .internal-header-text h1 {
			margin-left: 50px;
		}

	}

	@media screen and (max-width: 1200px) {
		
		ul#menu-main-menu {
			column-gap: 20px;
		}
		
		.reason {
			flex: 0 0 calc((100% / 2) - 15px);
		}

		.reasons {
			flex-direction: row;
			flex-flow: wrap;
			row-gap: 30px;
		}

	}

	@media screen and (min-width: 1001px) {

    .mobile-only {
    display: none !important;
    }
		
		.overlay {
			display: none;
		}
		
}

@media screen and (max-width: 1000px) {
		
.service-area-row {
    flex-direction: column;
    row-gap: 30px;
}
	
	div#bottom-phone-bar {
    position: fixed;
    bottom: 0px;
    background: var(--red);
    width: 100%;
    z-index: 15;
}



    /* Header Mobile */

    header.mobile-only img {
        height: 54px;
    }

      header.mobile-only {
        display: flex;
        padding: 0px 23px 0px 20px;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        position: fixed;
        z-index: 1000;
        background: #fff;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
    }

    header.mobile-only a.logo-link {
        flex: 0 0 180px;
        display: flex;
        align-items: center;
        padding: 3px 0;
    }

    .fixed-header-space.mobile-only {
        height: 70px;
        display: block;
        width: 100%;
    }

    /* Hamburger Icon */

    .mobile-navbar ul {
        list-style: none;
    }

    .mobile-navbar {
        display: flex;
        align-items: center;
        margin-top: 0px;
    }

    .mobile-navbar ul {
        margin-bottom: 0px;
    }

    #menu-icon {
        width: 40px;
        height: 30px;
        position: relative;
        margin: 7px auto 6px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
        cursor: pointer;
        z-index: 999;
    }

    #menu-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--blue);
        border-radius: 6px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

    #menu-icon.open span {
        background: var(--blue);
    }

    #menu-icon span:nth-child(1) {
        display: none;
    }

    #menu-icon span:nth-child(2),
    #nav-icon span:nth-child(3) {
        top: 13px;
    }

    #menu-icon span:nth-child(4) {
        top: 26px;
    }

    #menu-icon.open span:nth-child(1) {
        display: none;
    }

    #menu-icon.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 12px;
    }

    #menu-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 11px;
    }

    #menu-icon.open span:nth-child(4) {
        top: 12px;
        width: 0%;
        left: 50%;
        opacity: 0;
    }

    /* Mobile Nav Menu */



    .sidenav.open {
        height: calc(100vh - 120px);
        padding-bottom: 154px;
        padding-top: 20px;
    }

    .sidenav a {
        padding: 3px;
        text-decoration: none;
        font-size: 21px;
        color: var(--blue);
        display: block;
        transition: 0.3s;
        font-family: "Mont Bold", sans-serif;
        text-align: center;
    }

    #sidenav .faq-accordion-title-container.mobile-menu-accordion h3 {
        font-size: 24px;
        color: var(--blue);
        margin-bottom: 0px;
        margin-right: 10px;
    }

    #sidenav h3 {
        font-size: 24px;
        color: var(--colorDarkest);
    }

      #sidenav .faq-accordion-title-container.mobile-menu-accordion {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 10px;
        margin-bottom: 10px;
    }

    #sidenav .panel {
        padding: 10px 0px;
    }

    .sidenav {
        height: 0px;
        width: 100%;
        position: fixed;
        z-index: 990;
        top: 70px;
        left: 0;
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(10px);
        overflow-x: hidden;
        transition: 0.5s all;
        -webkit-overflow-scrolling: touch;
        padding-right: 20px;
        padding-left: 20px;
      }

      .mobile-navbar ul {
        list-style: none;
        margin-top: 0px;
      }

      ul#menu-mobile-menu {
          display: block;
      }
	
  #mobile-nav li {
        text-align: left;
        border-bottom: none;
        display: block;
        margin-bottom: 10px;
      }

      #mobile-nav li:last-of-type {
        border: none;
      }

      #mobile-nav a, #mobile-nav ul.sub-menu a {
          padding: 2px;
          text-decoration: none;
          font-size: 18px;
          color: var(--blue);
          display: block;
          transition: 0.3s;
          font-family: 'Mont Bold';
          font-weight: 700;
          text-transform: capitalize;
          letter-spacing: .02em;
          text-align: right;
      }

      a.mobile-submenu-link {
        color: var(--colorDarkest);
        font-size: 20px;
        margin-left: 20px;
      }

      .sidenav.open {
        height: calc(100vh - 80px);
        padding-bottom: 100px;
        padding-top: 50px;
      }

      #mobile-nav ul {
        list-style: none;
        padding-left: 0px;
      }
      
      .fixedPosition {
        position: fixed;
      }

      .bottom-phone-bar-content {
    background-color: var(--red);
    bottom: 0;
    position: fixed;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.bottom-phone-bar-content p {
    color: #fff;
    margin: 0;
}

.bottom-phone-button-container a.learn-more {
    background-color: #fff;
    padding: 10px 18px;
    display: inline-block;
    color: var(--red);
    font-family: 'Mont Bold', sans-serif;
    font-weight: 600;
}

header.mobile-only {
    background: var(--white);
}

img.logo {
    height: 70px;
}

	.desktop {
			display: none !important;
		}

		       .subfooter {

    padding: 20px 50px 100px;
}
		
		.fixed-header-space {
			height: 70px;
		}
		
	
	.hero-content {
    /* align-items: center; */
}

#hero h1 {
    max-width: none;
    /* text-align: center; */
}

.hero-content a.learn-more.schedule {
    /* text-align: center; */
}

.services-content {
    flex-direction: column;
    row-gap: 40px;
}

.about-content {
    flex-direction: column-reverse;
}

.about-copy {
    border-radius: 0px;
}

.about-image {
    flex: none;
    height: 500px;
}

.area-content {
    flex-direction: column;
}

.area-image {
    height: 500px;
    flex: none;
}

.area-image img {
    position: relative;
}

.emergency-content {
    justify-content: center;
}

.emergency-copy h2 {
    text-align: center;
}

.emergency-copy p {
    text-align: center;
}

.emergency-copy {
    align-items: center;
}

.emergency-copy .learn-more {
    margin: 0 auto;
}

section#emergency-cta > img {min-width: 100%;top: 0;}

.footer-row {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 30px;
}

.address-container {
    text-align: center;
}

.social-row {
    text-align: center;
}

.footer-column img {
}

footer li a {
    text-align: center;
}

footer ul {
    margin-bottom: 30px;
}

footer {
    padding-bottom: 120px;
}

.footer-column h3 {
    font-size: 16px;
    text-align: center;
}

.footer-column a.learn-more.rectangle {
    margin: 0 auto;
}

.footer-column {
    text-align: center;
}

.credentials-content {
    flex-direction: column;
}

.credential {
    flex: none;
    height: 80px;
}

.service-icon-container img {
    height: 100px;
    width: auto;
}

a.service-link {
    min-width: 160px;
}
	
	.internal-header-text {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.internal-header-image {
    flex: 0 0 100%;
    max-width: none;
}

.testimonials {
    flex-direction: column;
    row-gap: 30px;
}
	

	

	
}

@media screen and (max-width: 720px) {


section.internal-header .internal-header-text h1 {
    text-align: center;
    margin: 0;
    font-size: 36px;
    max-width: 300px;
}
	
		.service-item {
    flex-direction: column;
}

.service-area-service-icon {
    width: 100%;
}

.service-area-info h3 {
    text-align: center;
}

.reason {
    flex: 0 0 100%;
}
	

}