:root {
  --font-size-00: .5rem;
  --font-size-0: .75rem;
  --font-size-1: 1rem;
  --font-size-2: 1.1rem;
  --font-size-3: 1.25rem;
  --font-size-4: 1.5rem;
  --font-size-5: 2rem;
  --font-size-6: 2.5rem;
  --font-size-7: 3rem;
  --font-size-8: 3.5rem;
}

: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;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.sticky {
  position: sticky;
  top: 0;
  background: #fff;
  max-width: 1920px;
}

header.header {
  max-width: 1920px;
}

.global-header .logo.full-negative, .global-header .logo.full {
  content: url(https://www.bswhealth.com/-/media/project/bsw/sites/bswhealth/bswh-full-gray.svg);
}

.transparent-bg .primary-white-bg.full-width a {
  color: #3a4455;
}

@media (min-width: 992px) {
  .transparent-bg .primary-white-bg.full-width .cta-icons i {
    color: #3a4455;
  }
}
.global-header {
  height: var(--header-height);
  min-height: var(--header-height);
}
@media (min-width: 768px) {
  .global-header {
    padding: 0 20px;
  }
}
.global-header nav {
  min-height: var(--header-height);
  height: var(--header-height);
	max-width: 1920px;
}
.global-header.no-global-alert .sticky {
  height: var(--header-height);
}
.global-header.no-global-alert .primary-white-bg.full-width::before {
  display: none;
}
.global-header.no-global-alert .transparent-bg .primary-white-bg.full-width .logo.full {
  animation: fadeIn 1s;
  transition: 1s;
}

.bswh-home .find-care-tool-container .find-care-app .hightlight {
  color: rgb(0, 126, 180);
}
@media screen and (max-width: 768px) {
  .bswh-home .find-care-tool-container .find-care-app .find-care-title span {
    cursor: pointer;
  }
  .bswh-home .find-care-tool-container .find-care-btn-container .find-care-button {
    pointer-events: all;
  }
  .bswh-home .find-care-tool-container .find-care-app .find-care-title span {
    pointer-events: all;
  }
  .bswh-home .find-care-tool-container .findcare-search-container .search-button {
    border-radius: 4px;
    padding: 12px 0;
  }
  .bswh-home .find-care-tool-container .findcare-search-container .search-button .letsGo {
    display: flex;
    font-size: 1.4rem;
  }
  .bswh-home .find-care-tool-container .find-care-app .search-btn-icon {
    margin-left: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 4px;
  }
  .bswh-home .find-care-tool-container .find-care-app .search-button:hover {
    border: 1px solid rgb(0, 84, 120);
  }
  .bswh-home .find-care-tool-container .find-care-app .search-button:hover i.bsw-icon-arrow.search-btn-icon {
    color: rgb(255, 183, 27);
    border: 1px solid rgb(255, 255, 255);
  }
  .bswh-home .find-care-tool-container .find-care-app .search-button:hover:before {
    background: rgb(0, 84, 120);
  }
  .bswh-home .find-care-tool-container .find-care-app .findcare-search-container .search-button .search-btn-icon {
    margin-right: 8px;
    display: flex;
    flex-direction: row;
    margin-left: 4px;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
  }
  .bswh-home .find-care-tool-container .find-care-btn-container .find-care-button {
    border-radius: 4px;
    width: 100%;
  }
  .bswh-home .find-care-tool-container .find-care-btn-container .find-care-button:hover {
    border: 1px solid rgb(0, 84, 120);
  }
  .bswh-home .find-care-tool-container .find-care-btn-container .find-care-button:hover i.bsw-icon-arrow.search-btn-icon {
    color: rgb(255, 183, 27);
    border: 1px solid rgb(255, 255, 255);
  }
  .bswh-home .find-care-tool-container .find-care-btn-container .find-care-button:hover:before {
    background: rgb(0, 84, 120);
  }
  .bswh-home .find-care-tool-container .find-care-btn-container .find-care-button i.bsw-icon-arrow.search-btn-icon {
    margin-right: 8px;
    display: flex;
    flex-direction: row;
    margin-left: 4px;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    justify-content: center;
  }
}
@media (min-width: 769px) {
  .bswh-home .find-care-tool-container .find-care-app .list-item {
    color: rgb(54, 66, 72);
    font-family: "sharpsans-semibold";
    min-height: 40px;
    padding: 12px;
  }
}
@media (min-width: 992px) {
  .bswh-home .find-care-tool-container .findcare-search-container .search-button {
    border-radius: 4px;
    padding: 12px 0;
  }
  .bswh-home .find-care-tool-container .findcare-search-container .search-button .letsGo {
    display: flex;
    font-size: 1.4rem;
  }
  .bswh-home .find-care-tool-container .find-care-app .search-btn-icon {
    margin-left: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 4px;
  }
  .bswh-home .find-care-tool-container .find-care-app .search-button:hover {
    border: 1px solid rgb(0, 84, 120);
  }
  .bswh-home .find-care-tool-container .find-care-app .search-button:hover i.bsw-icon-arrow.search-btn-icon {
    color: rgb(255, 183, 27);
    border: 1px solid rgb(255, 255, 255);
  }
  .bswh-home .find-care-tool-container .find-care-app .search-button:hover:before {
    background: rgb(0, 84, 120);
  }
}
@media (min-width: 769px) and (max-width: 1239px) {
  .bswh-home .find-care-tool-container .find-care-app .form-search {
    background: #fff;
    width: 100vw;
    left: 0;
    border-radius: 4px;
  }
  .bswh-home .app-provider.find-care-tool-container {
    padding: 0;
    left: 0;
    right: unset;
    max-width: 100vw;
  }
  .bswh-home .find-care-tool-container .findcare-search-container .search-button {
    padding: 0;
    margin: 3px 0;
    height: 50px;
    align-items: center;
  }
}
@media (min-width: 992px) and (max-width: 1239px) {
  .bswh-home .app-provider.find-care-tool-container {
    width: 100vw;
    border-top: 1px solid rgb(221, 221, 221);
    margin-top: 0;
  }
}
.bswh-home .find-care-tool-container .find-care-app {
  margin: 0;
  max-width: 100vw;
}
@media (min-width: 1240px) {
  .bswh-home .find-care-tool-container .find-care-app .focus {
    border: 1px solid #ffc107;
    box-shadow: 0 0 3px 3px #fff;
  }
  .bswh-home .find-care-tool-container .find-care-app .icon {
    margin: 0 10px;
    justify-content: center;
    padding: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .keyword-search {
    margin-left: 0;
  }
  .bswh-home span.letsGo {
    font-size: 1.5rem;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width {
    width: unset;
    min-width: 50%;
  }
}
@media (min-width: 1600px) {
  .bswh-home .find-care-tool-container .find-care-app .form-search {
    gap: 22px;
  }
}
@media screen and (max-width: 768px) {
  .bswh-home .find-care-tool-container .find-care-app .findcare-search-container .search-button {
    border-radius: 4px;
  }
  .bswh-home .find-care-tool-container .find-care-app .keyword-search,
  .bswh-home .find-care-tool-container .find-care-app .location-search {
    border-radius: 4px;
  }
  .bswh-home .find-care-tool-container .find-care-app .find-care-title span {
    border: none;
  }
}

.bswh-home .component.componentcontainer.alert.global.collapsible.col-12 {
  transition: none !important;
}
.bswh-home .secondary-medium-yellow-bg .alert-content, .bswh-home .secondary-medium-yellow-bg:before {
  transition: all 0.5s ease-in-out;
}
.bswh-home .alert-content {
  transition: opacity none;
}

body {
  overflow: unset;
}

body.findcare-active {
  overflow: hidden;
  width: 100vw;
  height: 100vh !important;
}

body .sticky {
  position: sticky;
  top: 0;
}

#wrapper {
  overflow: visible;
}

@media (max-width: 767px) {
  body.findcare-active header.sticky {
    visibility: hidden;
    display: none;
  }
}
header .header-with-drawer {
  z-index: 20;
}
@media (min-width: 1240px) {
  header .header-with-drawer {
    top: 0;
  }
}
@media only screen and (min-width: 992px) {
  header .header-with-drawer {
    position: relative;
    top: 0;
  }
}

span.alert-closebtn.icon.bsw-icon-x {
  height: 24px;
  width: 24px;
}

@media (min-width: 768px) {
  span.alert-closebtn.icon.bsw-icon-x {
    height: 30px;
    width: 30px;
  }
  span.alert-closebtn.icon.bsw-icon-x:hover {
    border: 1px solid rgb(255, 149, 39);
  }
}
@media (min-width: 768px) {
  span.alert-closebtn.icon.bsw-icon-x {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .alert.global .alert__text a {
    cursor: pointer;
    text-decoration: none;
    border-bottom: 0;
    position: relative;
    display: inline-block;
    transform: translate3d(0, 0, 0);
    transition: transform 1s, color 0.5s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  }
  .alert.global .alert__text a::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 100%;
    width: 100%;
    height: 2px;
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 50%;
    transition: transform 0.35s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    background: rgb(54, 66, 72);
    left: 0;
  }
  .alert.global .alert__text a:after {
    display: none;
  }
  .alert.global .alert__text a:hover {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    color: rgb(54, 66, 72);
  }
  .alert.global .alert__text a:hover::before {
    transform: scale3d(1, 1, 1);
    transform-origin: 0% 50%;
    transition-timing-function: ease-out;
  }
  .alert.global .alert__text a:hover {
    color: rgb(54, 66, 72);
  }
  .alert.global .alert__text a:hover:after {
    color: rgb(54, 66, 72);
  }
}

.secondary-medium-yellow-bg .alert-content, .secondary-medium-yellow-bg:before {
  transition: none !important;
}

@media screen and (max-width: 768px) {
  header.open + main .hero .hero-media {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  body.no-anchor-no-hero main.sticky-main {
    margin-top: 0;
  }
  main.sticky-main {
    margin-top: 0;
  }
}
:root {
  --alert-height: 110px;
  --hero-height: 50vh;
  --hero-minH:320px;
  --hero-maxH:50vh;
  --header-height: 45px;
}
@media screen and (min-width: 501px) {
  :root {
    --hero-minH: 400px;
    --hero-height: 50vh;
    --hero-maxH: 50vh;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --header-height: 50px;
    --hero-minH: 500px;
    --hero-height: 500px;
    --hero-maxH: 500px;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --header-height: 70px;
  }
}
@media (min-width: 1100px) {
  :root {
    --hero-minH: 525px;
    --hero-height: 525px;
    --hero-maxH: 525px;
  }
}
@media screen and (min-width: 1700px) {
  :root {
    --hero-minH: 550px;
    --hero-height: 550px;
    --hero-maxH: 550px;
  }
}
@media (min-width: 1240px) {
  :root {
    --hero-height:575px;
    --hero-minH:575px;
    --hero-maxH:575px;
  }
}
@media (min-width: 1440px) {
  :root {
    --hero-height:600px;
    --hero-minH:600px;
    --hero-maxH:600px;
  }
}

.bswh-home .hero .row .col-lg-6.col-12 {
  width: 100%;
  position: relative;
  height: 100%;
}
.bswh-home .hero-img {
  height: 100%;
  min-width: unset;
  max-width: unset;
  min-height: unset;
  max-height: unset;
}
@media screen and (min-width: 768px) and (max-height: 1080px) {
  .bswh-home .hero-img {
    background-position-y: unset;
  }
}
@media screen and (min-width: 768px) and (max-height: 999px) {
  .bswh-home .hero-img {
    min-height: unset;
  }
}
@media screen and (min-width: 768px) and (max-height: 999px) {
  .bswh-home .hero-img {
    min-height: unset;
  }
}
@media screen and (min-width: 768px) and (max-height: 1080px) {
  .bswh-home .hero-img {
    background-position-y: unset;
  }
}
@media screen and (min-width: 768px) {
  .bswh-home .hero-img {
    background-position-y: unset;
  }
}
.bswh-home .hero-img {
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .bswh-home .hero-img {
    height: unset;
    background-position-y: unset;
    min-height: unset;
  }
}
@media screen and (min-width: 610px) {
  .bswh-home .hero-img {
    height: unset;
    background-position-y: unset;
  }
}
.bswh-home .hero-img {
  background-size: unset;
  background-repeat: no-repeat;
  height: unset;
  background-position-y: unset;
  background-position-x: unset;
}
@media screen and (min-width: 768px) and (max-height: 1080px) {
  .bswh-home .hero.container {
    min-height: unset;
    max-height: unset;
  }
}
.bswh-home .hero-img {
  min-width: unset;
  max-width: unset;
  min-height: unset;
  position: relative;
  max-height: unset;
  z-index: -1;
  background-position-y: center;
  background-position-x: center;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) and (max-height: 1080px) {
  .bswh-home .hero-media.hero-bg.bg-hero-hp {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .bswh-home .hero-media.hero-bg.bg-hero-hp {
    height: 100%;
  }
}
@media screen and (max-width: 610px) {
  .bswh-home .hero-media.hero-bg.bg-hero-hp {
    height: 100%;
  }
}
@media screen and (max-width: 500px) {
  .bswh-home .hero-media.hero-bg.bg-hero-hp {
    height: 100%;
  }
}
@media screen and (max-width: 480px) {
  .bswh-home .hero-media.hero-bg.bg-hero-hp {
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .bswh-home .rich-text {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}

.bswh-home .component.content.hero.container.col-12 {
  max-width: unset;
}
.bswh-home .section-padding:has(#immediate-care-cards) {
  padding-top: 20px;
}
.bswh-home .component.container.col-12.full-width.indent-top.indent-bottom {
  margin-top: -1px;
}
.bswh-home .page-section {
  max-width: 1920px;
  display: flex;
  justify-content: center;
}
.bswh-home .page-section .container {
  max-width: 1920px;
  margin: auto;
}

.bswh-home .section-padding:has(#immediate-care-cards) {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .bswh-home .section-padding:has(#immediate-care-cards) .component-content > .indent-bottom {
    padding-bottom: 0px;
  }
  .bswh-home .section-padding:has(#immediate-care-cards) .component-content > .indent-top {
    padding-top: 0px;
  }
}

.bswh-home .care-cards-copy h2 {
  color: #007fa9;
  margin-bottom: 10px;
}
.bswh-home .promo.card-wrapper .card .card-title, .bswh-home .promo.card-wrapper .card .card-title h2 {
  padding-bottom: 0;
}
.bswh-home .promo.card-wrapper .promo-text.card-body {
  margin-top: 16px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .bswh-home .promo.card-wrapper .promo-text.card-body {
    min-height: 200px;
    justify-content: space-between;
  }
}
.bswh-home .promo.card-wrapper .card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 8px;
}
.bswh-home .promo.card-wrapper .promo-text.card-body div {
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 100%;
}
.bswh-home .promo.card-wrapper .field-promoicon img {
  width: 100%;
  height: auto;
  position: relative;
}
.bswh-home div#immediate-care-cards {
  margin: 0;
}
.bswh-home div#immediate-care-cards .card-top-image {
  max-height: 140px;
  min-height: 140px;
  position: relative;
  top: 0;
}
.bswh-home div#immediate-care-cards .card-top-image .field-promoicon img {
  bottom: 0;
}
@media (min-width: 992px) {
  .bswh-home div#immediate-care-cards .card-top-image {
    max-height: 150px;
    min-height: 150px;
  }
}
@media (min-width: 1200px) {
  .bswh-home div#immediate-care-cards .card-top-image {
    max-height: 170px;
    min-height: 170px;
  }
}
@media (max-width: 991px) {
  .bswh-home div#immediate-care-cards .card {
    width: 85%;
    max-width: 420px;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .bswh-home div#immediate-care-cards .card {
    width: 80%;
  }
}
.bswh-home div#immediate-care-cards div#immediate-care-cards .promo.card-wrapper:nth-of-type(2) .field-promoicon img {
  bottom: 0;
}
.bswh-home div#immediate-care-cards .promo.card-wrapper .field-promoicon img {
  bottom: 40px;
}
@media (min-width: 515px) and (max-width: 991px) {
  .bswh-home div#immediate-care-cards .promo.card-wrapper .card {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  .bswh-home div#immediate-care-cards .promo.card-wrapper .card .card-body {
    justify-content: space-evenly;
  }
  .bswh-home div#immediate-care-cards .promo.card-wrapper .card .card-top-image {
    max-height: 100%;
    min-height: 100%;
    max-width: 300px;
  }
  .bswh-home div#immediate-care-cards .promo.card-wrapper .card .card-top-image img {
    width: 90%;
    height: 100%;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 515px) and (max-width: 768px) {
  .bswh-home div#immediate-care-cards .promo.card-wrapper .card {
    width: 100%;
  }
}
.bswh-home div#immediate-care-cards .promo.card-wrapper:last-of-type .field-promoicon img {
  bottom: 50px;
}
@media (min-width: 515px) and (max-width: 991px) {
  .bswh-home div#immediate-care-cards .promo.card-wrapper:last-of-type .field-promoicon img {
    bottom: 0;
  }
}
.bswh-home .promo-text.card-body .card-description {
  color: #727272;
}

.bswh-home .page-section:nth-of-type(2) .section-padding {
  padding-top: 0;
}
.bswh-home .page-section:nth-of-type(2) .component.promo.card-wrapper .component-content {
  height: 100%;
}

div#immediate-care-cards .promo.card-wrapper:nth-of-type(2) .field-promoicon img {
  bottom: 0;
}

