.hero_content_overlay-layout {
	position: relative;
	aspect-ratio: 15/5;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin-bottom: 200px;
}

.pk-hero-bg{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero_content_overlay-layout .hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}

.site-3 .hero_content_overlay-layout .hero-bg {
	clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.hero_content_overlay-layout::before {
	content: ''; position: absolute; inset: 0; z-index: 5;
	background-color: rgba(0, 0, 0, 0.25);
}

.site-3 .hero_content_overlay-layout::before{
	clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

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

.hero_content_overlay-layout .pk-col {
	padding: 3.5rem 5rem;
	background-color: var(--pk-color-primary);
	margin-bottom: -200px;
	border-radius: var(--pk-button-radius, 0px);
}

.site-3 .hero_content_overlay-layout .pk-col {
	background-color: #f2c94c;
	transform: rotate(-2deg);
}

.site-3 .hero_content_overlay-layout .pk-col > div,
.site-3 .hero_content_overlay-layout .pk-col > .pk-heading {
	transform: rotate(2deg);
	/* color: white; */
}

.hero_content_overlay-layout .pk-module.pk-text{
	font-size: 30px;
	line-height: 1.2em;
	font-weight: 700;
}

.hero_content_overlay-layout .pk-button-group a.pk-button:not(:last-child){
	background-color: white;
}

.hero_content_overlay-layout .pk-button-group a.pk-button:not(:last-child) > span{
	color: var(--pk-color-secondary);
}

.site-3 .hero_content_overlay-layout .pk-button-group{
	margin-top: 2rem;
}

@media (max-width: 767px) {
	.hero_content_overlay-layout {
		margin-bottom: 150px;
	}
	
	.hero_content_overlay-layout .pk-module.pk-text{
		font-size: 22px;
	}

	.hero_content_overlay-layout .pk-col {
		padding: 2rem var(--pk-site-gutter);
		margin-bottom: -200px;
	}
}