.hero-section-extended {
    display: flex;
    min-height: 810px;
	background-color: var(--bg-color);
}

.hero-section-extended .hero-section-extended__left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 50%;
	padding-block: 100px;
	padding-right: 70px;
}

.hero-section-extended .hero-section-extended__title {
	margin: 0;
	color: var(--content-color, var(--blue-dark));
}

.hero-section-extended .hero-section-extended__description {
	color: var(--content-color, var(--blue-dark));
}

.hero-section-extended .hero-section-extended__description:not(:first-child) {
    margin-top: 40px;
}

.hero-section-extended .hero-section-extended__button:not(:first-child) {
    margin-top: 70px;
}

.hero-section-extended .hero-section-extended__subtitle {
	color: var(--content-color, var(--blue-dark));
}

.hero-section-extended .hero-section-extended__subtitle:not(:first-child) {
    margin-top: 70px;
}

.hero-section-extended .hero-section-extended__items {
	display: grid;
	grid-template-columns: repeat(3, 140px);
	gap: 20px;
	margin-top: 32px;
}

.hero-section-extended .hero-section-extended__item {
	max-height: 36px;
	opacity: 0.4;
}

.hero-section-extended .hero-section-extended__item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hero-section-extended .hero-section-extended__right {
	display: flex;
	width: 50vw;
	margin-right: calc((100% - 100vw) / 2);
}

.hero-section-extended .hero-section-extended__right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1024px) {
	.hero-section-extended {
		min-height: auto;
	}

	.hero-section-extended .hero-section-extended__left {
		width: 100%;
		padding-block: 80px;
		padding-right: 0px;
	}

	.hero-section-extended .hero-section-extended__description:not(:first-child) {
		margin-top: 30px;
	}

	.hero-section-extended .hero-section-extended__button:not(:first-child) {
		margin-top: 50px;
	}

	.hero-section-extended .hero-section-extended__subtitle:not(:first-child) {
		margin-top: 50px;
	}

	.hero-section-extended .hero-section-extended__items {
		margin-top: 26px;
	}

	.hero-section-extended .hero-section-extended__right {
		display: none;
	}
}

@media (max-width: 767px) {
	.hero-section-extended .hero-section-extended__left {
		padding-block: 60px;
	}

	.hero-section-extended .hero-section-extended__description:not(:first-child) {
		margin-top: 24px;
	}

	.hero-section-extended .hero-section-extended__button:not(:first-child) {
		margin-top: 36px;
	}

	.hero-section-extended .hero-section-extended__subtitle:not(:first-child) {
		margin-top: 36px;
	}

	.hero-section-extended .hero-section-extended__items {
		grid-template-columns: repeat(auto-fit, 140px);
		margin-top: 20px;
	}
}