#pk_flex_content .flex_layout.hero_short{
    max-width: unset;
    padding: 0px;
    overflow: hidden;
    margin-inline: auto;
   /* background: linear-gradient(90deg, rgba(0, 48, 66, 0.44) 0%, rgba(0, 48, 66, 0.8) 100%); */
   background-color: #4F4F4F; 
}

#pk_flex_content .flex_layout.hero_short .flex_container{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    height: 35vh;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    background-image: url('./hero_background.png');
}


#pk_flex_content .flex_layout.hero_short .flex_container::before{
 content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 10%;
   background-image: url('/wp-content/themes/bb-theme-child/assets/images/lines_hero_short.png');
    background-position: left top;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -2;
    pointer-events: none;
}


#pk_flex_content .flex_layout.hero_short .flex_container_inner{
    max-width: 1392px;
    width: 100%;
    padding: 60px 40px;
    margin: 0px auto;
    position: relative;
    z-index: 1;
}


#pk_flex_content .flex_layout.hero_short .content_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#pk_flex_content .flex_layout.hero_short .content_container .text_wrapper {
  /* flex: 0 0 55%; */
  width: 55%;
}


#pk_flex_content .flex_layout.hero_short .content_container .text {
display: flex;
flex-direction: column;
gap: 20px;
height: 100%;
justify-content: flex-end
}

#pk_flex_content .flex_layout.hero_short .content_container .text .title {
font-size: var(--heading-1-page);
max-width: 760px;
}

#pk_flex_content .flex_layout.hero_short .content_container .text .title .heading{
color: white;
}

#pk_flex_content .flex_layout.hero_short .content_container .text .description {
max-width: 460px;
color: white;
}

#pk_flex_content .flex_layout.hero_short .content_container .image_wrapper {
width: 45%;
}

#pk_flex_content .flex_layout.hero_short .content_container .image_wrapper img{
border-radius: 10px;
aspect-ratio: 1;
object-fit: cover;
}


@media screen and (max-width: 1000px){
    
   #pk_flex_content .flex_layout.hero_short .flex_container{
       height: auto;
   }
   
    #pk_flex_content .flex_layout.hero_short .content_container .text_wrapper {
      /* flex: 0 0 55%; */
      width: 100%;
    }

    #pk_flex_content .flex_layout.hero_short .content_container .image_wrapper {
    width: 100%;
    }
    
    #pk_flex_content .flex_layout.hero_short .content_container .image_wrapper img{
    aspect-ratio: 2/1;
    object-fit: cover;
    }

}

@media screen and (max-width: 767px){
  #pk_flex_content .flex_layout.hero_short .flex_container_inner{
      padding-inline: 20px;
  }
}


@media screen and (max-width: 425px){

}