.hero_home {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-block: 180px;
	min-height: calc(80vh - var(--pk-header-height));
}

.hero_home::before {
	content: ''; position: absolute; inset: 0; z-index: 5;
	background: linear-gradient(180deg, transparent 0%, var(--sc-black) 100%);
}

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

.hero_home .pk-row .pk-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.hero_home .pk-row .pk-col p {
	margin-bottom: 0px;
}

.hero_home .pk-row .pk-col .sc_secondary_button {
	margin-top: 16px;
}

@media screen and (max-width: 992px) {
	
	.hero_home {
		padding-block: 100px;
	}
	
}

@media screen and (max-width: 767px) {
	
	.hero_home {
		padding-block: 60px;
		min-height: calc(100vh - var(--pk-header-height));
		display: flex;
		flex-direction: column;
		justify-content: end;
	}
	
}