@charset "UTF-8";
:root {
  --hero-text-shadow: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
  --hero-text-size: 30px;
  --hero-subtext-size: 18px;
  --hero-description-size: 14px;
}
@media screen and (min-width: 580px) {
  :root {
    --hero-text-size: 32px;
    --hero-subtext-size: 20px;
    --hero-description-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --hero-text-size: 32px;
    --hero-subtext-size: 20px;
    --hero-description-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --hero-text-size: 38px;
    --hero-subtext-size: 22px;
    --hero-description-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --hero-text-size: 42px;
    --hero-subtext-size: 24px;
    --hero-description-size: 20px;
  }
}

:root {
  --header-height: 45px;
}
@media screen and (min-width: 768px) {
  :root {
    --header-height: 60px;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --header-height: 80px;
  }
}

:root {
  /* design tokens */
  --color-primary-a1: #003da6;
  --color-primary-a2: #364248;
  --color-primary-a3: #007eb4;
  --color-primary-a4: #016a99;
  --color-primary-b1: #ffb71b;
  --color-primary-b2: #fecd4c;
  --color-primary-c1: #ffffff;
  --color-secondary-a1: #364248;
  --color-secondary-a2: #586f78;
  --color-secondary-a3: #c9c9c5;
  --color-secondary-a4: #dddddd;
  --color-secondary-a5: #eceded;
  --color-secondary-a6: #f7f9fa;
  --color-secondary-a7: #faf9f7;
  --color-secondary-a8: #959593;
  --color-secondary-b1: #fee9bc;
  --color-secondary-b2: #fff8e6;
  --color-secondary-c1: #e5f5fb;
  --color-secondary-c2: #f5feff;
  --color-secondary-d1: #ff9527;
  --color-secondary-e1: #8f659c;
  --color-tertiary-a1: #933f10;
  --color-tertiary-b1: #5f277e;
  --color-tertiary-c1: #156250;
  --color-system-a1: #3f9f90;
  --color-system-a2: #ddf5f2;
  --color-system-b1: #b12943;
  --color-system-b2: #d5647a;
  --color-system-b3: #f9e8eb;
  --color-system-page-bg: $bswh-lt-gray;
  --color-button-bg: #fecd4c;
  --color-interaction-hover-bg: #fff8e6;
  --color-interaction-hover-border: #fecd4c;
  --color-interaction-active-bg: #f5feff;
  --color-interaction-active-border: #007fa9;
  --color-interaction-focus: #3a97f9;
  --shadow-focus: 0px 0px 3px 3px rgba(58, 151, 249, 1);
  --shadow-regular: 2px 8px 10px 0px rgba(58, 68, 85, 0.15);
  --shadow-soft: 0px 2px 20px 0px rgba(58, 68, 85, 0.15);
  --spacing-size-none: 0px;
  --spacing-size-xxsmall: 4px;
  --spacing-size-xsmall: 8px;
  --spacing-size-small: 16px;
  --spacing-size-medium: 24px;
  --spacing-size-large: 32px;
  --spacing-size-xlarge: 40px;
  --spacing-size-xxlarge: 60px;
  --spacing-size-xxxlarge: 104px;
  --gap-size:10px;
  --gap-half-size: calc(var(--gap-size) / 2);
  --page-feature-light-color:transparent;
  --page-feature-dark-color:transparent;
  --page-feature-color:transparent;
  --radius-none: 0px;
  --radius-xs: 4px;
  --radius-sm: 4px;
  --radius-md: 4px;
  --radius-lg: 4px;
  --radius-xl: 16px;
  --radius-pill: 50px;
  --grid-breakpoint-xs: 375px;
  --grid-breakpoint-sm: 480px;
  --grid-breakpoint-md: 768px;
  --grid-breakpoint-lg: 960px;
  --grid-breakpoint-xl: 1200px;
  --grid-breakpoint-xxl: 1440px;
  --grid-breakpoint-xs-max: 374.9px;
  --grid-breakpoint-sm-max: 479.9px;
  --grid-breakpoint-md-max: 767.9px;
  --grid-breakpoint-lg-max: 959.9px;
  --grid-breakpoint-xl-max: 1199.9px;
  --grid-breakpoint-xxl-max: 1439.9px;
  /* page layout */
  --page-spacing-x: var(--spacing-size-medium);
  --page-spacing-y: var(--spacing-size-large);
  --page-gap: var(--spacing-size-small);
  --banner-path-size: 16px;
}
@media (min-width: 768px) {
  :root {
    --page-spacing-x: var(--spacing-size-large);
    --page-spacing-y: var(--spacing-size-xlarge);
    --page-gap: var(--spacing-size-medium);
  }
}
@media (min-width: 960px) {
  :root {
    --page-spacing-x: var(--spacing-size-xlarge);
    --page-spacing-y: var(--spacing-size-xlarge);
  }
}
@media (min-width: 1200px) {
  :root {
    --page-spacing-x: var(--spacing-size-xxlarge);
    --page-spacing-y: var(--spacing-size-xxlarge);
    --page-gap: var(--spacing-size-large);
  }
}
@media (min-width: 768px) {
  :root {
    --banner-path-size: 20px;
  }
}
@media (min-width: 992px) {
  :root {
    --banner-path-size: 24px;
  }
}
@media (min-width: 1200px) {
  :root {
    --banner-path-size: 28px;
  }
}

