:root {
  --text: #383d46;
  --primary-light: #91d7ed;
  --primary-soft-light: #eef6fb;
  --white: white;
  --white-o50: #ffffff80;
  --cta: #2f323a;
  --cta-hover: #494e5a;
  --primary: #3393d0;
  --primary-darker: #1e5e85;
  --primary-dark: #2a81b7;
  --primary-medium: #84bee5;
  --primary-light-medium: #cde5f4;
  --primary-soft: #b2dafa;
  --shadow: #00000014;
  --secondary: #88dff5;
  --overlay: #000000bf;
  --primary-overlay: #3393d0b3;
  --body-gray: #f6fbfe;
}

body {
  color: var(--text);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

h1 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: Cardo, sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.125;
}

h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: Cardo, sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.125;
}

h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: Cardo, sans-serif;
  font-size: 2.2em;
  line-height: 1.125;
}

h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.25;
}

h5 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.25;
}

h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.375;
}

p {
  margin-bottom: 1em;
}

a {
  color: var(--primary-light);
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2.5em;
}

ol {
  margin-top: 0;
  margin-bottom: 1em;
  padding-left: 2.5em;
}

label {
  margin-bottom: .5rem;
  font-weight: 700;
  display: block;
}

blockquote {
  border-left: .5em solid var(--primary-soft-light);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 1.125em;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.container {
  max-width: 1600px;
  padding-left: 3rem;
  padding-right: 3rem;
}

.container.container-full-on-desktop {
  padding-left: 0;
  padding-right: 0;
}

.container.container-location {
  max-width: none;
}

.container.container-full-width {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.container.container-no-padding, .container.container-full-on-desktop {
  padding-left: 0;
  padding-right: 0;
}

.container.container-narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.container.container-narrow.text-center.text-left-mobile.larger {
  max-width: 815px;
}

.container.container-narrow.text-center.text-left-mobile.emergency-special {
  color: var(--text);
  -webkit-text-stroke-color: var(--text);
  background-color: #eef6fb;
  padding-top: 1em;
  padding-bottom: 1em;
}

.utility-page {
  align-items: flex-start;
  display: flex;
}

.utility-page-navigation {
  background-color: #fff;
  width: 15%;
  min-width: 250px;
  position: sticky;
  top: 0;
}

.utility-page-content {
  border-left: 2px solid #cddaf5;
  width: 85%;
}

.utility-page-menu-top {
  display: none;
}

.utility-page-menu-top-logo {
  width: 100%;
}

.utility-page-menu-title-text {
  color: #131f3e;
  padding: 1em .75em;
  font-size: 1.5em;
  font-weight: 700;
}

.utility-page-menu-link {
  color: #526dba;
  background-color: #f0f5ff;
  border-radius: .5em;
  margin: .5em;
  padding: .5em 1em;
  text-decoration: none;
  display: block;
}

.utility-page-menu-link.w--current {
  color: #131f3e;
  background-color: #cddaf5;
  font-weight: 700;
}

.utility-page-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.utility-page-hero {
  color: #fff;
  background-color: #131f3e;
  padding-top: 4em;
  padding-bottom: 4em;
  padding-right: 0;
}

.grid-1 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-3 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.grid-4 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-4.tablet-2-desktop-4 {
  grid-template-columns: 1fr 1fr;
}

.grid-5 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-6 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.utility-page-heading {
  margin-bottom: .25em;
  font-size: 4em;
  line-height: 1.125;
}

.utility-page-heading-2 {
  margin-bottom: 1rem;
  font-size: 3em;
  line-height: 1.125;
}

.utility-page-heading-3 {
  color: #4f6bb9;
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 1.5em;
  line-height: 1.125;
}

.utility-page-color-grid {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.utility-page-color-box {
  justify-content: center;
  align-items: flex-start;
  min-height: 10em;
  display: flex;
}

.utility-page-filler {
  background-color: #cddaf5;
  min-height: 4em;
  padding: 1em;
}

.utility-page-filler.utility-page-filler-dark {
  color: var(--white);
  background-color: #4f6bb9;
}

.utility-page-heading-wrapper {
  color: #4f6bb9;
  background-color: #f0f5ff;
  border: 2px solid #cddaf5;
  border-radius: 1em;
  margin-bottom: 2em;
  padding: 2em;
}

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

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

.background-text {
  background-color: var(--text);
}

.background-cta {
  background-color: var(--cta);
}

.background-cta-hover {
  background-color: var(--cta-hover);
}

.utility-page-color-label {
  background-color: var(--white);
  color: #4f6bb9;
  text-align: center;
  text-transform: uppercase;
  border-radius: .25em;
  width: 80%;
  margin-top: 1em;
  padding: .5em;
  font-size: .875em;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 6px 10px #0003;
}

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

.background-primary-darker {
  background-color: var(--primary-darker);
  background-color: var(--primary-darker);
}

.background-primary-dark {
  background-color: var(--primary-dark);
  background-color: var(--primary-dark);
}

.background-primary-medium {
  background-color: var(--primary-medium);
  background-color: var(--primary-medium);
}

.background-primary-light {
  background-color: var(--primary-light);
}

.background-primary-light-medium {
  background-color: var(--primary-light-medium);
}

.background-primary-soft {
  background-color: var(--primary-soft);
}

.background-primary-soft-medium {
  background-color: var(--primary-soft-light);
  background-color: var(--primary-soft-light);
}

.background-shadow {
  background-color: var(--shadow);
}

.background-secondary {
  background-color: var(--secondary);
}

.background-primary-overlay {
  background-color: #0d47a1d9;
}

.background-overlay {
  background-color: var(--overlay);
  background-color: var(--overlay);
}

.section-heading {
  margin-bottom: .75em;
  font-size: 3em;
  line-height: 1.125;
}

.section-subheading {
  margin-bottom: .75em;
  font-size: 2em;
  line-height: 1.125;
}

.utility-page-link {
  color: #4f6bb9;
  text-decoration: underline;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.icon-html-embed.star {
  width: 1.2em;
  margin-left: .1em;
  margin-right: .1em;
  top: 0;
  right: 0;
}

.icon-html-embed.white-stars {
  top: 0;
  right: 0;
}

.icon-html-embed.location-icon {
  color: var(--primary);
  width: .8em;
  margin-right: .5em;
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
}

.icon-html-embed.location-icon.alt {
  width: 1.1em;
}

.icon-html-embed.check-mark {
  width: 2rem;
  height: 2rem;
}

.icon-html-embed.button-icon {
  width: 1em;
  margin-right: .5em;
}

.utility-page-icons-grid {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button {
  border: 1px solid var(--cta);
  background-color: var(--cta);
  color: var(--white);
  text-align: center;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8em;
  justify-content: center;
  align-items: center;
  padding: 1.25em 2em;
  font-weight: 700;
  line-height: 1.125;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
  transform: translate(0);
}

.button:hover {
  background-color: var(--cta-hover);
  transform: translate(0, -.125em);
}

.button.hero-cta {
  padding: 1em 1.5em;
  line-height: 1.3;
}

.button.hero-cta:hover {
  box-shadow: 0 0 10px 0 var(--cta-hover);
}

.button.book-button.action-open-modal-book {
  white-space: nowrap;
  vertical-align: middle;
  margin-left: auto;
  margin-right: auto;
}

.button.book-button.callbutton {
  margin-left: auto;
  margin-right: auto;
}

.button.button-white-relief {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--primary);
  padding-left: 1.25em;
  padding-right: 1.25em;
}

.button.button-white-relief:hover {
  background-color: var(--white);
}

.button.button-color {
  border-color: var(--primary);
  background-color: var(--primary);
}

.button.button-color:hover {
  background-color: var(--primary-light);
}

.button.button-white {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--primary);
  padding-left: 1.25em;
  padding-right: 1.25em;
}

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

.button.button-white-outline {
  border: 1px solid var(--white);
  color: var(--white);
  background-color: #0000;
}

.button.button-white-outline:hover {
  background-color: var(--white);
  color: var(--primary-medium);
}

.button.button-outline {
  border: 1px solid var(--primary-darker);
  color: var(--primary-darker);
  background-color: #0000;
}

.button.button-outline:hover {
  background-color: var(--primary-darker);
  color: var(--white);
}

.button.button-outline.button-call-header {
  background-color: var(--white);
  white-space: nowrap;
}

.button.button-outline.button-call-header:hover {
  color: var(--primary);
}

.link-white {
  color: var(--white);
}

.button-with-icon {
  align-items: center;
  display: flex;
}

.general-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.general-section.no-padding-mobile {
  display: none;
}

.general-section.typeform-section {
  margin-top: 0;
  padding-top: 4rem;
}

.filled-section {
  padding: 4rem 0;
}

.filled-section.swc-section {
  background-image: url("https://cdn.prod.website-files.com/6772c7a2b1f528a249f1bcd0/6772c7a2b1f528a249f1be4b_specials.webp");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.filled-section._404 {
  background-color: var(--primary-soft-light);
  padding-top: 0;
  padding-bottom: 0;
}

.filled-section.background-primary-soft-light {
  background-color: var(--primary-soft-light);
}

.filled-section.background-texture {
  position: relative;
}

.filled-section.hero-inner-section {
  height: 60vh;
  min-height: 600px;
  position: relative;
}

.filled-section.background-primary-soft-medium {
  background-color: var(--primary-light-medium);
}

.filled-section.background-gradient {
  background-image: linear-gradient(45deg, var(--primary-darker), var(--primary-medium));
}

.filled-section.background-overlay {
  background-color: var(--overlay);
  background-image: none;
}

.filled-section.background-overlay.hero-inner-section {
  background-image: linear-gradient(90deg, #1e5e85d9, #1e5e8526);
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 60vh;
  display: flex;
}

.filled-section.filled-section-padless {
  padding-top: 0;
  padding-bottom: 0;
}

.filled-section.reviews-section {
  background-color: var(--primary-soft-light);
  background-image: linear-gradient(to bottom, var(--primary-darker), var(--primary-darker));
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.boxed-content {
  padding: 4rem;
}

.boxed-content.boxed-content-padless {
  padding: 0;
}

.boxed-content.meet-box-1 {
  padding-bottom: 0;
}

.boxed-content.meet-box-2 {
  padding-top: 2rem;
}

.boxed-content.text-white.background-logo-image.ico {
  background-image: url("https://cdn.prod.website-files.com/6772c7a2b1f528a249f1bcd0/6772c7a2b1f528a249f1bda4_icon-dark.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
}

.boxed-content.narrow-inner-hero-section {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 35rem;
  margin-left: 10%;
  margin-right: 10%;
  display: flex;
}

.boxed-content.narrow-inner-hero-section.text-white {
  width: 40rem;
  margin-left: 5%;
  padding-left: 0;
}

.boxed-content.background-white {
  background-color: var(--white);
}

.boxed-content.background-white.rounded {
  border-radius: 20px;
}

.boxed-content.background-white.rounded.text-dark {
  color: var(--text);
}

.boxed-content.background-primary-dark.text-white {
  border-radius: 1rem;
}

.boxed-content.background-primary-dark.text-white.ico {
  background-image: url("https://cdn.prod.website-files.com/6772c7a2b1f528a249f1bcd0/6772c7a2b1f528a249f1bda4_icon-dark.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.boxed-content.background-primary-soft-medium.curved-edges {
  border-radius: 10px;
}

.boxed-content.boxed-content-flex-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.boxed-content.boxed-content-flex-center.background-primary-soft-medium.image-background-grid {
  background-image: url("https://cdn.prod.website-files.com/6772c7a2b1f528a249f1bcd0/6772c7a2b1f528a249f1bd20_background%20logo.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.boxed-content.bio-box-3 {
  display: block;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.grid-ng-2 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-ng-2.thank-you-page-grid {
  min-height: 80vh;
}

.grid-ng-2._404-grid {
  min-height: 100vh;
}

.grid-ng-2.background-primary.curved-edges {
  background-color: var(--primary-darker);
  border-radius: 10px;
}

.grid-ng-3 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-ng-4 {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-ng-5 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-ng-6 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.boxed-content-md {
  padding: 2rem;
}

.boxed-content-md.background-primary-soft-medium.text-center-landscape {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.text-primary {
  color: var(--primary);
}

.display-tablet, .display-landscape, .text-block, .hide {
  display: none;
}

.section-subtitle {
  margin-bottom: .5em;
  font-size: 1.5em;
  line-height: 1.25;
}

.section-subtitle.subtitle-small {
  font-size: 1.3em;
}

.section-subtitle.subtitle-small.text-color {
  font-size: 1.8em;
}

.section-subtitle.smaller {
  font-size: 1.25em;
}

.section-subtitle.larger {
  font-size: 2rem;
}

.bordered-top {
  border-top: 2px solid var(--primary-soft);
  padding-top: 2rem;
}

.bordered-top.bordered-bold {
  border-top-width: .25em;
}

.bordered-top.bordered-bold.bordered-no-pad {
  padding-top: 0;
}

.bordered-top.bordered-top-short {
  padding-top: 1.5em;
}

.modal-call-text {
  color: #070d19;
  text-align: center;
  text-decoration: none;
  display: block;
}

.book-form-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.select-field {
  color: #ffffff80;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 1px solid #fff;
  margin-bottom: 0;
  padding: .5em 0;
  font-size: 1.125em;
}

.select-field.select-field-dark {
  border-bottom-color: var(--primary-soft);
  color: var(--primary-darker);
  border-bottom-color: var(--primary-soft);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.section-title.swc-title {
  color: var(--primary-darker);
  font-size: 2.6em;
}

.section-title.section-title-meet {
  margin-bottom: 0;
}

.section-title.section-title-medium {
  font-size: 2.5em;
}

.modal {
  position: relative;
}

.modal-content {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.book-form-text-field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--white);
  color: var(--white);
  background-color: #0000;
  border-radius: 0;
  margin-bottom: 0;
  padding: 1.5em 0;
  font-size: 1.125em;
  font-weight: 400;
}

.book-form-text-field:focus {
  border-bottom-color: var(--primary-light-medium);
}

.book-form-text-field::placeholder {
  color: var(--white-o50);
}

.book-form-text-field.book-form-text-field-dark {
  border-bottom-color: var(--primary-soft);
  color: var(--primary-darker);
}

.book-form-text-field.book-form-text-field-dark::placeholder {
  color: var(--primary-darker);
}

.modal-close {
  z-index: 5;
  text-align: center;
  cursor: pointer;
  background-color: #ffffff80;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  font-size: 2em;
  line-height: 1;
  display: flex;
  position: absolute;
  inset: 0 0 auto auto;
}

.modal-box.modal-box-bio.bio-1, .modal-box.modal-box-bio.bio-2 {
  display: none;
}

.modal-box {
  z-index: 9999;
  color: var(--text);
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 6rem;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: scroll;
}

.modal-box.modal-box-bio.bio-1, .modal-box.modal-box-bio.bio-2 {
  display: none;
}

.modal-box.modal-book {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

.modal-box.modal-box-bio {
  padding: 0;
}

.modal-box.modal-box-bio.bio-1, .modal-box.modal-box-bio.bio-2, .modal-box.modal-box-bio.bio-1, .modal-box.modal-box-bio.bio-2, .mobile {
  display: none;
}

.button-text {
  cursor: pointer;
  font-weight: 700;
  transition: all .425s cubic-bezier(.86, 0, .07, 1), color .5s cubic-bezier(.68, -.55, .265, 1.55);
}

.button-text:hover {
  color: var(--primary-darker);
  font-weight: 700;
  text-decoration: underline;
}

.section-tagline {
  font-size: 1.1em;
  line-height: 1.75;
  display: inline-block;
}

.section-tagline.swc-text {
  margin-bottom: 0;
}

.section-tagline.section-tagline-quote {
  font-size: 2em;
  font-style: italic;
  font-weight: 700;
}

.section-tagline.section-tagline-narrow {
  max-width: 50%;
}

.section-tagline.mb-0.location, .section-tagline.insurance {
  font-size: 1.1em;
  line-height: 1.75;
}

.section-tagline.full-width {
  width: 100%;
}

.meet-team-info-grid-box {
  text-align: left;
}

.quote-mark {
  width: 1em;
  margin-bottom: .25em;
  font-size: 2.5em;
  line-height: 1;
  display: inline-block;
}

.doctor-title {
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .875em;
}

.meet-team-grid-content {
  padding-top: 1.5em;
  padding-bottom: 0;
}

.meet-team-grid-image {
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  display: block;
  position: static;
  inset: 0%;
}

.doctor-quote {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 700;
}

.doctor-quote.mb-0 {
  margin-bottom: 0;
}

.meet-team-grid {
  z-index: 2;
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.meet-team-grid.boxed-content.background-primary-soft-light {
  background-color: var(--primary-soft-light);
}

.meet-team-grid.boxed-content.background-primary-soft-light.curved-edges {
  grid-column-gap: 3rem;
  grid-row-gap: 1rem;
  grid-column-gap: 3rem;
  grid-row-gap: 1rem;
  border-radius: 20px;
  grid-template-rows: auto;
}

.pre-title {
  color: var(--primary-overlay);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: .75em;
  font-size: 1em;
  font-weight: 400;
}

.pre-title.mt-1 {
  margin-top: 1em;
}

.pre-title.pre-title-white {
  color: #ffffffbf;
}

.pre-title.mb-0 {
  margin-bottom: 0;
}

.pre-title.pre-title-link:hover {
  color: var(--primary-light-medium);
}

.page-rt {
  font-size: 1em;
}

.page-rt h2 {
  color: var(--primary-darker);
}

.page-rt h2 {
  color: var(--primary-darker);
  font-size: 2.5em;
}

.page-rt blockquote {
  border-left-color: var(--primary-soft);
  background-color: var(--body-gray);
  margin-bottom: 1em;
}

.page-rt.page-rt-large {
  font-size: 1.2em;
}

.page-title {
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.125;
}

.page-title.page-title-small {
  margin-bottom: 2rem;
  font-size: 3em;
}

.page-title.mb-0 {
  margin-bottom: 0;
}

.page-title.bio-page-title {
  margin-bottom: 2rem;
}

.page-title.bio-page-title.doctor-name-small {
  font-size: 3em;
}

.text-color {
  color: var(--primary-darker);
}

.text-small {
  font-size: .875em;
}

.associations-wrapper {
  justify-content: flex-start;
  display: flex;
}

.associations {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-left: -1em;
  margin-right: -1em;
  display: grid;
  overflow: hidden;
}

.association-logo {
  object-fit: contain;
  width: auto;
  height: 2em;
  margin: 1em;
}

.association-logo.nassau {
  object-fit: cover;
  object-fit: cover;
  height: 2em;
  margin-top: 1.2em;
  margin-left: 0;
  padding-left: 0;
  overflow: clip;
}

.box-min-width {
  text-align: left;
  max-width: 36rem;
}

.background-light {
  background-color: var(--body-gray);
}

.fun-facts {
  margin-top: 1em;
  overflow: hidden;
}

.fun-fact {
  min-height: 2.2em;
  margin-bottom: 1em;
  padding-top: 0;
  padding-left: 2.7em;
  font-size: 1em;
  line-height: 1.6;
  position: relative;
}

.fun-fact-icon {
  color: var(--primary-dark);
  width: 1.8em;
  position: absolute;
  top: 0;
  left: 0;
}

.image-responsive-gallery {
  width: 100%;
}

.image-responsive-gallery.image-squared {
  object-fit: cover;
  min-height: 25vw;
}

.text-large {
  font-size: 1.25em;
}

.bio-image {
  object-fit: cover;
  object-position: 35% 50%;
  width: 100%;
  height: 100%;
  position: static;
  inset: 0%;
}

.background-white-50 {
  background-color: var(--white-o50);
}

.relative {
  position: relative;
}

.slider {
  background-color: #0000;
  width: 100%;
  height: 100%;
}

.slide-nav-2 {
  display: none;
}

.icon {
  background-color: var(--white);
  color: var(--primary-overlay);
  border-radius: 20px;
  font-size: 30px;
}

.icon-2 {
  border: 0px solid var(--white);
  background-color: var(--white);
  color: var(--primary-overlay);
  border-radius: 20px;
  font-size: 30px;
}

.multiple-doctors {
  display: block;
}

.insurance-not-accept {
  border: 2px solid var(--primary);
  color: #fff;
  background-color: #3393d0e6;
  border-radius: 5px;
  margin-top: 1em;
  padding: .75em;
  font-weight: 500;
  line-height: 1.4;
  display: block;
  box-shadow: 0 0 8px #0f508a1a;
}

.text-uppercase {
  text-transform: uppercase;
}

@media screen and (min-width: 1280px) {
  .button.hero-cta {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }

  .header-logo {
    margin-right: 1.5em;
  }

  .button-color {
    transition-property: none;
  }

  .modal-box.modal-box-bio.bio-1 {
    display: none;
  }

  .custom-icon.button-icon-flex {
    letter-spacing: -.1em;
    letter-spacing: -.1em;
  }

  .navbar-link {
    font-size: 1em;
  }

  .header-actions {
    font-size: .95em;
  }

  .doctor-quote {
    font-size: 1.4em;
  }

  .specialty-grid-description {
    min-height: 4em;
  }

  .specialty-grid-description.icon-description {
    min-height: 3.5em;
  }

  .specialty-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .swc-content-background {
    width: 100%;
  }

  .hero-section {
    margin-left: 60px;
    margin-right: 60px;
  }

  .hero-heading {
    font-size: 4em;
  }

  .hero-tagline {
    font-size: 1.2em;
  }

  .association-logo {
    height: 2.1em;
  }

  .location-office-hours {
    display: inline;
  }

  .office-hours-table-column-info.inline {
    display: inline-block;
  }

  .tour-grid-box-image-main.small {
    min-width: 225px;
  }

  .tour-grid-box-image-main.large {
    min-width: 445px;
  }

  .affiliation-grid-box {
    font-size: .85em;
  }

  .faq-empty-state {
    background-color: #0000;
  }

  .faq-item {
    margin-bottom: 3em;
  }

  .typeform-content-wrapper {
    padding-left: 0%;
  }

  .specialty-text {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .mobile-logo.w--current {
    display: none;
  }

  .right-arrow {
    right: -6%;
  }

  .left-arrow {
    left: -6%;
  }
}

@media screen and (min-width: 1440px) {
  h2 {
    font-size: 3em;
  }

  h3 {
    font-size: 2.75em;
  }

  .grid-2.services-cta-wrapper {
    margin-top: 2rem;
  }

  .grid-4.tablet-2-desktop-4 {
    grid-row-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .button.button-outline.button-call-header {
    padding-left: 2em;
    padding-right: 2em;
  }

  .header-logo.desktop.w--current {
    box-sizing: border-box;
    aspect-ratio: auto;
    text-align: center;
    overflow-wrap: normal;
    object-fit: fill;
    aspect-ratio: auto;
    text-align: center;
    overflow-wrap: normal;
    object-fit: fill;
    flex: 0 auto;
    width: auto;
    height: auto;
    margin-right: 0;
    padding-top: 0;
    display: block;
    position: static;
    overflow: visible;
  }

  .header.background-primary-soft-light {
    justify-content: center;
    align-items: center;
  }

  .modal-call-text {
    display: block;
  }

  .section-title {
    font-size: 3em;
  }

  .button-color {
    font-size: 1em;
  }

  .modal-box.modal-box-bio.bio-1 {
    display: none;
  }

  .navbar-link {
    margin-right: 1em;
  }

  .header-actions {
    white-space: nowrap;
    word-break: normal;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    margin-left: 0;
  }

  .closing-section-cta {
    max-width: 600px;
  }

  .doctor-quote {
    font-size: 1.6em;
  }

  .specialty-grid-description {
    font-size: 1em;
  }

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

  .page-title.page-title-small {
    font-size: 3.5em;
  }

  .box-content-max-95 {
    width: 85%;
  }

  .hero {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-heading {
    font-size: 4em;
  }

  .association-logo {
    height: 2.5em;
  }

  .office-hours-table-column-info.inline {
    padding-right: .5em;
  }

  .tour-grid-box-image-main.small {
    min-width: 352px;
  }

  .tour-grid-box-image-main.large {
    min-width: 533px;
  }

  .all-services-grid-content {
    justify-content: center;
  }

  .box-content-max-90 {
    width: 85%;
  }

  .affiliation-grid-box {
    font-size: .9em;
  }

  .specialty-content {
    margin-left: 30px;
    margin-right: 30px;
  }

  .specialty-text {
    text-align: center;
  }

  .bio-image {
    max-width: 800px;
  }

  .desktop-medium-display-block {
    display: inline;
  }

  .right-arrow {
    right: -5%;
  }

  .left-arrow {
    left: -5%;
  }
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 18px;
  }

  h2 {
    font-size: 3em;
  }

  .container.container-narrow {
    max-width: 907px;
  }

  .icon-html-embed.check-mark {
    width: 2rem;
  }

  .filled-section.background-texture {
    background-position: 50% 0;
  }

  .boxed-content.narrow-inner-hero-section.text-white {
    margin-left: 10%;
    padding-left: 0;
  }

  .header {
    padding-left: 8rem;
    padding-right: 8rem;
    font-size: 1.1em;
  }

  .section-title {
    font-size: 3em;
  }

  .modal {
    display: block;
  }

  .closing-section-cta {
    max-width: 800px;
  }

  .safety-ug-bullet {
    width: 100%;
    height: 100%;
  }

  .doctor-quote {
    line-height: 1.5;
  }

  .special-small-box {
    font-size: 1em;
  }

  .swc-content-background {
    position: static;
  }

  .page-title.page-title-small {
    font-size: 4em;
  }

  .grid-image.grid-image-box-full-image {
    max-height: none;
  }

  .text-small {
    font-size: 16px;
  }

  .grid-image-box {
    min-height: 500px;
  }

  .team-image {
    object-position: 50% 30%;
  }

  .hero-section {
    margin-left: 100px;
    margin-right: 100px;
  }

  .hero-section.full-width {
    height: 80vh;
  }

  .hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow: hidden;
  }

  .hero-tagline {
    font-size: 1.8em;
    font-weight: 500;
  }

  .review-logo {
    max-width: none;
  }

  .association-logo {
    height: 2.9em;
  }

  .inline {
    display: inline;
  }

  .tour-grid-box-image-main.large {
    min-width: 713px;
  }

  .tour-grid-box {
    height: 37vh;
  }

  .box-min-width {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
  }

  .grid-image-box-2 {
    min-height: 500px;
  }

  .all-services-grid-item {
    border-radius: 10px;
  }

  .all-services-grid-blurb.other-services {
    max-width: 80%;
  }

  .grid-image-box-3 {
    min-height: 500px;
  }

  .affiliation-grid-box {
    font-size: .81em;
  }

  .specialty-content {
    margin-left: 20px;
    margin-right: 20px;
  }

  .specialty-text {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .location-boxed-content {
    font-size: 1.125em;
  }

  .circle-check {
    text-align: center;
    background-color: #0000;
  }

  .special-small-box-2 {
    font-size: 1em;
  }
}

@media screen and (max-width: 991px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .container.container-location {
    padding-left: 0;
    padding-right: 3rem;
  }

  .utility-page {
    flex-direction: column;
  }

  .utility-page-navigation {
    width: 100%;
    position: static;
  }

  .utility-page-content {
    width: 100%;
  }

  .grid-4, .grid-5 {
    grid-template-columns: 1fr 1fr;
  }

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

  .utility-page-color-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .text-center-tablet {
    text-align: center;
  }

  .text-left-tablet {
    text-align: left;
  }

  .text-right-tablet {
    text-align: right;
  }

  .utility-page-icons-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .general-section.typeform-section {
    margin-top: 2rem;
    margin-bottom: 6rem;
    padding-top: 0;
  }

  .mb-0 {
    margin-bottom: 0;
  }

  .boxed-content.meet-box-1 {
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .boxed-content.meet-box-2 {
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .grid-ng-3 {
    grid-template-columns: 1fr;
  }

  .grid-ng-4, .grid-ng-5 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-ng-6 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .rating-badge {
    font-size: .9em;
  }

  .display-tablet {
    display: block;
  }

  .header-top-cta, .header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section-subtitle.larger {
    font-size: 1.8rem;
  }

  .social-icons-wrapper.header-social-icons-wrapper {
    margin-left: -.75em;
    margin-right: -.75em;
  }

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

  .footer-bottom-box.last {
    text-align: center;
    text-align: center;
  }

  .footer-bottom-copyrights {
    text-align: center;
  }

  .section-title {
    font-size: 1.8em;
  }

  .modal-close {
    font-size: 2em;
  }

  .modal-box {
    overflow: scroll;
  }

  .modal-closing {
    font-size: 2em;
  }

  .header-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 0;
    padding-left: 3rem;
    padding-right: 3rem;
    display: block;
  }

  .navbar-menu-button-x {
    font-size: 2em;
    line-height: 1;
  }

  .header-nav-top {
    color: #070d19;
    background-color: #0000;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 4rem;
    display: flex;
    position: relative;
    top: 1rem;
  }

  .navbar-link {
    color: var(--white);
    margin-bottom: 2rem;
    margin-left: 0;
    font-size: 1.25em;
  }

  .navbar-link:hover {
    color: #ffffff80;
  }

  .navbar-link.rm-trigger.mobile {
    display: block;
  }

  .header-nav-wrapper {
    z-index: 1000;
    background-color: var(--primary-darker);
    color: var(--white);
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding-top: 1rem;
    padding-bottom: 4rem;
    display: none;
    position: fixed;
    inset: 0 0% 0%;
  }

  .header-nav-subtitle {
    margin-bottom: .5em;
    font-size: 1.25em;
    font-weight: 700;
  }

  .header-nav-logo {
    width: 14em;
    margin-right: auto;
    display: block;
  }

  .header-nav-actions {
    margin-top: 8rem;
    display: block;
  }

  .header-actions {
    margin-right: .5em;
    font-size: 1em;
  }

  .navbar-menu-button-text {
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: .6em;
    font-weight: 700;
  }

  .navbar-menu-button {
    text-align: center;
    display: block;
  }

  .navbar-menu-button-text-open {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .navbar-menu-button-trigram {
    letter-spacing: 0;
    height: auto;
    font-size: 2em;
    font-weight: 400;
    display: block;
  }

  .navbar-menu-button-close {
    color: #fff;
    text-align: center;
    margin-left: 1em;
    display: block;
  }

  .section-tagline.section-tagline-quote {
    font-size: 1.7em;
  }

  .section-tagline.section-tagline-narrow {
    max-width: 100%;
  }

  .safety-ug-column {
    text-align: center;
    width: 100%;
  }

  .safety-ug-item {
    max-width: 14em;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25em;
  }

  .office-tour-arrow.tour-slider-arrow.left-button {
    width: 2em;
    height: 2em;
    left: 20px;
  }

  .office-tour-arrow.tour-slider-arrow.right-button {
    width: 2em;
    height: 2em;
    right: 20px;
  }

  .doctor-title {
    font-size: .6em;
  }

  .doctor-quote {
    font-size: 1.3em;
    font-weight: 700;
  }

  .doctor-signature {
    width: 12em;
    max-width: 80%;
  }

  .special-small-box {
    font-size: .875em;
  }

  .specialty-grid-description.icon-description {
    min-height: 4em;
  }

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

  .swc-content-background {
    margin: auto auto auto 0;
  }

  .grid-box.hide-medium {
    display: none;
  }

  .service-hero-column-image {
    display: block;
  }

  .service-hero-image {
    object-fit: cover;
    position: static;
  }

  .grid-image-box {
    min-height: 50vh;
  }

  .grid-image-box.other-services {
    min-height: auto;
  }

  .basic-box-content-wrapper {
    max-width: none;
  }

  .hero-section {
    margin-left: 0;
    margin-right: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 0;
  }

  .associations {
    margin: -.7em;
  }

  .association-logo {
    height: 1.6em;
    margin: .7em;
  }

  .location-grid-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .location-map {
    min-height: 50vh;
  }

  .location-spacer {
    display: none;
  }

  .tour-grid-box-image-main.large {
    min-width: 1px;
  }

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

  .box-min-width {
    width: 100%;
  }

  .grid-image-box-2 {
    min-height: 50vh;
  }

  .all-services-grid-item {
    grid-template-columns: 1fr 1fr;
  }

  .all-services-grid-blurb, .all-services-grid-blurb.other-services, .all-services-grid-blurb.other-services {
    max-width: none;
  }

  .all-services-grid-content {
    padding: 2rem;
  }

  .image-responsive-gallery.image-squared {
    min-height: 40vw;
  }

  .financing-partnership-number {
    font-size: 6em;
  }

  .italic-text, .financing-partnership-blurb {
    max-width: none;
  }

  .special-price {
    font-size: 6em;
  }

  .grid-image-box-3 {
    min-height: 50vh;
  }

  .affiliation-grid-box {
    font-size: .9em;
  }

  .typeform-ipad-wrapper {
    width: 70%;
    margin-top: 0%;
    margin-bottom: -15%;
  }

  .typeform-content-wrapper {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .typeform-section-wrapper {
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
  }

  .typeform-content {
    flex-flow: column wrap;
  }

  .comparison-slider-section {
    height: 60vw;
    margin-top: 0;
  }

  .display-desktop, .hero-logo.mb-2.mobile-small.hide-in-mobile, .hero-logo.mb-2.mobile-small.hide-in-mobile, .hero-logo.mb-2.mobile-small.hide-in-mobile, .hero-logo.mb-2.mobile-small.hide-in-mobile {
    display: none;
  }

  .closing-section-image {
    object-fit: cover;
    height: 100%;
  }

  .background-image {
    object-position: 80% 0%;
  }

  .location-map-collection {
    min-height: 50vh;
  }

  .div-block {
    background-image: linear-gradient(156deg, #000, #0000), url("https://cdn.prod.website-files.com/6772c7a2b1f528a249f1bcd0/6772c7a2b1f528a249f1be03_Home-Comprenhensive-care.webp");
    background-position: 0 0, 100%;
    background-size: auto, cover;
  }

  .special-small-box-2 {
    font-size: .875em;
    top: -9em;
    right: -.5em;
  }

  .right-arrow {
    right: -10%;
  }

  .left-arrow {
    left: -10%;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 2em;
  }

  .container.container-narrow.text-center.text-left-mobile.emergency-special {
    margin-top: 20px;
  }

  .container.container-location {
    padding-right: 0;
  }

  .utility-page {
    flex-direction: column;
  }

  .utility-page-navigation {
    width: 100%;
    min-width: auto;
    position: static;
  }

  .utility-page-content {
    width: 100%;
  }

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

  .grid-2.no-gap-mobile {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .grid-2.grid-ng-on-mobile, .grid-2.no-gap-mobile {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .grid-2.services-cta-wrapper {
    margin-top: 2rem;
  }

  .grid-2.grid-ng-on-mobile {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .grid-3, .grid-4, .grid-5, .grid-6 {
    grid-template-columns: 1fr;
  }

  .utility-page-heading-3 {
    font-size: 1.25em;
  }

  .utility-page-color-grid {
    grid-template-columns: 1fr 1fr;
  }

  .text-center-landscape {
    text-align: center;
  }

  .text-left-landscape {
    text-align: left;
  }

  .text-right-landscape {
    text-align: right;
  }

  .icon-html-embed.button-icon.button-call-icon {
    margin-right: 0;
  }

  .button.button-outline.button-call-header {
    padding: 1em 1.25em;
  }

  .general-section.typeform-section {
    margin-top: 0;
  }

  .mb-0 {
    margin-bottom: 0;
  }

  .boxed-content, .boxed-content.boxed-content-padless, .boxed-content.boxed-content-padless {
    padding: 2rem;
  }

  .rm-options-link-block {
    width: 100%;
  }

  .rm-social-icon-wrapper {
    width: 5em;
    height: 5em;
  }

  .grid-ng-2.thank-you-page-grid, .grid-ng-2._404-grid, .grid-ng-2.thank-you-page-grid, .grid-ng-2._404-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .grid-ng-4, .grid-ng-5, .grid-ng-6 {
    grid-template-columns: 1fr;
  }

  .header-top-cta {
    letter-spacing: .1em;
    font-size: .65em;
  }

  .header-top-cta-arrow {
    width: .5em;
  }

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

  .section-title {
    font-size: 1.5em;
  }

  .modal-box {
    padding: 5rem 4rem 4rem;
  }

  .header-nav-top {
    top: 20px;
  }

  .header-nav-wrapper {
    display: none;
  }

  .header-nav-actions {
    margin-top: 4rem;
  }

  .header-call-text {
    display: none;
  }

  .header-actions {
    margin-right: 0;
  }

  .desktop {
    display: none;
  }

  .section-tagline {
    font-size: 1.125em;
  }

  .section-tagline.section-tagline-quote {
    font-size: 1.5em;
  }

  .doctor-title {
    font-size: .8em;
  }

  .meet-team-grid-image-box {
    min-height: 450px;
  }

  .meet-team-grid-content {
    padding-bottom: 0;
  }

  .doctor-quote {
    font-size: 1.5em;
  }

  .doctor-signature {
    width: 13em;
    max-width: 100%;
  }

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

  .specialty-grid-description.icon-description {
    min-height: 8em;
  }

  .specialty-grid {
    grid-template-columns: 1fr;
    padding-left: 2.5em;
    padding-right: 2.5em;
  }

  .swc-content-background {
    width: 100%;
    max-width: 500px;
  }

  .service-hero-image {
    height: auto;
    min-height: 35vh;
  }

  .page-title {
    font-size: 3em;
  }

  .box-content-max-95 {
    width: 100%;
  }

  .grid-image-box {
    min-height: 40vh;
  }

  .hero-section {
    margin-left: 0;
    margin-right: 0;
  }

  .hero {
    padding-bottom: 0;
  }

  .association-logo {
    height: 2em;
  }

  .association-logo.nassau {
    object-fit: cover;
    height: 2em;
    margin: .9em 0 0;
    overflow: hidden;
  }

  .association-logo.ada {
    margin-top: .9em;
  }

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

  .location-grid-content {
    padding: 0 2rem;
  }

  .location-office-hours {
    display: inline-block;
  }

  .location-map {
    min-height: 27em;
  }

  .office-hours-table {
    padding-left: 0;
  }

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

  .grid-image-box-2 {
    min-height: 40vh;
  }

  .all-services-grid-item {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .all-services-call-section {
    padding: 2rem;
  }

  .all-services-grid-blurb.other-services {
    font-size: 1.1em;
  }

  .image-responsive-gallery {
    height: auto;
  }

  .box-content-max-90 {
    width: 100%;
  }

  .financing-partnership-grid {
    font-size: .9em;
  }

  .financing-partnership-blurb {
    max-width: 100%;
  }

  .special-price {
    font-size: 8em;
  }

  .accordion-icon {
    display: block;
  }

  .grid-image-box-3 {
    min-height: 40vh;
  }

  .typeform-ipad-wrapper {
    width: 90%;
    margin-bottom: -20%;
  }

  .typeform-content-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .typeform-content {
    padding-top: 0%;
  }

  .service-hero-heading {
    margin-bottom: 1rem;
  }

  .closing-section-image {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    width: 100%;
  }

  .background-image {
    object-position: 75% 0%;
  }

  .google-review-widget, .header-call-text-mobile {
    display: none;
  }

  .div-block {
    background-image: linear-gradient(2deg, #000, #00000026), url("https://cdn.prod.website-files.com/6772c7a2b1f528a249f1bcd0/6772c7a2b1f528a249f1be03_Home-Comprenhensive-care.webp");
    background-position: 0 0, 80%;
    background-size: auto, cover;
    align-items: flex-end;
    min-height: 40rem;
    display: flex;
  }

  .dropdown-list {
    display: none;
  }

  .dropdown-toggle {
    padding: 1px 40px 1px 1px;
  }

  .icon-4, .icon-5, .icon-6 {
    color: var(--white-o50);
    margin-top: 10px;
  }

  .dropdown-toggle-2, .dropdown-toggle-3 {
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 1px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 1.875em;
  }

  h3 {
    margin-bottom: 1rem;
    font-size: 1.75em;
  }

  ul, ol {
    padding-left: 1.5em;
  }

  .container.container-full-on-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .utility-page-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .grid-2, .grid-3, .grid-6 {
    grid-template-columns: 1fr;
  }

  .utility-page-heading {
    font-size: 3em;
  }

  .utility-page-heading-2 {
    font-size: 2em;
  }

  .utility-page-heading-3 {
    font-size: 1.25em;
  }

  .utility-page-color-grid {
    grid-template-columns: 1fr;
  }

  .text-center.text-left-small {
    text-align: left;
    text-align: left;
  }

  .text-center-mobile {
    text-align: center;
  }

  .section-subheading {
    font-size: 1.5em;
  }

  .text-left-mobile {
    text-align: left;
  }

  .text-right-mobile {
    text-align: right;
  }

  .button.button-outline.button-call-header {
    padding: .7em .8em;
  }

  .general-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .general-section.no-padding-mobile {
    margin-top: 0;
    margin-bottom: 0;
  }

  .general-section.typeform-section {
    margin-bottom: 4rem;
  }

  .filled-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .filled-section.background-overlay.hero-inner-section {
    min-height: auto;
  }

  .filled-section.background-primary-soft-light.tp-0-mobile {
    padding-top: 0;
  }

  .filled-section.hero-inner-section {
    height: auto;
    min-height: auto;
  }

  .filled-section.no-maegins-in-mobile {
    padding-top: 0;
    padding-bottom: 0;
  }

  .mb-0 {
    margin-bottom: 0;
  }

  .boxed-content.bio-box-3, .boxed-content.bio-box-4 {
    padding-top: 0;
  }

  .boxed-content.boxed-content-md {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .boxed-content.bio-box-3, .boxed-content.bio-box-4 {
    padding-top: 0;
  }

  .boxed-content.text-white.background-logo-image {
    background-size: contain;
  }

  .boxed-content.narrow-inner-hero-section {
    margin-left: 0%;
    margin-right: 0%;
  }

  .mt-0-mobile {
    margin-top: 0;
  }

  .mb-0-mobile {
    margin-bottom: 0;
  }

  .footer {
    padding-bottom: 8rem;
  }

  .rm-textarea, .rm-text-field {
    min-height: auto;
  }

  .rm-form-column {
    width: 100%;
  }

  .rm-social-link-block {
    margin-bottom: 1em;
  }

  .rm-form-flex {
    flex-direction: column;
  }

  .rm-modal-wrapper {
    min-height: auto;
    max-height: 80vh;
    overflow: scroll;
  }

  .error-message {
    font-size: .875em;
  }

  .rm-options-column-half {
    margin-top: 1em;
  }

  .rm-title {
    font-size: 1.5em;
  }

  .rm-modal-header {
    margin-bottom: .5em;
  }

  .rm-social-icon-wrapper {
    width: 4em;
    height: 4em;
    padding: 1em;
  }

  .rm-options-flex {
    flex-direction: column;
    align-items: center;
  }

  .grid-ng-2, .grid-ng-3, .grid-ng-6 {
    grid-template-columns: 1fr;
  }

  .boxed-content-md {
    padding: 2rem;
  }

  .boxed-content-md.background-primary-soft-medium.text-center-landscape {
    text-align: left;
    text-align: left;
    text-align: left;
  }

  .rating-badge {
    font-size: .8em;
  }

  .text-block {
    display: block;
  }

  .header-top-cta {
    padding-left: .75rem;
    padding-right: .75rem;
    display: block;
  }

  .header-top-cta-text {
    display: inline;
  }

  .header-top-cta-arrow {
    line-height: .5;
    display: inline-block;
    position: relative;
    top: .2em;
  }

  .header-top-cta-arrow-html-embed {
    line-height: .5;
    display: inline;
  }

  .header-logo {
    width: 50%;
  }

  .header-logo.w--current {
    width: 40%;
    display: none;
  }

  .header {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .section-subtitle {
    font-size: 1.3em;
  }

  .section-subtitle.larger {
    font-size: 1.5rem;
  }

  .footer-main-link.footer-bottom-link {
    text-align: left;
    width: 100%;
    margin-bottom: 1em;
  }

  .footer-main-link.footer-bottom-link.footer-bottom-link-middle {
    border-left-style: none;
    border-right-style: none;
  }

  .footer-bottom {
    margin-top: 1.5em;
    padding-top: 0;
  }

  .footer-bottom-box.last {
    text-align: left;
    text-align: left;
  }

  .footer-bottom-copyrights {
    text-align: left;
    line-height: 1.75;
  }

  .footer-bottom-middle-flex {
    flex-direction: column;
    align-items: center;
  }

  .select-field {
    font-size: 1em;
  }

  .section-title {
    font-size: 1.8em;
  }

  .section-title.section-title-medium {
    font-size: 2em;
  }

  .section-title.text-color {
    font-size: 1.5em;
  }

  .section-title.swc-title {
    font-size: 1.6em;
  }

  .section-title.section-title-meet {
    margin-bottom: 2rem;
  }

  .modal {
    max-height: 100vh;
    padding-top: 5rem;
    display: block;
    overflow: visible;
  }

  .modal-content {
    display: block;
  }

  .cta-wrapper {
    margin-top: 10%;
  }

  .cta-wrapper.cta-wrapper-large {
    font-size: 1.125em;
  }

  .book-form-text-field {
    font-size: 1em;
  }

  .modal-box {
    padding-bottom: 8rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .modal-box.modal-book {
    z-index: 9999999;
    z-index: 9999999;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    padding-top: 8rem;
    display: none;
    overflow: scroll;
  }

  .footer-cta {
    z-index: 999;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    background-color: #fff;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    padding: 8px;
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    position: fixed;
    inset: auto 0% 0%;
    box-shadow: 0 -3px 5px #0000000d;
  }

  .footer-cta-link {
    background-color: var(--cta);
    color: #fff;
    text-transform: uppercase;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 3.25rem;
    padding: .5em 1em;
    font-weight: 700;
    display: flex;
  }

  .footer-cta-link.footer-cta-link-call {
    background-color: var(--cta-hover);
    transition: background-color .4s cubic-bezier(.86, 0, .07, 1);
  }

  .footer-cta-link.footer-cta-link-call:active {
    background-color: #f19f6f;
  }

  .header-nav {
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar-menu-button-x {
    line-height: 1;
  }

  .header-nav-top {
    flex: 1;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: static;
    top: 16px;
  }

  .navbar-link {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .header-nav-wrapper {
    padding-bottom: 6rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: none;
  }

  .header-nav-logo {
    width: 50%;
    margin-right: 1em;
  }

  .desktop {
    display: none;
  }

  .navbar-menu-button {
    padding: 0;
    font-size: .9em;
  }

  .content.transparent-home-margin {
    margin-top: 0;
  }

  .closing-section-cta {
    grid-template-columns: 1fr;
  }

  .button-text {
    text-transform: capitalize;
  }

  .section-tagline {
    font-size: 1.05em;
  }

  .section-tagline.swc-text {
    font-size: 1em;
    line-height: 1.75;
  }

  .section-tagline.section-tagline-quote {
    font-size: 1.3em;
    line-height: 1.5;
  }

  .section-tagline.mb-0.location {
    font-size: 1em;
  }

  .safety-ug-wrapper {
    padding: 3em 1em 1.5em;
  }

  .safety-ug-column {
    text-align: left;
    padding: 1.5rem;
  }

  .safety-ug-column.last {
    padding-top: 0;
  }

  .safety-ug-item {
    text-align: left;
    align-items: flex-start;
    max-width: none;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1em;
  }

  .safety-ug-item.first {
    align-items: flex-start;
  }

  .reviews-slider {
    padding-left: 1em;
    padding-right: 1em;
  }

  .tour-slide-image {
    height: 100%;
  }

  .office-tour-arrow {
    font-size: 1em;
  }

  .office-tour-arrow.tour-slider-arrow.left-button {
    width: 2em;
    height: 2em;
    left: 10px;
  }

  .office-tour-arrow.tour-slider-arrow.right-button {
    width: 2em;
    height: 2em;
    right: 10px;
  }

  .tour-slide {
    height: 16em;
  }

  .meet-team-info-grid-box {
    padding-left: 0;
    padding-right: 0;
  }

  .quote-mark {
    display: none;
  }

  .doctor-title {
    font-size: 12px;
  }

  .meet-team-grid-image-box {
    min-height: 300px;
  }

  .meet-team-grid-content {
    padding-top: 0;
  }

  .meet-team-grid-image {
    position: static;
  }

  .doctor-quote {
    font-size: 1em;
    line-height: 1.5;
  }

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

  .specialty-grid-item {
    padding-bottom: 1.5em;
  }

  .specialty-grid-title {
    font-size: 1.75em;
  }

  .special-small-box {
    inset: auto 0% 0% auto;
  }

  .specialty-grid-special {
    bottom: -106px;
  }

  .specialty-grid-description {
    font-size: 1em;
  }

  .specialty-grid-description.icon-description {
    min-height: auto;
  }

  .specialty-grid {
    grid-template-columns: 1fr;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .swc-content {
    padding: 1.5rem;
  }

  .swc-content-background {
    max-width: 290px;
  }

  .service-hero-column-image {
    height: auto;
  }

  .page-rt.page-rt-large {
    font-size: 1em;
  }

  .page-rt h2 {
    font-size: 2.25em;
  }

  .service-hero-image {
    min-height: auto;
  }

  .page-title {
    margin-bottom: 2rem;
    font-size: 1.7em;
  }

  .page-title.page-title-small {
    font-size: 2.25em;
  }

  .page-title.page-title-small.blog-title {
    font-size: 8.75vw;
  }

  .grid-image {
    height: auto;
    position: static;
  }

  .grid-image-box {
    min-height: 25vh;
  }

  .grid-image-box.grid-image-box-square {
    min-height: auto;
  }

  .team-image {
    height: 300px;
  }

  .hero-section.full-width {
    height: auto;
    min-height: 600px;
    padding-top: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-column-content.text-white.text-center {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .hero-heading {
    font-size: 9.2vw;
  }

  .hero-tagline {
    font-size: 1.1em;
    display: block;
  }

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

  .association-logo {
    height: 1.8em;
  }

  .link-box.specialty-service-box {
    background-image: linear-gradient(to bottom, var(--overlay), var(--overlay)), url("https://cdn.prod.website-files.com/6772c7a2b1f528a249f1bcd0/6772c7a2b1f528a249f1bd11_template-service-hero-3.jpg");
    background-position: 0 0, 50%;
    background-size: auto, cover;
    min-height: 80vh;
    padding: 1rem;
  }

  .link-box.specialty-service-box.specialty-service-box-1 {
    background-image: linear-gradient(to bottom, var(--overlay), var(--overlay)), url("https://cdn.prod.website-files.com/6772c7a2b1f528a249f1bcd0/6772c7a2b1f528a249f1bd92_home-specialty-01.webp");
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .link-box.specialty-service-box.specialty-service-box-2 {
    background-image: linear-gradient(to bottom, var(--overlay), var(--overlay)), url("https://cdn.prod.website-files.com/6772c7a2b1f528a249f1bcd0/6772c7a2b1f528a249f1bd7b_home-specialty-02.webp");
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .link-box.specialty-service-box.specialty-service-box-3 {
    background-image: linear-gradient(to bottom, var(--overlay), var(--overlay)), url("https://cdn.prod.website-files.com/6772c7a2b1f528a249f1bcd0/6772c7a2b1f528a249f1bd91_home-specialty-03.webp");
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .link-box.specialty-service-box.specialty-service-box-4 {
    background-image: linear-gradient(to bottom, var(--overlay), var(--overlay)), url("https://cdn.prod.website-files.com/6772c7a2b1f528a249f1bcd0/6772c7a2b1f528a249f1bd7d_home-specialty-04.webp");
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .location-office-hours {
    display: inline;
  }

  .tour-grid-box {
    height: 25vh;
  }

  .fun-fact {
    font-size: 1em;
  }

  .grid-image-box-2 {
    min-height: 25vh;
  }

  .all-services-grid-title {
    font-size: 2em;
  }

  .all-services-grid {
    grid-row-gap: 3rem;
  }

  .all-services-call-section {
    padding-top: 0;
  }

  .all-services-grid-blurb {
    margin-bottom: 0;
    font-size: 1em;
  }

  .image-responsive-gallery.image-squared {
    min-height: 70vw;
  }

  .heading-small {
    font-size: 1.75em;
  }

  .checklist-item {
    font-size: 1em;
  }

  .financing-partnership-grid {
    grid-template-columns: 1fr;
  }

  .financing-partnership-grid-box.middle {
    border-left-style: none;
    border-right-style: none;
  }

  .financing-partnership-blurb {
    margin-top: 1.6em;
    margin-bottom: 1.6em;
  }

  .blog-text h2 {
    color: var(--primary-darker);
    font-size: 7.75vw;
  }

  .blog-text h4 {
    color: var(--primary-darker);
    font-size: 1.1em;
  }

  .blog-text h3 {
    color: var(--primary);
    font-size: 7vw;
  }

  .blog-image {
    object-fit: cover;
    object-position: 50% 50%;
    width: auto;
    height: 55vw;
  }

  .special-price {
    font-size: 15vw;
  }

  .accordion-header {
    justify-content: space-between;
    padding-right: 1em;
    display: flex;
  }

  .accordion-icon, .accordion-icon.alt, .accordion-icon.alt {
    margin-right: 0;
  }

  .accordion-title {
    width: 100%;
    min-width: 100%;
    font-size: 4.5vw;
    display: block;
  }

  .hero-special-link {
    font-size: 5vw;
  }

  .button-phone-text {
    display: none;
  }

  .button-group-wrapper.button-group-wrapper-large {
    width: 100%;
    font-size: 1.1em;
  }

  .grid-image-box-3 {
    min-height: 25vh;
  }

  .anchor {
    top: -10rem;
  }

  .date-alt {
    display: inline;
  }

  .typeform-ipad-wrapper {
    width: 100%;
    margin-bottom: -20%;
  }

  .typeform-section-wrapper {
    padding-top: 2rem;
    padding-bottom: 0;
  }

  .other-services-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-heading {
    font-size: 10.4vw;
  }

  .service-hero-tagline {
    font-size: 1.1em;
    display: block;
  }

  .bio-image {
    aspect-ratio: auto;
    object-fit: cover;
    position: static;
  }

  .location-boxed-content {
    padding: 1.5rem;
  }

  .footer-title {
    font-size: 1.3em;
  }

  .service-rt h2 {
    font-size: 2.25em;
  }

  .content-logo {
    width: 80%;
  }

  .hero-logo.mb-2.mobile-small {
    width: 60%;
  }

  .hero-logo.mb-2.mobile-small.hide-in-mobile {
    display: none;
  }

  .saferty-image {
    min-height: 300px;
  }

  .icon {
    inset: 0% 0% 25% auto;
  }

  .icon-2 {
    inset: 0% auto 25% 0%;
  }

  .footer-cta-text {
    font-size: .875rem;
  }

  .footer-cta-note {
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 400;
    display: block;
  }

  .header-call-text-mobile {
    margin-left: .5em;
    font-size: .875em;
    display: block;
  }

  .desktop-span-display-block {
    display: inline-block;
  }

  .div-block {
    background-image: linear-gradient(to bottom, var(--overlay), var(--overlay)), url("https://cdn.prod.website-files.com/6772c7a2b1f528a249f1bcd0/6772c7a2b1f528a249f1be03_Home-Comprenhensive-care.webp");
    background-position: 0 0, 80%;
    background-size: auto, cover;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .special-small-box-2 {
    inset: auto 0% 0% auto;
  }

  .desktop-medium-display-block {
    display: inline-block;
  }

  .mobile-logo {
    margin-right: 1rem;
    display: block;
  }

  .mobile-logo.w--current {
    width: 20rem;
    height: 100%;
    margin-right: 1rem;
    display: block;
  }

  .icon-3 {
    border: 1px solid #fff0;
  }

  .dropdown-toggle {
    padding-top: 0;
  }

  .icon-4 {
    color: var(--white-o50);
  }

  .dropdown {
    margin-left: 0;
    padding-left: 0;
  }

  .dropdown-2, .dropdown-3 {
    margin-left: 0;
    margin-right: 0;
  }

  .right-arrow {
    right: 0%;
  }

  .left-arrow {
    left: 0%;
  }
}

#w-node-_3ad9e003-750e-088b-fca3-35c18a7430e8-49f1bd8c, #w-node-b864cf93-ee25-6152-1574-b86ab2d3809f-49f1bd8c, #w-node-a5729777-29f8-5632-d47d-a5381be2cd2f-49f1bd8c, #w-node-a5729777-29f8-5632-d47d-a5381be2cd30-49f1bd8c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_47b20782-f122-bbfa-480d-a2b6707a17e0-49f1bd8c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_47b20782-f122-bbfa-480d-a2b6707a17e1-49f1bd8c, #w-node-b45c3f05-c752-d89f-cac8-7319fb852da0-49f1bd8c, #w-node-b45c3f05-c752-d89f-cac8-7319fb852da1-49f1bd8c, #w-node-_621156a9-904b-a7aa-5df8-f32823aed502-49f1bd8c, #w-node-_621156a9-904b-a7aa-5df8-f32823aed503-49f1bd8c, #w-node-_6d07c9eb-65ed-e8c1-8341-6c2b7910bd51-49f1bd8c, #w-node-f3cb245e-f954-4ca2-8f6f-c47c1718c29d-49f1bd8c, #w-node-_3bab6ef1-71e2-5c3a-9b14-f2cc877dd75f-49f1bd8c, #w-node-_0f979452-7852-01e8-5652-dfdc2b9a9ec7-49f1bd8c, #w-node-_3914d07f-4e20-4f72-944f-de3263ea541a-49f1bd8c, #w-node-_088cf928-e089-15a6-e56d-bbc662361e2e-49f1bd8c, #w-node-_0604dc10-adaa-f30b-d44a-ee7ab7f83036-49f1bd8c, #w-node-e6df537d-3511-e13e-3687-8f506771367b-49f1bd8c, #w-node-_624c3e08-90f7-372b-5fe0-50b57f623974-49f1bd8c, #w-node-_5e56890b-1f3d-181e-8e76-e02857042291-49f1bd8c, #w-node-_43fde10a-8449-023f-3d55-a068a47836ba-49f1bd8c, #w-node-_84098ac9-5556-917c-49fc-398464674c25-49f1bd8c, #w-node-_506ee70e-e338-39c1-f3d2-572d2f2f9d9b-49f1bd8c, #w-node-_8f38e77e-f5e2-b3de-f50e-f47a81b25905-49f1bd8c, #w-node-_2f1eba81-3598-d7c6-fcf2-9ea2b8a2d36d-49f1bd8c, #w-node-e07a4321-cc56-f312-407d-ab36ce62198f-49f1bd8c, #w-node-e07a4321-cc56-f312-407d-ab36ce621992-49f1bd8c, #w-node-_7d91e627-d240-6c27-85e4-6e701d2ce8c0-49f1bd8c, #w-node-_8af28232-4253-3811-5d8d-574c9af70fa1-49f1bd8c, #w-node-_8e64c8fe-5676-260a-ac81-84ed1f2273dc-49f1bd8c, #w-node-_9ccd3bf5-56b1-f897-85de-3b695ac27475-49f1bd8c, #w-node-_45f14545-5532-cc06-f61f-7a811035b0e4-49f1bd8c, #w-node-a1090893-d23f-e9b5-181b-a17720c3e05b-49f1bd8c, #w-node-a1090893-d23f-e9b5-181b-a17720c3e05c-49f1bd8c, #w-node-_8be59feb-74fe-4757-c5a8-acef48368449-49f1bd8c, #w-node-_8be59feb-74fe-4757-c5a8-acef4836844a-49f1bd8c, #w-node-c35e363f-7cde-b1c4-189e-1075bb0f8169-49f1bd8c, #w-node-fcd22348-0b72-c35e-01c6-f1c60eee1ae4-49f1bd8c, #w-node-_453a069c-1aea-2a1d-ed56-ea4053c07b24-49f1bd8c, #w-node-_516f804a-a919-faea-69cb-19d472328d07-49f1bd8c, #w-node-_516f804a-a919-faea-69cb-19d472328d08-49f1bd8c, #w-node-_516f804a-a919-faea-69cb-19d472328d09-49f1bd8c, #w-node-_9d676a1b-8947-0a34-8bc9-c90fed91df3a-49f1bd8c, #w-node-a4b4d879-0afb-8a6f-4f5e-b0daafe7080d-49f1bd8c, #w-node-fd16f315-b879-5729-93f3-05c362fa0c67-49f1bd8c, #w-node-_26a43c59-5e24-3129-4320-c12fc0fbb622-49f1bd8c, #w-node-_58e6659d-c1a9-c131-e3ed-1403b89feb41-49f1bd8c, #w-node-_58e6659d-c1a9-c131-e3ed-1403b89feb42-49f1bd8c, #w-node-_58e6659d-c1a9-c131-e3ed-1403b89feb43-49f1bd8c, #w-node-_58e6659d-c1a9-c131-e3ed-1403b89feb44-49f1bd8c, #w-node-_7784058b-ef17-34bc-fad6-636057648748-49f1bd8c, #w-node-c2a42ed8-381a-01d9-348a-335053abdd7b-49f1bd8c, #w-node-_9a301b7a-ccc7-df66-974f-d87db0cafac5-49f1bd8c, #w-node-_258d1b59-79eb-e940-7d80-84fad4611bdc-49f1bd8c, #w-node-_02d2cdf2-952a-760a-de49-7f1afb0927bd-49f1bd8c, #w-node-_81b43fc8-7b44-e3f1-e3f5-d01572462c4a-49f1bd8c, #w-node-_81b43fc8-7b44-e3f1-e3f5-d01572462c4b-49f1bd8c, #w-node-_81b43fc8-7b44-e3f1-e3f5-d01572462c4c-49f1bd8c, #w-node-_81b43fc8-7b44-e3f1-e3f5-d01572462c4d-49f1bd8c, #w-node-_81b43fc8-7b44-e3f1-e3f5-d01572462c4e-49f1bd8c, #w-node-_2f80a794-fb4b-344c-22c6-72ed7720bf3f-49f1bd8c, #w-node-_37aafb11-4cc1-71d7-b744-1af36c143f1a-49f1bd8c, #w-node-_67c0b47f-3725-5210-e8e5-311987908b86-49f1bd8c, #w-node-ed5faa6a-30c0-ad3e-6b8a-f70703122d16-49f1bd8c, #w-node-_2bdbee23-4037-fa1f-c6b3-709b2ea362e0-49f1bd8c, #w-node-_164ace77-29df-7583-ceb6-a14d198617d1-49f1bd8c, #w-node-_593bbd1f-6ddc-32ae-6b93-45246f140c72-49f1bd8c, #w-node-_593bbd1f-6ddc-32ae-6b93-45246f140c73-49f1bd8c, #w-node-_593bbd1f-6ddc-32ae-6b93-45246f140c74-49f1bd8c, #w-node-_593bbd1f-6ddc-32ae-6b93-45246f140c75-49f1bd8c, #w-node-_593bbd1f-6ddc-32ae-6b93-45246f140c76-49f1bd8c, #w-node-_593bbd1f-6ddc-32ae-6b93-45246f140c77-49f1bd8c, #w-node-_6f3ec716-5a1b-4577-9274-ccd29488f822-49f1bd8c, #w-node-_6f3ec716-5a1b-4577-9274-ccd29488f823-49f1bd8c, #w-node-_6f3ec716-5a1b-4577-9274-ccd29488f824-49f1bd8c, #w-node-c340b8a2-7a31-a817-b1da-6c1536e820fa-49f1bd8c, #w-node-a456aeab-4398-5297-832c-1877b2c9ca74-49f1bd8c, #w-node-a456aeab-4398-5297-832c-1877b2c9ca77-49f1bd8c, #w-node-a456aeab-4398-5297-832c-1877b2c9ca7a-49f1bd8c, #w-node-a456aeab-4398-5297-832c-1877b2c9ca7d-49f1bd8c, #w-node-b47df21c-e617-110c-40e3-bc4f4e3a8dd0-49f1bd8c, #w-node-b47df21c-e617-110c-40e3-bc4f4e3a8dd3-49f1bd8c, #w-node-b47df21c-e617-110c-40e3-bc4f4e3a8dd6-49f1bd8c, #w-node-b47df21c-e617-110c-40e3-bc4f4e3a8dd9-49f1bd8c, #w-node-_96c8e533-2d44-540a-2aaa-aa760f4acbec-49f1bd8c, #w-node-_01ebe800-27b9-3d86-8afd-5e3a2b7bed51-49f1bd8c, #w-node-bcae0e27-72db-8077-d34d-d5c290912bb4-49f1bd8c, #w-node-_8ba4f508-4259-e6bd-530d-215405edea5c-49f1bd8c, #w-node-_8db554e7-eaee-33ef-b992-f6183ee5e526-49f1bd8c, #w-node-bcae0e27-72db-8077-d34d-d5c290912bb7-49f1bd8c, #w-node-bcae0e27-72db-8077-d34d-d5c290912bba-49f1bd8c, #w-node-bcae0e27-72db-8077-d34d-d5c290912bbd-49f1bd8c, #w-node-_8142f743-795e-7ddd-e748-708b60abec8d-49f1bd8c, #w-node-_3d0d3cd4-844d-5c57-e76c-a7b080093244-49f1bd8c, #w-node-_8521016f-ba16-73da-09a7-8d0a36272c12-49f1bd8c, #w-node-_8fc598be-d9f3-9c6b-2e2a-964ecbda378b-49f1bd8c, #w-node-_72b965cb-e913-90a8-fd85-df488dc50aab-49f1bd8c, #w-node-_63fcf520-6bb1-f237-264f-1eaf12e1c282-49f1bd8c, #w-node-bbc354d5-92e3-b21b-6b57-43dec6315d66-49f1bd8c, #w-node-_72b965cb-e913-90a8-fd85-df488dc50ab0-49f1bd8c, #w-node-_72b965cb-e913-90a8-fd85-df488dc50ab5-49f1bd8c, #w-node-_72b965cb-e913-90a8-fd85-df488dc50aba-49f1bd8c, #w-node-_72b965cb-e913-90a8-fd85-df488dc50abf-49f1bd8c, #w-node-_72b965cb-e913-90a8-fd85-df488dc50ac4-49f1bd8c, #w-node-_72b965cb-e913-90a8-fd85-df488dc50ac9-49f1bd8c, #w-node-_72b965cb-e913-90a8-fd85-df488dc50ace-49f1bd8c, #w-node-_62557ff2-c8f1-9a03-b8fb-a0bc3f75eac4-49f1bd8c, #w-node-_0dc8d5d5-96c0-0549-5d1a-cc42ff9c8c6c-49f1bd8c, #w-node-e0a79b04-01e7-e3f5-0043-e5b6da00d178-49f1bd8c, #w-node-_2145b851-0edc-8d6a-a9af-125613d53153-49f1bd8c, #w-node-caf73b47-c1b3-00b9-5314-da07e3c0075b-49f1bd8c, #w-node-fd4dc624-bd5b-9d4e-28cc-0c4b059bc9c5-49f1bd8c, #w-node-_79234c25-357b-d812-e433-3a65127d8759-49f1bd8c, #w-node-_30463b60-5df0-e2a9-62ec-a99d0c354383-49f1bd8c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#Preferred-Time-bf.w-node-_62d7a2c2-e7fb-d4df-7faf-a0cee1049dc4-49f1bd8c, #message-bf.w-node-_62d7a2c2-e7fb-d4df-7faf-a0cee1049dc5-49f1bd8c, #w-node-_62d7a2c2-e7fb-d4df-7faf-a0cee1049dc6-49f1bd8c, #Preferred-Time-bf.w-node-_16c5135e-048d-301a-e140-323f822da939-49f1bd8c, #message-bf.w-node-_16c5135e-048d-301a-e140-323f822da93a-49f1bd8c, #w-node-_16c5135e-048d-301a-e140-323f822da93b-49f1bd8c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_0ea06af9-381e-7cff-44a7-2bddb87c98b2-49f1bd8c, #w-node-ea932124-d3d6-9972-52bc-5c4f6a17cbe2-49f1bd8c, #w-node-_38ac37a3-4e73-2fa1-4b6c-e2dc4a6d7ab7-49f1bd8c, #w-node-_5cfda745-6a53-1374-c92a-809ec341111f-49f1bd8c, #w-node-_7c339e67-770f-995c-b5f4-550c0e0ac151-49f1bd8c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#Preferred-Time-bf.w-node-e7ed20ce-b007-d74f-b203-a789a445e629-a445e61c, #message-bf.w-node-e7ed20ce-b007-d74f-b203-a789a445e62a-a445e61c, #w-node-e7ed20ce-b007-d74f-b203-a789a445e62b-a445e61c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-dabaf991-7858-187c-463e-6e9f38cf3b1a-1097059e {
  grid-area: span 3 / span 2 / span 3 / span 2;
}

#w-node-dabaf991-7858-187c-463e-6e9f38cf3b1c-1097059e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-dabaf991-7858-187c-463e-6e9f38cf3b26-1097059e, #w-node-dabaf991-7858-187c-463e-6e9f38cf3b2b-1097059e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dabaf991-7858-187c-463e-6e9f38cf3b30-1097059e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-dabaf991-7858-187c-463e-6e9f38cf3b36-1097059e {
  grid-area: span 3 / span 2 / span 3 / span 2;
}

#w-node-dabaf991-7858-187c-463e-6e9f38cf3b38-1097059e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-dabaf991-7858-187c-463e-6e9f38cf3b42-1097059e, #w-node-dabaf991-7858-187c-463e-6e9f38cf3b47-1097059e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dabaf991-7858-187c-463e-6e9f38cf3b4c-1097059e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5f287a30-9fb3-15c9-4922-d81e56c98b13-1097059e, #w-node-_5f287a30-9fb3-15c9-4922-d81e56c98b1f-1097059e, #w-node-_5f287a30-9fb3-15c9-4922-d81e56c98b26-1097059e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-_79234c25-357b-d812-e433-3a65127d8759-49f1bd8c, #w-node-_30463b60-5df0-e2a9-62ec-a99d0c354383-49f1bd8c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-dabaf991-7858-187c-463e-6e9f38cf3b30-1097059e, #w-node-dabaf991-7858-187c-463e-6e9f38cf3b4c-1097059e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5f287a30-9fb3-15c9-4922-d81e56c98b1e-1097059e {
    grid-area: span 3 / span 1 / span 3 / span 1;
  }
}

@media screen and (min-width: 1440px) {
  #w-node-dabaf991-7858-187c-463e-6e9f38cf3b1a-1097059e {
    grid-row: span 4 / span 4;
  }

  #w-node-dabaf991-7858-187c-463e-6e9f38cf3b26-1097059e, #w-node-dabaf991-7858-187c-463e-6e9f38cf3b2b-1097059e {
    grid-column: span 1 / span 1;
  }

  #w-node-dabaf991-7858-187c-463e-6e9f38cf3b36-1097059e {
    grid-row: span 4 / span 4;
  }

  #w-node-dabaf991-7858-187c-463e-6e9f38cf3b42-1097059e, #w-node-dabaf991-7858-187c-463e-6e9f38cf3b47-1097059e {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-dabaf991-7858-187c-463e-6e9f38cf3b1a-1097059e {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-dabaf991-7858-187c-463e-6e9f38cf3b26-1097059e, #w-node-dabaf991-7858-187c-463e-6e9f38cf3b2b-1097059e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-dabaf991-7858-187c-463e-6e9f38cf3b36-1097059e {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-dabaf991-7858-187c-463e-6e9f38cf3b42-1097059e, #w-node-dabaf991-7858-187c-463e-6e9f38cf3b47-1097059e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_3ad9e003-750e-088b-fca3-35c18a7430e8-49f1bd8c, #w-node-a5729777-29f8-5632-d47d-a5381be2cd2f-49f1bd8c, #w-node-_47b20782-f122-bbfa-480d-a2b6707a17e0-49f1bd8c, #w-node-b45c3f05-c752-d89f-cac8-7319fb852da0-49f1bd8c, #w-node-_621156a9-904b-a7aa-5df8-f32823aed502-49f1bd8c, #Preferred-Time-bf.w-node-_62d7a2c2-e7fb-d4df-7faf-a0cee1049dc4-49f1bd8c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #message-bf.w-node-_62d7a2c2-e7fb-d4df-7faf-a0cee1049dc5-49f1bd8c {
    grid-column: span 1 / span 1;
  }

  #w-node-_62d7a2c2-e7fb-d4df-7faf-a0cee1049dc6-49f1bd8c, #Preferred-Time-bf.w-node-_16c5135e-048d-301a-e140-323f822da939-49f1bd8c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #message-bf.w-node-_16c5135e-048d-301a-e140-323f822da93a-49f1bd8c {
    grid-column: span 1 / span 1;
  }

  #w-node-_16c5135e-048d-301a-e140-323f822da93b-49f1bd8c, #Preferred-Time-bf.w-node-e7ed20ce-b007-d74f-b203-a789a445e629-a445e61c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #message-bf.w-node-e7ed20ce-b007-d74f-b203-a789a445e62a-a445e61c {
    grid-column: span 1 / span 1;
  }

  #w-node-e7ed20ce-b007-d74f-b203-a789a445e62b-a445e61c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-dabaf991-7858-187c-463e-6e9f38cf3b1a-1097059e, #w-node-dabaf991-7858-187c-463e-6e9f38cf3b1c-1097059e, #w-node-dabaf991-7858-187c-463e-6e9f38cf3b30-1097059e, #w-node-dabaf991-7858-187c-463e-6e9f38cf3b36-1097059e, #w-node-dabaf991-7858-187c-463e-6e9f38cf3b38-1097059e, #w-node-dabaf991-7858-187c-463e-6e9f38cf3b4c-1097059e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5f287a30-9fb3-15c9-4922-d81e56c98b13-1097059e {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_5f287a30-9fb3-15c9-4922-d81e56c98b1e-1097059e {
    order: -9999;
    grid-area: span 2 / span 2 / span 2 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_63fcf520-6bb1-f237-264f-1eaf12e1c282-49f1bd8c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5f287a30-9fb3-15c9-4922-d81e56c98b13-1097059e {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_5f287a30-9fb3-15c9-4922-d81e56c98b1e-1097059e {
    order: -9999;
    grid-area: span 2 / span 1 / span 2 / span 1;
  }
}
