#pk_flex_content .flex_layout.hero_home{
    max-width: unset;
    padding: 0px;
    overflow: hidden;
    margin-inline: auto;
}

#pk_flex_content .flex_layout.hero_home .flex_container{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: flex-end;
}

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

#pk_flex_content .flex_layout.hero_home .flex_container::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    /* background: linear-gradient(90deg, rgba(0, 48, 66, 0.44) 0%, rgba(0, 48, 66, 0.8) 100%); */
    background-image: url('./hero_background.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

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


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

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


#pk_flex_content .flex_layout.hero_home .content_container .text {
display: flex;
flex-direction: column;
gap: 20px;
}

#pk_flex_content .flex_layout.hero_home .content_container .text .title {
font-size: var(--heading-1);
max-width: 745px;
line-height: 1.06;
font-weight: 600;
}


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

#pk_flex_content .flex_layout.hero_home .content_container .text .description {
max-width: 456px;
color: white;
font-weight: 300;
font-size: 22px;
}


#pk_flex_content .flex_layout.hero_home .content_container .info_blocks_wrapper {
/* flex: 0 0 45%; */
width: 40%;
display: flex;
justify-content: flex-end;
align-items: flex-end;
}

#pk_flex_content .flex_layout.hero_home .content_container .info_blocks_wrapper .info_blocks{
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px 20px; 
max-width: 424px;
margin-top: 2rem;
color: white;
}

#pk_flex_content .flex_layout.hero_home .content_container .info_blocks_wrapper .info_blocks > div {
  position: relative;
border-radius: 10px;
text-align: center;
width: 200px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;

  background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(2px);
color: white;
border-radius: 12px;
}

#pk_flex_content .flex_layout.hero_home .content_container .info_blocks_wrapper .info_blocks > div::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0px;
 
  border-radius: inherit;
  /* this is the border width */
  padding: 1px;
 background: linear-gradient(
   to bottom,
   rgba(255, 255, 255, 0.3) 0%,
   rgba(82, 82, 82, 0.1) 30%,
   rgba(82, 82, 82, 0.1) 70%,
   rgba(255, 255, 255, 0.3) 100%
 );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

#pk_flex_content .flex_layout.hero_home .content_container .info_blocks_wrapper .info_blocks > div > div:first-of-type {
  font-size: clamp(18px, 6vw, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

#pk_flex_content .flex_layout.hero_home .content_container .info_blocks_wrapper .info_blocks > div > div:nth-of-type(2) {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}


@media screen and (max-width: 1100px){
    
    #pk_flex_content .flex_layout.hero_home .content_container .text_wrapper {
      /* flex: 0 0 55%; */
      width: 100%;
    }

    #pk_flex_content .flex_layout.hero_home .content_container .info_blocks_wrapper {
    /* flex: 0 0 45%; */
    width: 100%;
    }
    
    #pk_flex_content .flex_layout.hero_home .content_container .info_blocks_wrapper {
      max-width: unset;
      width: 100%;
      justify-content: flex-start;
    }

}

@media screen and (max-width: 767px){
  #pk_flex_content .flex_layout.hero_home .flex_container{
  min-height: 100vh;
}
  
  #pk_flex_content .flex_layout.hero_home .flex_container_inner{
      padding-inline: 20px;
  }
}


@media screen and (max-width: 450px){
#pk_flex_content .flex_layout.hero_home .content_container .info_blocks_wrapper .info_blocks > div {
width: 160px;
height: 60px;
}
}

@media screen and (max-width: 360px){
#pk_flex_content .flex_layout.hero_home .content_container .info_blocks_wrapper .info_blocks{
 width: 100%;
grid-template-columns: unset;
}

    #pk_flex_content .flex_layout.hero_home .content_container .info_blocks_wrapper .info_blocks > div {
width: auto;
}
}