.bswh-home div#immediate-care-cards .card-title h2 {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bswh-home div#immediate-care-cards .card-title h2:before {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
}
.bswh-home div#immediate-care-cards .promo.card-wrapper#primary-care-card .card-title h2:before {
  content: url(https://bswcdndesign-prod.bswhealth.com/content/icons/brand/doctor.svg);
}
.bswh-home div#immediate-care-cards .promo.card-wrapper#same-day-care-card .card-title h2:before {
  content: url(https://bswcdndesign-prod.bswhealth.com/content/icons/brand/walk-in.svg);
}
.bswh-home div#immediate-care-cards .promo.card-wrapper#preventive-care-card .card-title h2:before {
  content: url(https://bswcdndesign-prod.bswhealth.com/content/icons/brand/flu-vaccine.svg);
}
.bswh-home .component.promo.card-wrapper.scroll-section.col-12.col-lg-4.col-xl-4 {
  margin: auto;
}
@media (min-width: 992px) {
  .bswh-home .col-lg-4 {
    flex: 0 0 32%;
    max-width: 32%;
  }
}
@media (min-width: 1200px) {
  .bswh-home .col-xl-4 {
    flex: 0 0 32%;
    max-width: 32%;
  }
}
@media (min-width: 1440px) {
  .bswh-home .col-xl-4 {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
.bswh-home .page-section #immediate-care-cards .container {
  max-width: 1300px;
  margin: auto;
}

@media (min-width: 768px) {
  .bswh-home .find-care-tool-container .find-care-app .form-search {
    align-items: center;
    background: rgba(255, 255, 255, 0.56);
    border-radius: 16px;
    display: flex;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.45) 60%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, 0.45) 75%);
    justify-content: space-between;
    margin: 0;
    padding: 10px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    z-index: 99;
    filter: none;
    position: relative;
    box-shadow: none;
    border: 2.5px solid #fff;
    filter: drop-shadow(2px 28px 15px rgba(58, 68, 85, 0.65));
    filter: drop-shadow(2px 2px 15px rgba(58, 68, 85, 0.25));
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 991px) {
  .bswh-home .find-care-tool-container .find-care-app .form-search {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.45) 60%, rgba(255, 255, 255, 0.75) 82%, rgba(255, 255, 255, 0.45) 82%);
    border-radius: 0 0 16px 16px;
  }
}
@media (min-width: 768px) and (min-width: 1600px) {
  .bswh-home .find-care-tool-container .find-care-app .form-search {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.45) 60%, rgba(255, 255, 255, 0.75) 82%, rgba(255, 255, 255, 0.45) 82%);
  }
}
@media (min-width: 768px) and (min-width: 1800px) {
  .bswh-home .find-care-tool-container .find-care-app .form-search {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.45) 60%, rgba(255, 255, 255, 0.75) 80%, rgba(255, 255, 255, 0.45) 80%);
  }
}
@media (min-width: 768px) {
  .bswh-home .find-care-tool-container .find-care-app {
    max-width: 900px;
    margin-right: 50px;
    margin: auto;
  }
}
@media (min-width: 768px) and (min-width: 1600px) {
  .bswh-home .find-care-tool-container .find-care-app {
    max-width: 1200px;
  }
}
@media (min-width: 768px) and (min-width: 1800px) {
  .bswh-home .find-care-tool-container .find-care-app {
    max-width: 1500px;
  }
}
@media (min-width: 768px) {
  .bswh-home .find-care-tool-container .find-care-app .term-container {
    display: flex;
    justify-content: flex-start;
    margin: auto;
  }
  .bswh-home .find-care-tool-container .find-care-app .term-link {
    color: #fff;
    text-decoration: underline;
  }
  .bswh-home .find-care-tool-container .find-care-app .term-container div {
    background: none;
    filter: none;
    z-index: 99;
  }
  .bswh-home .find-care-tool-container {
    filter: none;
  }
  .bswh-home .find-care-tool-container .find-care-app input[type=text] {
    background-color: transparent;
  }
  .bswh-home .find-care-tool-container .findcare-search-container .search-button {
    padding: 18px 10px;
  }
  .bswh-home .find-care-tool-container .findcare-search-container {
    margin-right: 12px;
    max-width: 150px;
    min-width: 150px;
    width: 100%;
  }
  .bswh-home .form-search:has(.focus) {
    background: #fff !important;
    /* transition: .25s; */
    z-index: 101 !important;
  }
  .bswh-home .find-care-tool-container .find-care-app .input-icon-container {
    padding: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .focus.insurance-search .field-label.show,
  .bswh-home .find-care-tool-container .find-care-app .focus.keyword-search .field-label.show,
  .bswh-home .find-care-tool-container .find-care-app .focus.location-search .field-label.show {
    top: 5px;
  }
  .bswh-home .find-care-tool-container .find-care-app .term-container div {
    border-radius: 0 0 10px 10px;
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    margin-right: 10px;
    padding: 4px 40px;
    filter: drop-shadow(2px 4px 6px black);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bswh-home .find-care-tool-container .findcare-search-container {
    max-width: 100px;
    min-width: 100px;
  }
}
.bswh-home .find-care-tool-container .findcare-search-container .find-care-tool-container {
  margin-top: 90px;
}
.bswh-home .find-care-tool-container .findcare-search-container .find-care-tool-container {
  left: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1360px;
  padding: 0 5vw;
  position: fixed;
  right: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .bswh-home .find-care-tool-container {
    margin-top: 59px;
  }
}
@media (min-width: 992px) {
  .bswh-home .find-care-tool-container {
    margin-top: 100px;
  }
}
@media (min-width: 1600px) {
  .bswh-home .find-care-tool-container {
    margin-top: 120px;
  }
}
@media (min-width: 1800px) {
  .bswh-home .find-care-tool-container {
    margin-top: 140px;
  }
}
.bswh-home .find-care-tool-container .find-care-app input[type=text]::-moz-placeholder {
  color: #1e1f21 !important;
  font-weight: unset;
}
.bswh-home .find-care-tool-container .find-care-app input[type=text]::placeholder {
  color: #1e1f21 !important;
  font-weight: unset;
}
.bswh-home .find-care-tool-container .find-care-app input[type=text] {
  margin-top: 3px;
}
.bswh-home .find-care-tool-container:has(.active) .find-care-tool-container .find-care-app .form-search {
  z-index: 101;
}
@media screen and (max-width: 768px) {
  .bswh-home .find-care-tool-container {
    bottom: 0;
  }
}
.bswh-home .find-care-tool-container .find-care-app .popular-search-head h6 {
  font-weight: unset;
}

.bswh-home .hero.container {
  margin: 0;
  padding: 0;
}

.bswh-home .hero .component-content {
  position: relative;
  margin: auto;
  width: 100%;
}

@media screen and (min-width: 768px) and (max-height: 1080px) {
  .bswh-home .hero-media.hero-bg.bg-hero-hp {
    height: inherit;
  }
}

.bswh-home .hero-subheadline, .bswh-home .hero-description, .bswh-home .hero-cta {
  display: none;
}
.bswh-home div#content .hero .row {
  width: 100%;
  height: 100px;
  position: absolute;
}
.bswh-home .hero-text {
  left: 0;
}
.bswh-home .hero-text {
  bottom: 0;
  width: 100%;
  margin: auto;
  padding: 0 24px 24px;
  max-width: 100%;
}
@media (min-width: 420px) {
  .bswh-home .hero-text {
    max-width: 380px;
  }
}
@media (min-width: 540px) {
  .bswh-home .hero-text {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .bswh-home .hero .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .bswh-home .hero-text .hero-headline {
    font-size: 44px;
    margin: auto;
    display: flex;
    justify-content: center;
  }
  .bswh-home .hero-text {
    padding-bottom: 30px;
  }
}
.bswh-home .hero-text .hero-headline {
  filter: drop-shadow(2px 4px 6px black);
}
@media (min-width: 379px) and (max-width: 419px) {
  .bswh-home .bswh-home .hero-text .hero-headline {
    padding-right: 42px;
  }
}

.bswh-home div#content .hero .row {
  bottom: 0px;
}

.bswh-home .hero-bg .hero-scrim3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 110vw;
  height: 200px;
  background: linear-gradient(180deg, rgba(2, 11, 16, 0.85) 0, rgba(2, 11, 16, 0.45) 35%, rgba(193, 81, 0, 0) 70%);
  background: linear-gradient(180deg, rgba(32, 16, 5, 0.85) 0, rgba(16, 10, 2, 0.5) 35%, rgba(193, 81, 0, 0) 70%);
}
@media (min-width: 992px) {
  .bswh-home .hero-bg .hero-scrim3 {
    height: 300px;
  }
}
@media (min-width: 501px) {
  .bswh-home .hero-bg .hero-scrim3 {
    left: 5%;
  }
}
@media (min-width: 900px) {
  .bswh-home .hero-bg .hero-scrim3 {
    left: 5%;
  }
}
@media (min-width: 992px) {
  .bswh-home .hero-bg .hero-scrim3 {
    left: 10%;
  }
}
@media (min-width: 1300px) {
  .bswh-home .hero-bg .hero-scrim3 {
    left: 10%;
  }
}
@media (min-width: 1500px) {
  .bswh-home .hero-bg .hero-scrim3 {
    left: 5%;
  }
}
@media (min-width: 1600px) {
  .bswh-home .hero-bg .hero-scrim3 {
    left: 0;
  }
}
@media (min-width: 1800px) {
  .bswh-home .hero-bg .hero-scrim3 {
    left: 0;
  }
}

.bswh-home .hero-bg .hero-scrim2 {
  position: absolute;
  width: 130vw;
  background: linear-gradient(0deg, rgba(14, 6, 0, 0.65) 25%, rgba(193, 81, 0, 0) 65%);
  height: 150px;
  bottom: 0;
  left: 0;
}
@media (min-width: 501px) {
  .bswh-home .hero-bg .hero-scrim2 {
    left: 5%;
  }
}
@media (min-width: 900px) {
  .bswh-home .hero-bg .hero-scrim2 {
    left: 5%;
  }
}
@media (min-width: 992px) {
  .bswh-home .hero-bg .hero-scrim2 {
    left: 10%;
  }
}
@media (min-width: 1300px) {
  .bswh-home .hero-bg .hero-scrim2 {
    left: 10%;
  }
}
@media (min-width: 1500px) {
  .bswh-home .hero-bg .hero-scrim2 {
    left: 5%;
  }
}
@media (min-width: 1600px) {
  .bswh-home .hero-bg .hero-scrim2 {
    left: 0;
  }
}
@media (min-width: 1800px) {
  .bswh-home .hero-bg .hero-scrim2 {
    left: 0;
  }
}
@media (min-width: 501px) {
  .bswh-home .hero-bg .hero-scrim2 {
    height: 250px;
  }
}
@media screen and (min-width: 768px) {
  .bswh-home .hero-bg .hero-scrim2 {
    height: 300px;
  }
}

