.hero_carousel {
  position: relative;
  overflow: hidden;
  padding: 0;
  top: 0;
}

.hero_carousel .slick-slider .slick-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}

.hero_carousel .slick-slider .slick-slide {
  height: auto;
}

.hero_carousel .slick-slider .slick-slide > div,
.hero_carousel-slide {
  height: 100%;
}

.hero_carousel .hero_carousel-video_wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.hero_carousel .hero_carousel-video {
  position: relative; /* This is necessary for z-index */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  z-index: -1;
}

.hero_carousel .hero_carousel-pause {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    width: 52px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    z-index: 1;
}
.hero_carousel .hero_carousel-play_icon {
    margin-left: 5px;
}
.hero_carousel .hero_carousel-pause_icon svg,
.hero_carousel .hero_carousel-play_icon svg {
    height: 25px;
}
.hero_carousel .hero_carousel-pause_icon svg path,
.hero_carousel .hero_carousel-play_icon svg path {
    fill: rgba(250,250,250,0.3);
}
.hero_carousel .hero_carousel-pause:not(.is-paused) .hero_carousel-play_icon {
    display: none;
}
.hero_carousel .hero_carousel-pause.is-paused .hero_carousel-pause_icon {
    display: none;
}

.hero_carousel-slide_inner {
  display: flex;
  justify-content: center;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.hero_carousel-slide_inner .hero_carousel-mobile_bg {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero_carousel-slide_content_wrapper {
  width: 100%;
  margin: 0 auto;
}

.hero_carousel-slide_heading {
  line-height: 1.1556;
}

.hero_carousel-slide_supporting_text {
  padding-bottom: 1.5em;
}

.hero_carousel ul.slick-dots {
  position: absolute;
  width: auto;
  padding: 0;
  max-width: 1440px;
}

.hero_carousel ul.slick-dots li button:before {
  content: "";
}

.hero_carousel ul.slick-dots li:first-child {
  margin-left: 0px;
}

.hero_carousel ul.slick-dots li:not(.slick-active) button {
  background: transparent;
  border: 3px solid var(--white-color);
}

.hero_carousel-sub_nav.mobile {
  display: none;
}

.hero_carousel-sub_nav-inner {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero_carousel-sub_nav-inner > .hs_cos_wrapper_type_simple_menu {
  width: 100%;
}

.hero_carousel-sub_nav-inner > .hs_cos_wrapper_type_simple_menu ul {
  gap: 5px;
}

.hero_carousel-sub_nav-inner > .hs_cos_wrapper_type_simple_menu li a {
  font-size: 1rem;
  color: var(--black-color);
}

.hero_carousel-sub_nav-inner > .hs_cos_wrapper_type_simple_menu li:not(:first-child) a {
  font-weight: 300;
}


.hero_carousel-sub_nav-inner .hs-menu-wrapper > ul > li + li::before {
  content: " | ";
  display: inline-block;
  margin: 0 .4ch;
  color: currentColor;
]

@media (max-width: 1200px) {
  .hero_carousel-sub_nav-inner .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .hero_carousel-slide_inner {
    padding: 0 !important;
  }
  .hero_carousel-slide_heading {
    padding-bottom: 5px;
  }
  .hero_carousel-slide_supporting_text {
    padding-bottom: 2em;
  }
  .hero_carousel-sub_nav {
    margin-bottom: 22px;
  }
  .hero_carousel-sub_nav.desktop {
    display: none;
  }
  .hero_carousel-sub_nav.mobile {
    display: block;
  }
}