/* breakpoints */
@keyframes slideup {
  from {
    top: 100%;
  }
  to {
    top: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:root {
  --headerGap: 0px;
  --heroHeight: 45vh;
  --heroMaxHeight: 500px;
}
@media (min-width: 768px) {
  :root {
    --heroHeight: 400px;
    --heroMaxHeight: 400px;
  }
}
@media (min-width: 992px) {
  :root {
    --heroHeight: 450px;
    --heroMaxHeight: 450px;
  }
}
@media (min-width: 1200px) {
  :root {
    --heroHeight: 480px;
    --heroMaxHeight: 480px;
  }
}

.component.content.hero.container.col-12.sticky-hero {
  padding-top: 80px;
}

.hero.container .bg-hero-hp {
  max-width: var(--grid-breakpoint-xxl);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .hero.container .bg-hero-hp {
    height: var(--heroHeight);
    min-height: var(--heroMinHeight);
    max-height: var(--heroMaxHeight);
  }
}
@media screen and (min-width: 768px) {
  .hero.container .bg-hero-hp {
    height: var(--heroHeight);
    min-height: var(--heroMinHeight);
    max-height: var(--heroMaxHeight);
  }
}
@media screen and (min-width: 768px) and (max-height: 1080px) {
  .hero.container .bg-hero-hp {
    height: var(--heroHeight);
    min-height: var(--heroMinHeight);
    max-height: var(--heroMaxHeight);
  }
}
@media screen and (min-width: 1200px) {
  .hero.container .bg-hero-hp {
    height: var(--heroHeight);
    min-height: var(--heroMinHeight);
    max-height: var(--heroMaxHeight);
  }
}

.sub-hero-image {
  height: 100%;
  max-width: var(--grid-breakpoint-xxl);
  margin: auto;
  background-size: cover;
  background-position: var(--image-position);
}

.path-container {
  position: absolute;
}

@media (min-width: 768px) {
  .path-container {
    position: absolute;
  }
}
@media (min-width: 992px) {
  .path-container {
    position: absolute;
    max-width: var(--grid-breakpoint-xxl);
  }
}
.hero.container .col-lg-6:has(.hero-text) {
  max-width: 100%;
}

.hero .hero-text {
  width: 100%;
  bottom: 0;
  padding-bottom: var(--page-spacing-y);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 480px) {
  .hero .hero-text {
    max-width: 100vw;
    bottom: 0;
    padding-bottom: var(--page-spacing-y);
  }
}
@media (min-width: 768px) {
  .hero .hero-text {
    max-width: 100%;
    margin-left: var(--page-spacing-x);
  }
}
.hero .hero-text .hero-headline {
  font-size: var(--hero-text-size);
  margin: 0 0 0.3rem;
  text-wrap: balance;
  filter: var(--hero-text-shadow);
}
@media (min-width: 768px) {
  .hero .hero-text .hero-headline {
    font-size: var(--hero-text-size);
    display: block;
  }
}
.hero .hero-text .hero-subheadline {
  font-size: var(--hero-subtext-size);
  text-wrap: balance;
  max-width: 100%;
  filter: var(--hero-text-shadow);
}
@media screen and (max-width: 518px) {
  .hero .hero-text .hero-subheadline {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .hero .hero-text .hero-subheadline {
    display: none;
  }
}
.hero .hero-text .hero-description {
  margin: 0;
  filter: var(--hero-text-shadow);
}
.hero .hero-text .hero-description p {
  font-size: var(--hero-subtext-size) !important;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .hero .hero-text .hero-description p {
    line-height: 1;
    font-size: var(--hero-description-size) !important;
  }
}
.hero .hero-text .hero-cta {
  display: none;
}

@media (min-width: 768px) {
  body.specialty-cancer-care .hero .hero-text {
    display: block;
  }
}
@media (min-width: 992px) {
  body.specialty-cancer-care .hero .hero-text {
    width: 65%;
  }
}

@media screen and (min-width: 500px) {
  body.bswh-orthogroup-home .hero .hero-text {
    max-width: 65%;
  }
}
@media (min-width: 768px) {
  body.bswh-orthogroup-home .hero .hero-text {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  body.bswh-orthogroup-home .hero .hero-text {
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  body.specialty-nicu .hero .hero-text {
    display: block;
  }
}

@media (min-width: 768px) {
  body.specialty-labor-delivery .hero .hero-text {
    display: block;
  }
}

@media (min-width: 768px) {
  body.power-of-two .hero .hero-text {
    display: block;
  }
}

@media (min-width: 768px) {
  body.its-right-here .hero .hero-text {
    display: block;
  }
}

@media (min-width: 768px) {
  body.new-movers .hero .hero-text {
    display: block;
  }
}

body.heart-hospitals .hero .hero-text {
  padding-inline: 10px;
}
@media (min-width: 768px) {
  body.heart-hospitals .hero .hero-text {
    padding-inline: 16px;
    display: block;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  body.heart-hospitals .hero .hero-text {
    padding-inline: 40px;
    max-width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 991px) {
  body.heart-hospitals .hero .hero-text {
    background: #fff;
    margin: auto;
    padding-top: var(--page-spacing-y);
  }
  body.heart-hospitals .hero .hero-text .hero-description, body.heart-hospitals .hero .hero-text .hero-description p {
    color: var(--color-primary-a2) !important;
  }
}
body.heart-hospitals .sub-hero-image {
  height: 70%;
}
@media (min-width: 991px) {
  body.heart-hospitals .sub-hero-image {
    height: 100%;
  }
}

@media (min-width: 768px) {
  body:not(.specialty-cancer-care):not(.bswh-orthogroup-home):not(.specialty-labor-delivery) .hero-headline {
    font-size: var(--hero-text-size);
    margin: 0 0 0.3rem;
    text-wrap: balance;
    filter: var(--hero-text-shadow);
    font-size: var(--hero-text-size);
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  body:not(.specialty-cancer-care):not(.bswh-orthogroup-home):not(.specialty-labor-delivery) .hero-headline:active, body:not(.specialty-cancer-care):not(.bswh-orthogroup-home):not(.specialty-labor-delivery) .hero-headline:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
  }
}

body.specialty-cancer-care {
  --image-position:50% 20%;
}
body.specialty-cancer-care .hero-media.specialty-hero.cancer-care .sub-hero-image {
  background-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/b3655de45ce540f7b9fb0387c11481e0?v=429a70dc) !important;
}

:root {
  --path-size:0px;
}

body.specialty-cancer-care .path-container {
  display: flex;
  z-index: 20;
  position: relative;
  -webkit-mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/16b31ae80c34468ead324e972fb0f246?v=cf413833);
          mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/16b31ae80c34468ead324e972fb0f246?v=cf413833);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: var(--image-position);
          mask-position: var(--image-position);
}
body.specialty-cancer-care .path-container .path-col {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
}
body.specialty-cancer-care .path-container .path-row {
  display: flex;
  flex: 1 1 100%;
}
body.specialty-cancer-care .path-container .path-cap {
  width: var(--path-size);
  height: var(--path-size);
  display: none;
  position: relative;
}
body.specialty-cancer-care .path-container .path-fill {
  width: 100%;
  height: 100%;
}
body.specialty-cancer-care .path-container .cap-fill {
  width: var(--path-size);
  height: var(--path-size);
}
body.specialty-cancer-care .path-container .cap-flip {
  width: var(--path-size);
  height: var(--path-size);
  position: absolute;
  top: 0;
}

body.specialty-cancer-care .path-container {
  padding-right: 10%;
  width: 100%;
  height: 100%;
  --path-size:15px;
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(even) {
  flex: 0 0 var(--path-size);
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(odd) .path-row:nth-of-type(2) {
  flex: 0 0 var(--path-size);
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(6) {
  display: none;
}
@media (min-width: 768px) {
  body.specialty-cancer-care .path-container {
    --path-size:20px;
  }
}
@media (min-width: 992px) {
  body.specialty-cancer-care .path-container {
    --path-size:25px;
  }
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(1) {
  flex: 1 1 30%;
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(1) .path-row {
  flex-direction: column;
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-cancer-care .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
    flex: 0 0 25%;
  }
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) .path-fill {
  background: rgb(0, 126, 180);
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(2) .path-row {
  flex-direction: column;
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-cancer-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
    flex: 0 0 25%;
  }
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-cancer-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
    flex: 0 0 25%;
  }
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) .cap-flip {
  background: linear-gradient(45deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
  background: linear-gradient(225deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-fill {
  background: rgb(255, 183, 27);
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(3) .path-row {
  flex-direction: column;
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
  flex: 0 0 calc(30% - var(--path-size));
}
@media (min-width: 768px) {
  body.specialty-cancer-care .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
    flex: 0 0 calc(50% - var(--path-size));
  }
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2) .path-fill {
  background: rgb(213, 100, 122);
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(4) .path-row {
  flex-direction: column;
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
  flex: 0 0 5%;
}
@media (min-width: 768px) {
  body.specialty-cancer-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
    flex: 0 0 10%;
  }
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
  flex: 0 0 25%;
}
@media (min-width: 768px) {
  body.specialty-cancer-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
    flex: 0 0 40%;
  }
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) .cap-flip {
  background: linear-gradient(45deg, rgb(143, 101, 156) 0%, rgb(143, 101, 156) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
  background: linear-gradient(135deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-fill {
  background: rgb(143, 101, 156);
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(5) {
  flex: 1 1 10%;
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(1) {
  flex: 0 0 0%;
}
body.specialty-cancer-care .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(2) {
  flex: 0 0 0%;
}
body.specialty-cancer-care .hero .hero-media.specialty-hero.cancer-care .sub-hero-image .sub-hero-scrim1,
body.specialty-cancer-care .hero .hero-media.specialty-hero.cancer-care .sub-hero-image .sub-hero-scrim2,
body.specialty-cancer-care .hero .hero-media.specialty-hero.cancer-care .sub-hero-image .sub-hero-scrim3 {
  width: 100%;
  position: absolute;
}
body.specialty-cancer-care .hero .hero-media.specialty-hero.cancer-care .sub-hero-image .sub-hero-scrim3 {
  top: 0;
  height: 50px;
  background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  opacity: 0.25;
}
@media (max-width: 992px) {
  body.specialty-cancer-care .hero .hero-media.specialty-hero.cancer-care .sub-hero-image .sub-hero-scrim3 {
    height: 20px;
    background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  }
}
body.specialty-cancer-care .hero .hero-media.specialty-hero.cancer-care .sub-hero-image .sub-hero-scrim1 {
  bottom: 0;
  height: 100%;
  mix-blend-mode: multiply;
  background: linear-gradient(226deg, rgba(1, 18, 28, 0) 43%, rgb(32, 40, 65) 62.02%);
  opacity: 0.4;
}
body.specialty-cancer-care .hero .hero-media.specialty-hero.cancer-care .sub-hero-image .sub-hero-scrim2 {
  bottom: 0;
  height: 100%;
  background: linear-gradient(0deg, rgb(21, 23, 58) 0%, rgba(0, 23, 193, 0) 45%);
  mix-blend-mode: multiply;
  opacity: 0.7;
}
@media screen and (max-width: 992px) {
  body.specialty-cancer-care .hero .hero-media.specialty-hero.cancer-care .sub-hero-image .sub-hero-scrim2 {
    top: unset;
    bottom: 0;
    height: 100%;
  }
}
body.bswh-orthogroup-home {
  --image-position: 90% 50%;
}
@media (min-width: 768px) {
  body.bswh-orthogroup-home {
    --image-position: 100% 50%;
  }
}
body.bswh-orthogroup-home .hero-text .hero-subheadline {
  filter: drop-shadow(4px 4px 12px rgba(0, 0, 0, 0.4));
}
@media (max-width: 991px) {
  body.bswh-orthogroup-home .hero-text .hero-description {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  body.bswh-orthogroup-home .hero-text {
    max-width: 95vw;
  }
}
body.bswh-orthogroup-home .hero-media.hero-bg.bg-hero-hp .sub-hero-scrim1 {
  height: 100%;
  mix-blend-mode: multiply;
  opacity: 0.9;
  -o-border-image: fill 0 linear-gradient(0deg, rgba(27, 27, 30, 0.87) 0%, rgba(53, 53, 54, 0.5) 34%, rgba(69, 69, 69, 0) 55%);
     border-image: fill 0 linear-gradient(0deg, rgba(27, 27, 30, 0.87) 0%, rgba(53, 53, 54, 0.5) 34%, rgba(69, 69, 69, 0) 55%);
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  body.bswh-orthogroup-home .hero-media.hero-bg.bg-hero-hp .sub-hero-scrim1 {
    opacity: 0.75;
  }
}
@media (min-width: 992px) {
  body.bswh-orthogroup-home .hero-media.hero-bg.bg-hero-hp .sub-hero-scrim1 {
    opacity: 1;
    -o-border-image: fill 0 linear-gradient(35deg, rgba(27, 28, 30, 0.39) 0%, rgba(69, 69, 69, 0) 71%);
       border-image: fill 0 linear-gradient(35deg, rgba(27, 28, 30, 0.39) 0%, rgba(69, 69, 69, 0) 71%);
  }
}

:root {
  --hero-text-shadow: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
  --hero-text-size: 30px;
  --hero-subtext-size: 18px;
  --hero-description-size: 14px;
}

@media screen and (min-width: 580px) {
  :root {
    --hero-text-size: 32px;
    --hero-subtext-size: 20px;
    --hero-description-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --hero-text-size: 32px;
    --hero-subtext-size: 20px;
    --hero-description-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --hero-text-size: 38px;
    --hero-subtext-size: 22px;
    --hero-description-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --hero-text-size: 42px;
    --hero-subtext-size: 24px;
    --hero-description-size: 20px;
  }
}
:root {
  --header-height: 45px;
}

@media screen and (min-width: 768px) {
  :root {
    --header-height: 60px;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --header-height: 80px;
  }
}
:root {
  /* design tokens */
  --color-primary-a1: #003da6;
  --color-primary-a2: #364248;
  --color-primary-a3: #007eb4;
  --color-primary-a4: #016a99;
  --color-primary-b1: #ffb71b;
  --color-primary-b2: #fecd4c;
  --color-primary-c1: #ffffff;
  --color-secondary-a1: #364248;
  --color-secondary-a2: #586f78;
  --color-secondary-a3: #c9c9c5;
  --color-secondary-a4: #dddddd;
  --color-secondary-a5: #eceded;
  --color-secondary-a6: #f7f9fa;
  --color-secondary-a7: #faf9f7;
  --color-secondary-a8: #959593;
  --color-secondary-b1: #fee9bc;
  --color-secondary-b2: #fff8e6;
  --color-secondary-c1: #e5f5fb;
  --color-secondary-c2: #f5feff;
  --color-secondary-d1: #ff9527;
  --color-secondary-e1: #8f659c;
  --color-tertiary-a1: #933f10;
  --color-tertiary-b1: #5f277e;
  --color-tertiary-c1: #156250;
  --color-system-a1: #3f9f90;
  --color-system-a2: #ddf5f2;
  --color-system-b1: #b12943;
  --color-system-b2: #d5647a;
  --color-system-b3: #f9e8eb;
  --color-system-page-bg: $bswh-lt-gray;
  --color-button-bg: #fecd4c;
  --color-interaction-hover-bg: #fff8e6;
  --color-interaction-hover-border: #fecd4c;
  --color-interaction-active-bg: #f5feff;
  --color-interaction-active-border: #007fa9;
  --color-interaction-focus: #3a97f9;
  --shadow-focus: 0px 0px 3px 3px rgba(58, 151, 249, 1);
  --shadow-regular: 2px 8px 10px 0px rgba(58, 68, 85, 0.15);
  --shadow-soft: 0px 2px 20px 0px rgba(58, 68, 85, 0.15);
  --spacing-size-none: 0px;
  --spacing-size-xxsmall: 4px;
  --spacing-size-xsmall: 8px;
  --spacing-size-small: 16px;
  --spacing-size-medium: 24px;
  --spacing-size-large: 32px;
  --spacing-size-xlarge: 40px;
  --spacing-size-xxlarge: 60px;
  --spacing-size-xxxlarge: 104px;
  --gap-size:10px;
  --gap-half-size: calc(var(--gap-size) / 2);
  --page-feature-light-color:transparent;
  --page-feature-dark-color:transparent;
  --page-feature-color:transparent;
  --radius-none: 0px;
  --radius-xs: 4px;
  --radius-sm: 4px;
  --radius-md: 4px;
  --radius-lg: 4px;
  --radius-xl: 16px;
  --radius-pill: 50px;
  --grid-breakpoint-xs: 375px;
  --grid-breakpoint-sm: 480px;
  --grid-breakpoint-md: 768px;
  --grid-breakpoint-lg: 960px;
  --grid-breakpoint-xl: 1200px;
  --grid-breakpoint-xxl: 1440px;
  --grid-breakpoint-xs-max: 374.9px;
  --grid-breakpoint-sm-max: 479.9px;
  --grid-breakpoint-md-max: 767.9px;
  --grid-breakpoint-lg-max: 959.9px;
  --grid-breakpoint-xl-max: 1199.9px;
  --grid-breakpoint-xxl-max: 1439.9px;
  /* page layout */
  --page-spacing-x: var(--spacing-size-medium);
  --page-spacing-y: var(--spacing-size-large);
  --page-gap: var(--spacing-size-small);
  --banner-path-size: 16px;
}

@media (min-width: 768px) {
  :root {
    --page-spacing-x: var(--spacing-size-large);
    --page-spacing-y: var(--spacing-size-xlarge);
    --page-gap: var(--spacing-size-medium);
  }
}
@media (min-width: 960px) {
  :root {
    --page-spacing-x: var(--spacing-size-xlarge);
    --page-spacing-y: var(--spacing-size-xlarge);
  }
}
@media (min-width: 1200px) {
  :root {
    --page-spacing-x: var(--spacing-size-xxlarge);
    --page-spacing-y: var(--spacing-size-xxlarge);
    --page-gap: var(--spacing-size-large);
  }
}
@media (min-width: 768px) {
  :root {
    --banner-path-size: 20px;
  }
}
@media (min-width: 992px) {
  :root {
    --banner-path-size: 24px;
  }
}
@media (min-width: 1200px) {
  :root {
    --banner-path-size: 28px;
  }
}
/* breakpoints */
@keyframes slideup {
  from {
    top: 100%;
  }
  to {
    top: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:root {
  --path-size:0px;
}

body.bswh-orthogroup-home .path-container {
  display: flex;
  z-index: 20;
  position: relative;
  -webkit-mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/3ded80d7fd8140c5abd55ffadad81d12?v=330bce1c);
          mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/3ded80d7fd8140c5abd55ffadad81d12?v=330bce1c);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 90% 50%;
          mask-position: 90% 50%;
}
@media (min-width: 768px) {
  body.bswh-orthogroup-home .path-container {
    -webkit-mask-position: 100% 50%;
            mask-position: 100% 50%;
  }
}
body.bswh-orthogroup-home .path-container .path-col {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
}
body.bswh-orthogroup-home .path-container .path-row {
  display: flex;
  flex: 1 1 100%;
}
body.bswh-orthogroup-home .path-container .path-cap {
  width: var(--path-size);
  height: var(--path-size);
  display: none;
  position: relative;
}
body.bswh-orthogroup-home .path-container .path-fill {
  width: 100%;
  height: 100%;
}
body.bswh-orthogroup-home .path-container .cap-fill {
  width: var(--path-size);
  height: var(--path-size);
}
body.bswh-orthogroup-home .path-container .cap-flip {
  width: var(--path-size);
  height: var(--path-size);
  position: absolute;
  top: 0;
}

body.bswh-orthogroup-home .path-container {
  padding-right: 5%;
  width: 100%;
  height: 100%;
  --path-size:20px;
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(even) {
  flex: 0 0 var(--path-size);
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(odd) .path-row:nth-of-type(2) {
  flex: 0 0 var(--path-size);
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(6) {
  display: none;
}
@media (min-width: 768px) {
  body.bswh-orthogroup-home .path-container {
    --path-size:20px;
  }
}
@media (min-width: 992px) {
  body.bswh-orthogroup-home .path-container {
    --path-size:25px;
  }
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(1) {
  flex: 1 1 15%;
}
@media (min-width: 768px) {
  body.bswh-orthogroup-home .path-container .path-col:nth-of-type(1) {
    flex: 1 1 55%;
  }
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(1) .path-row {
  flex-direction: column;
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
  flex: 0 0 6%;
}
@media (min-width: 768px) {
  body.bswh-orthogroup-home .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
    flex: 0 0 25%;
  }
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) .path-fill {
  background: rgb(255, 183, 27);
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(2) .path-row {
  flex-direction: column;
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
  flex: 0 0 6%;
}
@media (min-width: 768px) {
  body.bswh-orthogroup-home .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
    flex: 0 0 25%;
  }
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
  flex: 0 0 40%;
}
@media (min-width: 768px) {
  body.bswh-orthogroup-home .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
    flex: 0 0 35%;
  }
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) .cap-flip {
  background: linear-gradient(45deg, rgb(54, 66, 72) 0%, rgb(54, 66, 72) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
  background: linear-gradient(225deg, rgb(54, 66, 72) 0%, rgb(54, 66, 72) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-fill {
  background: rgb(0, 126, 180);
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(3) {
  flex: 1 1 45%;
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(3) .path-row {
  flex-direction: column;
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
  flex: 0 0 calc(46% - var(--path-size));
}
@media (min-width: 768px) {
  body.bswh-orthogroup-home .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
    flex: 0 0 calc(60% - var(--path-size));
  }
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2) {
  flex-direction: row;
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
  background: linear-gradient(45deg, rgb(213, 100, 122) 0%, rgb(213, 100, 122) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2) .path-fill {
  background: rgb(213, 100, 122);
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(4) {
  display: none;
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(4) .path-row {
  flex-direction: column;
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
  flex: 0 0 5%;
}
@media (min-width: 768px) {
  body.bswh-orthogroup-home .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
    flex: 0 0 10%;
  }
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
  flex: 0 0 25%;
}
@media (min-width: 768px) {
  body.bswh-orthogroup-home .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
    flex: 0 0 40%;
  }
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) .cap-flip {
  background: linear-gradient(45deg, rgb(143, 101, 156) 0%, rgb(143, 101, 156) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
  background: linear-gradient(135deg, rgb(54, 66, 72) 0%, rgb(54, 66, 72) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}
body.bswh-orthogroup-home .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-fill {
  background: rgb(143, 101, 156);
}
/* Font */
:root {
  --color-blue-primary: #1C489A;
  --color-blue-secondary: #087EB6;
  --color-red-primary: #B12A43;
  --color-red-secondary: #D6647A;
  --color-yellow-primary: #F7942C;
  --color-yellow-secondary: #FDB61B;
  --color-purple-primary: #5F2C7E;
  --color-purple-secondary: #B59BBE;
  --color-green-primary: #3E9F90;
  --color-green-secondary: #82C1B7;
  --color-dark-gray: #364248;
}

/* Design */
.bswh-orthogroup-home .page-section .grid-main img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
.bswh-orthogroup-home .page-section .grid-main .btn {
  color: #ffffff;
  padding: 0.8rem;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 400;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}
.bswh-orthogroup-home .page-section .grid-main .btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.bswh-orthogroup-home .page-section .grid-main .cards {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.bswh-orthogroup-home .page-section .grid-main .cards_item {
  display: flex;
  padding: 1rem;
}
.bswh-orthogroup-home .page-section .grid-main .cards_item a {
  width: 100%;
  text-decoration: none;
}
@media (min-width: 25rem) {
  .bswh-orthogroup-home .page-section .grid-main .cards {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .bswh-orthogroup-home .page-section .grid-main .cards_item {
    width: 50%;
  }
}
@media (min-width: 40rem) {
  .bswh-orthogroup-home .page-section .grid-main .cards_item {
    width: 33.3333%;
  }
}
@media (min-width: 56rem) {
  .bswh-orthogroup-home .page-section .grid-main .cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  .bswh-orthogroup-home .page-section .grid-main .cards_item {
    width: 100%;
  }
}
.bswh-orthogroup-home .page-section .grid-main .card {
  background-color: white;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  transition: 0.5s;
}
.bswh-orthogroup-home .page-section .grid-main .card:hover {
  transform: scale(1.05);
}
.bswh-orthogroup-home .page-section .grid-main .card:hover .card_image-wrapper {
  transform: scale(1.15);
}
.bswh-orthogroup-home .page-section .grid-main .card_content {
  padding: 1rem;
  display: flex;
  justify-content: center;
}
.bswh-orthogroup-home .page-section .grid-main .card_image {
  padding: 1rem;
  padding-bottom: 0;
  display: flex;
  justify-content: center;
}
.bswh-orthogroup-home .page-section .grid-main .card_image img {
  min-height: 100px;
}
.bswh-orthogroup-home .page-section .grid-main .card_image-wrapper {
  border-radius: 50%;
  transition: 0.5s;
  position: relative;
}
.bswh-orthogroup-home .page-section .grid-main .card_title {
  color: var(--color-dark-gray);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0px;
  text-align: center;
  font-family: "sharpsans-semibold";
  letter-spacing: 0.35px;
  font-weight: unset;
}
.bswh-orthogroup-home .page-section .grid-main .card_text {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.bswh-orthogroup-home .page-section .grid-main .made_by {
  font-weight: 400;
  font-size: 13px;
  margin-top: 35px;
  text-align: center;
}
.bswh-orthogroup-home .page-section .grid-main .icon-image {
  position: relative;
  z-index: 2;
}
.bswh-orthogroup-home .page-section .grid-main .icon-image-hover {
  position: absolute;
  left: 0;
  z-index: 1;
}
.bswh-orthogroup-home .page-section .grid-main .card:hover .icon-image {
  opacity: 0;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}
.bswh-orthogroup-home .page-section .grid-main h2 {
  padding-bottom: 30px !important;
}

[class^=orthogroup] .location-card-name, [class^=bswh-orthogroup] .location-card-name {
  font-size: 18px;
}
[class^=orthogroup] .location-card-address, [class^=bswh-orthogroup] .location-card-address {
  margin: 0;
}
[class^=orthogroup] main > div#content > .row .container.anchor-nav.primary-white-bg.full-width, [class^=bswh-orthogroup] main > div#content > .row .container.anchor-nav.primary-white-bg.full-width {
  margin-bottom: 2px;
}

.bswh-orthogroup-home span.heading-mobile {
  display: block;
  font-size: 22px;
  padding-bottom: 20px;
  line-height: normal;
  color: var(--color-secondary-a1) !important;
}

@media (min-width: 992px) {
  .bswh-orthogroup-home span.heading-mobile {
    display: none;
  }
}
.bswh-orthogroup-home .hero-description span {
  font-size: 22px;
} 
@media screen and (min-width: 992px) {
  .map-container, .multiple-locations-container {
    display: flex;
    flex-direction: row;
  }
}
[class^=orthogroup] .location-card .button, [class^=bswh-orthogroup] .location-card .button {
  min-width: -moz-max-content;
  min-width: max-content;
}
[class^=orthogroup] .location-maps .location-card .location-card-contact, [class^=bswh-orthogroup] .location-maps .location-card .location-card-contact {
  gap: 10px;
}

@media (max-width: 520px) {
  [class^=orthogroup] .row.provider-list, [class^=bswh-orthogroup] .row.provider-list {
    padding: 0;
  }
}
@media (max-width: 520px) {
  [class^=orthogroup] .provider-list .provider-list-item .action-flex-wrapper, [class^=bswh-orthogroup] .provider-list .provider-list-item .action-flex-wrapper {
    margin-left: 0;
  }
  [class^=orthogroup] .provider-list .provider-list-item .action-flex-wrapper .action-flex .action-link, [class^=bswh-orthogroup] .provider-list .provider-list-item .action-flex-wrapper .action-flex .action-link {
    flex-direction: column;
  }
  [class^=orthogroup] .provider-list .provider-list-item .action-flex-wrapper .action-flex .action-link .link-title, [class^=bswh-orthogroup] .provider-list .provider-list-item .action-flex-wrapper .action-flex .action-link .link-title {
    text-align: center;
  }
}
[class^=orthogroup] .list-content-flex, [class^=bswh-orthogroup] .list-content-flex {
  height: 100%;
}
@media (max-width: 520px) {
  [class^=orthogroup] .list-content-flex, [class^=bswh-orthogroup] .list-content-flex {
    padding: 20px;
  }
}
[class^=orthogroup] .list-content-flex > div, [class^=bswh-orthogroup] .list-content-flex > div {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: space-between;
  height: 100%;
}
[class^=orthogroup] .list-footer ul, [class^=bswh-orthogroup] .list-footer ul {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
@media (max-width: 520px) {
  [class^=orthogroup] .list-footer ul, [class^=bswh-orthogroup] .list-footer ul {
    flex-wrap: wrap;
    margin-top: 30px;
  }
  [class^=orthogroup] .list-footer ul a, [class^=bswh-orthogroup] .list-footer ul a {
    flex: 1 1 45%;
  }
}
[class^=orthogroup] .list-footer ul a li, [class^=bswh-orthogroup] .list-footer ul a li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 1.4rem !important;
}
@media (max-width: 520px) {
  [class^=orthogroup] .list-footer ul a li, [class^=bswh-orthogroup] .list-footer ul a li {
    font-size: 1.3rem !important;
  }
}
[class^=orthogroup] .provider-list .provider-list-item .detail-wrapper, [class^=bswh-orthogroup] .provider-list .provider-list-item .detail-wrapper {
  align-items: flex-start;
}
@media (max-width: 400px) {
  [class^=orthogroup] .provider-list .provider-list-item .detail-wrapper, [class^=bswh-orthogroup] .provider-list .provider-list-item .detail-wrapper {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
}
@media (max-width: 520px) {
  [class^=orthogroup] .provider-list .provider-list-item .detail-wrapper .details, [class^=bswh-orthogroup] .provider-list .provider-list-item .detail-wrapper .details {
    width: 100%;
  }
}
[class^=orthogroup] ul.action-flex, [class^=bswh-orthogroup] ul.action-flex {
  min-width: 120px;
}
[class^=orthogroup] .filter-pill-list-wrapper .filter-pill-list, [class^=bswh-orthogroup] .filter-pill-list-wrapper .filter-pill-list {
  margin-bottom: 0;
}
[class^=orthogroup] .filter-pill-list-wrapper, [class^=bswh-orthogroup] .filter-pill-list-wrapper {
  margin-top: 4px;
}
[class^=orthogroup] .pagination-wrapper .pagination .page-link.active, [class^=bswh-orthogroup] .pagination-wrapper .pagination .page-link.active {
  background: var(--color-primary-c1) !important;
  border: 1px solid #fecd4c;
  color: var(--color-secondary-a1) !important;
}

body.specialty-ortho {
  --image-position: 100% 20%;
}
@media (min-width: 1200px) {
  body.specialty-ortho {
    --image-position: 100% 40%;
  }
}

:root {
  --path-size:0px;
}

body.specialty-ortho .path-container {
  display: flex;
  z-index: 20;
  position: absolute;
  -webkit-mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/5d28f45edf9c4cfb9c266d318dd11022?v=089abb50);
          mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/5d28f45edf9c4cfb9c266d318dd11022?v=089abb50);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: var(--image-position);
          mask-position: var(--image-position);
}
body.specialty-ortho .path-container .path-col {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
}
body.specialty-ortho .path-container .path-row {
  display: flex;
  flex: 1 1 100%;
}
body.specialty-ortho .path-container .path-cap {
  width: var(--path-size);
  height: var(--path-size);
  display: none;
  position: relative;
}
body.specialty-ortho .path-container .path-fill {
  width: 100%;
  height: 100%;
}
body.specialty-ortho .path-container .cap-fill {
  width: var(--path-size);
  height: var(--path-size);
}
body.specialty-ortho .path-container .cap-flip {
  width: var(--path-size);
  height: var(--path-size);
  position: absolute;
  top: 0;
}

body.specialty-ortho .path-container {
  padding-right: 10%;
  padding-left: 0;
  width: 100%;
  height: 100%;
  --path-size:15px;
}
body.specialty-ortho .path-container .path-col:nth-of-type(even) {
  flex: 0 0 var(--path-size);
}
body.specialty-ortho .path-container .path-col:nth-of-type(odd) .path-row:nth-of-type(2) {
  flex: 0 0 var(--path-size);
}
body.specialty-ortho .path-container .path-col:nth-of-type(6) {
  display: none;
}
@media (min-width: 768px) {
  body.specialty-ortho .path-container {
    --path-size:20px;
  }
}
@media (min-width: 992px) {
  body.specialty-ortho .path-container {
    --path-size:25px;
  }
}
@media (min-width: 768px) {
  body.specialty-ortho .path-container {
    padding-left: 5%;
    padding-right: 0;
  }
}
body.specialty-ortho .path-container .path-col:nth-of-type(1) {
  flex: 1 1 90%;
}
@media (min-width: 768px) {
  body.specialty-ortho .path-container .path-col:nth-of-type(1) {
    flex: 1 1 100%;
  }
}
body.specialty-ortho .path-container .path-col:nth-of-type(1) .path-row {
  flex-direction: column;
}
body.specialty-ortho .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-ortho .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
    flex: 0 0 30%;
  }
}
body.specialty-ortho .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) {
  flex-direction: row;
  position: relative;
  justify-content: center;
}
@media (min-width: 768px) {
  body.specialty-ortho .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
    display: block;
    background: linear-gradient(225deg, rgb(213, 100, 122) 0%, rgb(213, 100, 122) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  }
}
body.specialty-ortho .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) .path-fill {
  background: rgb(213, 100, 122);
}
@media (min-width: 768px) {
  body.specialty-ortho .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):after {
    content: "Set a better you in motion. Your orthopedic care is navigated by you.";
    position: absolute;
    font-size: var(--hero-subtext-size);
    color: #fff;
    top: calc(var(--path-size) * 2);
    width: 90%;
    letter-spacing: -1px;
    line-height: 1;
    display: flex;
    justify-content: center;
    text-wrap: balance;
    filter: var(--hero-text-shadow);
  }
}
@media (min-width: 768px) and (min-width: 1000px) {
  body.specialty-ortho .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):after {
    width: 60%;
  }
}
@media (min-width: 768px) {
  body.specialty-ortho .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):before {
    content: "Orthopedics";
    position: absolute;
    font-size: var(--hero-text-size);
    color: #fff;
    bottom: calc(var(--path-size) / 2);
    width: 90%;
    letter-spacing: -1px;
    line-height: 1;
    text-wrap: balance;
    filter: var(--hero-text-shadow);
  }
}
@media (min-width: 768px) and (min-width: 1000px) {
  body.specialty-ortho .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):before {
    width: 60%;
  }
}
body.specialty-ortho .path-container .path-col:nth-of-type(2) .path-row {
  flex-direction: column;
}
body.specialty-ortho .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-ortho .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
    flex: 0 0 30%;
  }
}
body.specialty-ortho .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
  flex: 0 0 25%;
}
@media (min-width: 768px) {
  body.specialty-ortho .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
    flex: 0 0 30%;
  }
}
body.specialty-ortho .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-ortho .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) .cap-flip {
  background: linear-gradient(45deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-ortho .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
body.specialty-ortho .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
  background: linear-gradient(225deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-ortho .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-fill {
  background: rgb(255, 183, 27);
}
body.specialty-ortho .path-container .path-col:nth-of-type(3) .path-row {
  flex-direction: column;
}
body.specialty-ortho .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
  flex: 0 0 calc(40% - var(--path-size));
}
@media (min-width: 768px) {
  body.specialty-ortho .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
    flex: 0 0 calc(60% - var(--path-size));
  }
}
body.specialty-ortho .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2) {
  position: relative;
}
body.specialty-ortho .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2) .path-fill {
  background: rgb(63, 159, 144);
}
body.specialty-ortho .path-container .path-col:nth-of-type(4) .path-row {
  flex-direction: column;
}
body.specialty-ortho .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
  flex: 0 0 5%;
}
@media (min-width: 768px) {
  body.specialty-ortho .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
    flex: 0 0 10%;
  }
}
body.specialty-ortho .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
  flex: 0 0 35%;
}
@media (min-width: 768px) {
  body.specialty-ortho .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
    flex: 0 0 50%;
  }
}
body.specialty-ortho .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-ortho .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
@media (min-width: 768px) {
  body.specialty-ortho .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-fill {
    background: rgb(63, 159, 144);
  }
}
@media (max-width: 767px) {
  body.specialty-ortho .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
    background: linear-gradient(135deg, rgb(63, 159, 144) 0%, rgb(63, 159, 144) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  }
}
body.specialty-ortho .path-container .path-col:nth-of-type(5) {
  flex: 1 1 10%;
}
body.specialty-ortho .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(1) {
  flex: 0 0 0%;
}
body.specialty-ortho .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(2) {
  flex: 0 0 0%;
}
body.specialty-ortho .hero .hero-media.specialty-hero.ortho .sub-hero-image .sub-hero-scrim1,
body.specialty-ortho .hero .hero-media.specialty-hero.ortho .sub-hero-image .sub-hero-scrim2,
body.specialty-ortho .hero .hero-media.specialty-hero.ortho .sub-hero-image .sub-hero-scrim3 {
  width: 100%;
  position: absolute;
}
body.specialty-ortho .hero .hero-media.specialty-hero.ortho .sub-hero-image .sub-hero-scrim3 {
  top: 0;
  height: 50px;
  background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  opacity: 0.25;
}
@media (max-width: 991px) {
  body.specialty-ortho .hero .hero-media.specialty-hero.ortho .sub-hero-image .sub-hero-scrim3 {
    height: 20px;
    background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  }
}
body.specialty-ortho .hero .hero-media.specialty-hero.ortho .sub-hero-image .sub-hero-scrim2 {
  bottom: 0;
  height: 100%;
  background: linear-gradient(0deg, rgb(21, 23, 58) 0%, rgba(0, 23, 193, 0) 45%);
  mix-blend-mode: multiply;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  body.specialty-ortho .hero .hero-media.specialty-hero.ortho .sub-hero-image .sub-hero-scrim2 {
    top: unset;
    bottom: 0;
    opacity: 0.8;
    height: 50%;
    background: linear-gradient(0deg, rgb(17, 19, 18) 30%, rgba(44, 50, 44, 0) 80%);
  }
}
@media (min-width: 992px) {
  body.specialty-ortho .hero .hero-media.specialty-hero.ortho .sub-hero-image .sub-hero-scrim2 {
    opacity: 0.3;
  }
}
body.specialty-ortho .hero .hero-media.specialty-hero.ortho .sub-hero-image .sub-hero-scrim1 {
  bottom: 0;
  height: 100%;
  mix-blend-mode: multiply;
  background: linear-gradient(226deg, rgba(1, 18, 28, 0) 43%, rgb(32, 40, 65) 62.02%);
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  body.specialty-ortho .hero .hero-media.specialty-hero.ortho .sub-hero-image .sub-hero-scrim1 {
    display: none;
  }
}
@media (min-width: 768px) {
  body.specialty-ortho .hero .hero-media.specialty-hero.ortho .sub-hero-image .sub-hero-scrim1 {
    background: linear-gradient(309deg, rgba(1, 18, 28, 0) 50%, rgb(32, 40, 65) 70%);
    opacity: 0.6;
  }
}

body.specialty-virtual-care {
  --image-position: 25% 35%;
}
@media (min-width: 480px) {
  body.specialty-virtual-care {
    --image-position: 15% 35%;
  }
}
@media (min-width: 1100px) {
  body.specialty-virtual-care {
    --image-position: 0% 50%;
  }
}

:root {
  --path-size:0px;
}

body.specialty-virtual-care .path-container {
  display: flex;
  z-index: 20;
  position: absolute;
  -webkit-mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/77c13228fa7f483a83edfe3f90331fa0?v=a1e835c8);
          mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/77c13228fa7f483a83edfe3f90331fa0?v=a1e835c8);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: var(--image-position);
          mask-position: var(--image-position);
}
body.specialty-virtual-care .path-container .path-col {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
}
body.specialty-virtual-care .path-container .path-row {
  display: flex;
  flex: 1 1 100%;
}
body.specialty-virtual-care .path-container .path-cap {
  width: var(--path-size);
  height: var(--path-size);
  display: none;
  position: relative;
}
body.specialty-virtual-care .path-container .path-fill {
  width: 100%;
  height: 100%;
}
body.specialty-virtual-care .path-container .cap-fill {
  width: var(--path-size);
  height: var(--path-size);
}
body.specialty-virtual-care .path-container .cap-flip {
  width: var(--path-size);
  height: var(--path-size);
  position: absolute;
  top: 0;
}

body.specialty-virtual-care .path-container {
  padding-right: 10%;
  padding-left: 0;
  width: 100%;
  height: 100%;
  --path-size:15px;
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(even) {
  flex: 0 0 var(--path-size);
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(odd) .path-row:nth-of-type(2) {
  flex: 0 0 var(--path-size);
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(6) {
  display: none;
}
@media (min-width: 768px) {
  body.specialty-virtual-care .path-container {
    --path-size:20px;
  }
}
@media (min-width: 992px) {
  body.specialty-virtual-care .path-container {
    --path-size:25px;
  }
}
@media (min-width: 768px) {
  body.specialty-virtual-care .path-container {
    padding-right: 5%;
  }
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(1) {
  flex: 1 1 40%;
}
@media (min-width: 768px) {
  body.specialty-virtual-care .path-container .path-col:nth-of-type(1) {
    flex: 1 1 100%;
  }
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(1) .path-row {
  flex-direction: column;
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-virtual-care .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
    flex: 0 0 30%;
  }
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) .path-fill {
  background: rgb(255, 183, 27);
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(2) .path-row {
  flex-direction: column;
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-virtual-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
    flex: 0 0 30%;
  }
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
  flex: 0 0 25%;
}
@media (min-width: 768px) {
  body.specialty-virtual-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
    flex: 0 0 30%;
  }
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) .cap-flip {
  background: linear-gradient(45deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
  background: linear-gradient(225deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-fill {
  background: rgb(63, 159, 144);
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(3) .path-row {
  flex-direction: column;
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
  flex: 0 0 calc(40% - var(--path-size));
}
@media (min-width: 768px) {
  body.specialty-virtual-care .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
    flex: 0 0 calc(60% - var(--path-size));
  }
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2) {
  position: relative;
  flex-direction: row;
  justify-content: center;
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2) .path-fill {
  background: rgb(213, 100, 122);
}
@media (min-width: 768px) {
  body.specialty-virtual-care .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2):after {
    content: "You're a pro at being proactive.  Take charge of your wellness with MyBSWHealth.";
    position: absolute;
    font-size: var(--hero-subtext-size);
    color: #fff;
    top: calc(var(--path-size) * 2);
    width: 90%;
    letter-spacing: -1px;
    line-height: 1;
    display: flex;
    justify-content: center;
    text-wrap: balance;
    line-height: 1.2;
    filter: var(--hero-text-shadow);
  }
  body.specialty-virtual-care .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2):before {
    content: "Virtual Care";
    position: absolute;
    font-size: var(--hero-text-size);
    color: #fff;
    bottom: calc(var(--path-size) / 2);
    width: 90%;
    letter-spacing: -1px;
    line-height: 1;
    text-wrap: balance;
    filter: var(--hero-text-shadow);
  }
}
@media (min-width: 1000px) {
  body.specialty-virtual-care .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2):before {
    width: 80%;
  }
}
@media (min-width: 1000px) {
  body.specialty-virtual-care .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2):after {
    width: 80%;
  }
}
@media (min-width: 768px) {
  body.specialty-virtual-care .path-container .path-col:nth-of-type(3) {
    flex: 1 1 75%;
  }
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(4) .path-row {
  flex-direction: column;
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
  flex: 0 0 5%;
}
@media (min-width: 768px) {
  body.specialty-virtual-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
    flex: 0 0 10%;
  }
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
  flex: 0 0 35%;
}
@media (min-width: 768px) {
  body.specialty-virtual-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
    flex: 0 0 50%;
  }
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
  background: linear-gradient(135deg, rgb(213, 100, 122) 0%, rgb(213, 100, 122) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(5) {
  flex: 1 1 10%;
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(1) {
  flex: 0 0 0%;
}
body.specialty-virtual-care .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(2) {
  flex: 0 0 0%;
}
body.specialty-virtual-care .hero .hero-media.specialty-hero.virtual-care .sub-hero-image .sub-hero-scrim1,
body.specialty-virtual-care .hero .hero-media.specialty-hero.virtual-care .sub-hero-image .sub-hero-scrim2,
body.specialty-virtual-care .hero .hero-media.specialty-hero.virtual-care .sub-hero-image .sub-hero-scrim3 {
  width: 100%;
  position: absolute;
}
body.specialty-virtual-care .hero .hero-media.specialty-hero.virtual-care .sub-hero-image .sub-hero-scrim3 {
  top: 0;
  height: 50px;
  background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  opacity: 0.25;
}
@media (max-width: 991px) {
  body.specialty-virtual-care .hero .hero-media.specialty-hero.virtual-care .sub-hero-image .sub-hero-scrim3 {
    height: 20px;
    background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  }
}
body.specialty-virtual-care .hero .hero-media.specialty-hero.virtual-care .sub-hero-image .sub-hero-scrim2 {
  bottom: 0;
  height: 100%;
  background: linear-gradient(0deg, rgb(21, 23, 58) 0%, rgba(0, 23, 193, 0) 45%);
  mix-blend-mode: multiply;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  body.specialty-virtual-care .hero .hero-media.specialty-hero.virtual-care .sub-hero-image .sub-hero-scrim2 {
    top: unset;
    bottom: 0;
    opacity: 0.8;
    height: 60%;
    background: linear-gradient(0deg, rgb(17, 19, 18) 30%, rgba(44, 50, 44, 0) 80%);
  }
}
@media (min-width: 992px) {
  body.specialty-virtual-care .hero .hero-media.specialty-hero.virtual-care .sub-hero-image .sub-hero-scrim2 {
    opacity: 0.3;
  }
}
body.specialty-virtual-care .hero .hero-media.specialty-hero.virtual-care .sub-hero-image .sub-hero-scrim1 {
  bottom: 0;
  height: 100%;
  mix-blend-mode: multiply;
  background: linear-gradient(226deg, rgba(1, 18, 28, 0) 43%, rgb(32, 40, 65) 62.02%);
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  body.specialty-virtual-care .hero .hero-media.specialty-hero.virtual-care .sub-hero-image .sub-hero-scrim1 {
    display: none;
  }
}
@media (min-width: 768px) {
  body.specialty-virtual-care .hero .hero-media.specialty-hero.virtual-care .sub-hero-image .sub-hero-scrim1 {
    background: linear-gradient(50deg, rgba(1, 18, 28, 0) 50%, rgb(32, 40, 65) 70%);
    opacity: 0.45;
  }
}

body.specialty-primary-care {
  --image-position: 80% 20%;
}
@media (min-width: 1200px) {
  body.specialty-primary-care {
    --image-position: 100% 40%;
  }
}

:root {
  --path-size:0px;
}

body.specialty-primary-care .path-container {
  display: flex;
  z-index: 20;
  position: absolute;
  -webkit-mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/64f88e273fe245539356321663c2272f?v=f0279e9a);
          mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/64f88e273fe245539356321663c2272f?v=f0279e9a);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: var(--image-position);
          mask-position: var(--image-position);
}
body.specialty-primary-care .path-container .path-col {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
}
body.specialty-primary-care .path-container .path-row {
  display: flex;
  flex: 1 1 100%;
}
body.specialty-primary-care .path-container .path-cap {
  width: var(--path-size);
  height: var(--path-size);
  display: none;
  position: relative;
}
body.specialty-primary-care .path-container .path-fill {
  width: 100%;
  height: 100%;
}
body.specialty-primary-care .path-container .cap-fill {
  width: var(--path-size);
  height: var(--path-size);
}
body.specialty-primary-care .path-container .cap-flip {
  width: var(--path-size);
  height: var(--path-size);
  position: absolute;
  top: 0;
}

body.specialty-primary-care .path-container {
  padding-right: 10%;
  padding-left: 0;
  width: 100%;
  height: 100%;
  --path-size:15px;
}
body.specialty-primary-care .path-container .path-col:nth-of-type(even) {
  flex: 0 0 var(--path-size);
}
body.specialty-primary-care .path-container .path-col:nth-of-type(odd) .path-row:nth-of-type(2) {
  flex: 0 0 var(--path-size);
}
body.specialty-primary-care .path-container .path-col:nth-of-type(6) {
  display: none;
}
@media (min-width: 768px) {
  body.specialty-primary-care .path-container {
    --path-size:20px;
  }
}
@media (min-width: 992px) {
  body.specialty-primary-care .path-container {
    --path-size:25px;
  }
}
@media (min-width: 768px) {
  body.specialty-primary-care .path-container {
    padding-left: 5%;
    padding-right: 0;
  }
}
body.specialty-primary-care .path-container .path-col:nth-of-type(1) {
  flex: 1 1 20%;
}
@media (min-width: 768px) {
  body.specialty-primary-care .path-container .path-col:nth-of-type(1) {
    flex: 1 1 80%;
  }
}
body.specialty-primary-care .path-container .path-col:nth-of-type(1) .path-row {
  flex-direction: column;
}
body.specialty-primary-care .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-primary-care .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
    flex: 0 0 30%;
  }
}
body.specialty-primary-care .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) {
  flex-direction: row;
  position: relative;
  justify-content: center;
}
@media (min-width: 768px) {
  body.specialty-primary-care .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
    display: block;
    background: linear-gradient(225deg, rgb(143, 101, 156) 0%, rgb(143, 101, 156) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  }
}
body.specialty-primary-care .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) .path-fill {
  background: rgb(143, 101, 156);
}
@media (min-width: 768px) {
  body.specialty-primary-care .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):after {
    content: "Stay on track with regular checkups. Get a jump on your wellness with primary care.";
    position: absolute;
    font-size: var(--hero-subtext-size);
    color: #fff;
    top: calc(var(--path-size) * 2);
    width: 90%;
    letter-spacing: -1px;
    line-height: 1;
    display: flex;
    justify-content: center;
    text-wrap: balance;
    filter: var(--hero-text-shadow);
  }
}
@media (min-width: 768px) and (min-width: 1000px) {
  body.specialty-primary-care .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):after {
    width: 80%;
  }
}
@media (min-width: 768px) {
  body.specialty-primary-care .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):before {
    content: "Primary Care";
    position: absolute;
    font-size: var(--hero-text-size);
    color: #fff;
    bottom: calc(var(--path-size) / 2);
    width: 90%;
    letter-spacing: -1px;
    line-height: 1;
    text-wrap: balance;
    filter: var(--hero-text-shadow);
  }
}
@media (min-width: 768px) and (min-width: 1000px) {
  body.specialty-primary-care .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):before {
    width: 80%;
  }
}
body.specialty-primary-care .path-container .path-col:nth-of-type(2) .path-row {
  flex-direction: column;
}
body.specialty-primary-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-primary-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
    flex: 0 0 30%;
  }
}
body.specialty-primary-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
  flex: 0 0 25%;
}
@media (min-width: 768px) {
  body.specialty-primary-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
    flex: 0 0 30%;
  }
}
body.specialty-primary-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-primary-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) .cap-flip {
  background: linear-gradient(45deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-primary-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
body.specialty-primary-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
  background: linear-gradient(225deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-primary-care .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-fill {
  background: rgb(63, 159, 144);
}
body.specialty-primary-care .path-container .path-col:nth-of-type(3) .path-row {
  flex-direction: column;
}
body.specialty-primary-care .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
  flex: 0 0 calc(40% - var(--path-size));
}
@media (min-width: 768px) {
  body.specialty-primary-care .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
    flex: 0 0 calc(60% - var(--path-size));
  }
}
body.specialty-primary-care .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2) {
  position: relative;
}
body.specialty-primary-care .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2) .path-fill {
  background: rgb(255, 183, 27);
}
body.specialty-primary-care .path-container .path-col:nth-of-type(4) .path-row {
  flex-direction: column;
}
body.specialty-primary-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
  flex: 0 0 5%;
}
@media (min-width: 768px) {
  body.specialty-primary-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
    flex: 0 0 10%;
  }
}
body.specialty-primary-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
  flex: 0 0 35%;
}
@media (min-width: 768px) {
  body.specialty-primary-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
    flex: 0 0 50%;
  }
}
body.specialty-primary-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-primary-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
@media (min-width: 768px) {
  body.specialty-primary-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-fill {
    background: rgb(255, 183, 27);
  }
}
@media (max-width: 767px) {
  body.specialty-primary-care .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
    background: linear-gradient(135deg, rgb(255, 183, 27) 0%, rgb(255, 183, 27) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  }
}
body.specialty-primary-care .path-container .path-col:nth-of-type(5) {
  flex: 1 1 10%;
}
body.specialty-primary-care .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(1) {
  flex: 0 0 0%;
}
body.specialty-primary-care .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(2) {
  flex: 0 0 0%;
}
body.specialty-primary-care .hero .hero-media .sub-hero-image .sub-hero-scrim1,
body.specialty-primary-care .hero .hero-media .sub-hero-image .sub-hero-scrim2,
body.specialty-primary-care .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
  width: 100%;
  position: absolute;
}
body.specialty-primary-care .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
  top: 0;
  height: 50px;
  background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  opacity: 0.25;
}
@media (max-width: 991px) {
  body.specialty-primary-care .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
    height: 20px;
    background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  }
}
body.specialty-primary-care .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
  bottom: 0;
  height: 100%;
  background: linear-gradient(0deg, rgb(21, 23, 58) 0%, rgba(0, 23, 193, 0) 45%);
  mix-blend-mode: multiply;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  body.specialty-primary-care .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
    top: unset;
    bottom: 0;
    opacity: 0.8;
    height: 60%;
    background: linear-gradient(0deg, rgb(17, 19, 18) 30%, rgba(44, 50, 44, 0) 80%);
  }
}
@media (min-width: 992px) {
  body.specialty-primary-care .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
    opacity: 0.3;
  }
}
body.specialty-primary-care .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
  bottom: 0;
  height: 100%;
  mix-blend-mode: multiply;
  background: linear-gradient(226deg, rgba(1, 18, 28, 0) 43%, rgb(32, 40, 65) 62.02%);
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  body.specialty-primary-care .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
    display: none;
  }
}
@media (min-width: 768px) {
  body.specialty-primary-care .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
    background: linear-gradient(309deg, rgba(1, 18, 28, 0) 50%, rgb(32, 40, 65) 70%);
    opacity: 0.6;
  }
}

