.hero-carousel{
  
}
.hero-carousel__item{
  --left-offset: 8.6%;
  display: flex !important;
  height: 80vh;
  gap: 70px;
  align-items: strect;
  position: relative;
  padding-bottom: 75px;
}
.hero-carousel__item:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: var(--left-offset);
  background-color: var(--blue-color);
  border-radius: 0 0 0 20px;
  overflow: hidden;
}
.hero-carousel__media{
  flex: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 300px;
}
.hero-carousel__media{
  border-bottom-right-radius: 20px;
  clip-path: polygon(85% -100%,-100% 100%, 100% 100%);
  overflow: hidden;
}
.hero-carousel__media img{
  display: block;
  width: 100%;
  height: 100% !important;
}
.hero-carousel__video-background{
  opacity: 0;
}
.video-ready .hero-carousel__video-background {
  opacity: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.hero-carousel__media--video-hubspot .hs-video-widget,
.hero-carousel__media--video-hubspot .hs-video-container{
  height: 100% !important;
}
.hero-carousel__content{
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 0 130px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-carousel__content h3 {
  color: var(--orange-color);
}
.hero-carousel__content p:last-child {
  margin-bottom: 0;
}
.hero-carousel__button{
  margin-top: 30px;
}
.hero-carousel .slick-dots{
  position: absolute;
  left: 50%;
  right: 20%;
  bottom: 50px;
  z-index: 1;
}
.hero-carousel .slick-dots button{
  background-color: var(--white-color) !important;
  border-color: var(--white-color) !important;
}
.hero-carousel .slick-dots li.slick-active button{
  background-color: var(--orange-color) !important;
  border-color: var(--orange-color) !important;
}
@media(max-width: 1199px){
  .hero-carousel__content{
    padding: 50px 50px 50px 0;
  }
}
@media(max-width: 991px){
  .hero-carousel__item{
    --left-offset: 0;
    flex-direction: column;
    gap:0;
    height: auto;
  }
  .hero-carousel__media img{
    height: 300px !important;
    object-fit: cover;
  }
  .hero-carousel__content{
    padding: 30px;
  }
  .hero-carousel .slick-dots{
    left: 0;
    right: 0;
  }