.hero_content_overlay-layout {
    position: relative;
    color: #ffffff;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
	padding-top: var(--pk-hero-top-spacing);
    padding-inline: 0;
}

.hero_content_overlay-layout::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 20%;
    background: var(--ch-orange);
}

.hero_content_overlay-layout .hero-image-wrap {
    position: relative;
    z-index: 1;
    border-top-right-radius: max(1rem, calc(1 * var(--su)));
    border-bottom-right-radius: max(1rem, calc(1 * var(--su)));
    overflow: hidden;
}

.hero_content_overlay-layout .hero-image-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}

.hero_content_overlay-layout .hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.hero_content_overlay-layout .hero-content-wrapper {
    position: absolute;
    padding-inline: var(--pk-site-gutter);
    z-index: 1;
}

.hero_content_overlay-layout .pk-row {
    position: relative;
    z-index: 10;
}

.hero_content_overlay-layout h1 {
    color: #ffffff;
    line-height: 0.9;
}

.hero_content_overlay-layout .pk-button-group {
    margin-top: max(2rem, calc(2 * var(--su)));
}
@media screen and (max-width: 991px) {
    .hero_content_overlay-layout {
		justify-content: center;
        min-height: auto;
    }

	 .hero_content_overlay-layout .pk-col{
		padding-right: 1rem;
	}

    .hero_content_overlay-layout .hero-image-wrap {
        min-height: calc(100vh - 80px);
        margin-right: 1rem;
    }
}
