.sales-wrapper {
	display: flex;
	height: 100vh
}

.sales-block {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 4rem;
	height: inherit;
	justify-content: center;
}

.sales-block.block-details {
	background: linear-gradient(-45deg,
		rgb(var(--color-shade--4)),
		rgb(var(--color-shade--3))
	);

	color: rgb(var(--color-tint--5));
}

.sales-block.block-form {
	background: linear-gradient(-45deg,
		rgb(var(--color-tint--4)), rgb(var(--color-tint--6))
	);
}

.block-details--pitch {
	text-align: center;
	text-shadow: 1px 1px 2px rgb(var(--color-shade--4));
}

.block-details--appraisal {
	margin: 4rem auto;
	padding: 1rem 2rem;
	font-size: 2rem;
	border-radius: var(--bs-border-radius-lg);
	background: rgb(var(--color-tint--5));
	color: rgb(var(--color-shade--2));
	font-weight: 600;
}

.block-details--contact,
.block-details--contact .contact-item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.block-details--contact .contact-item {
	flex-direction: column;
}

.block-details--contact .contact-item--icon {
	color: rgb(var(--color-tint--3));
}

.btn.btn-submit {
	color: rgb(var(--color-tint--5));
	border-color: rgb(var(--color-shade--3));
	background: linear-gradient(-45deg,
		rgb(var(--color-shade--4)),
		rgb(var(--color-shade--3))
	);
}

.btn.btn-submit:hover,
.btn.btn-submit:focus,
.btn.btn-submit:active {
	background: linear-gradient(-45deg,
		rgb(var(--color-shade--3)),
		rgb(var(--color-shade--2))
	);
}