.bswh-home .hero-bg .hero-scrim1 {
  position: absolute;
  width: 130vw;
  background: linear-gradient(188deg, rgba(1, 18, 28, 0) 50%, rgba(16, 44, 56, 0.55) 80%);
  bottom: 0;
}
@media (min-width: 501px) {
  .bswh-home .hero-bg .hero-scrim1 {
    left: 5%;
  }
}
@media (min-width: 900px) {
  .bswh-home .hero-bg .hero-scrim1 {
    left: 5%;
  }
}
@media (min-width: 992px) {
  .bswh-home .hero-bg .hero-scrim1 {
    left: 10%;
  }
}
@media (min-width: 1300px) {
  .bswh-home .hero-bg .hero-scrim1 {
    left: 10%;
  }
}
@media (min-width: 1500px) {
  .bswh-home .hero-bg .hero-scrim1 {
    left: 5%;
  }
}
@media (min-width: 1600px) {
  .bswh-home .hero-bg .hero-scrim1 {
    left: 0;
  }
}
@media (min-width: 1800px) {
  .bswh-home .hero-bg .hero-scrim1 {
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  header.open + main .hero {
    pointer-events: none;
  }
  .mybsw-container {
    z-index: 1;
  }
}
@media only screen and (min-width: 768px) {
  .same-day-care div[id^=card-row] .row > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
.same-day-care div[id^=card-row] .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .same-day-care div[id^=card-row] .container {
    max-width: unset;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 992px) {
  .same-day-care div[id^=card-row] .container {
    max-width: unset;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .same-day-care div[id^=card-row] .col-xl-4 {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .same-day-care div[id^=card-row] .col-xl-4 {
    max-width: 100%;
  }
}

.same-day-care div#card-row-icon-2-1 > .component-content > .component.container > .component-content > .row {
  display: grid;
  -moz-column-gap: 20px;
       column-gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 992px) {
  .same-day-care div#card-row-icon-2-1 > .component-content > .component.container > .component-content > .row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.same-day-care div#card-row-icon-2-1 .promo .component-content {
  height: 100%;
}
.same-day-care .promo-text.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media only screen and (min-width: 992px) {
  .same-day-care .featured-card .card-body {
    padding: 24px 24px;
  }
}
.same-day-care .card .card-top-icon + .card-body .card-description {
  padding-bottom: 0;
  padding-top: 0;
}
.same-day-care .featured-card .card-description > p {
  padding-bottom: 0;
  padding-top: 0;
}
.same-day-care .card .card-top-icon {
  display: none;
}
.same-day-care .card-wrapper .card-title:before {
  content: "";
  width: 40px;
  height: 40px;
}
.same-day-care .card-wrapper:nth-of-type(1) .card-title:before {
  content: url(https://bswcdndesign-prod.bswhealth.com/content/icons/brand/evisit.svg);
}
.same-day-care .card-wrapper:nth-of-type(2) .card-title:before {
  content: url(https://bswcdndesign-prod.bswhealth.com/content/icons/brand/video-visit.svg);
}
.same-day-care .card-wrapper:nth-of-type(3) .card-title:before {
  content: url(https://bswcdndesign-prod.bswhealth.com/content/icons/brand/walk-in.svg);
}
.same-day-care .card-wrapper.primary-white-bg .card-title h2 {
  color: #007fa9;
  margin-left: 8px;
  margin-top: 1px;
}
.same-day-care .promo-text.card-body {
  margin-top: 6px;
}
@media (min-width: 992px) {
  .same-day-care .card-body .card-description {
    min-height: 400px;
  }
}
.same-day-care .card-body a.btn-secondary-link, .same-day-care .card-body a.btn-secondary-link:hover {
  justify-content: center;
  display: flex;
}

@media (max-width: 768px) {
  .same-day-care .multiple-locations-detail {
    max-width: 90%;
    margin: auto;
  }
  .same-day-care div[id^=card-row] .card {
    max-width: 85%;
    margin: auto;
  }
}
.same-day-care .component.link-list.scroll-section.col-12 {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767px) {
  .same-day-care .link-list {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.same-day-care .page-specific-alert .alert-content .alert-text a {
  color: #3a4455;
}
.same-day-care .page-specific-alert .alert-content .alert-text a:hover {
  color: #006181;
}
.same-day-care .page-specific-alert .alert-text-flex {
  margin-right: unset;
}
@media (max-width: 380px) {
  .same-day-care .page-specific-alert .alert-icon-text {
    flex-direction: column;
    width: 100%;
  }
  .same-day-care .page-specific-alert .alert-text-flex-wrapper .alert-text-flex .alert-text {
    text-align: left !important;
  }
  .same-day-care .page-specific-alert .alert-text-flex-wrapper {
    width: 100%;
  }
  .same-day-care .component.col.page-specific-alert.only-visible-alert {
    padding-left: 0;
    padding-right: 0;
  }
}
.same-day-care div#card-row-icon-2-1 {
  margin-top: 0;
}
@media (max-width: 992px) {
  .same-day-care div#card-row-icon-2-1 .component-content > .indent-bottom {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.same-day-care .promo-text.card-body p {
  color: #727272;
}
.same-day-care .promo-text.card-body strong {
  color: #3a4455;
}
.same-day-care .featured-card .card ol li, .same-day-care .featured-card .card ul li {
  color: #727272;
}

.promo-fifty .container-image, .promo-fifty .container-video {
  min-height: 300px;
}

.bswh-home .hero-media.hero-bg.bg-hero-hp {
  height: var(--hero-height);
  min-height: var(--hero-minH);
  max-height: var(--hero-maxH);
  max-width: 100vw;
}

.bswh-home .hero.container {
  height: var(--hero-height);
  min-height: var(--hero-minH);
  max-height: var(--hero-maxH);
}

.bswh-home .hero .component-content {
  height: 100%;
  max-width: 100vw;
}

@media (min-width: 1920px) {
  .bswh-home .hero-media.hero-bg.bg-hero-hp {
    max-width: 1056px;
    margin: auto;
  }
}
@media screen and (orientation: portrait) and (min-height: 900px) {
  .bswh-home .hero-media.hero-bg.bg-hero-hp, .bswh-home .hero.container, .bswh-home .hero .component-content {
    max-height: var(--hero-maxH);
  }
}
/* NEW HERO STYLING */
.bswh-home .container {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .bswh-home .container {
    max-width: unset;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 992px) and (max-width: 1439px) {
  .bswh-home .container {
    max-width: unset;
  }
}

.bswh-home .container-fluid {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-right: 0;
  margin-left: 0;
}
@media only screen and (min-width: 992px) {
  .bswh-home .container-fluid {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .bswh-home .container-fluid {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.bswh-home div#wrapper > main:first-of-type > div#content > .row > .component.container:first-of-type .row {
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .bswh-home div#wrapper > main:first-of-type > div#content > .row > .component.container:first-of-type {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) {
  .bswh-home .container-fluid > .row {
    margin-left: 0;
    margin-right: 0;
    flex-direction: column;
  }
}
@media only screen and (min-width: 992px) and (min-width: 768px) {
  .bswh-home .row > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 992px) {
  .bswh-home .row > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 992px) and (min-width: 1200px) {
  .bswh-home .row > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    left: 0;
    max-width: unset;
  }
}

.bswh-home #wrapper {
  overflow: unset;
  max-width: 1920px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
}

.bswh-home > div#wrapper > main:first-of-type {
  max-width: 100vw;
  position: relative;
  /* width: 100vw; */
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 1920px) {
  .bswh-home .global-header nav .nav-links > ul > li .mega-menu {
    left: calc(-1 * (1920px - 100%) / 2);
    max-width: 1920px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bswh-home .sticky {
  position: sticky;
  top: 0;
  background: #fff;
  max-width: 1920px;
}
.bswh-home header.header {
  max-width: 1920px;
}
.bswh-home .global-header {
  height: var(--header-height);
  min-height: var(--header-height);
}
.bswh-home .global-header nav {
  min-height: var(--header-height);
  height: var(--header-height);
}
.bswh-home .global-header .logo.full-negative, .bswh-home .global-header .logo.full {
  content: url(https://www.bswhealth.com/-/media/project/bsw/sites/bswhealth/bswh-full-gray.svg);
}
.bswh-home .transparent-bg .primary-white-bg.full-width a {
  color: #3a4455;
}
@media (min-width: 992px) {
  .bswh-home .transparent-bg .primary-white-bg.full-width .cta-icons i {
    color: #3a4455;
  }
}
.bswh-home.no-global-alert .sticky {
  height: var(--header-height);
}
.bswh-home .primary-white-bg.full-width::before {
  display: none;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .bswh-home .global-header {
    padding: 0 20px;
  }
}
.bswh-home .transparent-bg .primary-white-bg.full-width .logo.full {
  animation: fadeIn 1s;
  transition: 1s;
}

.bswh-home .alert-content {
  padding: 16px 20px;
  align-items: flex-start;
}
@media (min-width: 1340px) {
  .bswh-home .alert-content {
    display: flex;
    align-items: center;
    padding: 10px 20px;
  }
}
.bswh-home .alert-closebtn:before {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .bswh-home .alert-closebtn:hover {
    width: 30px;
    height: 30px;
  }
}
.bswh-home .alert__text {
  font-size: 1.1rem;
}
@media screen and (min-width: 420px) {
  .bswh-home .alert__text {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 520px) {
  .bswh-home .alert__text {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 768px) {
  .bswh-home .alert__text {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .bswh-home .alert__text {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1339px) {
  .bswh-home .alert__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1340px) {
  .bswh-home .alert__text {
    gap: 10px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .bswh-home .find-care-tool-container {
    margin-top: -2px;
  }
}
@media (min-width: 992px) and (max-width: 1239px) {
  .bswh-home .find-care-tool-container {
    margin-top: 10px;
  }
}

.bswh-home div#content .hero .row {
  bottom: 0;
}
.bswh-home .hero-text {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 420px) {
  .bswh-home .hero-text {
    max-width: unset;
  }
}
@media (min-width: 768px) {
  .bswh-home .hero-text {
    background: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 32px;
  }
}
@media (min-width: 1240px) {
  .bswh-home .hero-text {
    width: 50%;
    padding: 40px;
  }
}
@media (min-width: 1440px) {
  .bswh-home .hero-text {
    padding: 60px;
  }
}
.bswh-home .hero-text .hero-headline, .bswh-home .hero-text .hero-subheadline, .bswh-home .hero-text .hero-description, .bswh-home .hero-text .hero-cta {
  display: flex !important;
  color: #fff;
  justify-content: flex-start;
  margin: 0;
  text-align: left;
}
.bswh-home .hero-text .hero-headline {
  filter: drop-shadow(1px 3px 7px rgba(0, 0, 0, 0.65));
  color: #fff;
  text-wrap: balance;
  font-size: 2.6rem;
}
@media (min-width: 380px) {
  .bswh-home .hero-text .hero-headline {
    font-size: 2.6rem;
  }
}
@media (min-width: 768px) {
  .bswh-home .hero-text .hero-headline {
    font-size: 2.8rem;
  }
}
@media (min-width: 992px) {
  .bswh-home .hero-text .hero-headline {
    font-size: 3rem;
  }
}
@media (min-width: 1440px) {
  .bswh-home .hero-text .hero-headline {
    font-size: 3.2rem;
  }
}
.bswh-home .hero-text .hero-subheadline {
  max-width: 100%;
  filter: drop-shadow(1px 3px 7px rgba(0, 0, 0, 0.65));
  line-height: 1.25;
  width: 100%;
  letter-spacing: normal;
  font-size: 1.5rem;
}
@media (min-width: 640px) {
  .bswh-home .hero-text .hero-subheadline {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .bswh-home .hero-text .hero-subheadline {
    font-size: 1.6rem;
    max-width: 530px;
  }
}
@media (min-width: 992px) {
  .bswh-home .hero-text .hero-subheadline {
    font-size: 1.8rem;
    max-width: 70%;
  }
}
@media (min-width: 1240px) {
  .bswh-home .hero-text .hero-subheadline {
    max-width: 100%;
  }
}
@media (min-width: 1440px) {
  .bswh-home .hero-text .hero-subheadline {
    font-size: 2rem;
  }
}
.bswh-home .hero-text .hero-description {
  gap: 32px;
}
@media (max-width: 450px) {
  .bswh-home .hero-text .hero-description {
    flex-direction: column;
    gap: 8px;
  }
}
.bswh-home .hero-text .hero-description button {
  font-size: 16px !important;
  padding: 8px 24px;
  border: 2px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  background-color: transparent;
  align-items: center;
  filter: none;
  color: #fff;
  font-family: "sharpsans-bold";
  margin-top: 6px;
  cursor: pointer;
}
@media (max-width: 450px) {
  .bswh-home .hero-text .hero-description button {
    min-width: 75%;
    font-size: 14px !important;
  }
}
@media (max-width: 320px) {
  .bswh-home .hero-text .hero-description button {
    padding: 8px 16px;
  }
}
.bswh-home .hero-text .hero-description button:hover {
  background-color: #fff;
  color: #007fa9;
  transition: 0.5s;
  transform: scale(0.95);
  border-color: #007fa9;
}
.bswh-home .hero-text .hero-description span.arrow:after {
  content: "\e007";
  font-family: bsw-icons;
  display: inline-block;
  outline: 0;
  font-size: 20px;
  vertical-align: middle;
  color: #fecd4c;
  padding: 4px;
  width: 40px;
  height: 40px;
}
@media (max-width: 300px) {
  .bswh-home .hero-text .hero-description span.arrow:after {
    display: none;
  }
}

.bswh-home .hero.container {
  overflow: hidden;
}
@media (min-width: 768px) {
  .bswh-home .hero.container {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media (min-width: 1240px) {
  .bswh-home .hero.container {
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    left: 0;
    max-width: unset;
    display: flex;
    flex-direction: row-reverse;
    overflow: unset;
  }
}
@media (min-width: 1240px) {
  .bswh-home div#content .hero .row {
    height: 100px;
    position: absolute;
    left: 0;
  }
  .bswh-home .hero-media.hero-bg.bg-hero-hp {
    width: 100%;
    flex: 1 1 45%;
  }
}
@media (min-width: 1240px) {
  .bswh-home .hero-media.hero-bg.bg-hero-hp {
    width: 100%;
    flex: 1 1 50%;
  }
}
@media (min-width: 1440px) {
  .bswh-home .hero-media.hero-bg.bg-hero-hp {
    width: 100%;
    flex: 1 1 57%;
  }
}
@media (min-width: 768px) and (max-width: 768px) {
  .bswh-home .hero-media.hero-bg.bg-hero-hp {
    top: 0;
  }
}

@media (min-width: 1240px) {
  .solid .findcare-toolbar-container {
    opacity: 1 !important;
  }
  .bswh-home .find-care-tool-container .find-care-app .form-search {
    flex-direction: column;
    background: #fff;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    filter: none;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app {
    position: absolute;
    right: 0;
  }
  .hero.container {
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    left: 0;
    max-width: unset;
    display: flex;
    flex-direction: row-reverse;
  }
  .container.findcare-toolbar-container {
    max-width: unset;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    right: 0;
    left: unset;
    flex: 0 1 55%;
  }
  .bswh-home div#content .hero .row {
    height: 100px;
    position: absolute;
    left: 0;
  }
  .bswh-home .find-care-tool-container .findcare-search-container {
    margin-right: 12px;
    max-width: 100%;
    min-width: 150px;
    width: 100%;
  }
  .findcare-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .app-provider.find-care-tool-container {
    position: absolute;
    width: 100%;
    background: #fff;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0;
    margin: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app {
    position: relative;
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1240px) and (min-width: 1240px) {
  .bswh-home .find-care-tool-container .find-care-app {
    background-color: #f2f2f2;
  }
}
@media (min-width: 1240px) {
  .bswh-home .find-care-tool-container .find-care-app .term-container {
    margin: 0;
    z-index: 3;
  }
  .find-care-tool-container .find-care-app .keyword-search, .find-care-tool-container .find-care-app .location-search, .find-care-tool-container .find-care-app .insurance-search {
    outline-offset: 2px;
    border-radius: 8px;
    outline: 1px solid #ddd;
    min-height: 65px;
    margin: 0;
  }
  header .header-with-drawer {
    top: 50px;
  }
  header.sticky {
    filter: none;
  }
  .find-care-tool-container .find-care-app .pan-width {
    width: 100%;
    flex: 1;
  }
  .bswh-home .find-care-tool-container .find-care-app .term-container div {
    filter: none;
  }
  .transparent-bg .primary-white-bg.full-width .cta-icons i {
    color: #007fa9;
  }
  .form-search:before {
    font-size: 30px;
    content: "Find the care you need";
    color: #007fa9;
    font-family: "sharpsans-semibold";
    width: 100%;
  }
  .find-care-tool-container .find-care-app .input-seperator {
    display: none;
  }
  .bswh-home .find-care-tool-container .find-care-app .term-container div {
    color: #3a4455;
  }
  .bswh-home .find-care-tool-container .find-care-app .term-container a {
    color: #007fa9;
  }
  .find-care-tool-container .find-care-app .input1, .find-care-tool-container .find-care-app .input2, .find-care-tool-container .find-care-app .insurance-search .input-container:first-of-type {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
  }
  .find-care-tool-container .find-care-app .focus .input1, .find-care-tool-container .find-care-app .focus .input2 {
    display: block;
  }
  .find-care-tool-container .find-care-app .focus.insurance-search .input-container:first-of-type {
    display: block;
  }
  .find-care-tool-container .find-care-app .icon {
    margin-left: 16px;
  }
  .list-container .list-item span.list-icon-container {
    margin-right: 0;
  }
  .find-care-tool-container .find-care-app .provider-img {
    margin-right: 0;
  }
  .find-care-tool-container .find-care-app .vertical-bar {
    margin: 0;
  }
}
@media only screen and (min-width: 1240px) {
  .container.findcare-toolbar-container {
    flex: 0 1 50%;
  }
}
@media only screen and (min-width: 1440px) {
  .header .container {
    max-width: 95%;
  }
  .container.findcare-toolbar-container {
    flex: 0 1 47%;
  }
}
@media only screen and (min-width: 1600px) {
  .container.findcare-toolbar-container {
    flex: 0 1 45%;
  }
}
@media (max-width: 768px) {
  .findcare-toolbar-container {
    z-index: 1;
  }
  .findcare-active .findcare-toolbar-container {
    z-index: 10;
  }
}
@media (min-width: 1240px) {
  .bswh-home .input-seperator {
    height: 2px;
    min-height: 2px;
    max-height: 2px;
    width: 100%;
    background: #ddd;
  }
  .bswh-home .find-care-tool-container .find-care-app .keyword-search {
    width: 100%;
  }
  .bswh-home .find-care-tool-container .find-care-app .location-search {
    width: 100%;
  }
  .bswh-home .find-care-tool-container .find-care-app .insurance-search {
    width: 100%;
  }
}

@media (min-width: 1240px) {
  .bswh-home .find-care-tool-container .find-care-app .keyWord {
    left: -5px;
    width: 100%;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.35));
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    margin-top: 20px;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width {
    display: flex;
    flex-direction: column;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width .list-item {
    display: flex;
    gap: 8px;
  }
  .bswh-home .bswh-home .find-care-tool-container .findcare-search-container {
    max-width: 50%;
  }
}

@media screen and (min-width: 1100px) {
  .bswh-home {
    /* SINGLE COLUMN */
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:first-child {
    /* Top Block */
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:first-child .list-container:first-child {
    /* First Item in a group */
    /* First Item Standalone */
    /* Last Item */
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:first-child .list-container:first-child .list-item:first-child {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:first-child .list-container:first-child .list-item:first-child:hover {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:first-child .list-container:first-child .list-item:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:first-child .list-container:first-child .list-item:last-child:not(:first-child):hover {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:first-child .list-container:last-child {
    /* First Item in a group */
    /* First Item Standalone */
    /* Last Item */
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:first-child .list-container:last-child .list-item:first-child {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:first-child .list-container:last-child .list-item:first-child:hover {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:first-child .list-container:last-child .list-item:last-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:first-child .list-container:last-child .list-item:last-child:hover {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:first-child .list-container:last-child .list-item:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:first-child .list-container:last-child .list-item:last-child:not(:first-child):hover {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}

@media screen and (min-width: 1100px) {
  .bswh-home {
    /* LEFT COLUMN */
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(1):not(:last-child) {
    /* Top Block */
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(1):not(:last-child) .list-container:first-child {
    /* First Item in a group */
    /* First Item Standalone */
    /* Last Item */
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(1):not(:last-child) .list-container:first-child .list-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(1):not(:last-child) .list-container:first-child .list-item:first-child:hover {
    border-top-right-radius: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(1):not(:last-child) .list-container:first-child .list-item:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(1):not(:last-child) .list-container:first-child .list-item:last-child:not(:first-child):hover {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(1):not(:last-child) .list-container:last-child {
    /* First Item in a group */
    /* First Item Standalone */
    /* Last Item */
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(1):not(:last-child) .list-container:last-child .list-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(1):not(:last-child) .list-container:last-child .list-item:first-child:hover {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(1):not(:last-child) .list-container:last-child .list-item:last-child {
    border-top-right-radius: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(1):not(:last-child) .list-container:last-child .list-item:last-child:hover {
    border-top-right-radius: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(1):not(:last-child) .list-container:last-child .list-item:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(1):not(:last-child) .list-container:last-child .list-item:last-child:not(:first-child):hover {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 0;
  }
}

@media screen and (min-width: 1100px) {
  .bswh-home {
    /* RIGHT COLUMN */
    /*  True if there is 2 or less return categories */
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(3):not(:first-child) {
    /* Top Block */
    /* True if there is 1 return categories */
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(3):not(:first-child) .list-container:first-child {
    /* First Item in a group */
    /* First Item Standalone */
    /* Last Item */
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(3):not(:first-child) .list-container:first-child .list-item:first-child {
    border-top-right-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(3):not(:first-child) .list-container:first-child .list-item:first-child:hover {
    border-top-right-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(3):not(:first-child) .list-container:first-child .list-item:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(3):not(:first-child) .list-container:first-child .list-item:last-child:not(:first-child):hover {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(3):not(:first-child) .list-container:last-child {
    /* First Item in a group */
    /* First Item Standalone */
    /* Last Item */
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(3):not(:first-child) .list-container:last-child .list-item:last-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 10px;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width:nth-child(3):not(:first-child) .list-container:last-child .list-item:last-child:hover {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 10px;
  }
}

.bswh-home #wrapper {
  max-width: unset;
}

div#content {
  max-width: 1920px;
  margin: auto;
  background-color: #fff;
  overflow: hidden;
}

.bswh-home .sticky {
  max-width: unset;
}

.secondary-medium-yellow-bg.full-width > div {
  max-width: 1920px;
}

.global-header {
  max-width: 1920px;
  margin: auto;
}

.bswh-home .sticky {
  filter: drop-shadow(rgba(0, 0, 0, 0.05) 0 3px 12px);
}

@media (min-width: 1920px) {
  .global-header nav {
    padding: 0 20px;
  }
}
@media (min-width: 1240px) {
  .bswh-home .find-care-tool-container .findcare-search-container {
    max-width: 50%;
    margin: 0 auto;
  }
}
div#footer {
  margin-top: 60px;
}

@media (min-width: 1240px) {
  .bswh-home .find-care-tool-container .findcare-search-container {
    max-width: 50%;
    margin: 0 auto;
  }
  .global-footer {
    max-width: 1920px;
    margin: auto;
    padding: 0 40px;
  }
}
@media screen and (min-width: 769px) {
  .solid [class*=find-care], .solid [class*=find-care] > * {
    pointer-events: all !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1239px) {
  .bswh-home .container.findcare-toolbar-container {
    z-index: 3;
    height: 140px;
    position: relative;
  }
  .bswh-home .hero-media.hero-bg.bg-hero-hp {
    z-index: 1;
    height: calc(var(--hero-height) - 75px);
    min-height: calc(var(--hero-height) - 75px);
    max-height: calc(var(--hero-height) - 75px);
    top: -62px;
  }
  .bswh-home div#wrapper > main:first-of-type > div#content > .row > .component.container:first-of-type .row {
    z-index: 2;
  }
  .component.find-care-toolbar > .component-content {
    height: 140px;
    min-height: unset;
    max-height: 140px;
  }
}
.bswh-home .section-padding {
  padding: 0;
}

.bswh-home .component.container.col-12.full-width.indent-top.indent-bottom {
  margin-top: 0;
}

.bswh-home .component.container.col-12.full-width.indent-top.indent-bottom {
  margin-top: 0;
  margin-bottom: 0;
}

.bswh-home {
  background: rgb(54, 66, 72);
}
.bswh-home div#header header.sticky .header.sticky-page.transparent-bg {
  background: #fff;
  opacity: 1 !important;
}
@media (min-width: 600px) {
  .bswh-home {
    background: rgb(255, 255, 255);
  }
}
.bswh-home #wrapper {
  background: var(--color-secondary-a5);
}
@media (min-width: 1920px) {
  .bswh-home header {
    background: rgb(255, 255, 255);
  }
  .bswh-home .solid {
    transition: none !important;
  }
}
@media screen and (max-width: 767px) {
  .bswh-home .component-content > .indent-bottom {
    padding-bottom: 20px;
  }
  .bswh-home .component-content > .indent-top {
    padding-top: 20px;
  }
}
.bswh-home .row {
  margin-left: 0;
  margin-right: 0;
}
.bswh-home .promo-fifty .container-content p, .bswh-home .content p, .bswh-home .rich-text p {
  color: rgb(54, 66, 72);
}
@media only screen and (min-width: 1440px) {
  .bswh-home .row {
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px) {
  .row > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .bswh-home .container .container > .component-content > .row {
    margin-left: 0;
    margin-right: 0;
  }
}
.bswh-home .rich-text a, a {
  font-weight: unset;
}

@media only screen and (min-width: 768px) {
  .container .container > .component-content > .row {
    margin-left: 0;
    margin-right: 0;
  }
}
div#immediate-care-cards > .component-content > .component.container > .component-content > .row {
  display: flex;
  justify-content: space-between;
}
div#immediate-care-cards > .component-content > .component.container > .component-content > .row .component.rich-text {
  flex: 0 0 100%;
}
div#immediate-care-cards > .component-content > .component.container > .component-content > .row .bswh-home #immediate-care-cards .promo.card-wrapper {
  flex: 1 0 33.333%;
}
div#immediate-care-cards > .component-content > .component.container > .component-content > .row .find-care-modal-close {
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .bswh-home .find-care-tool-container .find-care-app .autocomplete-items {
    min-width: 100%;
  }
}

@media (min-width: 1240px) {
  .bswh-home .app-provider.find-care-tool-container {
    background: unset;
  }
  .bswh-home .find-care-tool-container .find-care-app .form-search {
    background: #FFB71B !important;
    padding: 0 24px;
  }
  .bswh-home .form-search:before {
    text-align: center;
    color: #364248;
  }
  .bswh-home .find-care-tool-container .find-care-app .keyword-search, .bswh-home .find-care-tool-container .find-care-app .location-search, .bswh-home .find-care-tool-container .find-care-app .insurance-search {
    background: #fff;
    outline: 1px solid #a6a6a5;
    outline-offset: 0px;
    border-radius: 4px;
  }
  .bswh-home .App.find-care-app :has(.focus) {
    background: #FFB71B !important;
  }
}

@media screen and (min-width: 1240px) {
  .solid [class*=find-care], .solid [class*=find-care] > * {
    pointer-events: all;
  }
  .bswh-home .find-care-tool-container .find-care-app .form-search {
    gap: 22px;
    justify-content: center;
    border: none;
  }
}
@media (max-width: 768px) {
  .bswh-home .hero.container {
    overflow: unset !important;
  }
  .bswh-home header.sticky {
    visibility: visible;
  }
  .bswh-home.findcare-active header.sticky {
    visibility: hidden;
  }
  .bswh-home.findcare-active > div#wrapper > main:first-of-type {
    top: 0;
  }
  .bswh-home .find-care-toolbar {
    position: relative;
  }
  .bswh-home .hero .component-content {
    height: 20px;
    max-width: 100vw;
    position: absolute;
    bottom: 0;
  }
}
.bswh-home #hot-links {
  width: 100vw;
  z-index: 2;
  max-width: 1920px;
  background: rgb(0, 126, 180);
}
.bswh-home #hot-links .links-wrapper {
  height: 60px;
  overflow-x: scroll;
}
.bswh-home #hot-links .links-wrapper::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .bswh-home #hot-links .links-wrapper {
    overflow-x: hidden;
  }
}
.bswh-home #hot-links .links-wrapper ul {
  margin: 0;
  padding: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  gap: 20px;
  margin: 0 16px;
  min-width: -moz-max-content;
  min-width: max-content;
}
@media (min-width: 710px) {
  .bswh-home #hot-links .links-wrapper ul {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .bswh-home #hot-links .links-wrapper ul {
    width: 100%;
    padding: 8px;
    margin: 0;
    gap: 3%;
  }
}
.bswh-home #hot-links .links-wrapper ul li {
  list-style: none;
  height: 100%;
  min-width: -moz-max-content;
  min-width: max-content;
  display: flex;
  align-items: center;
}
.bswh-home #hot-links .links-wrapper ul li a {
  color: rgb(255, 255, 255);
  font-family: "sharpsans-bold";
  text-decoration: none;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .bswh-home #hot-links .links-wrapper ul li a {
    cursor: pointer;
    text-decoration: none;
    border-bottom: 0;
    position: relative;
    display: inline-block;
    transform: translate3d(0, 0, 0);
    transition: transform 1s, color 0.5s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    height: auto;
  }
  .bswh-home #hot-links .links-wrapper ul li a::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 100%;
    width: 100%;
    height: 2px;
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 50%;
    transition: transform 0.35s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    background: rgb(255, 255, 255);
    left: 0;
  }
  .bswh-home #hot-links .links-wrapper ul li a:after {
    display: none;
  }
  .bswh-home #hot-links .links-wrapper ul li a:hover {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    color: rgb(255, 255, 255);
  }
  .bswh-home #hot-links .links-wrapper ul li a:hover::before {
    transform: scale3d(1, 1, 1);
    transform-origin: 0% 50%;
    transition-timing-function: ease-out;
  }
}
.bswh-home #hot-links .links-wrapper ul li.pipe {
  height: 80% !important;
  min-width: 1px;
  background: rgb(255, 255, 255);
}
.bswh-home #hot-links:before {
  content: "";
  width: 150vw;
  position: absolute;
  left: -50vw;
  z-index: -1;
  height: 60px;
}
@media (min-width: 768px) {
  .bswh-home #hot-links:before {
    height: 75px;
  }
}
@media (min-width: 2200px) {
  .bswh-home #hot-links:before {
    width: 200vw;
    left: -100vw;
  }
}

.bswh-home .page-section #immediate-care-cards .container {
  max-width: 1300px;
}
.bswh-home .section-padding:has(#immediate-care-cards) {
  padding-top: unset;
}
.bswh-home #immediate-care-cards {
  background: rgb(255, 255, 255);
  padding: 40px 0 50px 0;
}
.bswh-home #immediate-care-cards .card {
  box-shadow: none;
}
.bswh-home #immediate-care-cards .promo.card-wrapper {
  filter: drop-shadow(0px 6px 6px rgba(0, 0, 0, 0.15));
}
@media (min-width: 515px) {
  .bswh-home #immediate-care-cards {
    padding: 40px 50px 50px;
  }
}
@media (min-width: 768px) {
  .bswh-home #immediate-care-cards {
    padding: 40px 60px 60px;
  }
}
.bswh-home #immediate-care-cards .promo-text.card-body .card-description {
  color: rgb(54, 66, 72);
}
@media (min-width: 992px) {
  .bswh-home #immediate-care-cards {
    padding: 40px;
  }
}
.bswh-home #immediate-care-cards .rich-text {
  background: unset;
}
@media (max-width: 514px) {
  .bswh-home #immediate-care-cards .care-cards-copy {
    padding: 0 30px;
  }
}
.bswh-home #immediate-care-cards .care-cards-copy h2 {
  color: rgb(54, 66, 72) !important;
  font-size: 2.8rem;
}
@media (min-width: 768px) {
  .bswh-home #immediate-care-cards .care-cards-copy h2 {
    font-size: 3.2rem;
  }
}
.bswh-home #immediate-care-cards .care-cards-copy p {
  color: rgb(54, 66, 72);
  font-size: 1.6rem;
  line-height: 1.4;
  font-family: "sharpsans-semibold";
  font-weight: unset;
}
@media (min-width: 768px) {
  .bswh-home #immediate-care-cards .care-cards-copy p {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .bswh-home #immediate-care-cards .care-cards-copy p {
    font-size: 1.6rem;
  }
}
.bswh-home #immediate-care-cards .promo.card-wrapper {
  display: flex;
  justify-content: center;
}
.bswh-home #immediate-care-cards .promo.card-wrapper .card {
  background: rgb(255, 255, 255);
  border-radius: 4px;
}
@media (min-width: 515px) and (max-width: 991px) {
  .bswh-home #immediate-care-cards .promo.card-wrapper .card {
    max-width: 100%;
  }
}
.bswh-home #immediate-care-cards .promo.card-wrapper .card h2 {
  color: rgb(54, 66, 72);
}
.bswh-home #immediate-care-cards .promo.card-wrapper .card .promo-text.card-body a.btn.btn-primary-teal {
  border-radius: 4px;
  color: rgb(54, 66, 72);
  background: rgb(255, 183, 27);
  border: 1px solid rgb(255, 183, 27);
  cursor: pointer;
  padding: 12px 24px;
  padding-right: 30px;
}
.bswh-home #immediate-care-cards .promo.card-wrapper .card .promo-text.card-body a.btn.btn-primary-teal:after {
  display: none;
}
.bswh-home #immediate-care-cards .promo.card-wrapper .card .promo-text.card-body a.btn.btn-primary-teal:hover {
  text-decoration: none;
}
.bswh-home #immediate-care-cards .promo.card-wrapper .card .promo-text.card-body a.btn.btn-primary-teal:hover:after {
  color: rgba(18, 177, 191, 0.2196078431);
}
.bswh-home #immediate-care-cards a.btn[class*=btn-primary]::before, .bswh-home #immediate-care-cards button.btn[class*=btn-primary]::before {
  background-color: rgb(0, 84, 120) !important;
  /* #ffc10738 */
}
.bswh-home #immediate-care-cards a.btn[class*=btn-primary]::after, .bswh-home #immediate-care-cards button.btn[class*=btn-primary]::after {
  content: "\e007" !important;
  font-family: bsw-icons;
  display: inline;
  outline: 0;
  font-size: 18px;
  vertical-align: middle;
  margin-left: 2px;
  width: 30px;
  height: 30px;
  background: unset;
  transform: none;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  opacity: 1;
  z-index: 1;
}
.bswh-home #immediate-care-cards a.btn[class*=btn-primary]:hover::after, .bswh-home #immediate-care-cards button.btn[class*=btn-primary]:hover::after {
  color: rgb(255, 255, 255);
}
@media (min-width: 515px) and (max-width: 991px) {
  .bswh-home .promo.card-wrapper > .component-content {
    width: 100%;
  }
}
@media (min-width: 515px) and (max-width: 768px) {
  .bswh-home div#immediate-care-cards .promo.card-wrapper .card .card-top-image img {
    min-width: 210px;
    max-width: 210px;
  }
  .bswh-home div#immediate-care-cards .promo.card-wrapper .card .card-top-image {
    flex: 1 0 210px;
    margin: 0;
    padding: 0;
  }
  .bswh-home div#immediate-care-cards .promo.card-wrapper .card .card-body {
    flex: 1 1 100%;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .bswh-home div#immediate-care-cards .promo.card-wrapper .card .card-top-image img {
    min-width: 350px;
    max-width: 350px;
  }
}
@media (min-width: 992px) {
  .bswh-home div#immediate-care-cards .promo.card-wrapper .card .card-top-image {
    flex: 1 0 50%;
    margin: 0;
    padding: 0;
  }
  .bswh-home div#immediate-care-cards .promo.card-wrapper .card .card-body {
    flex: 1 1 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .bswh-home .promo.card-wrapper .promo-text.card-body div {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .bswh-home #immediate-care-cards .promo.card-wrapper .card {
    max-width: 360px;
  }
}
.bswh-home div#immediate-care-cards > .component-content > .component.container > .component-content > .row {
  max-width: 1300px;
  margin: auto;
}
.bswh-home div#immediate-care-cards div#primary-care-card .field-promolink.secondary-cta, .bswh-home div#immediate-care-cards div#same-day-care-card .field-promolink.secondary-cta, .bswh-home div#immediate-care-cards div#preventive-care-card .field-promolink.secondary-cta {
  display: none;
}

