.home-contact {
	position: relative;
	padding: 0;
	background-image: var(--home-contact-bg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}



.home-contact-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 28px;
	min-height: 300px;
}

.home-contact-copy {

	color: #fff;
	font-size: var(--f16);
}



.home-contact-title {
	font-size: var(--f40);
	font-weight: 600;
	margin-bottom: 40px;
	max-width: 650px;
	color: #fff;
}

.home-contact-more {
	background-color: #fff;
}

.home-contact-more:hover {
	background-color: #fff;
	color: var(--gm-theme);
}

@media (min-width: 768px) {
	.home-contact-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.home-contact-more {
		align-self: center;
		flex-shrink: 0;
	}
}