body.specialty-heart-and-vascular {
  --image-position: 80% 35%;
}
@media (min-width: 480px) {
  body.specialty-heart-and-vascular {
    --image-position: 70% 35%;
  }
}
@media (min-width: 1100px) {
  body.specialty-heart-and-vascular {
    --image-position: 0% 10%;
  }
}
@media (min-width: 1200px) {
  body.specialty-heart-and-vascular {
    --hero-text-size: 38px;
  }
}

:root {
  --path-size:0px;
}

body.specialty-heart-and-vascular .path-container {
  display: flex;
  z-index: 20;
  position: absolute;
  -webkit-mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/15137824fb984315877c36eb35e73d87?v=d9b4ac8f);
          mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/15137824fb984315877c36eb35e73d87?v=d9b4ac8f);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: var(--image-position);
          mask-position: var(--image-position);
}
body.specialty-heart-and-vascular .path-container .path-col {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
}
body.specialty-heart-and-vascular .path-container .path-row {
  display: flex;
  flex: 1 1 100%;
}
body.specialty-heart-and-vascular .path-container .path-cap {
  width: var(--path-size);
  height: var(--path-size);
  display: none;
  position: relative;
}
body.specialty-heart-and-vascular .path-container .path-fill {
  width: 100%;
  height: 100%;
}
body.specialty-heart-and-vascular .path-container .cap-fill {
  width: var(--path-size);
  height: var(--path-size);
}
body.specialty-heart-and-vascular .path-container .cap-flip {
  width: var(--path-size);
  height: var(--path-size);
  position: absolute;
  top: 0;
}