@media (max-width: 767px) {
  .bswh-home .component.link-list.scroll-section.col-12.horizontal.position-center {
    background: #fff;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .bswh-home .component.link-list.scroll-section.col-12.horizontal.position-center ul.row.justify-content-md-center {
    background: #ddd;
    row-gap: 1px;
  }
  .bswh-home .link-list.horizontal .component-content ul li a {
    border: none;
    padding-left: 40px;
    min-height: 60px;
    color: rgb(54, 66, 72);
  }
  .bswh-home .link-list.horizontal .component-content ul li a:after {
    margin-right: 40px;
  }
  .bswh-home .link-list.horizontal .component-content ul li a:hover {
    border-bottom: 1px solid #ffb71b;
    border-top: 1px solid #ffb71b;
  }
}
@media (min-width: 992px) {
  .bswh-home div#quick-links {
    padding: 0 40px;
  }
  .bswh-home .component.link-list.scroll-section.col-12.horizontal.position-center {
    max-width: 1600px;
    margin: auto;
  }
}
@media only screen and (min-width: 768px) {
  .bswh-home .link-list.horizontal .component-content ul li a {
    border-radius: 4px;
    color: rgb(54, 66, 72);
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .bswh-home .link-list.horizontal .component-content ul {
    flex-wrap: wrap;
    gap: 20px;
  }
  .bswh-home .link-list.horizontal .component-content ul li {
    min-width: 30%;
    max-width: 240px;
  }
}

.bswh-home .transparent-bg .primary-white-bg.full-width .cta-icons i {
  color: rgb(54, 66, 72);
  cursor: pointer;
}
.bswh-home .transparent-bg .primary-white-bg.full-width a, .bswh-home .global-header nav .nav-links > ul > li > a {
  color: rgb(54, 66, 72);
}
.bswh-home .global-header nav .nav-links > ul {
  display: flex;
  gap: 30px;
}
@media (min-width: 992px) {
  .bswh-home .global-header nav .nav-links > ul > li > a:not(.acccount-mobile) {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .bswh-home .global-header nav .nav-links > ul > li > a:not(.acccount-mobile) {
    cursor: pointer;
    text-decoration: none;
    border-bottom: 0;
    position: relative;
    display: inline-block;
    transform: translate3d(0, 0, 0);
    transition: transform 1s, color 0.5s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  }
  .bswh-home .global-header nav .nav-links > ul > li > a:not(.acccount-mobile)::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 100%;
    width: 100%;
    height: 2px;
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 50%;
    transition: transform 0.35s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    background: rgb(0, 126, 180);
    left: 0;
  }
  .bswh-home .global-header nav .nav-links > ul > li > a:not(.acccount-mobile):after {
    display: none;
  }
  .bswh-home .global-header nav .nav-links > ul > li > a:not(.acccount-mobile):hover {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    color: rgb(0, 126, 180);
  }
  .bswh-home .global-header nav .nav-links > ul > li > a:not(.acccount-mobile):hover::before {
    transform: scale3d(1, 1, 1);
    transform-origin: 0% 50%;
    transition-timing-function: ease-out;
  }
}
.bswh-home .bswh-home .global-header .logo.full-negative, .bswh-home .bswh-home .global-header .logo.full {
  content: url(https://www.bswhealth.com/-/media/project/bsw/sites/bswhealth/bswh-logo-gray.svg);
}
.bswh-home .transparent-bg .global-header .nav-links ul li a:focus, .bswh-home .transparent-bg .global-header .nav-links ul li a:hover {
  color: rgb(0, 126, 180);
}
.bswh-home .global-header nav .nav-links > ul > li .mega-menu {
  top: var(--header-height);
}
@media only screen and (min-width: 992px) {
  .bswh-home .global-header nav .nav-links > ul > li .mega-menu {
    top: 70px;
  }
  .bswh-home .global-header .logo.full-negative, .bswh-home .bswh-home .global-header .logo.full {
    content: url(https://www.bswhealth.com/-/media/project/bsw/sites/bswhealth/bswh-logo-gray.svg);
  }
}
.bswh-home .global-header nav .cta-group .cta-icons i {
  color: rgb(54, 66, 72);
}
@media (max-width: 991px) {
  .bswh-home .global-header .logo:not(.mono) {
    width: 160px;
  }
  .bswh-home .global-header .logo.mono {
    content: url(https://www.bswhealth.com/-/media/project/bsw/sites/bswhealth/bswh-icon-gray.svg);
    width: 36px;
    height: 36px;
  }
  .bswh-home .global-header .burger-close i {
    color: rgb(54, 66, 72);
  }
  .bswh-home .global-header nav .nav-links > ul > li .acccount-mobile i.bsw-icon-account {
    color: rgb(54, 66, 72);
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .global-header nav .nav-links {
    top: 50px;
    height: calc(100vh - 60px);
  }
}
.bswh-home .find-care-tool-container .find-care-app .hightlight {
  color: rgb(0, 126, 180);
}
@media screen and (max-width: 768px) {
  .bswh-home .find-care-tool-container .find-care-app .find-care-title span {
    cursor: pointer;
  }
  .bswh-home .find-care-tool-container .find-care-btn-container .find-care-button {
    pointer-events: all;
  }
  .bswh-home .find-care-tool-container .find-care-app .find-care-title span {
    pointer-events: all;
  }
  .bswh-home .find-care-tool-container .findcare-search-container .search-button {
    border-radius: 4px;
    padding: 12px 0;
  }
  .bswh-home .find-care-tool-container .findcare-search-container .search-button .letsGo {
    display: flex;
    font-size: 1.4rem;
  }
  .bswh-home .find-care-tool-container .find-care-app .search-btn-icon {
    margin-left: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 4px;
  }
  .bswh-home .find-care-tool-container .find-care-app .search-button:hover {
    border: 1px solid rgb(0, 84, 120);
  }
  .bswh-home .find-care-tool-container .find-care-app .search-button:hover i.bsw-icon-arrow.search-btn-icon {
    color: rgb(255, 183, 27);
    border: 1px solid rgb(255, 255, 255);
  }
  .bswh-home .find-care-tool-container .find-care-app .search-button:hover:before {
    background: rgb(0, 84, 120);
  }
  .bswh-home .find-care-tool-container .find-care-app .findcare-search-container .search-button .search-btn-icon {
    margin-right: 8px;
    display: flex;
    flex-direction: row;
    margin-left: 4px;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
  }
  .bswh-home .find-care-tool-container .find-care-btn-container .find-care-button {
    border-radius: 4px;
    width: 100%;
  }
  .bswh-home .find-care-tool-container .find-care-btn-container .find-care-button:hover {
    border: 1px solid rgb(0, 84, 120);
  }
  .bswh-home .find-care-tool-container .find-care-btn-container .find-care-button:hover i.bsw-icon-arrow.search-btn-icon {
    color: rgb(255, 183, 27);
    border: 1px solid rgb(255, 255, 255);
  }
  .bswh-home .find-care-tool-container .find-care-btn-container .find-care-button:hover:before {
    background: rgb(0, 84, 120);
  }
  .bswh-home .find-care-tool-container .find-care-btn-container .find-care-button i.bsw-icon-arrow.search-btn-icon {
    margin-right: 8px;
    display: flex;
    flex-direction: row;
    margin-left: 4px;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    justify-content: center;
  }
}
@media (min-width: 769px) {
  .bswh-home .find-care-tool-container .find-care-app .list-item {
    color: rgb(54, 66, 72);
    font-family: "sharpsans-semibold";
    min-height: 40px;
    padding: 12px;
  }
}
@media (min-width: 992px) {
  .bswh-home .find-care-tool-container .findcare-search-container .search-button {
    border-radius: 4px;
    padding: 12px 0;
  }
  .bswh-home .find-care-tool-container .findcare-search-container .search-button .letsGo {
    display: flex;
    font-size: 1.4rem;
  }
  .bswh-home .find-care-tool-container .find-care-app .search-btn-icon {
    margin-left: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 4px;
  }
  .bswh-home .find-care-tool-container .find-care-app .search-button:hover {
    border: 1px solid rgb(0, 84, 120);
  }
  .bswh-home .find-care-tool-container .find-care-app .search-button:hover i.bsw-icon-arrow.search-btn-icon {
    color: rgb(255, 183, 27);
    border: 1px solid rgb(255, 255, 255);
  }
  .bswh-home .find-care-tool-container .find-care-app .search-button:hover:before {
    background: rgb(0, 84, 120);
  }
}
@media (min-width: 769px) and (max-width: 1239px) {
  .bswh-home .find-care-tool-container .find-care-app .form-search {
    background: #fff;
    width: 100vw;
    left: 0;
    border-radius: 4px;
  }
  .bswh-home .app-provider.find-care-tool-container {
    padding: 0;
    left: 0;
    right: unset;
    max-width: 100vw;
  }
  .bswh-home .find-care-tool-container .findcare-search-container .search-button {
    padding: 0;
    margin: 3px 0;
    height: 50px;
    align-items: center;
  }
}
@media (min-width: 992px) and (max-width: 1239px) {
  .bswh-home .app-provider.find-care-tool-container {
    width: 100vw;
    border-top: 1px solid rgb(221, 221, 221);
    margin-top: 0;
  }
}
.bswh-home .find-care-tool-container .find-care-app {
  margin: 0;
  max-width: 100vw;
}
@media (min-width: 1240px) {
  .bswh-home .find-care-tool-container .find-care-app .focus {
    border: 1px solid #FFC107;
    box-shadow: 0 0 3px 3px #fff;
  }
  .bswh-home .find-care-tool-container .find-care-app .icon {
    margin: 0 10px;
    justify-content: center;
    padding: 0;
  }
  .bswh-home .find-care-tool-container .find-care-app .keyword-search {
    margin-left: 0;
  }
  .bswh-home span.letsGo {
    font-size: 1.5rem;
  }
  .bswh-home .find-care-tool-container .find-care-app .pan-width {
    width: unset;
    min-width: 50%;
  }
}
@media (min-width: 1600px) {
  .bswh-home .find-care-tool-container .find-care-app .form-search {
    gap: 22px;
  }
}
@media screen and (max-width: 768px) {
  .bswh-home .find-care-tool-container .find-care-app .findcare-search-container .search-button {
    border-radius: 4px;
  }
  .bswh-home .find-care-tool-container .find-care-app .keyword-search, .bswh-home .find-care-tool-container .find-care-app .location-search {
    border-radius: 4px;
  }
  .bswh-home .find-care-tool-container .find-care-app .find-care-title span {
    border: none;
  }
}

.bswh-home .component.componentcontainer.alert.global.collapsible.col-12 {
  transition: none !important;
}
.bswh-home .secondary-medium-yellow-bg .alert-content, .bswh-home .secondary-medium-yellow-bg:before {
  transition: all 0.5s ease-in-out;
}
.bswh-home .alert-content {
  transition: opacity none;
}

.bswh-home .promo-fifty#power-campaign, .bswh-home #blog-feature-article {
  --promo-path-size:50px;
  z-index: 1;
  position: relative;
}
@media (min-width: 768px) {
  .bswh-home .promo-fifty#power-campaign, .bswh-home #blog-feature-article {
    --promo-path-size:60px;
  }
}
@media (min-width: 992px) {
  .bswh-home .promo-fifty#power-campaign, .bswh-home #blog-feature-article {
    --promo-path-size:80px;
  }
}
@media (min-width: 1600px) {
  .bswh-home .promo-fifty#power-campaign, .bswh-home #blog-feature-article {
    --promo-path-size:100px;
  }
}
@media (min-width: 992px) {
  .bswh-home .promo-fifty#power-campaign, .bswh-home #blog-feature-article {
    padding: 40px;
  }
}
.bswh-home .promo-fifty#power-campaign .container-content, .bswh-home #blog-feature-article .container-content {
  padding: 0;
}
@media (min-width: 992px) {
  .bswh-home .promo-fifty#power-campaign:after, .bswh-home #blog-feature-article:after {
    content: "";
    width: var(--promo-path-size);
    height: 100%;
    background: #FFB71B;
    position: absolute;
    top: 0;
    right: 0;
    mix-blend-mode: multiply;
    z-index: 3;
  }
}
@media (min-width: 1600px) {
  .bswh-home .promo-fifty#power-campaign:after, .bswh-home #blog-feature-article:after {
    width: var(--promo-path-size);
    height: 100%;
  }
}
.bswh-home .promo-fifty#power-campaign > .component-content > .container, .bswh-home #blog-feature-article > .component-content > .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 992px) {
  .bswh-home .promo-fifty#power-campaign > .component-content > .container, .bswh-home #blog-feature-article > .component-content > .container {
    gap: 40px;
    padding-right: calc(var(--promo-path-size) + 40px);
    flex-direction: row;
  }
}
.bswh-home .promo-fifty#power-campaign .container-image, .bswh-home .promo-fifty#power-campaign .promo-fifty .container-video, .bswh-home #blog-feature-article .container-image, .bswh-home #blog-feature-article .promo-fifty .container-video {
  flex: 1 0 50%;
  padding: 0;
  aspect-ratio: 4/3;
}
@media (min-width: 992px) {
  .bswh-home #blog-feature-article .component-content > .container {
    flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .bswh-home #blog-feature-article .container-image {
    position: relative;
  }
  .bswh-home #blog-feature-article .container-image:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0px;
    width: var(--promo-path-size);
    height: 100%;
    z-index: 100000000000;
    background: #feb71b;
    mix-blend-mode: multiply;
  }
}
@media (max-width: 991px) {
  .bswh-home #blog-feature-article .power-text-container {
    height: -moz-max-content;
    height: max-content;
  }
}

