#pk_flex_content .flex_layout.predefined_blocks:has(.hero_detail) {
 margin-block: 0px;
}
  
  
#pk_flex_content .flex_layout.hero_detail{
    max-width: unset;
overflow: hidden;
margin-inline: auto;
min-height: 100vh;
height: 100%;
margin-top: 0px;
padding: 0px;
margin: 0px;
position: relative;
background-color: var(--forest);
z-index: 1;
}


#pk_flex_content .flex_layout.hero_detail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--grass);
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 75% 100%);
  border-radius: 0px;
  z-index: -2;
  
}


#pk_flex_content .flex_layout.hero_detail::before {
  background: white;
  content: '';
  width: 200%;
  height: 25%;
  position: absolute;
  bottom: 0px;
  left: -50%;
  z-index: 0;
  pointer-events: none;
  z-index: -1;
}

#pk_flex_content .flex_layout.hero_detail .flex_container{
height: 100%;
}

#pk_flex_content .flex_layout.hero_detail .image_container {
    height: 100%;
    width: 100%;
    /* position: absolute; */
    max-width: 475px;
}

#pk_flex_content .flex_layout.hero_detail .image_container img {
width: 100%;
height: 100%;
object-fit: cover;
  object-position: center center;
display: block;
border-radius: 4px;
}


#pk_flex_content .flex_layout.hero_detail .flex_container_inner{
 z-index: 2;
 margin: 100px 40px;
 max-width: var(--site-grid);
}



#pk_flex_content .flex_layout.hero_detail .content_container {
    margin-top: 20%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 4px 4px 0px 4px;
    gap: 20px
}

#pk_flex_content .flex_layout.hero_detail .content_container_inner {
    z-index: 2;
    position: relative; 
    color: white;
}

#pk_flex_content .flex_layout.hero_detail .content_container_inner .site {
margin-bottom: 1rem;
  
}

#pk_flex_content .flex_layout.hero_detail .content_container_inner .site a {
transition: color 0.3s ease;

}

#pk_flex_content .flex_layout.hero_detail .content_container_inner .site:hover a {
  color: var(--grass);
}


#pk_flex_content .flex_layout.hero_detail .content_container_inner .site a,
#pk_flex_content .flex_layout.hero_detail .content_container_inner .title {
  color: white;
}




@media screen and (max-width: 767px){
    
    #pk_flex_content .flex_layout.hero_detail{
    min-height: calc(100vh - 100px);
    
}

#pk_flex_content .flex_layout.hero_detail::before {
  height: 15%;
}


#pk_flex_content .flex_layout.hero_detail .flex_container_inner{
 z-index: 2;
 margin: 80px 20px 40px 20px;
}

#pk_flex_content .flex_layout.hero_detail .content_container {
    margin-top: 20%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 4px 4px 0px 4px;
    gap: 20px
}
    


}