body.specialty-heart-and-vascular .path-container {
  padding-right: 5%;
  width: 100%;
  height: 100%;
  --path-size:15px;
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(even) {
  flex: 0 0 var(--path-size);
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(odd) .path-row:nth-of-type(2) {
  flex: 0 0 var(--path-size);
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(6) {
  display: none;
}
@media (min-width: 768px) {
  body.specialty-heart-and-vascular .path-container {
    --path-size:20px;
  }
}
@media (min-width: 992px) {
  body.specialty-heart-and-vascular .path-container {
    --path-size:25px;
  }
}
@media (min-width: 768px) {
  body.specialty-heart-and-vascular .path-container {
    padding-left: 5%;
    padding-right: 0;
  }
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(1) {
  flex: 1 1 20%;
}
@media (min-width: 480px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(1) {
    flex: 1 1 40%;
  }
}
@media (min-width: 768px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(1) {
    flex: 1 1 75%;
  }
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(1) .path-row {
  flex-direction: column;
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
    flex: 0 0 30%;
  }
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) {
  flex-direction: row;
  position: relative;
  flex-direction: row;
  position: relative;
  justify-content: center;
}
@media (min-width: 768px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):after {
    content: "Care for your heart and it takes care of you. Lay the groundwork for your cardiovascular care.";
    position: absolute;
    font-size: var(--hero-subtext-size);
    color: #fff;
    top: calc(var(--path-size) * 2);
    width: 90%;
    letter-spacing: -1px;
    line-height: 1;
    display: flex;
    justify-content: center;
    text-wrap: balance;
    line-height: 1.2;
    filter: var(--hero-text-shadow);
  }
}
@media (min-width: 768px) and (min-width: 1000px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):after {
    width: 80%;
  }
}
@media (min-width: 768px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):before {
    content: "Heart and Vascular Care";
    position: absolute;
    font-size: var(--hero-text-size);
    color: #fff;
    bottom: calc(var(--path-size) / 2);
    width: 90%;
    letter-spacing: -1px;
    line-height: 1;
    text-wrap: balance;
    filter: var(--hero-text-shadow);
  }
}
@media (min-width: 768px) and (min-width: 1000px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):before {
    width: 80%;
  }
}
@media (min-width: 768px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
    display: flex;
    background: linear-gradient(225deg, rgb(143, 101, 156) 0%, rgb(143, 101, 156) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  }
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) .path-fill {
  background: rgb(143, 101, 156);
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(2) .path-row {
  flex-direction: column;
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
    flex: 0 0 30%;
  }
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
  flex: 0 0 25%;
}
@media (min-width: 768px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
    flex: 0 0 30%;
  }
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) .cap-flip {
  background: linear-gradient(45deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
  background: linear-gradient(225deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-fill {
  background: rgb(255, 183, 27);
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(3) .path-row {
  flex-direction: column;
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
  flex: 0 0 calc(40% - var(--path-size));
}
@media (min-width: 768px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
    flex: 0 0 calc(60% - var(--path-size));
  }
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2) .path-fill {
  background: rgb(63, 159, 144);
}
@media (min-width: 768px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(3) {
    flex: 1 1 100%;
  }
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(4) .path-row {
  flex-direction: column;
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
  flex: 0 0 5%;
}
@media (min-width: 768px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
    flex: 0 0 10%;
  }
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
  flex: 0 0 35%;
}
@media (min-width: 768px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
    flex: 0 0 50%;
  }
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
@media (max-width: 767px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
    display: block;
  }
}
@media (min-width: 768px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-fill {
    background: rgb(63, 159, 144);
  }
}
@media (max-width: 767px) {
  body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
    background: linear-gradient(135deg, rgb(63, 159, 144) 0%, rgb(63, 159, 144) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  }
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(5) {
  flex: 1 1 10%;
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(1) {
  flex: 0 0 0%;
}
body.specialty-heart-and-vascular .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(2) {
  flex: 0 0 0%;
}
body.specialty-heart-and-vascular .hero .hero-media.specialty-hero.heart-and-vascular .sub-hero-image .sub-hero-scrim1,
body.specialty-heart-and-vascular .hero .hero-media.specialty-hero.heart-and-vascular .sub-hero-image .sub-hero-scrim2,
body.specialty-heart-and-vascular .hero .hero-media.specialty-hero.heart-and-vascular .sub-hero-image .sub-hero-scrim3 {
  width: 100%;
  position: absolute;
}
body.specialty-heart-and-vascular .hero .hero-media.specialty-hero.heart-and-vascular .sub-hero-image .sub-hero-scrim3 {
  top: 0;
  height: 50px;
  background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  opacity: 0.25;
}
@media (max-width: 991px) {
  body.specialty-heart-and-vascular .hero .hero-media.specialty-hero.heart-and-vascular .sub-hero-image .sub-hero-scrim3 {
    height: 20px;
    background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  }
}
body.specialty-heart-and-vascular .hero .hero-media.specialty-hero.heart-and-vascular .sub-hero-image .sub-hero-scrim2 {
  bottom: 0;
  height: 100%;
  background: linear-gradient(0deg, rgb(21, 23, 58) 0%, rgba(0, 23, 193, 0) 45%);
  mix-blend-mode: multiply;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  body.specialty-heart-and-vascular .hero .hero-media.specialty-hero.heart-and-vascular .sub-hero-image .sub-hero-scrim2 {
    top: unset;
    bottom: 0;
    opacity: 0.8;
    height: 60%;
    background: linear-gradient(0deg, rgb(17, 19, 18) 30%, rgba(44, 50, 44, 0) 80%);
  }
}
@media (min-width: 992px) {
  body.specialty-heart-and-vascular .hero .hero-media.specialty-hero.heart-and-vascular .sub-hero-image .sub-hero-scrim2 {
    opacity: 0.3;
  }
}
body.specialty-heart-and-vascular .hero .hero-media.specialty-hero.heart-and-vascular .sub-hero-image .sub-hero-scrim1 {
  bottom: 0;
  height: 100%;
  mix-blend-mode: multiply;
  background: linear-gradient(226deg, rgba(1, 18, 28, 0) 43%, rgb(32, 40, 65) 62.02%);
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  body.specialty-heart-and-vascular .hero .hero-media.specialty-hero.heart-and-vascular .sub-hero-image .sub-hero-scrim1 {
    display: none;
  }
}
@media (min-width: 768px) {
  body.specialty-heart-and-vascular .hero .hero-media.specialty-hero.heart-and-vascular .sub-hero-image .sub-hero-scrim1 {
    background: linear-gradient(320deg, rgba(1, 18, 28, 0) 50%, rgb(32, 40, 65) 70%);
    opacity: 0.4;
  }
}

body.specialty-gastro {
  --mask-path: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/694f08f62d3f4548838289f517bebfe0?v=6493b53f);
  --image-position: 80% 35%;
}
@media (min-width: 480px) {
  body.specialty-gastro {
    --image-position: 70% 5%;
  }
}
@media (min-width: 1100px) {
  body.specialty-gastro {
    --image-position: 0% 10%;
  }
}

:root {
  --path-size:0px;
}

body.specialty-gastro .path-container {
  display: flex;
  z-index: 20;
  position: absolute;
  -webkit-mask-image: var(--mask-path);
          mask-image: var(--mask-path);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: var(--image-position);
          mask-position: var(--image-position);
}
body.specialty-gastro .path-container .path-col {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
}
body.specialty-gastro .path-container .path-row {
  display: flex;
  flex: 1 1 100%;
}
body.specialty-gastro .path-container .path-cap {
  width: var(--path-size);
  height: var(--path-size);
  display: none;
  position: relative;
}
body.specialty-gastro .path-container .path-fill {
  width: 100%;
  height: 100%;
}
body.specialty-gastro .path-container .cap-fill {
  width: var(--path-size);
  height: var(--path-size);
}
body.specialty-gastro .path-container .cap-flip {
  width: var(--path-size);
  height: var(--path-size);
  position: absolute;
  top: 0;
}

body.specialty-gastro .path-container {
  padding-right: 5%;
  width: 100%;
  height: 100%;
  --path-size:15px;
}
body.specialty-gastro .path-container .path-col:nth-of-type(even) {
  flex: 0 0 var(--path-size);
}
body.specialty-gastro .path-container .path-col:nth-of-type(odd) .path-row:nth-of-type(2) {
  flex: 0 0 var(--path-size);
}
body.specialty-gastro .path-container .path-col:nth-of-type(6) {
  display: none;
}
@media (min-width: 768px) {
  body.specialty-gastro .path-container {
    --path-size:20px;
  }
}
@media (min-width: 992px) {
  body.specialty-gastro .path-container {
    --path-size:25px;
  }
}
@media (min-width: 768px) {
  body.specialty-gastro .path-container {
    padding-left: 5%;
    padding-right: 0;
  }
}
body.specialty-gastro .path-container .path-col:nth-of-type(1) {
  flex: 1 1 20%;
}
@media (min-width: 480px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(1) {
    flex: 1 1 40%;
  }
}
@media (min-width: 768px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(1) {
    flex: 1 1 70%;
  }
}
body.specialty-gastro .path-container .path-col:nth-of-type(1) .path-row {
  flex-direction: column;
}
body.specialty-gastro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
    flex: 0 0 30%;
  }
}
body.specialty-gastro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) {
  flex-direction: row;
  position: relative;
  flex-direction: row;
  position: relative;
  justify-content: center;
}
@media (min-width: 768px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):after {
    content: "Be your best without holding back. Find support and balance with comprehensive digestive care.";
    position: absolute;
    font-size: var(--hero-subtext-size);
    color: #fff;
    top: calc(var(--path-size) * 2);
    width: 90%;
    letter-spacing: -1px;
    line-height: 1;
    display: flex;
    justify-content: center;
    text-wrap: balance;
    line-height: 1.2;
    letter-spacing: -0.25px;
    filter: var(--hero-text-shadow);
  }
}
@media (min-width: 768px) and (min-width: 1000px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):after {
    width: 80%;
  }
}
@media (min-width: 768px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):before {
    content: "Gastroenterology";
    position: absolute;
    font-size: var(--hero-text-size);
    color: #fff;
    bottom: calc(var(--path-size) / 2);
    width: 90%;
    letter-spacing: -1px;
    line-height: 1;
    text-wrap: balance;
    filter: var(--hero-text-shadow);
  }
}
@media (min-width: 768px) and (min-width: 1000px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):before {
    width: 80%;
  }
}
@media (min-width: 768px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
    display: flex;
    background: linear-gradient(225deg, rgb(213, 100, 122) 0%, rgb(213, 100, 122) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  }
}
body.specialty-gastro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) .path-fill {
  background: rgb(213, 100, 122);
}
body.specialty-gastro .path-container .path-col:nth-of-type(2) .path-row {
  flex-direction: column;
}
body.specialty-gastro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
    flex: 0 0 30%;
  }
}
body.specialty-gastro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
  flex: 0 0 35%;
}
@media (min-width: 768px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
    flex: 0 0 40%;
  }
}
body.specialty-gastro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-gastro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) .cap-flip {
  background: linear-gradient(45deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-gastro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
body.specialty-gastro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
  background: linear-gradient(225deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-gastro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-fill {
  background: rgb(255, 183, 27);
}
body.specialty-gastro .path-container .path-col:nth-of-type(3) .path-row {
  flex-direction: column;
}
body.specialty-gastro .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
  flex: 0 0 calc(50% - var(--path-size));
}
@media (min-width: 768px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
    flex: 0 0 calc(70% - var(--path-size));
  }
}
body.specialty-gastro .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2) .path-fill {
  background: rgb(255, 149, 39);
}
@media (min-width: 768px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(3) {
    flex: 1 1 100%;
  }
}
body.specialty-gastro .path-container .path-col:nth-of-type(4) .path-row {
  flex-direction: column;
}
body.specialty-gastro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
  flex: 0 0 5%;
}
@media (min-width: 768px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
    flex: 0 0 10%;
  }
}
body.specialty-gastro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
  flex: 0 0 45%;
}
@media (min-width: 768px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
    flex: 0 0 60%;
  }
}
body.specialty-gastro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-gastro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
@media (max-width: 767px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
    display: block;
  }
}
@media (min-width: 768px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-fill {
    background: rgb(255, 149, 39);
  }
}
@media (max-width: 767px) {
  body.specialty-gastro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
    background: linear-gradient(135deg, rgb(255, 149, 39) 0%, rgb(255, 149, 39) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  }
}
body.specialty-gastro .path-container .path-col:nth-of-type(5) {
  flex: 1 1 10%;
}
body.specialty-gastro .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(1) {
  flex: 0 0 0%;
}
body.specialty-gastro .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(2) {
  flex: 0 0 0%;
}
body.specialty-gastro .hero .hero-media .sub-hero-image .sub-hero-scrim1,
body.specialty-gastro .hero .hero-media .sub-hero-image .sub-hero-scrim2,
body.specialty-gastro .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
  width: 100%;
  position: absolute;
}
body.specialty-gastro .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
  top: 0;
  height: 50px;
  background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  opacity: 0.25;
}
@media (max-width: 991px) {
  body.specialty-gastro .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
    height: 20px;
    background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  }
}
body.specialty-gastro .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
  bottom: 0;
  height: 100%;
  background: linear-gradient(0deg, rgb(21, 23, 58) 0%, rgba(0, 23, 193, 0) 45%);
  mix-blend-mode: multiply;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  body.specialty-gastro .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
    top: unset;
    bottom: 0;
    opacity: 0.8;
    height: 60%;
    background: linear-gradient(0deg, rgb(17, 19, 18) 30%, rgba(44, 50, 44, 0) 80%);
  }
}
@media (min-width: 992px) {
  body.specialty-gastro .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
    opacity: 0.3;
  }
}
body.specialty-gastro .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
  bottom: 0;
  height: 100%;
  mix-blend-mode: multiply;
  background: linear-gradient(226deg, rgba(1, 18, 28, 0) 43%, rgb(32, 40, 65) 62.02%);
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  body.specialty-gastro .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
    display: none;
  }
}
@media (min-width: 768px) {
  body.specialty-gastro .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
    background: linear-gradient(320deg, rgba(1, 18, 28, 0) 50%, rgb(32, 40, 65) 70%);
    opacity: 0.4;
  }
}