.bswh-home .promo-fifty#power-campaign, .bswh-home #blog-feature-article {
  --promo-path-size:50px;
}
@media (min-width: 768px) {
  .bswh-home .promo-fifty#power-campaign, .bswh-home #blog-feature-article {
    --promo-path-size:60px;
  }
}
@media (min-width: 992px) {
  .bswh-home .promo-fifty#power-campaign, .bswh-home #blog-feature-article {
    --promo-path-size:80px;
  }
}
@media (min-width: 1600px) {
  .bswh-home .promo-fifty#power-campaign, .bswh-home #blog-feature-article {
    --promo-path-size:100px;
  }
}
.bswh-home .promo-fifty#power-campaign .container-content p, .bswh-home .promo-fifty#power-campaign .content p, .bswh-home .promo-fifty#power-campaign .rich-text p, .bswh-home .promo-fifty#power-campaign a, .bswh-home #blog-feature-article .container-content p, .bswh-home #blog-feature-article .content p, .bswh-home #blog-feature-article .rich-text p, .bswh-home #blog-feature-article a {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .bswh-home .promo-fifty#power-campaign .container-content p, .bswh-home .promo-fifty#power-campaign .content p, .bswh-home .promo-fifty#power-campaign .rich-text p, .bswh-home .promo-fifty#power-campaign a, .bswh-home #blog-feature-article .container-content p, .bswh-home #blog-feature-article .content p, .bswh-home #blog-feature-article .rich-text p, .bswh-home #blog-feature-article a {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .bswh-home .promo-fifty#power-campaign .container-content p, .bswh-home .promo-fifty#power-campaign .content p, .bswh-home .promo-fifty#power-campaign .rich-text p, .bswh-home .promo-fifty#power-campaign a, .bswh-home #blog-feature-article .container-content p, .bswh-home #blog-feature-article .content p, .bswh-home #blog-feature-article .rich-text p, .bswh-home #blog-feature-article a {
    font-size: 1.6rem;
    padding: 0;
  }
}
.bswh-home .promo-fifty#power-campaign .container-content p span, .bswh-home .promo-fifty#power-campaign .content p span, .bswh-home .promo-fifty#power-campaign .rich-text p span, .bswh-home .promo-fifty#power-campaign a span, .bswh-home #blog-feature-article .container-content p span, .bswh-home #blog-feature-article .content p span, .bswh-home #blog-feature-article .rich-text p span, .bswh-home #blog-feature-article a span {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .bswh-home .promo-fifty#power-campaign .container-content p span, .bswh-home .promo-fifty#power-campaign .content p span, .bswh-home .promo-fifty#power-campaign .rich-text p span, .bswh-home .promo-fifty#power-campaign a span, .bswh-home #blog-feature-article .container-content p span, .bswh-home #blog-feature-article .content p span, .bswh-home #blog-feature-article .rich-text p span, .bswh-home #blog-feature-article a span {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .bswh-home .promo-fifty#power-campaign .container-content p span, .bswh-home .promo-fifty#power-campaign .content p span, .bswh-home .promo-fifty#power-campaign .rich-text p span, .bswh-home .promo-fifty#power-campaign a span, .bswh-home #blog-feature-article .container-content p span, .bswh-home #blog-feature-article .content p span, .bswh-home #blog-feature-article .rich-text p span, .bswh-home #blog-feature-article a span {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .bswh-home .rich-text {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
@media (max-width: 991px) {
  .bswh-home .power-text-container {
    display: flex;
    padding: 0;
  }
  .bswh-home .power-text-container .content *, .bswh-home .power-text-container .rich-text * {
    padding: 0;
  }
  .bswh-home .power-text-container .power-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .bswh-home .power-text-container .power-path {
    width: var(--promo-path-size);
    flex: 0 0 var(--promo-path-size);
    min-height: 100%;
    background: rgb(255, 183, 27);
  }
}
.bswh-home .power-text-container .power-text {
  margin: 30px;
}
@media (min-width: 992px) {
  .bswh-home .power-text-container .power-text {
    margin: 0px;
  }
}
.bswh-home .power-text-container h2 {
  display: flex;
  flex-direction: column;
  font-size: 2.8rem;
}
@media (min-width: 560px) {
  .bswh-home .power-text-container h2 {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
}
@media (min-width: 992px) {
  .bswh-home .power-text-container h2 {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
@media (min-width: 1440px) {
  .bswh-home .power-text-container h2 {
    flex-direction: row;
    gap: 8px;
  }
}
@media (min-width: 1440px) {
  .bswh-home .power-text-container p {
    max-width: 80%;
  }
}
.bswh-home #blog-feature-article .article-link a.btn-secondary-link::after, .bswh-home #blog-feature-article .article-link a.btn-secondary-link:hover::after, .bswh-home #blog-feature-article .article-link button.btn-secondary-link::after, .bswh-home #blog-feature-article .article-link button.btn-secondary-link:hover::after {
  position: relative;
}
@media (max-width: 991px) {
  .bswh-home .promo-fifty .container-content :is(h1, h2, h3, h4, h5, h6) {
    padding-bottom: 0;
  }
}

.bswh-home .promo-fifty#power-campaign .container-image .mobile-youtube .mejs-video,
.bswh-home .promo-fifty#power-campaign .container-image .sxa-video-wrapper .mejs-video,
.bswh-home .promo-fifty#power-campaign .container-video .mobile-youtube .mejs-video,
.bswh-home .promo-fifty#power-campaign .container-video .sxa-video-wrapper .mejs-video, .bswh-home #blog-feature-article .container-image .mobile-youtube .mejs-video,
.bswh-home #blog-feature-article .container-image .sxa-video-wrapper .mejs-video,
.bswh-home #blog-feature-article .container-video .mobile-youtube .mejs-video,
.bswh-home #blog-feature-article .container-video .sxa-video-wrapper .mejs-video {
  min-height: 100% !important;
}
.bswh-home .promo-fifty#power-campaign .container-image .video .component-content,
.bswh-home .promo-fifty#power-campaign .container-video .video .component-content, .bswh-home #blog-feature-article .container-image .video .component-content,
.bswh-home #blog-feature-article .container-video .video .component-content {
  min-height: 100% !important;
}
.bswh-home .promo-fifty#power-campaign .container-image .video, .bswh-home .promo-fifty#power-campaign .container-image img, .bswh-home .promo-fifty#power-campaign .container-video .video, .bswh-home .promo-fifty#power-campaign .container-video img, .bswh-home #blog-feature-article .container-image .video, .bswh-home #blog-feature-article .container-image img, .bswh-home #blog-feature-article .container-video .video, .bswh-home #blog-feature-article .container-video img {
  min-height: 100% !important;
}
.bswh-home .promo-fifty#power-campaign .container-image, .bswh-home .promo-fifty#power-campaign .container-video, .bswh-home #blog-feature-article .container-image, .bswh-home #blog-feature-article .container-video {
  min-height: 100% !important;
}
.bswh-home .promo-fifty#power-campaign .container-image .mobile-youtube, .bswh-home .promo-fifty#power-campaign .container-image .sxa-video-wrapper, .bswh-home .promo-fifty#power-campaign .container-video .mobile-youtube, .bswh-home .promo-fifty#power-campaign .container-video .sxa-video-wrapper, .bswh-home #blog-feature-article .container-image .mobile-youtube, .bswh-home #blog-feature-article .container-image .sxa-video-wrapper, .bswh-home #blog-feature-article .container-video .mobile-youtube, .bswh-home #blog-feature-article .container-video .sxa-video-wrapper {
  min-height: 100% !important;
}
.bswh-home .promo-fifty#power-campaign .container-image .video iframe, .bswh-home .promo-fifty#power-campaign .container-image img iframe, .bswh-home .promo-fifty#power-campaign .container-video .video iframe, .bswh-home .promo-fifty#power-campaign .container-video img iframe, .bswh-home #blog-feature-article .container-image .video iframe, .bswh-home #blog-feature-article .container-image img iframe, .bswh-home #blog-feature-article .container-video .video iframe, .bswh-home #blog-feature-article .container-video img iframe {
  min-height: 100% !important;
}
@media (min-width: 992px) {
  .bswh-home .promo-fifty#power-campaign .sxa-wrapper, .bswh-home #blog-feature-article .sxa-wrapper {
    flex: 1 1 56.25%;
    max-width: 1080px;
    padding: 0;
    aspect-ratio: 4/3;
    min-height: 31.640625vw;
    max-height: 31.640625vw;
  }
  .bswh-home .promo-fifty#power-campaign .container-content, .bswh-home #blog-feature-article .container-content {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.component.plain-html.col-12#hot-links {
  display: none;
}

@media (min-width: 1200px) {
  .bswh-home .autocomplete-items.list-container.insu-auto {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.35));
  }
  .bswh-home .autocomplete-items.list-container.insu-auto .list-item.popular-search-head.insurance-head {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    min-height: unset;
    margin-top: 10px;
  }
  .bswh-home .autocomplete-items.list-container.insu-auto .list-item.popular-search-head.insurance-head h6.list-item-insurance {
    flex: 1 1 50%;
    color: rgb(0, 126, 180);
    font-size: 13px;
    font-family: "sharpsans-bold";
    overflow-clip-margin: content-box 4px;
  }
  .bswh-home .autocomplete-items.list-container.insu-auto .list-item.popular-search-head.insurance-head h6.list-item-insurance:after {
    content: "\e007";
    font-family: bsw-icons;
    display: inline;
    outline: 0;
    font-size: 18px;
    vertical-align: middle;
    margin-left: 4px;
  }
  .bswh-home .autocomplete-items.list-container.insu-auto .list-item.popular-search-head.insurance-head h6.list-item-insurance:hover {
    color: rgb(54, 66, 72);
  }
  .bswh-home .autocomplete-items.list-container.insu-auto .list-item.popular-search-head {
    flex: 0 0 100%;
  }
  .bswh-home .autocomplete-items.list-container.insu-auto .list-item.popular-search-head h6 {
    color: rgb(54, 66, 72);
  }
  .bswh-home .autocomplete-items.list-container.insu-auto .list-item {
    flex: 1 1 50%;
    width: 50%;
    font-size: 13px;
    background-color: transparent !important;
    overflow: clip;
  }
}

.bswh-home .secondary-cool-grey-bg.full-width::before {
  background: #fff !important;
}
.bswh-home .component.container.indent-top.indent-bottom.col-12.secondary-cool-grey-bg.full-width {
  background: #fff !important;
}
.bswh-home div#specialties-carousel .carousel-title {
  color: rgb(54, 66, 72);
}
.bswh-home div#specialties-carousel span {
  color: rgb(54, 66, 72);
}
.bswh-home div#specialties-carousel .card-top-image {
  max-height: unset;
}
.bswh-home div#specialties-carousel .standard-carousel .carousel-body {
  font-family: "sharpsans-semibold";
  font-weight: unset;
  color: rgb(54, 66, 72);
  font-size: 1.4rem;
}
.bswh-home div#specialties-carousel .standard-carousel .carousel-body p {
  font-weight: unset;
}
@media (min-width: 768px) {
  .bswh-home div#specialties-carousel .standard-carousel .carousel-body {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .bswh-home div#specialties-carousel .standard-carousel .carousel-body {
    font-size: 1.6rem;
  }
}
.bswh-home div#specialties-carousel .standard-carousel .carousel-intro {
  margin-bottom: 0;
  padding: 30px 30px 15px 30px;
}
@media screen and (min-width: 768px) {
  .bswh-home div#specialties-carousel .standard-carousel .carousel-intro {
    padding: 40px 40px 20px 40px;
  }
}
@media screen and (min-width: 1200px) {
  .bswh-home div#specialties-carousel .standard-carousel .carousel-intro {
    padding: 60px 60px 30px 60px;
  }
}
@media screen and (min-width: 1600px) {
  .bswh-home div#specialties-carousel .standard-carousel .carousel-intro {
    padding: 80px 80px 40px 80px;
  }
}
@media (min-width: 992px) {
  .bswh-home div#specialties-carousel .promo.card-wrapper .promo-text.card-body {
    min-height: unset;
    justify-content: space-between;
  }
}
.bswh-home div#specialties-carousel .promo.card-wrapper .card-body {
  gap: 8px;
}
.bswh-home div#specialties-carousel .slick-dots {
  margin-top: unset;
}
.bswh-home div#specialties-carousel .slick-next, .bswh-home div#specialties-carousel .slick-prev {
  border-color: rgb(221, 221, 221);
}
.bswh-home div#specialties-carousel .slick-next:hover, .bswh-home div#specialties-carousel .slick-prev:hover {
  background: rgb(255, 248, 230);
  border-color: rgb(255, 183, 27);
  box-shadow: 0px 2px 2px 0px rgba(255, 183, 27, 0.16);
}
.bswh-home div#specialties-carousel .slick-next:hover::before, .bswh-home div#specialties-carousel .slick-prev:hover::before {
  color: rgb(54, 66, 72) !important;
}

:root {
  --path-overlay: 40px;
  --path-overlay-pos:20px;
  --image-height:250px;
}
@media (min-width: 768px) {
  :root {
    --path-overlay-pos: 40px;
    --path-overlay: 60px;
    --image-height:325px;
  }
}
@media (min-width: 992px) {
  :root {
    --path-overlay: 60px;
    --image-height:500px;
  }
}
@media (min-width: 1200px) {
  :root {
    --path-overlay-pos: 60px;
    --path-overlay: 70px;
    --image-height:600px;
  }
}
@media (min-width: 1600px) {
  :root {
    --path-overlay-pos: 80px;
    --path-overlay: 70px;
    --image-height:650px;
  }
}

