#pk_flex_content .flex_layout.hero_small {
  background: linear-gradient(
    to bottom,
    var(--zgem-flex-green-default) 0%,
    var(--zgem-flex-green-default) calc(100% - 60px),
    transparent calc(100% - 60px),
    transparent 100%
  );
  max-width: unset;
  padding: 0px;
  overflow: hidden;
  position: relative;
}

#pk_flex_content .flex_layout.hero_small .flex_container_inner {
  max-width: var(--site-grid);
  margin-inline: auto;
  padding: 40px 40px 0px 40px;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 60px;
}

#pk_flex_content .flex_layout.hero_small .flex_container_inner > div {
  width: 50%;
}

#pk_flex_content .flex_layout.hero_small .flex_container_inner > .content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 160px;
}

#pk_flex_content .flex_layout.hero_small .flex_container_inner .content .text {
  color: var(--zgem-flex-white);
}

#pk_flex_content .flex_layout.hero_small .flex_container_inner .content .text a {
  color: inherit;
  text-decoration: underline;
}

#pk_flex_content .flex_layout.hero_small .flex_container_inner .side_content {
  display: flex;
  flex-direction: column;
}

#pk_flex_content .flex_layout.hero_small .flex_container_inner .side_content .small_contact_cta {
  margin-left: auto;
  flex-shrink: 0;
}

#pk_flex_content .flex_layout.hero_small .flex_container_inner .side_content svg {
  display: block;
  margin-top: auto;
  width: 100%;
  height: auto;
}


@media screen and (max-width: 1200px) {
  
  #pk_flex_content .flex_layout.hero_small .flex_container_inner .bottom-content {
    flex-direction: column-reverse;
    align-items: start;
    gap: 16px;
  }
  
}

@media screen and (max-width: 992px) {
  
  #pk_flex_content .flex_layout.hero_small {
    background: linear-gradient(
      to bottom,
      var(--zgem-flex-green-default) 0%,
      var(--zgem-flex-green-default) calc(100% - 40px),
      transparent calc(100% - 40px),
      transparent 100%
    );
  }
  
  #pk_flex_content .flex_layout.hero_small .flex_container_inner > .content {
    padding-bottom: 100px;
  }
  
}


@media screen and (max-width: 767px) {
  
  #pk_flex_content .flex_layout.hero_small {
    background: var(--zgem-flex-green-default);
  }
  
  #pk_flex_content .flex_layout.hero_small .flex_container_inner > div {
    width: 100%;
  }
  
  #pk_flex_content .flex_layout.hero_small .flex_container_inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px 20px 40px 20px;
  }
  
  #pk_flex_content .flex_layout.hero_small .flex_container_inner > .content {
    padding-bottom: 0px;
  }
  
  #pk_flex_content .flex_layout.hero_small .flex_container_inner .side_content .small_contact_cta {
    margin-left: unset;
  }
  
  #pk_flex_content .flex_layout.hero_small .flex_container_inner .side_content svg {
    display: none;
  }
  
}