body.specialty-womens-health {
  --image-position: 25% 35%;
}
@media (min-width: 480px) {
  body.specialty-womens-health {
    --image-position: 15% 35%;
  }
}
@media (min-width: 1100px) {
  body.specialty-womens-health {
    --image-position: 0% 30%;
  }
}

:root {
  --path-size:0px;
}

body.specialty-womens-health .path-container {
  display: flex;
  z-index: 20;
  position: absolute;
  -webkit-mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/ced24340cc574e7e8c84368cad200f0b?v=83d62b54);
          mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/ced24340cc574e7e8c84368cad200f0b?v=83d62b54);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: var(--image-position);
          mask-position: var(--image-position);
}
body.specialty-womens-health .path-container .path-col {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
}
body.specialty-womens-health .path-container .path-row {
  display: flex;
  flex: 1 1 100%;
}
body.specialty-womens-health .path-container .path-cap {
  width: var(--path-size);
  height: var(--path-size);
  display: none;
  position: relative;
}
body.specialty-womens-health .path-container .path-fill {
  width: 100%;
  height: 100%;
}
body.specialty-womens-health .path-container .cap-fill {
  width: var(--path-size);
  height: var(--path-size);
}
body.specialty-womens-health .path-container .cap-flip {
  width: var(--path-size);
  height: var(--path-size);
  position: absolute;
  top: 0;
}