.bswh-home .image-overlay--row {
  height: auto;
}
@media screen and (min-width: 1440px) {
  .bswh-home .image-overlay--row {
    height: auto;
  }
}
.bswh-home .component.image-overlay {
  z-index: 1;
}
.bswh-home .component.image-overlay .row {
  margin-left: 0;
  margin-right: 0;
}
.bswh-home .component.image-overlay .image-overlay.right .image-overlay--card {
  margin: auto 0;
}
.bswh-home .component.image-overlay .image-overlay--bg {
  max-width: unset;
  background-position: center;
  height: 100%;
  min-height: var(--image-height);
  overflow: hidden;
}
@media screen and (min-width: 700px) and (orientation: portrait) {
  .bswh-home .component.image-overlay .image-overlay--bg {
    height: 100%;
  }
}
@media screen and (min-width: 992px) {
  .bswh-home .component.image-overlay .image-overlay--bg {
    background-position: right center;
  }
}
@media (min-width: 1440px) and (max-width: 1600px) {
  .bswh-home .component.image-overlay .image-overlay--bg {
    height: 100%;
  }
}
.bswh-home .component.image-overlay .image-overlay--card {
  border-radius: 0;
  z-index: 3;
  filter: none;
}
.bswh-home .component.image-overlay .image-overlay--card p {
  font-family: "sharpsans-semibold";
  font-size: 1.4rem;
  font-weight: unset;
}
@media (min-width: 768px) {
  .bswh-home .component.image-overlay .image-overlay--card p {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .bswh-home .component.image-overlay .image-overlay--card p {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .bswh-home .component.image-overlay .image-overlay--card {
    min-width: 42%;
    padding: calc(var(--path-overlay) / 2);
    margin-top: calc(var(--path-overlay));
    margin-bottom: calc(var(--path-overlay));
    right: var(--path-overlay);
  }
}
@media (min-width: 1200px) {
  .bswh-home .component.image-overlay .image-overlay--card {
    min-width: 40%;
  }
}
@media (min-width: 1440px) {
  .bswh-home .component.image-overlay .image-overlay--card {
    min-width: 35%;
  }
}
.bswh-home .component.image-overlay .image-overlay--card h2, .bswh-home .component.image-overlay .image-overlay--card p {
  color: rgb(54, 66, 72) !important;
}
.bswh-home .component.image-overlay .image-overlay--card > .row > .component.rich-text > .component-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.bswh-home .component.image-overlay .email-input .rounded-input .btn-rounded {
  background-color: rgb(255, 183, 27);
  border-color: rgb(255, 183, 27);
}
.bswh-home .component.image-overlay .email-input .rounded-input .btn-rounded:after {
  color: rgb(54, 66, 72);
}

.bswh-home .component.image-overlay.scroll-section.col-12.right .image-overlay--bg.lazy:after {
  content: "";
  width: var(--path-overlay);
  height: 100%;
  background: rgb(213, 100, 122);
  position: absolute;
  z-index: 1;
  top: var(--path-overlay);
  /* top: 40px; */
  right: 0;
}
.bswh-home .image-overlay--row:after {
  content: "";
  position: absolute;
  z-index: 4;
  width: var(--path-overlay);
  height: var(--path-overlay);
  right: 0;
  width: 0;
  height: 0;
  border-bottom: var(--path-overlay) solid rgb(54, 66, 72);
  border-left: var(--path-overlay) solid transparent;
  transform: scaleX(-1);
  background-color: #fff;
}
@media (max-width: 991px) {
  .bswh-home .component.image-overlay.scroll-section.col-12.right .image-overlay--bg.lazy:before {
    content: "";
    width: 50%;
    height: var(--path-overlay);
    background: rgb(255, 183, 27);
    position: absolute;
    /* mix-blend-mode: multiply; */
    z-index: 1;
    /* bottom: 80px; */
    top: 0;
    right: var(--path-overlay);
    background: linear-gradient(225deg, rgb(255, 183, 27) 0%, rgb(255, 183, 27) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  }
  .bswh-home .image-overlay--card:before {
    display: none;
  }
}
@media (min-width: 992px) {
  .bswh-home .image-overlay--card:before {
    content: "";
    position: absolute;
    width: 100%;
    height: var(--path-overlay);
    background: rgb(255, 183, 27);
    top: calc(var(--path-overlay) * -1);
  }
  .bswh-home .image-overlay--card:after {
    content: "";
    width: var(--path-overlay);
    height: var(--path-overlay);
    position: absolute;
    top: calc(var(--path-overlay) * -1);
    left: calc(var(--path-overlay) * -1);
    background: linear-gradient(225deg, rgb(255, 183, 27) 0%, rgb(255, 183, 27) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  }
}

.bswh-home div#awards {
  padding-bottom: 80px;
}
@media (min-width: 1025px) {
  .bswh-home div#awards {
    padding: 40px 100px;
  }
}
.bswh-home div#awards .carousel-intro {
  margin-bottom: 20px;
  padding: 0 40px;
}
@media (min-width: 1025px) {
  .bswh-home div#awards .carousel-intro {
    padding: 0;
  }
}
.bswh-home div#awards .carousel-intro h2 {
  text-align: center;
  color: rgb(54, 66, 72);
}
.bswh-home div#awards .carousel-intro .carousel-body {
  text-align: center;
  min-width: 100%;
  color: rgb(54, 66, 72);
  font-family: "sharpsans-semibold";
  font-weight: unset;
}
.bswh-home div#awards .slick-next, .bswh-home div#awards .slick-prev {
  border-color: rgb(221, 221, 221);
}
.bswh-home div#awards .slick-next:hover, .bswh-home div#awards .slick-prev:hover {
  background: rgb(255, 248, 230);
  border-color: rgb(255, 183, 27);
  box-shadow: 0px 2px 2px 0px rgba(255, 183, 27, 0.16);
}
.bswh-home div#awards .slick-next:hover::before, .bswh-home div#awards .slick-prev:hover::before {
  color: rgb(54, 66, 72) !important;
}

:root {
  --block:30px;
}
@media (min-width: 1200px) {
  :root {
    --block:40px;
  }
}

.bswh-home .heart-cont {
  width: calc(var(--block) * 5);
  height: calc(var(--block) * 4);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin: auto;
  margin: 20px auto;
}
.bswh-home .heart-cont div {
  width: var(--block);
  height: var(--block);
}
.bswh-home .heart-cont .r1-c1 {
  width: 0;
  height: 0;
  border-bottom: var(--block) solid rgb(54, 66, 72);
  border-left: var(--block) solid transparent;
}
.bswh-home .heart-cont .r1-c2 {
  background-color: rgb(255, 183, 27);
}
.bswh-home .heart-cont .r1-c4 {
  background-color: #959593;
}
.bswh-home .heart-cont .r1-c5 {
  width: 0;
  height: 0;
  border-bottom: var(--block) solid rgb(54, 66, 72);
  border-right: var(--block) solid transparent;
}
.bswh-home .heart-cont .r2-c1 {
  background-color: rgb(255, 149, 39);
}
.bswh-home .heart-cont .r2-c5 {
  background-color: rgb(255, 183, 27);
}
.bswh-home .heart-cont .r3-c1 {
  width: 0;
  height: 0;
  border-top: var(--block) solid rgb(54, 66, 72);
  border-left: var(--block) solid transparent;
}
.bswh-home .heart-cont .r3-c2 {
  background-color: rgb(213, 100, 122);
}
.bswh-home .heart-cont .r3-c4 {
  background-color: rgb(0, 126, 180);
}
.bswh-home .heart-cont .r3-c5 {
  width: 0;
  height: 0;
  border-top: var(--block) solid rgb(54, 66, 72);
  border-right: var(--block) solid transparent;
}
.bswh-home .heart-cont .r4-c2 {
  width: 0;
  height: 0;
  border-top: var(--block) solid rgb(54, 66, 72);
  border-left: var(--block) solid transparent;
}
.bswh-home .heart-cont .r4-c3 {
  background-color: rgb(143, 101, 156);
  -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
}
.bswh-home .heart-cont .r4-c4 {
  width: 0;
  height: 0;
  border-top: var(--block) solid rgb(54, 66, 72);
  border-right: var(--block) solid transparent;
}

.bswh-home .promo-container {
  --promo-path-size:50px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .bswh-home .promo-container {
    --promo-path-size:60px;
  }
}
@media (min-width: 992px) {
  .bswh-home .promo-container {
    --promo-path-size:80px;
  }
}
@media (min-width: 1600px) {
  .bswh-home .promo-container {
    --promo-path-size:100px;
  }
}
.bswh-home .promo-container .promo-path {
  display: flex;
  height: var(--promo-path-size);
  width: 100%;
  max-width: 1920px;
}
.bswh-home .promo-container .promo-path .promo-path-fill {
  flex: 1 1 100%;
  background: rgb(143, 101, 156);
}
.bswh-home .promo-container .promo-path .promo-path-cap {
  width: var(--promo-path-size);
  height: var(--promo-path-size);
  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%);
  flex: 0 0 var(--promo-path-size);
}
.bswh-home .promo-container .promo-fpo {
  background: rgb(143, 101, 156);
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -1px;
}
.bswh-home .promo-container .promo-fpo span {
  font-size: 44px;
  color: rgb(255, 255, 255);
}
@media only screen and (min-width: 1200px) {
  .bswh-home .app-image-wrapper {
    height: 400px;
    width: auto;
  }
}

.bswh-home footer {
  margin-top: 45px;
}
@media (min-width: 992px) {
  .bswh-home footer {
    margin-top: 70px;
  }
}
@media (min-width: 1025px) {
  .bswh-home footer {
    margin-top: 70px;
  }
}
.bswh-home footer .primary-navy-bg {
  background: rgb(0, 126, 180);
  max-width: 1920px;
  margin: auto;
}
.bswh-home footer .primary-navy-bg.full-width::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #3a4455;
  z-index: -1;
  display: none;
}
.bswh-home footer div#footer {
  margin-top: 0;
}
.bswh-home footer .global-footer-heading {
  border-top: 1px solid rgba(255, 255, 255, 0.2196078431);
}
@media (min-width: 992px) {
  .bswh-home footer .global-footer-heading {
    border: none;
  }
}
.bswh-home footer .global-footer-downloads {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2196078431);
}
.bswh-home footer .global-footer-copyright-and-notices {
  border-top: 1px solid rgba(255, 255, 255, 0.2196078431);
}
.bswh-home footer .global-footer-list-item a {
  font-family: "sharpsans-semibold";
  font-weight: unset;
  color: #fff;
}
@media (min-width: 992px) {
  .bswh-home footer .global-footer-list-item a {
    cursor: pointer;
    text-decoration: none;
    border-bottom: 0;
    position: relative;
    display: inline-block;
    transform: translate3d(0, 0, 0);
    transition: transform 1s, color 0.5s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  }
  .bswh-home footer .global-footer-list-item a::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 100%;
    width: 100%;
    height: 2px;
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 50%;
    transition: transform 0.35s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    background: rgb(255, 255, 255);
    left: 0;
  }
  .bswh-home footer .global-footer-list-item a:after {
    display: none;
  }
  .bswh-home footer .global-footer-list-item a:hover {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    color: rgb(255, 255, 255);
  }
  .bswh-home footer .global-footer-list-item a:hover::before {
    transform: scale3d(1, 1, 1);
    transform-origin: 0% 50%;
    transition-timing-function: ease-out;
  }
}

.bswh-home .hero.container.power .hero-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position-y: 24%;
}
.bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .path {
  -webkit-mask-size: cover;
  -webkit-mask-position-y: 24%;
  -webkit-mask-position-x: center;
}
.bswh-home .hero.container.power .hero-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  opacity: 0.4;
  background: linear-gradient(180deg, rgba(17, 19, 30, 0.65) 0, rgba(16, 10, 2, 0.5) 15%, rgba(193, 81, 0, 0) 70%);
}
.bswh-home .hero.container.power .hero-overlay-text {
  display: none;
}
.bswh-home .hero.container.power .hero-overlay-bottom {
  position: absolute;
  width: 130vw;
  background: linear-gradient(0deg, rgba(0, 17, 31, 0.5) 25%, rgba(88, 0, 193, 0) 90%);
  height: 150px;
  bottom: 0;
  left: 0;
}
.bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp {
  --hero-spacing:24px;
  --hero-image-2: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/cb8b37cec97d48b09a749376155f57d9?v=0f2f23b2);
  --hero-image-2-mask: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/82b5addcf3804357bc2192c8c763aff7?v=afa30877);
  --hero-image-3: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/891280b0b56d4b5384720ae29cd39d1e?v=48a787d8);
  --hero-image-3-mask: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/d6b5e621fce54127a9f68ef2f43c0512?v=d0f5e7b7);
  --hero-image-4: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/0f17b953072844699acfaa3e56a10a04?v=5c37ac23);
  --hero-image-4-mask: url(https://bswh-p-001.sitecorecontenthub.cloud/api/public/content/475ca18a47914426911c0fca0d8673b6?v=c72e2d31);
}
@media (min-width: 360px) {
  .bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp {
    --hero-spacing:30px;
  }
}
@media (min-width: 768px) {
  .bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp {
    --hero-spacing:40px;
  }
}
.bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-text {
  padding: var(--hero-spacing) !important;
  gap: 8px;
}
@media (min-width: 992px) {
  .bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-text {
    gap: 12px;
  }
}
@media (min-width: 1240px) {
  .bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-text {
    width: 100%;
  }
}
.bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-text:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7490196078), transparent);
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
.bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-text .hero-cta {
  display: none !important;
}
.bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-text .hero-description {
  display: none !important;
}
.bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-1, .bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-2, .bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-3, .bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-4 {
  width: 100%;
  height: 100%;
  position: absolute;
}
.bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-2 .hero-img {
  background-image: var(--hero-image-2) !important;
}
.bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-2 .path {
  opacity: 0;
  mask-image: var(--hero-image-2-mask);
  -webkit-mask-image: var(--hero-image-2-mask);
}
@media (max-width: 640px) {
  .bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-2 .path {
    -webkit-mask-position: 50% 50%;
            mask-position: 50% 50%;
  }
}
@media (min-width: 1240px) and (max-width: 1599px) {
  .bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-2 .path {
    -webkit-mask-position: 50% 50%;
            mask-position: 50% 50%;
  }
}
.bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-3 .hero-img {
  background-image: var(--hero-image-3) !important;
}
.bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-3 .path {
  mask-image: var(--hero-image-3-mask);
  -webkit-mask-image: var(--hero-image-3-mask);
}
@media (max-width: 640px) {
  .bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-3 .path {
    -webkit-mask-position: 50% 50%;
            mask-position: 50% 50%;
  }
}
@media (min-width: 1240px) and (max-width: 1599px) {
  .bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-3 .path {
    -webkit-mask-position: 50% 50%;
            mask-position: 50% 50%;
  }
}
.bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-4 .hero-img {
  background-image: var(--hero-image-4) !important;
}
.bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-4 .path {
  mask-image: var(--hero-image-4-mask);
  -webkit-mask-image: var(--hero-image-4-mask);
}
@media (max-width: 640px) {
  .bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-4 .path {
    -webkit-mask-position: 50% 50%;
            mask-position: 50% 50%;
  }
}
@media (min-width: 1240px) and (max-width: 1599px) {
  .bswh-home .hero.container.power .hero-media.hero-bg.bg-hero-hp .hero-set-4 .path {
    -webkit-mask-position: 50% 50%;
            mask-position: 50% 50%;
  }
}

:root {
  --path-size:20px;
  --cap-color:rgb(222, 222, 222);
}
@media (min-width: 768px) {
  :root {
    --path-size:25px;
  }
}

@media (min-width: 1240px) {
  .bswh-home .find-care-tool-container .find-care-app {
    padding: calc(var(--path-size) * 1.5);
  }
  .bswh-home .term-container {
    height: var(--path-size);
    min-height: var(--path-size);
  }
}
.path {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 3;
  display: flex;
}

.path-fill {
  width: 100%;
  height: 100%;
}

