.hero-block {
	--hero-calc-offset: 145px;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-clip: padding-box;
	padding: 80px 40px 0 40px;
	border-bottom: var(--hero-calc-offset) solid transparent;
}
@media screen and (max-width: 767px) {
	.hero-block.hero-block {
		padding-left: 0;
		padding-right: 0;
	}
}
.hero-block::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8, 28, 53, 0.71) 39.9%, rgba(8, 28, 53, 0) 55.77%, rgba(8, 28, 53, 0) 100%);
}

@media screen and (max-width: 767px) {
	.hero-block--fors::before {
		background: linear-gradient(180deg, rgba(8, 28, 53, 0.8) 47%, rgba(8, 28, 53, 0) 100%);
	}
}
.hero-content {
	position: relative;
	z-index: 1;
	background: transparent !important;
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 0 37px;
	z-index: 9;
}
@media screen and (max-width: 767px) {
	.hero-content.container > * {
		padding-left: 16px;
		padding-right: 16px;
	}
	.hero-content.container > div.hero__list-calc-wrapper.hero__list-calc-wrapper {
		padding-left: 0;
		padding-right: 0;
	}
	.hero-content.container > div.hero__list-calc-wrapper > .hero-list {
		padding-left: 16px;
		padding-right: 16px;
	}
}

@media screen and (max-width: 767px) {
	.hero-content {
		padding: 0 16px;
		gap: 16px;
	}
}
.hero-content > * {
	max-width: 570px;
	margin: 0;
}
.hero-title {
	color: #fff;
	font-size: 60px;
	line-height: 1.08;
	text-wrap: pretty;
	margin: 0;
}

@media screen and (max-width: 1025px) {
	.hero-title {
		font-size: 30px;
	}
}

.hero-text {
	color: #fff;
}

.hero-list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 0;
	margin-left: 0;
}

.hero-block--fors p + .hero-list {
	margin-top: 40px;
}

.hero-list li {
	display: flex;
	gap: 16px;
	color: #fff;
	margin-bottom: 0;
	font-weight: 600;
}

.hero-list li svg {
	flex-shrink: 0;
	margin-top: 7px;
}
@media screen and (max-width: 1025px) {
	.hero-list li svg {
		margin-top: 8px;
	}
}

.hero-list li span p {
	margin: 0;
}

.hero__list-calc-wrapper {
	max-width: unset;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
@media screen and (min-width: 1026px) {
	.hero__list-calc-wrapper {
		margin-top: 6px;
	}
}
.hero__calculator {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -140px;
}

.hero-block--fors .hero-content {
	padding-bottom: calc(var(--hero-overlay-height, 320px) - 60px);
}

@media screen and (max-width: 1025px) {
	.hero__calculator {
		top: calc(100% - (180px));
		left: 14px;
		right: 14px;
		bottom: auto;
	}

	.hero-block--fors .hero-content {
		padding-bottom: calc(var(--hero-overlay-height, 320px) - 220px);
	}
}

.hero-block--subp {
	--hero-calc-offset: 0;
	padding-bottom: 60px;
}

.hero-block--subp::before {
	background: rgba(0, 0, 0, 0.6);
}

.hero-block--subp .hero-content {
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	gap: 80px;
}

.hero-block--subp .hero__main {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 50%;
}

.hero-block--subp .hero__main > * {
	max-width: 100%;
}

.hero-block--subp .hero__sidebar {
	flex: 1;
	max-width: 50%;
	background: var(--blue-secondary);
	border-radius: 8px;
	padding: 52px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hero-block--subp .hero__sidebar-heading,
.hero-block--subp .hero__sidebar-text {
	margin: 0;
}

.hero-block--subp .hero__sidebar-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 25px;
}

.hero-block--subp .hero__sidebar .hero-list li {
	color: inherit;
}

@media screen and (max-width: 1025px) {
	.hero-block--fors {
		margin-bottom: calc(var(--hero-overlay-height, 0px) - 250px);
	}

	.hero-block--subp {
		margin-bottom: calc(var(--hero-overlay-height, 0px) - 130px);
	}

	.hero-block--subp .hero__main {
		flex: 0 0 100%;
		max-width: 100%;
		padding-bottom: 90px;
	}

	.hero-block--subp .hero__sidebar {
		position: absolute;
		top: calc(100% - 70px);
		left: 14px;
		right: 14px;
		max-width: none;
		flex: none;
	}
}