body.specialty-womens-health .path-container {
  padding-right: 5%;
  padding-left: 0;
  width: 100%;
  height: 100%;
  --path-size:15px;
}
body.specialty-womens-health .path-container .path-col:nth-of-type(even) {
  flex: 0 0 var(--path-size);
}
body.specialty-womens-health .path-container .path-col:nth-of-type(odd) .path-row:nth-of-type(2) {
  flex: 0 0 var(--path-size);
}
body.specialty-womens-health .path-container .path-col:nth-of-type(6) {
  display: none;
}
@media (min-width: 768px) {
  body.specialty-womens-health .path-container {
    --path-size:20px;
  }
}
@media (min-width: 992px) {
  body.specialty-womens-health .path-container {
    --path-size:25px;
  }
}
@media (min-width: 768px) {
  body.specialty-womens-health .path-container {
    padding-right: 5%;
  }
}
body.specialty-womens-health .path-container .path-col:nth-of-type(1) {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  body.specialty-womens-health .path-container .path-col:nth-of-type(1) {
    flex: 1 1 100%;
  }
}
body.specialty-womens-health .path-container .path-col:nth-of-type(1) .path-row {
  flex-direction: column;
}
body.specialty-womens-health .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-womens-health .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
    flex: 0 0 30%;
  }
}
body.specialty-womens-health .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) .path-fill {
  background: rgb(255, 183, 27);
}
body.specialty-womens-health .path-container .path-col:nth-of-type(2) .path-row {
  flex-direction: column;
}
body.specialty-womens-health .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-womens-health .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
    flex: 0 0 30%;
  }
}
body.specialty-womens-health .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
  flex: 0 0 25%;
}
@media (min-width: 768px) {
  body.specialty-womens-health .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
    flex: 0 0 30%;
  }
}
body.specialty-womens-health .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-womens-health .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) .cap-flip {
  background: linear-gradient(45deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-womens-health .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
body.specialty-womens-health .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
  background: linear-gradient(225deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-womens-health .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-fill {
  background: rgb(255, 149, 39);
}
body.specialty-womens-health .path-container .path-col:nth-of-type(3) .path-row {
  flex-direction: column;
}
body.specialty-womens-health .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
  flex: 0 0 calc(40% - var(--path-size));
}
@media (min-width: 768px) {
  body.specialty-womens-health .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
    flex: 0 0 calc(60% - var(--path-size));
  }
}
body.specialty-womens-health .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2) {
  position: relative;
  flex-direction: row;
  position: relative;
  justify-content: center;
}
body.specialty-womens-health .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2) .path-fill {
  background: rgb(213, 100, 122);
}
@media (min-width: 768px) {
  body.specialty-womens-health .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2):after {
    content: "Cherish every chapter of your story. Women’s care for every stage.";
    position: absolute;
    font-size: var(--hero-subtext-size);
    color: #fff;
    top: calc(var(--path-size) * 2);
    width: 90%;
    letter-spacing: -1px;
    line-height: 1;
    display: flex;
    justify-content: center;
    text-wrap: balance;
    line-height: 1.2;
    filter: var(--hero-text-shadow);
  }
}
@media (min-width: 768px) and (min-width: 1000px) {
  body.specialty-womens-health .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2):after {
    width: 80%;
  }
}
@media (min-width: 768px) {
  body.specialty-womens-health .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2):before {
    content: "Women's Health";
    position: absolute;
    font-size: var(--hero-text-size);
    color: #fff;
    bottom: calc(var(--path-size) / 2);
    width: 90%;
    letter-spacing: -1px;
    line-height: 1;
    text-wrap: balance;
    filter: var(--hero-text-shadow);
  }
}
@media (min-width: 768px) and (min-width: 1000px) {
  body.specialty-womens-health .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2):before {
    width: 80%;
  }
}
@media (min-width: 768px) {
  body.specialty-womens-health .path-container .path-col:nth-of-type(3) {
    flex: 1 1 65%;
  }
}
body.specialty-womens-health .path-container .path-col:nth-of-type(4) .path-row {
  flex-direction: column;
}
body.specialty-womens-health .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
  flex: 0 0 5%;
}
@media (min-width: 768px) {
  body.specialty-womens-health .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
    flex: 0 0 10%;
  }
}
body.specialty-womens-health .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
  flex: 0 0 35%;
}
@media (min-width: 768px) {
  body.specialty-womens-health .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
    flex: 0 0 50%;
  }
}
body.specialty-womens-health .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-womens-health .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
body.specialty-womens-health .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
  background: linear-gradient(135deg, rgb(213, 100, 122) 0%, rgb(213, 100, 122) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-womens-health .path-container .path-col:nth-of-type(5) {
  flex: 1 1 10%;
}
body.specialty-womens-health .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(1) {
  flex: 0 0 0%;
}
body.specialty-womens-health .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(2) {
  flex: 0 0 0%;
}
body.specialty-womens-health .hero .hero-media .sub-hero-image .sub-hero-scrim1,
body.specialty-womens-health .hero .hero-media .sub-hero-image .sub-hero-scrim2,
body.specialty-womens-health .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
  width: 100%;
  position: absolute;
}
body.specialty-womens-health .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
  top: 0;
  height: 50px;
  background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  opacity: 0.25;
}
@media (max-width: 991px) {
  body.specialty-womens-health .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
    height: 20px;
    background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  }
}
body.specialty-womens-health .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
  bottom: 0;
  height: 100%;
  background: linear-gradient(0deg, rgb(21, 23, 58) 0%, rgba(0, 23, 193, 0) 45%);
  mix-blend-mode: multiply;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  body.specialty-womens-health .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
    top: unset;
    bottom: 0;
    opacity: 0.8;
    height: 60%;
    background: linear-gradient(0deg, rgb(17, 19, 18) 30%, rgba(44, 50, 44, 0) 80%);
  }
}
@media (min-width: 992px) {
  body.specialty-womens-health .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
    opacity: 0.3;
  }
}
body.specialty-womens-health .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
  bottom: 0;
  height: 100%;
  mix-blend-mode: multiply;
  background: linear-gradient(226deg, rgba(1, 18, 28, 0) 43%, rgb(32, 40, 65) 62.02%);
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  body.specialty-womens-health .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
    display: none;
  }
}
@media (min-width: 768px) {
  body.specialty-womens-health .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
    background: linear-gradient(50deg, rgba(1, 18, 28, 0) 50%, rgb(32, 40, 65) 70%);
    opacity: 0.6;
  }
}