.path-cap {
  width: var(--path-size);
  height: var(--path-size);
  min-height: var(--path-size);
  position: relative;
}
.path-cap .cap-fill {
  width: 100%;
  height: 100%;
  position: relative;
}
.path-cap .cap-flip {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.hero-media.hero-bg.bg-hero-hp .path {
  max-width: 1920px;
}
.hero-media.hero-bg.bg-hero-hp .path svg {
  width: var(--path-size);
  height: var(--path-size);
}

.hero-media.hero-bg.bg-hero-hp .hero-set-1 {
  z-index: 1;
  display: none;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .path-cap.cap02 {
  z-index: 2;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .path-cap.cap03 {
  z-index: 1;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c0 {
  display: none;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c1 {
  flex: 1 0 65%;
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c1 .c1-r1 {
  flex: 0 1 55%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c1 .c1-r2 {
  flex: 0 0 var(--path-size);
  height: var(--path-size);
  display: flex;
  flex-direction: row-reverse;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c1 .c1-r2 .path-fill {
  background: rgb(255, 183, 27);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c1 .c1-r2 svg {
  fill: rgb(255, 183, 27);
  right: 0;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c1 .c1-r3 {
  flex: 1 0 45%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c2 {
  display: flex;
  flex-direction: column;
  width: var(--path-size);
  flex: 0 0 var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c2 .c2-r1 {
  flex: 0 0 calc(var(--path-size) / 2);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c2 .c2-r2 {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c2 .c2-r2 .path-fill {
  background: rgb(143, 101, 156);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c2 .c2-r2 .path-cap:nth-of-type(1) .cap-fill svg {
  fill: rgb(255, 149, 39);
  right: 0;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c2 .c2-r2 .path-cap:nth-of-type(1) .cap-flip {
  background: linear-gradient(315deg, rgb(54, 66, 72) 0%, rgb(54, 66, 72) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
          clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);
          clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c2 .c2-r2 .path-cap:nth-of-type(3) .cap-fill svg {
  fill: rgb(143, 101, 156);
  right: 0;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c2 .c2-r2 .path-cap:nth-of-type(3) .cap-flip {
  background: linear-gradient(135deg, rgb(54, 66, 72) 0%, rgb(54, 66, 72) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
          clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c2 .c2-r3 {
  flex: 1 0 45%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c3 {
  display: flex;
  flex-direction: column;
  flex: 1 1 50%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c3 .c3-r1 {
  flex: 0 0 calc(var(--path-size) / 2);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c3 .c3-r2 {
  flex: 0 0 var(--path-size);
  height: var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c3 .c3-r2 .path-fill {
  background: rgb(255, 149, 39);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c3 .c3-r2 .path-cap {
  display: none;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-1 .p-c3 .c3-r3 {
  flex: 0 1 100%;
}

.hero-media.hero-bg.bg-hero-hp .hero-set-2 {
  z-index: 4;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .path {
  display: flex;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .path .path_col {
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .path .path_col .pc_row {
  display: flex;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-1 {
  display: none !important;
  flex: 0 0 var(--path-size);
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-1 {
    display: none !important;
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-1 .pc_row.pc-1_pr-1 {
  flex: 0 0 calc(var(--path-size) * 1.5);
}
@media (min-width: 768px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-1 .pc_row.pc-1_pr-1 {
    flex: 0 0 calc(var(--path-size));
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-1 .pc_row.pc-1_pr-1 {
    flex: 0 0 calc(var(--path-size) / 2);
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-1 .pc_row.pc-1_pr-2 {
  flex: 1 1 calc(55% - var(--path-size));
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-1 .pc_row.pc-1_pr-3 {
  flex: 0 0 var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-1 .pc_row.pc-1_pr-4 {
  flex: 0 1 calc(45% + var(--path-size));
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-1 .pc_row.pc-1_pr-4 .path-content {
  flex: 0 1 100%;
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-1 .pc_row.pc-1_pr-4 .path-spacer1 {
  flex: 0 0 0%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-1 .pc_row.pc-1_pr-4 .path-spacer2 {
  flex: 0 0 0%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-1 .pc_row.pc-1_pr-4 .path-cap {
  flex: 0 0 var(--path-size);
  overflow: hidden;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-1 .pc_row.pc-1_pr-4 .path-cap svg {
  position: relative;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-1 .pc_row.pc-1_pr-5 {
  flex: 0 0 calc(var(--path-size) / 2 + var(--path-size));
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 {
  flex: 0 1 65%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 .pc_row.pc-2_pr-1 {
  flex: 0 0 calc(var(--path-size) * 1.5);
}
@media (min-width: 768px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 .pc_row.pc-2_pr-1 {
    flex: 0 0 calc(var(--path-size));
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 .pc_row.pc-2_pr-1 {
    flex: 0 0 calc(var(--path-size) / 2);
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 .pc_row.pc-2_pr-2 {
  flex: 1 1 calc(55% - var(--path-size));
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 .pc_row.pc-2_pr-3 {
  flex: 0 0 var(--path-size);
  overflow: hidden;
  display: flex;
  max-height: var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 .pc_row.pc-2_pr-3 .path-content {
  flex: 1 1 100%;
  display: flex;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 .pc_row.pc-2_pr-3 .path-spacer {
  flex: 0 0 10%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 .pc_row.pc-2_pr-3 .path-fill {
  background: rgb(213, 100, 122);
  display: flex;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 .pc_row.pc-2_pr-3 .path-cap {
  flex: 0 0 var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 .pc_row.pc-2_pr-3 .path-cap svg {
  fill: rgb(213, 100, 122);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 .pc_row.pc-2_pr-4 {
  flex: 0 0 50%;
}
@media (min-width: 992px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 .pc_row.pc-2_pr-4 {
    flex: 0 0 45%;
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 .pc_row.pc-2_pr-4 {
    flex: 0 0 40%;
  }
}
@media (min-width: 1441px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 .pc_row.pc-2_pr-4 {
    flex: 0 0 50%;
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-2 .pc_row.pc-2_pr-5 {
  flex: 0 0 calc(var(--path-size) / 2 + var(--path-size));
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 {
  flex: 0 0 var(--path-size);
  /*  Path Element */
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-1 {
  flex: 0 0 calc(var(--path-size) * 1.5);
}
@media (min-width: 768px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-1 {
    flex: 0 0 calc(var(--path-size));
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-1 {
    flex: 0 0 calc(var(--path-size) / 2);
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-2 {
  flex: 1 1 calc(55% - var(--path-size));
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-2 .path-spacer {
  flex: 0 0 0%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-2 .path-content {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-2 .path-fill {
  background: rgb(255, 183, 27);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-2 .path-cap {
  flex: 0 0 var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-2 .path-cap.cap05 svg {
  fill: rgb(255, 183, 27);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-2 .cap-flip {
  background: linear-gradient(315deg, rgb(54, 66, 72) 0%, rgb(54, 66, 72) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-3 {
  flex: 0 0 var(--path-size);
  min-width: var(--path-size);
  max-width: var(--path-size);
  min-height: var(--path-size);
  max-height: var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-3 .path-cap.cap04 {
  overflow: hidden;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-3 .path-cap.cap04 svg {
  fill: rgb(213, 100, 122);
  position: relative;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-3 .path-cap.cap04 .cap-flip {
  background: linear-gradient(135deg, rgb(54, 66, 72) 0%, rgb(54, 66, 72) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  min-width: var(--path-size);
  max-width: var(--path-size);
  min-height: var(--path-size);
  max-height: var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-4 {
  flex: 0 0 50%;
}
@media (min-width: 992px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-4 {
    flex: 0 0 45%;
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-4 {
    flex: 0 0 40%;
  }
}
@media (min-width: 1441px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-4 {
    flex: 0 0 50%;
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-3 .pc_row.pc-3_pr-5 {
  flex: 0 0 calc(var(--path-size) / 2 + var(--path-size));
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-4 {
  flex: 1 0 20%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-4 .pc_row.pc-4_pr-1 {
  flex: 0 0 calc(var(--path-size) * 1.5);
}
@media (min-width: 768px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-4 .pc_row.pc-4_pr-1 {
    flex: 0 0 calc(var(--path-size));
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-4 .pc_row.pc-4_pr-1 {
    flex: 0 0 calc(var(--path-size) / 2);
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-4 .pc_row.pc-4_pr-2 {
  flex: 1 1 calc(55% + var(--path-size));
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-4 .pc_row.pc-4_pr-2 .pc-4_pr-2_pr-1 {
  flex: 0 0 var(--path-size);
  display: flex;
  overflow: hidden;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-4 .pc_row.pc-4_pr-2 .pc-4_pr-2_pr-1 .path-fill {
  background: rgb(255, 149, 39);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-4 .pc_row.pc-4_pr-2 .pc-4_pr-2_pr-1 .path-cap svg {
  fill: rgb(255, 149, 39);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-4 .pc_row.pc-4_pr-2 .pc-4_pr-2_pr-2 {
  flex: 1 1 100%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-4 .pc_row.pc-4_pr-3 {
  flex: 0 0 var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-4 .pc_row.pc-4_pr-4 {
  flex: 0 0 45%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-2 .pc-4 .pc_row.pc-4_pr-5 {
  flex: 0 0 calc(var(--path-size) / 2 + var(--path-size));
}

.hero-media.hero-bg.bg-hero-hp .hero-set-3 {
  opacity: 0;
  z-index: 4;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .path {
  display: flex;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .path .path_col {
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .path .path_col .pc_row {
  display: flex;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-1 {
  display: none !important;
  flex: 0 0 var(--path-size);
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-1 {
    display: none !important;
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-1 .pc_row.pc-1_pr-1 {
  flex: 0 0 calc(var(--path-size) * 1.5);
}
@media (min-width: 768px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-1 .pc_row.pc-1_pr-1 {
    flex: 0 0 calc(var(--path-size));
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-1 .pc_row.pc-1_pr-1 {
    flex: 0 0 calc(var(--path-size) / 2);
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-1 .pc_row.pc-1_pr-2 {
  flex: 1 1 calc(55% - var(--path-size));
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-1 .pc_row.pc-1_pr-3 {
  flex: 0 0 var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-1 .pc_row.pc-1_pr-4 {
  flex: 0 1 calc(45% + var(--path-size));
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-1 .pc_row.pc-1_pr-4 .path-content {
  flex: 0 1 100%;
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-1 .pc_row.pc-1_pr-4 .path-spacer1 {
  flex: 0 0 0%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-1 .pc_row.pc-1_pr-4 .path-spacer2 {
  flex: 0 0 0%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-1 .pc_row.pc-1_pr-4 .path-cap {
  flex: 0 0 var(--path-size);
  overflow: hidden;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-1 .pc_row.pc-1_pr-4 .path-cap svg {
  position: relative;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-1 .pc_row.pc-1_pr-5 {
  flex: 0 0 calc(var(--path-size) / 2 + var(--path-size));
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 {
  flex: 0 1 65%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-1 {
  flex: 0 0 calc(var(--path-size) * 1.5);
}
@media (min-width: 768px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-1 {
    flex: 0 0 calc(var(--path-size));
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-1 {
    flex: 0 0 calc(var(--path-size) / 2);
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-2 {
  flex: 1 1 calc(55% - var(--path-size));
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-3 {
  flex: 0 0 var(--path-size);
  overflow: hidden;
  display: flex;
  max-height: var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-3 .path-content {
  flex: 1 1 100%;
  display: flex;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-3 .path-spacer {
  flex: 0 0 10%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-3 .path-fill {
  background: rgb(213, 100, 122);
  display: flex;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-3 .path-cap {
  flex: 0 0 var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-3 .path-cap svg {
  fill: rgb(213, 100, 122);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-3 .path-cap.cap03 {
  display: none;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-4 {
  flex: 0 0 50%;
}
@media (min-width: 992px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-4 {
    flex: 0 0 45%;
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-4 {
    flex: 0 0 40%;
  }
}
@media (min-width: 1441px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-4 {
    flex: 0 0 50%;
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-2 .pc_row.pc-2_pr-5 {
  flex: 0 0 calc(var(--path-size) / 2 + var(--path-size));
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 {
  flex: 0 0 var(--path-size);
  /*  Path Element */
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-1 {
  flex: 0 0 calc(var(--path-size) * 1.5);
}
@media (min-width: 768px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-1 {
    flex: 0 0 calc(var(--path-size));
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-1 {
    flex: 0 0 calc(var(--path-size) / 2);
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-2 {
  flex: 1 1 calc(55% - var(--path-size));
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-2 .path-spacer {
  flex: 0 0 0%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-2 .path-content {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-2 .path-fill {
  background: rgb(255, 183, 27);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-2 .path-cap {
  flex: 0 0 var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-2 .path-cap.cap05 svg {
  fill: none;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-2 .cap-flip {
  background: linear-gradient(315deg, rgb(54, 66, 72) 0%, rgb(54, 66, 72) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-3 {
  flex: 0 0 var(--path-size);
  min-width: var(--path-size);
  max-width: var(--path-size);
  min-height: var(--path-size);
  max-height: var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-3 .path-cap.cap04 {
  overflow: hidden;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-3 .path-cap.cap04 svg {
  position: relative;
  fill: none;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-3 .path-cap.cap04 .cap-flip {
  background: linear-gradient(135deg, rgb(54, 66, 72) 0%, rgb(54, 66, 72) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  min-width: var(--path-size);
  max-width: var(--path-size);
  min-height: var(--path-size);
  max-height: var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-4 {
  flex: 0 0 50%;
}
@media (min-width: 992px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-4 {
    flex: 0 0 45%;
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-4 {
    flex: 0 0 40%;
  }
}
@media (min-width: 1441px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-4 {
    flex: 0 0 50%;
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-3 .pc_row.pc-3_pr-5 {
  flex: 0 0 calc(var(--path-size) / 2 + var(--path-size));
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-4 {
  flex: 1 0 20%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-4 .pc_row.pc-4_pr-1 {
  flex: 0 0 calc(var(--path-size) * 1.5);
}
@media (min-width: 768px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-4 .pc_row.pc-4_pr-1 {
    flex: 0 0 calc(var(--path-size));
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-4 .pc_row.pc-4_pr-1 {
    flex: 0 0 calc(var(--path-size) / 2);
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-4 .pc_row.pc-4_pr-2 {
  flex: 1 1 calc(55% + var(--path-size));
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-4 .pc_row.pc-4_pr-2 .pc-4_pr-2_pr-1 {
  flex: 0 0 var(--path-size);
  display: flex;
  overflow: hidden;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-4 .pc_row.pc-4_pr-2 .pc-4_pr-2_pr-1 .path-fill {
  background: rgb(255, 149, 39);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-4 .pc_row.pc-4_pr-2 .pc-4_pr-2_pr-1 .path-cap svg {
  fill: rgb(255, 149, 39);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-4 .pc_row.pc-4_pr-2 .pc-4_pr-2_pr-1 .path-cap.cap06 {
  display: none;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-4 .pc_row.pc-4_pr-2 .pc-4_pr-2_pr-2 {
  flex: 1 1 100%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-4 .pc_row.pc-4_pr-3 {
  flex: 0 0 var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-4 .pc_row.pc-4_pr-4 {
  flex: 0 0 55%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-3 .pc-4 .pc_row.pc-4_pr-5 {
  flex: 0 0 calc(var(--path-size) / 2 + var(--path-size));
}

.hero-media.hero-bg.bg-hero-hp .hero-set-4 {
  opacity: 0;
  z-index: 4;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .path {
  display: flex;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .path .path_col {
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .path .path_col .pc_row {
  display: flex;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-1 {
  display: none !important;
  flex: 0 0 var(--path-size);
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-1 {
    display: none !important;
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-1 .pc_row.pc-1_pr-1 {
  flex: 0 0 calc(var(--path-size) * 1.5);
}
@media (min-width: 768px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-1 .pc_row.pc-1_pr-1 {
    flex: 0 0 calc(var(--path-size));
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-1 .pc_row.pc-1_pr-1 {
    flex: 0 0 calc(var(--path-size) / 2);
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-1 .pc_row.pc-1_pr-2 {
  flex: 1 1 calc(55% - var(--path-size));
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-1 .pc_row.pc-1_pr-3 {
  flex: 0 0 var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-1 .pc_row.pc-1_pr-4 {
  flex: 0 1 calc(45% + var(--path-size));
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-1 .pc_row.pc-1_pr-4 .path-content {
  flex: 0 1 100%;
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-1 .pc_row.pc-1_pr-4 .path-spacer1 {
  flex: 0 0 0%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-1 .pc_row.pc-1_pr-4 .path-spacer2 {
  flex: 0 0 0%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-1 .pc_row.pc-1_pr-4 .path-cap {
  flex: 0 0 var(--path-size);
  overflow: hidden;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-1 .pc_row.pc-1_pr-4 .path-cap svg {
  position: relative;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-1 .pc_row.pc-1_pr-5 {
  flex: 0 0 calc(var(--path-size) / 2 + var(--path-size));
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 {
  flex: 0 1 65%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-1 {
  flex: 0 0 calc(var(--path-size) * 1.5);
}
@media (min-width: 768px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-1 {
    flex: 0 0 calc(var(--path-size));
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-1 {
    flex: 0 0 calc(var(--path-size) / 2);
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-2 {
  flex: 1 1 calc(55% - var(--path-size));
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-3 {
  flex: 0 0 var(--path-size);
  overflow: hidden;
  display: flex;
  max-height: var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-3 .path-content {
  flex: 1 1 100%;
  display: flex;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-3 .path-spacer {
  flex: 0 0 10%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-3 .path-fill {
  background: rgb(213, 100, 122);
  display: flex;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-3 .path-cap {
  flex: 0 0 var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-3 .path-cap svg {
  fill: rgb(213, 100, 122);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-3 .path-cap.cap03 {
  display: none;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-4 {
  flex: 0 0 50%;
}
@media (min-width: 992px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-4 {
    flex: 0 0 45%;
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-4 {
    flex: 0 0 40%;
  }
}
@media (min-width: 1441px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-4 {
    flex: 0 0 50%;
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-2 .pc_row.pc-2_pr-5 {
  flex: 0 0 calc(var(--path-size) / 2 + var(--path-size));
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 {
  flex: 0 0 var(--path-size);
  /*  Path Element */
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-1 {
  flex: 0 0 calc(var(--path-size) * 1.5);
}
@media (min-width: 768px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-1 {
    flex: 0 0 calc(var(--path-size));
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-1 {
    flex: 0 0 calc(var(--path-size) / 2);
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-2 {
  flex: 1 1 calc(55% - var(--path-size));
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-2 .path-spacer {
  flex: 0 0 0%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-2 .path-content {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-2 .path-fill {
  background: rgb(255, 183, 27);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-2 .path-cap {
  flex: 0 0 var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-2 .path-cap.cap05 svg {
  fill: none;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-2 .cap-flip {
  background: linear-gradient(315deg, rgb(54, 66, 72) 0%, rgb(54, 66, 72) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-3 {
  flex: 0 0 var(--path-size);
  min-width: var(--path-size);
  max-width: var(--path-size);
  min-height: var(--path-size);
  max-height: var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-3 .path-cap.cap04 {
  overflow: hidden;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-3 .path-cap.cap04 svg {
  position: relative;
  fill: none;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-3 .path-cap.cap04 .cap-flip {
  background: linear-gradient(135deg, rgb(54, 66, 72) 0%, rgb(54, 66, 72) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  min-width: var(--path-size);
  max-width: var(--path-size);
  min-height: var(--path-size);
  max-height: var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-4 {
  flex: 0 0 50%;
}
@media (min-width: 992px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-4 {
    flex: 0 0 45%;
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-4 {
    flex: 0 0 40%;
  }
}
@media (min-width: 1441px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-4 {
    flex: 0 0 50%;
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-3 .pc_row.pc-3_pr-5 {
  flex: 0 0 calc(var(--path-size) / 2 + var(--path-size));
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-4 {
  flex: 1 0 20%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-4 .pc_row.pc-4_pr-1 {
  flex: 0 0 calc(var(--path-size) * 1.5);
}
@media (min-width: 768px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-4 .pc_row.pc-4_pr-1 {
    flex: 0 0 calc(var(--path-size));
  }
}
@media (min-width: 1240px) {
  .hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-4 .pc_row.pc-4_pr-1 {
    flex: 0 0 calc(var(--path-size) / 2);
  }
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-4 .pc_row.pc-4_pr-2 {
  flex: 1 1 calc(55% + var(--path-size));
  display: flex;
  flex-direction: column;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-4 .pc_row.pc-4_pr-2 .pc-4_pr-2_pr-1 {
  flex: 0 0 var(--path-size);
  display: flex;
  overflow: hidden;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-4 .pc_row.pc-4_pr-2 .pc-4_pr-2_pr-1 .path-fill {
  background: rgb(255, 149, 39);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-4 .pc_row.pc-4_pr-2 .pc-4_pr-2_pr-1 .path-cap svg {
  fill: rgb(255, 149, 39);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-4 .pc_row.pc-4_pr-2 .pc-4_pr-2_pr-1 .path-cap.cap06 {
  display: none;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-4 .pc_row.pc-4_pr-2 .pc-4_pr-2_pr-2 {
  flex: 1 1 100%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-4 .pc_row.pc-4_pr-3 {
  flex: 0 0 var(--path-size);
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-4 .pc_row.pc-4_pr-4 {
  flex: 0 0 45%;
}
.hero-media.hero-bg.bg-hero-hp .hero-set-4 .pc-4 .pc_row.pc-4_pr-5 {
  flex: 0 0 calc(var(--path-size) / 2 + var(--path-size));
}

.container.findcare-toolbar-container .path {
  display: none;
  overflow: hidden;
  opacity: 0;
}
@media (min-width: 1240px) {
  .container.findcare-toolbar-container .path {
    display: flex;
  }
}
.container.findcare-toolbar-container .path .p-c1 {
  flex: 0 0 calc(var(--path-size) * 1.5);
  display: flex;
  flex-direction: column;
}
.container.findcare-toolbar-container .path .p-c1 .c1-r1 {
  flex: 0 0 calc(var(--path-size) / 2);
}
.container.findcare-toolbar-container .path .p-c1 .c1-r2 {
  flex: 0 0 var(--path-size);
  height: var(--path-size);
}
.container.findcare-toolbar-container .path .p-c1 .c1-r2 .path-cap {
  display: none;
}
.container.findcare-toolbar-container .path .p-c1 .c1-r2 .path-fill {
  background: rgb(255, 149, 39);
}
.container.findcare-toolbar-container .path .p-c1 .c1-r3 {
  flex: 0 1 100%;
}
.container.findcare-toolbar-container .path .p-c2 {
  display: flex;
  flex-direction: column;
  width: var(--path-size);
  flex: 0 0 var(--path-size);
}
.container.findcare-toolbar-container .path .p-c2 .c2-r1 {
  flex: 0 0 calc(var(--path-size) / 2);
}
.container.findcare-toolbar-container .path .p-c2 .c2-r2 {
  flex: 0 0 var(--path-size);
  height: var(--path-size);
}
.container.findcare-toolbar-container .path .p-c2 .c2-r2 .path-cap .cap-fill {
  background: linear-gradient(45deg, rgb(255, 149, 39) 0%, rgb(255, 149, 39) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
.container.findcare-toolbar-container .path .p-c2 .c2-r2 .path-cap .cap-flip {
  background: linear-gradient(45deg, rgb(54, 66, 72) 0%, rgb(54, 66, 72) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
          clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
}
.container.findcare-toolbar-container .path .p-c2 .c2-r3 {
  flex: 0 1 100%;
}
.container.findcare-toolbar-container .path .p-c3 {
  display: flex;
  flex-direction: column;
  flex: 0 1 100%;
}
.container.findcare-toolbar-container .path .p-c4 {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(var(--path-size) / 2);
}
.container.findcare-toolbar-container .path .p-c4 .c4-r1 {
  flex: 1 1 100%;
}
.container.findcare-toolbar-container .path .p-c4 .c4-r2 {
  flex: 0 0 var(--path-size);
  height: var(--path-size);
}
.container.findcare-toolbar-container .path .p-c4 .c4-r2 .path-cap .cap-fill {
  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%);
}
.container.findcare-toolbar-container .path .p-c4 .c4-r2 .path-cap .cap-flip {
  background: linear-gradient(225deg, rgb(54, 66, 72) 0%, rgb(54, 66, 72) 51%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
  -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
          clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);
          clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);
}
.container.findcare-toolbar-container .path .p-c4 .c4-r3 {
  flex: 0 0 calc(var(--path-size) / 2 + var(--path-size));
}
.container.findcare-toolbar-container .path .p-c5 {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(var(--path-size) * 1.5);
}
.container.findcare-toolbar-container .path .p-c5 .c5-r1 {
  flex: 1 1 100%;
}
.container.findcare-toolbar-container .path .p-c5 .c5-r2 {
  flex: 0 0 var(--path-size);
  height: var(--path-size);
}
.container.findcare-toolbar-container .path .p-c5 .c5-r2 .path-fill {
  background: rgb(63, 159, 144);
}
.container.findcare-toolbar-container .path .p-c5 .c5-r2 .path-cap {
  display: none;
}
.container.findcare-toolbar-container .path .p-c5 .c5-r3 {
  flex: 0 0 calc(var(--path-size) / 2 + var(--path-size));
}

body {
  overflow: unset;
}

body.bswh-home.findcare-active {
  overflow: hidden;
  width: 100vw;
  height: 100vh !important;
}

.bswh-home .sticky {
  position: sticky;
  top: 0;
}

@media (max-width: 767px) {
  body.bswh-home.findcare-active header.sticky {
    visibility: hidden;
    display: none;
  }
}
header .header-with-drawer {
  z-index: 20;
}
@media (min-width: 1240px) {
  header .header-with-drawer {
    top: 0;
  }
}
@media only screen and (min-width: 992px) {
  header .header-with-drawer {
    position: relative;
    top: 0;
  }
}

span.alert-closebtn.icon.bsw-icon-x {
  height: 24px;
  width: 24px;
  margin-top: -4px;
}

@media (min-width: 768px) {
  span.alert-closebtn.icon.bsw-icon-x {
    height: 30px;
    width: 30px;
  }
  span.alert-closebtn.icon.bsw-icon-x:hover {
    border: 1px solid rgb(255, 149, 39);
  }
}
@media (min-width: 768px) {
  span.alert-closebtn.icon.bsw-icon-x {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .alert.global .alert__text a {
    cursor: pointer;
    text-decoration: none;
    border-bottom: 0;
    position: relative;
    display: inline-block;
    transform: translate3d(0, 0, 0);
    transition: transform 1s, color 0.5s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  }
  .alert.global .alert__text a::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 100%;
    width: 100%;
    height: 2px;
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 50%;
    transition: transform 0.35s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    background: rgb(54, 66, 72);
    left: 0;
  }
  .alert.global .alert__text a:after {
    display: none;
  }
  .alert.global .alert__text a:hover {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    color: rgb(54, 66, 72);
  }
  .alert.global .alert__text a:hover::before {
    transform: scale3d(1, 1, 1);
    transform-origin: 0% 50%;
    transition-timing-function: ease-out;
  }
  .alert.global .alert__text a:hover {
    color: rgb(54, 66, 72);
  }
  .alert.global .alert__text a:hover:after {
    color: rgb(54, 66, 72);
  }
}

.bswh-home .secondary-medium-yellow-bg .alert-content, .bswh-home .secondary-medium-yellow-bg:before {
  transition: none !important;
}

@media screen and (max-width: 768px) {
  header.open + main .hero .hero-media {
    display: none;
  }
}
:root {
  --footer-border-color: rgba(255, 255, 255, 0.2196078431);
  --footer-spacing: 20px;
}

/* fix top gray section in footer */
.bswh-home footer,
footer {
  margin-top: 0;
}

/* fix sticky banner covering bottom of footer */
.bswh-home footer,
footer {
  padding-bottom: 95px;
}

/* fix padding / spacing in footer */
div#footer {
  width: 100%;
  max-width: 1920px;
  margin: auto;
}

.global-footer-links {
  flex-wrap: wrap;
  -moz-column-gap: unset;
  column-gap: unset;
}

div#footer > .row > .container,
.global-footer-links,
.global-footer-downloads,
.global-footer-social-media-list,
.global-footer-copyright-and-notices,
.global-footer-utility-links,
.global-footer-notices-list {
  padding: 0;
}

.global-footer {
  display: flex;
  flex-direction: column;
  padding: var(--footer-spacing);
  gap: var(--footer-spacing);
}

.global-footer .footer-logo {
  width: 100%;
  height: auto;
  max-width: 150px;
  margin-bottom: var(--footer-spacing);
  padding: var(--footer-spacing) 0;
}

.global-footer-links .global-footer-column:first-child {
  flex-basis: 100%;
}

/* fix borders in footer */
.bswh-home footer .global-footer-downloads-heading,
footer .global-footer-downloads-heading,
.bswh-home footer .global-footer-heading,
footer .global-footer-heading,
.bswh-home footer .global-footer-downloads,
footer .global-footer-downloads,
.global-footer-column:last-child .global-footer-heading,
.global-footer .show:last-child,
.bswh-home footer .global-footer-copyright-and-notices,
footer .global-footer-copyright-and-notices {
  border: unset;
}

.global-footer > div:not(:last-child)::after,
.global-footer > .global-footer-links > div:not(:last-child)::after {
  content: "";
  display: block;
  height: 1px;
  border-bottom: 1px solid var(--footer-border-color);
  width: 100%;
  flex-basis: 100%;
}

/*  fix footer links and typography */
.bswh-home footer .global-footer-heading,
footer .global-footer-heading {
  border-color: var(--footer-border-color);
  line-height: 1.5em;
  cursor: pointer;
}

.global-footer-heading::after,
.global-footer .show .global-footer-heading::after {
  left: 0px;
}

.global-footer-downloads .global-footer-heading {
  font-size: 11px;
  font-family: sharpsans-semibold;
  padding: 0;
  margin-bottom: 8px;
}

/* fix footer socials */
.global-footer-utility-links {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--footer-spacing);
}

.global-footer-social-media-list {
  gap: 8px;
  flex-wrap: wrap;
}

.global-footer-social-media-list li {
  margin: 0;
}

.global-footer-social-media-list li.translate a {
  background: #3a4455;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 10px;
  gap: 4px;
}

.global-footer .translate i {
  margin: 0;
}

.global-footer-social-media-list li.translate a:hover i {
  font-size: initial;
}

/* fix footer copyright / secondary links */
.global-footer-copyright-and-notices {
  max-width: unset;
}

/* responsive fixes */
@media only screen and (min-width: 992px) {
  :root {
    --footer-spacing: 40px;
  }
  .bswh-home footer,
  footer {
    padding-bottom: 0px;
  }
  .global-footer > .global-footer-links > div:not(:last-child)::after {
    display: none;
  }
  .global-footer .footer-logo {
    margin-bottom: 0;
    padding: 0;
  }
  .global-footer-links {
    gap: var(--footer-spacing);
  }
  .global-footer-links .global-footer-column:not(:first-child) {
    flex-basis: calc(20% - var(--footer-spacing));
  }
}
@media only screen and (min-width: 1440px) {
  .global-footer-links .global-footer-column:not(:first-child),
  .global-footer-links .global-footer-column:first-child {
    flex-basis: calc(16.6666666667% - var(--footer-spacing));
  }
}
.bswh-home .hero-headline {
  display: flex;
  flex-wrap: wrap;
}
.bswh-home .hero-headline span {
  margin: 0 4px;
}
.bswh-home .hero-headline span:first-of-type {
  flex: 1 0 100%;
}

.bswh-home .page-specific-alert {
  padding: 0;
  margin: 0;
}
.bswh-home .page-specific-alert .alert-content {
  border-radius: 0;
  border: none;
}
.bswh-home .page-specific-alert .alert-closebtn {
  position: absolute;
}

.bswh-home .column-splitter, .bswh-home .row-splitter {
  gap: 0;
}
.bswh-home .container > .component-content > .row {
  gap: 0;
}
.bswh-home #quick-links .component-content > .indent-top {
  padding-top: 20px;
}
.bswh-home #quick-links .component-content > .indent-bottom {
  padding-bottom: 20px;
}

@media (min-width: 992px) {
  .bswh-home div#quick-links {
    padding-inline: 20px;
  }
}
.bswh-home div#immediate-care-cards > .component-content > .component.container > .component-content > .row {
  gap: var(--page-gap);
}

@media (min-width: 992px) {
  .bswh-home #immediate-care-cards .col-lg-4 {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
.bswh-home #awards .component-content .slick-carousel .slick-list .slick-track {
  gap: 0;
}

.bswh-home div#mybsw-promo .promo-main-container {
  display: none !important;
}

.bswh-home .page-section:has(#home-app-promo) .row {
  row-gap: 0;
}

.bswh-home .page-section {
  margin: 0;
}

div#home-app-promo {
  border-radius: 0;
  background-color: rgb(143, 101, 156);
}
@media (min-width: 768px) {
  div#home-app-promo {
    margin-bottom: var(--page-gap);
  }
}

@media (min-width: 768px) {
  .bswh-home div#mybsw-promo:after {
    display: none;
  }
}
.bswh-home div#content {
  background-color: transparent;
}

.bswh-home .component.container.indent-top.indent-bottom.col-12.secondary-cool-grey-bg.full-width {
  background: transparent !important;
}

.bswh-home .section-padding {
  background-color: transparent;
}

.bswh-home .secondary-cool-grey-bg.full-width::before {
  display: none;
}

.bswh-home .promo-fifty#power-campaign:before, .bswh-home #blog-feature-article:before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bswh-home .page-section:last-of-type {
  padding-bottom: 0;
}
.bswh-home .container-fluid {
  background-color: transparent;
}
.bswh-home .page-section > .container-fluid > .section-padding > .row {
  row-gap: 0;
}
.bswh-home nav.links-wrapper {
  margin-block: calc(var(--page-gap) * 0.25);
}
.bswh-home div#quick-links {
  background-color: transparent;
}
.bswh-home .component.slick-carousel-container.standard-carousel.col-12 {
  background-color: #fff;
}
.bswh-home .component.blog-carousel.col-12 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bswh-home .image-overlay--row:after {
  background-color: var(--color-secondary-a5);
}

.bswh-home #specialties-carousel .promo.card-wrapper .promo-text.card-body {
  padding-bottom: 0;
  margin-bottom: 10px;
}
.bswh-home #specialties-carousel .component.slick-carousel-container.standard-carousel.col-12 {
  padding-block: var(--page-gap);
}
.bswh-home #specialties-carousel .standard-carousel .component-content {
  gap: 20px;
}
.bswh-home #specialties-carousel .slick-carousel .slick-list, .bswh-home #specialties-carousel .carousel-intro {
  margin: 0 var(--spacing-size-small);
}
@media (min-width: 768px) {
  .bswh-home #specialties-carousel .slick-carousel .slick-list, .bswh-home #specialties-carousel .carousel-intro {
    margin: 0 var(--spacing-size-large);
  }
}
@media (min-width: 1200px) {
  .bswh-home #specialties-carousel .slick-carousel .slick-list, .bswh-home #specialties-carousel .carousel-intro {
    margin: 0 var(--spacing-size-xlarge);
  }
}
@media (min-width: 1440px) {
  .bswh-home #specialties-carousel .slick-carousel .slick-list, .bswh-home #specialties-carousel .carousel-intro {
    margin: 0 var(--spacing-size-xxlarge);
  }
}

@media screen and (max-width: 767px) {
  .bswh-home.component-content .image-overlay {
    padding: 0;
  }
  .bswh-home .component.image-overlay .image-overlay--card > .row > .component.rich-text > .component-content {
    padding: 0 30px;
  }
}
.bswh-home #home-blog-carosuel {
  padding-block: var(--page-gap);
  margin-block: var(--page-gap);
  background-color: #fff;
}
.bswh-home #home-blog-carosuel .promo.card-wrapper .promo-text.card-body {
  min-height: auto;
}
.bswh-home #home-blog-carosuel .slick-track {
  display: flex;
  gap: 20px;
}
.bswh-home #home-blog-carosuel .slick-carousel .slick-list, .bswh-home #home-blog-carosuel .carousel-intro {
  margin: 0 var(--spacing-size-small);
}
@media (min-width: 768px) {
  .bswh-home #home-blog-carosuel .slick-carousel .slick-list, .bswh-home #home-blog-carosuel .carousel-intro {
    margin: 0 var(--spacing-size-large);
  }
}
@media (min-width: 1200px) {
  .bswh-home #home-blog-carosuel .slick-carousel .slick-list, .bswh-home #home-blog-carosuel .carousel-intro {
    margin: 0 var(--spacing-size-xlarge);
  }
}
@media (min-width: 1440px) {
  .bswh-home #home-blog-carosuel .slick-carousel .slick-list, .bswh-home #home-blog-carosuel .carousel-intro {
    margin: 0 var(--spacing-size-xxlarge);
  }
}
.bswh-home #home-blog-carosuel .card-top-image {
  max-height: 170px;
}
.bswh-home #home-blog-carosuel .card-top-image img {
  min-height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
.bswh-home #home-blog-carosuel .slick-dots li.slick-active button::before {
  background-color: #ffb71b;
  height: 14px;
  width: 14px;
}
.bswh-home #home-blog-carosuel .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.bswh-home #home-blog-carosuel .slick-dots li button:before {
  background-color: #ddd;
  position: relative;
  content: "";
  height: 10px;
  width: 10px;
  display: flex;
  border-radius: 100%;
  opacity: 1;
}

.bswh-home #heart-icon-wrapper {
  background: #fff;
  padding-block: var(--page-gap);
  margin-top: var(--page-gap);
}

@media (min-width: 1240px) {
  .bswh-home .find-care-tool-container .find-care-app {
    padding: calc(var(--path-size) * 1.5);
    background: #fff;
  }
}
.bswh-home .find-care-tool-container .find-care-app input[type=text] {
  font-family: "sharpsans-semibold";
}

.bswh-home .component.container .component.row-splitter {
  margin-top: 0;
}

.bswh-home main.sticky-main div#content > .row > .component.container:not(.anchor-nav):not(.page-banner):not(.alpha-index):not(.hero) > .component-content > .row:not(.filter-card-list):not(.empty-filter-card-list), .bswh-home main div#content > .row > .component.container:not(.anchor-nav):not(.page-banner):not(.alpha-index):not(.hero) > .component-content > .row:not(.filter-card-list):not(.empty-filter-card-list) {
  gap: 0;
}
.bswh-home main div#content > .row > .component.container:not(.anchor-nav):not(.page-banner):not(.alpha-index):not(.hero) > .component-content {
  gap: 0;
}
.bswh-home main.sticky-main div#content > .row > .component.container:not(.anchor-nav):not(.page-banner):not(.alpha-index):not(.hero) > .component-content > .row:not(.filter-card-list):not(.empty-filter-card-list) > .row-splitter, .bswh-home main div#content > .row > .component.container:not(.anchor-nav):not(.page-banner):not(.alpha-index):not(.hero) > .component-content > .row:not(.filter-card-list):not(.empty-filter-card-list) > .row-splitter {
  gap: 0;
}
.bswh-home main.sticky-main div#content > .row > .component.container:not(.anchor-nav):not(.page-banner):not(.alpha-index):not(.hero) > .component-content > .row:not(.filter-card-list):not(.empty-filter-card-list) > .row-splitter, .bswh-home main div#content > .row > .component.container:not(.anchor-nav):not(.page-banner):not(.alpha-index):not(.hero) > .component-content > .row:not(.filter-card-list):not(.empty-filter-card-list) > .row-splitter {
  gap: 0;
}

@media (min-width: 1025px) {
  .bswh-home div#awards {
    max-width: 100%;
  }
}
.component.plain-html.col-12:has(.heart-cont) {
  background: #fff;
  padding-top: var(--page-gap);
}

@media (min-width: 768px) {
  .bswh-home div#home-app-promo {
    margin-bottom: 0;
  }
}
.bswh-home div#specialties-carousel .indent-top {
  margin-top: 0;
}
.bswh-home div#specialties-carousel .indent-bottom {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .bswh-home button.find-care-button.btn.btn-primary:after {
    display: none;
  }
  .bswh-home .find-care-tool-container .find-care-btn-container .find-care-button:hover i.bsw-icon-arrow.search-btn-icon {
    display: none;
  }
  .bswh-home .find-care-tool-container .find-care-btn-container .find-care-button i.bsw-icon-arrow.search-btn-icon {
    display: none;
  }
}/*# sourceMappingURL=bswh-home-wellness.css.map */