body.specialty-neuro {
  --image-position: 80% 35%;
}
@media (min-width: 480px) {
  body.specialty-neuro {
    --image-position: 70% 35%;
  }
}
@media (min-width: 1100px) {
  body.specialty-neuro {
    --image-position: 0% 30%;
  }
}

:root {
  --path-size:0px;
}

body.specialty-neuro .path-container {
  display: flex;
  z-index: 20;
  position: absolute;
  -webkit-mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/a276b6db561b4b70852142b6412400c6?v=17b2a214);
          mask-image: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/a276b6db561b4b70852142b6412400c6?v=17b2a214);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: var(--image-position);
          mask-position: var(--image-position);
}
body.specialty-neuro .path-container .path-col {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
}
body.specialty-neuro .path-container .path-row {
  display: flex;
  flex: 1 1 100%;
}
body.specialty-neuro .path-container .path-cap {
  width: var(--path-size);
  height: var(--path-size);
  display: none;
  position: relative;
}
body.specialty-neuro .path-container .path-fill {
  width: 100%;
  height: 100%;
}
body.specialty-neuro .path-container .cap-fill {
  width: var(--path-size);
  height: var(--path-size);
}
body.specialty-neuro .path-container .cap-flip {
  width: var(--path-size);
  height: var(--path-size);
  position: absolute;
  top: 0;
}

body.specialty-neuro .path-container {
  padding-right: 5%;
  width: 100%;
  height: 100%;
  --path-size:15px;
}
body.specialty-neuro .path-container .path-col:nth-of-type(even) {
  flex: 0 0 var(--path-size);
}
body.specialty-neuro .path-container .path-col:nth-of-type(odd) .path-row:nth-of-type(2) {
  flex: 0 0 var(--path-size);
}
body.specialty-neuro .path-container .path-col:nth-of-type(6) {
  display: none;
}
@media (min-width: 768px) {
  body.specialty-neuro .path-container {
    --path-size:20px;
  }
}
@media (min-width: 992px) {
  body.specialty-neuro .path-container {
    --path-size:25px;
  }
}
@media (min-width: 768px) {
  body.specialty-neuro .path-container {
    padding-left: 5%;
    padding-right: 0;
  }
}
body.specialty-neuro .path-container .path-col:nth-of-type(1) {
  flex: 1 1 20%;
}
@media (min-width: 480px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(1) {
    flex: 1 1 40%;
  }
}
@media (min-width: 768px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(1) {
    flex: 1 1 70%;
  }
}
body.specialty-neuro .path-container .path-col:nth-of-type(1) .path-row {
  flex-direction: column;
}
body.specialty-neuro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(1) {
    flex: 0 0 30%;
  }
}
body.specialty-neuro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) {
  flex-direction: row;
  position: relative;
  flex-direction: row;
  position: relative;
  justify-content: center;
}
@media (min-width: 768px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):after {
    content: "Be at your best for those you care about most. Expert brain diagnosis and support at every step.";
    position: absolute;
    font-size: var(--hero-subtext-size);
    color: #fff;
    top: calc(var(--path-size) * 2);
    width: 90%;
    letter-spacing: -1px;
    line-height: 1;
    display: flex;
    justify-content: center;
    text-wrap: balance;
    line-height: 1.2;
    filter: var(--hero-text-shadow);
  }
}
@media (min-width: 768px) and (min-width: 1000px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):after {
    width: 80%;
  }
}
@media (min-width: 768px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):before {
    content: "Neuroscience";
    position: absolute;
    font-size: var(--hero-text-size);
    color: #fff;
    bottom: calc(var(--path-size) / 2);
    width: 90%;
    letter-spacing: -1px;
    line-height: 1;
    text-wrap: balance;
    filter: var(--hero-text-shadow);
  }
}
@media (min-width: 768px) and (min-width: 1000px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2):before {
    width: 80%;
  }
}
@media (min-width: 768px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
    display: flex;
    background: linear-gradient(225deg, rgb(143, 101, 156) 0%, rgb(143, 101, 156) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  }
}
body.specialty-neuro .path-container .path-col:nth-of-type(1) .path-row:nth-of-type(2) .path-fill {
  background: rgb(143, 101, 156);
}
body.specialty-neuro .path-container .path-col:nth-of-type(2) .path-row {
  flex-direction: column;
}
body.specialty-neuro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
  flex: 0 0 15%;
}
@media (min-width: 768px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(1) {
    flex: 0 0 30%;
  }
}
body.specialty-neuro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
  flex: 0 0 25%;
}
@media (min-width: 768px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) {
    flex: 0 0 30%;
  }
}
body.specialty-neuro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-neuro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) .cap-flip {
  background: linear-gradient(45deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-neuro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
body.specialty-neuro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
  background: linear-gradient(225deg, rgb(221, 221, 221) 0%, rgb(221, 221, 221) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
body.specialty-neuro .path-container .path-col:nth-of-type(2) .path-row:nth-of-type(2) .path-fill {
  background: rgb(255, 183, 27);
}
body.specialty-neuro .path-container .path-col:nth-of-type(3) .path-row {
  flex-direction: column;
}
body.specialty-neuro .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
  flex: 0 0 calc(40% - var(--path-size));
}
@media (min-width: 768px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(1) {
    flex: 0 0 calc(60% - var(--path-size));
  }
}
body.specialty-neuro .path-container .path-col:nth-of-type(3) .path-row:nth-of-type(2) .path-fill {
  background: rgb(213, 100, 122);
}
@media (min-width: 768px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(3) {
    flex: 1 1 100%;
  }
}
body.specialty-neuro .path-container .path-col:nth-of-type(4) .path-row {
  flex-direction: column;
}
body.specialty-neuro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
  flex: 0 0 5%;
}
@media (min-width: 768px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(1) {
    flex: 0 0 10%;
  }
}
body.specialty-neuro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
  flex: 0 0 35%;
}
@media (min-width: 768px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) {
    flex: 0 0 50%;
  }
}
body.specialty-neuro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(1) {
  display: block;
}
body.specialty-neuro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
  display: block;
}
@media (max-width: 767px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) {
    display: block;
  }
}
@media (min-width: 768px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-fill {
    background: rgb(213, 100, 122);
  }
}
@media (max-width: 767px) {
  body.specialty-neuro .path-container .path-col:nth-of-type(4) .path-row:nth-of-type(2) .path-cap:nth-of-type(3) .cap-flip {
    background: linear-gradient(135deg, rgb(213, 100, 122) 0%, rgb(213, 100, 122) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  }
}
body.specialty-neuro .path-container .path-col:nth-of-type(5) {
  flex: 1 1 10%;
}
body.specialty-neuro .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(1) {
  flex: 0 0 0%;
}
body.specialty-neuro .path-container .path-col:nth-of-type(5) .path-row:nth-of-type(2) {
  flex: 0 0 0%;
}
body.specialty-neuro .hero .hero-media .sub-hero-image .sub-hero-scrim1,
body.specialty-neuro .hero .hero-media .sub-hero-image .sub-hero-scrim2,
body.specialty-neuro .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
  width: 100%;
  position: absolute;
}
body.specialty-neuro .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
  top: 0;
  height: 50px;
  background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  opacity: 0.25;
}
@media (max-width: 991px) {
  body.specialty-neuro .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
    height: 20px;
    background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  }
}
body.specialty-neuro .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
  bottom: 0;
  height: 100%;
  background: linear-gradient(0deg, rgb(21, 23, 58) 0%, rgba(0, 23, 193, 0) 45%);
  mix-blend-mode: multiply;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  body.specialty-neuro .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
    top: unset;
    bottom: 0;
    opacity: 0.8;
    height: 60%;
    background: linear-gradient(0deg, rgb(17, 19, 18) 30%, rgba(44, 50, 44, 0) 80%);
  }
}
@media (min-width: 992px) {
  body.specialty-neuro .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
    opacity: 0.3;
  }
}
body.specialty-neuro .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
  bottom: 0;
  height: 100%;
  mix-blend-mode: multiply;
  background: linear-gradient(226deg, rgba(1, 18, 28, 0) 43%, rgb(32, 40, 65) 62.02%);
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  body.specialty-neuro .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
    display: none;
  }
}
@media (min-width: 768px) {
  body.specialty-neuro .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
    background: linear-gradient(320deg, rgba(1, 18, 28, 0) 50%, rgb(32, 40, 65) 70%);
    opacity: 0.4;
  }
}

body.specialty-nicu {
  --image-position: 50% 50%;
  --headerGap: 0px;
  --heroHeight: 40vh;
  --heroMaxHeight: 400px;
}
@media (min-width: 768px) {
  body.specialty-nicu {
    --heroHeight: 320px;
    --heroMaxHeight: 320px;
  }
}
@media (min-width: 992px) {
  body.specialty-nicu {
    --heroHeight: 350px;
    --heroMaxHeight: 350px;
  }
}
@media (min-width: 1200px) {
  body.specialty-nicu {
    --heroHeight: 400px;
    --heroMaxHeight: 400px;
  }
}

body.specialty-nicu .hero .hero-media.specialty-hero.nicu .sub-hero-image .sub-hero-scrim1 {
  background: linear-gradient(205deg, rgba(1, 18, 28, 0) 55.37%, rgba(105, 136, 187, 0.85) 91.02%);
  height: 100%;
  mix-blend-mode: initial;
}
body.specialty-nicu .hero .hero-media.specialty-hero.nicu .sub-hero-image .sub-hero-scrim2 {
  background: linear-gradient(0deg, rgba(4, 31, 46, 0.3) 25.58%, rgba(193, 81, 0, 0) 85.99%);
  height: 35vh;
}
body.specialty-nicu .hero .hero-media.specialty-hero.nicu .sub-hero-image .sub-hero-scrim3 {
  height: 35vh;
}
@media screen and (max-width: 992px) {
  body.specialty-nicu .hero .hero-media.specialty-hero.nicu .sub-hero-image .sub-hero-scrim1 {
    background: linear-gradient(180deg, rgba(1, 18, 28, 0) 66.37%, rgba(78, 102, 142, 0.85) 87.02%);
    height: 100%;
    opacity: 0.7;
  }
}

body.specialty-labor-delivery {
  --image-position: 85% 40%;
}
body.specialty-labor-delivery .sub-hero-image {
  background: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/bb34f764f1804917aa5caa29e2738a02?v=b4243caf) !important;
  background-position: var(--image-position) !important;
  background-size: cover !important;
}

body.specialty-labor-delivery .hero .hero-media .sub-hero-image {
  position: relative;
}
body.specialty-labor-delivery .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
  background: linear-gradient(205deg, rgba(1, 18, 28, 0) 55.37%, rgba(105, 136, 187, 0.85) 91.02%);
  height: 100%;
  mix-blend-mode: initial;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
body.specialty-labor-delivery .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
  background: linear-gradient(0deg, rgba(4, 31, 46, 0.3) 25.58%, rgba(193, 81, 0, 0) 85.99%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.24;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 992px) {
  body.specialty-labor-delivery .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
    background: linear-gradient(180deg, rgba(1, 18, 28, 0) 66.37%, rgba(78, 102, 142, 0.85) 87.02%);
    height: 100%;
    opacity: 0.7;
  }
}

body.power-of-two {
  --image-position: 90% 0%;
}
@media (min-width: 480px) {
  body.power-of-two {
    --image-position: 100% 0%;
  }
}
@media (min-width: 768px) {
  body.power-of-two {
    --image-position: 100% 50%;
  }
}
@media (min-width: 1100px) {
  body.power-of-two {
    --image-position: 0% 30%;
  }
}

body.power-of-two .hero .hero-media .sub-hero-image .sub-hero-scrim1,
body.power-of-two .hero .hero-media .sub-hero-image .sub-hero-scrim2,
body.power-of-two .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
  width: 100%;
  position: absolute;
}
body.power-of-two .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
  top: 0;
  height: 50px;
  background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  opacity: 0.25;
}
@media (max-width: 991px) {
  body.power-of-two .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
    height: 20px;
  }
}
body.power-of-two .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
  bottom: 0;
  height: 100%;
  background: linear-gradient(1deg, rgb(93, 94, 23) 0%, rgba(54, 63, 14, 0) 55%);
  height: 60%;
  opacity: 0.65;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  body.power-of-two .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
    background: linear-gradient(1deg, rgb(93, 94, 23) 0%, rgba(54, 63, 14, 0) 55%);
  }
}
body.power-of-two .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
  bottom: 0;
  height: 100%;
  mix-blend-mode: multiply;
  opacity: 0.5;
  background: linear-gradient(197deg, rgba(1, 18, 28, 0) 55%, rgb(65, 54, 32) 74%);
}
body.heart-hospitals {
  --image-position: 70%;
  --heroHeight: 550px;
  --heroMaxHeight: 550px;
}
@media (min-width: 480px) {
  body.heart-hospitals {
    --image-position: center;
  }
}
@media (max-width: 991px) {
  body.heart-hospitals {
    --heroHeight: 650px;
    --heroMaxHeight: 650px;
  }
}
body.heart-hospitals .hero-media.hero-bg.bg-hero-hp {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body.heart-hospitals .hero-media.hero-bg.bg-hero-hp {
    width: 100%;
  }
}

body.heart-hospitals .hero .hero-media .sub-hero-image .sub-hero-scrim1,
body.heart-hospitals .hero .hero-media .sub-hero-image .sub-hero-scrim2,
body.heart-hospitals .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
  width: 100%;
  position: absolute;
}
body.heart-hospitals .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
  top: 0;
  height: 50px;
  background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  opacity: 0.25;
}
@media (max-width: 991px) {
  body.heart-hospitals .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
    height: 20px;
    background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  }
}
body.heart-hospitals .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
  bottom: 0;
  height: 100%;
  background: linear-gradient(0deg, rgb(21, 23, 58) 0%, rgba(0, 23, 193, 0) 45%);
  mix-blend-mode: multiply;
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  body.heart-hospitals .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
    display: none;
  }
}
@media (min-width: 992px) {
  body.heart-hospitals .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
    opacity: 0.7;
    background: linear-gradient(43deg, rgb(21, 23, 58) 0%, rgba(0, 0, 0, 0.13) 64%);
  }
}
body.heart-hospitals .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
  bottom: 0;
  height: 100%;
  mix-blend-mode: multiply;
  background: linear-gradient(226deg, rgba(1, 18, 28, 0) 43%, rgb(32, 40, 65) 62.02%);
  opacity: 0.4;
}
@media screen and (max-width: 991px) {
  body.heart-hospitals .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
    display: none;
  }
}
@media (min-width: 768px) {
  body.heart-hospitals .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
    background: linear-gradient(320deg, rgba(1, 18, 28, 0) 50%, rgb(32, 40, 65) 70%);
    opacity: 0.5;
  }
}
@media (min-width: 991px) {
  body.heart-hospitals .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
    background: linear-gradient(182deg, rgba(1, 18, 28, 0) 50%, rgb(32, 40, 65) 70%);
  }
}

body.its-right-here {
  --image-position:85%;
}
@media (min-width: 768px) {
  body.its-right-here {
    --image-position:75%;
  }
}

body.its-right-here .hero .hero-media .sub-hero-image .sub-hero-scrim1,
body.its-right-here .hero .hero-media .sub-hero-image .sub-hero-scrim2,
body.its-right-here .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
  width: 100%;
  position: absolute;
}
body.its-right-here .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
  top: 0;
  height: 50px;
  background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  opacity: 0.25;
}
@media (max-width: 991px) {
  body.its-right-here .hero .hero-media .sub-hero-image .sub-hero-scrim3 {
    height: 20px;
    background: linear-gradient(360deg, rgba(1, 18, 28, 0) 32.37%, rgba(51, 51, 55, 0.85) 85.02%);
  }
}
body.its-right-here .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
  bottom: 0;
  height: 100%;
  background: linear-gradient(0deg, rgb(21, 23, 58) 0%, rgba(0, 23, 193, 0) 45%);
  mix-blend-mode: multiply;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  body.its-right-here .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
    top: unset;
    bottom: 0;
    opacity: 0.6;
    height: 60%;
    background: linear-gradient(0deg, rgb(17, 19, 18) 30%, rgba(44, 50, 44, 0) 80%);
  }
}
@media (min-width: 992px) {
  body.its-right-here .hero .hero-media .sub-hero-image .sub-hero-scrim2 {
    opacity: 0.3;
  }
}
body.its-right-here .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
  bottom: 0;
  height: 100%;
  mix-blend-mode: multiply;
  background: linear-gradient(226deg, rgba(1, 18, 28, 0) 43%, rgb(32, 40, 65) 62.02%);
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  body.its-right-here .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
    display: none;
  }
}
@media (min-width: 768px) {
  body.its-right-here .hero .hero-media .sub-hero-image .sub-hero-scrim1 {
    background: linear-gradient(320deg, rgba(1, 18, 28, 0) 50%, rgb(32, 40, 65) 70%);
    opacity: 0.4;
  }
}

body.new-movers .component.content.hero.container.col-12.sticky-hero {
  padding-top: 0;
}
@media (min-width: 768px) {
  body.new-movers .hero .hero-text {
    margin-left: 0;
  }
}
body.new-movers .hero .hero-text .hero-description {
  filter: none;
}

body.dallas-cowboys .hero-media.hero-bg.bg-hero-hp {
  display: none;
}/*# sourceMappingURL=bswh-specialty-hero.css.map */