.section--four-header {
	color: rgb(0, 0, 0);
	background-color: #fff;
	padding: 0.5rem 1rem;
	display: inline-block;
}

/* form!!! */

.form--hero {
	display: grid;
	background-color: var(--grey-color);
	max-width: 1000px;
	margin: 0 auto 4rem;
	text-align: center;
}
.form--hero p {
	color: #000;
	font-weight: var(--regular-font-weight);
	font-size: 2rem;
	margin-top: 3rem;
}
.form--input {
	display: grid;
	gap: 2rem;
	margin-bottom: 3rem;
	grid-template-columns: repeat(1fr, 3);
	grid-template-rows: repeat(1fr, 2);
	border: none;
	grid-column-start: 1;
	grid-column-end: 3;
}
.form--input input {
	display: inline;
	border: 1px solid #c5c5c5;
	border-radius: 0%;
	width: auto;
	background-color: var(--grey-accent-color);
	padding: 1rem;
}
.fields-one input {
	width: 40%;
}
.fields-two input {
	width: 40%;
}
.fields-three textarea {
	max-width: calc(80% + 2rem);
	width: 100%;
	height: 100px;
	resize: none;
	font-size: 1rem;
	padding: 1rem;
	background-color: var(--grey-accent-color);
	border: 1px solid #c5c5c5;
	border-radius: 0%;
}
.fields-one input:nth-child(odd),
.fields-two input:nth-child(odd) {
	margin-right: 2rem;
}
.form--submit {
	border: none;
	position: relative;
	grid-column-start: 3;
	grid-column-end: 3;
	grid-row-start: 1;
	grid-row-end: 4;
}
.form--submit p {
	color: #fff;
	margin: 0 auto;
	font-size: 2rem;
	transform: translateY(0);
}
form p {
	margin-top: 3rem;
	grid-column-start: 1;
	grid-column-end: 3;
}

@media (max-width: 600px) {
	.form--hero {
		max-width: 85vw;
		justify-content: center;
		margin: 0 auto 2rem;
	}
	.form--submit {
		border: none;
		position: relative;
		grid-column-start: 1;
		grid-column-end: 3;
		grid-row-start: 4;
		grid-row-end: 4;
	}
	.form--input {
		display: grid;
		gap: 0rem;
		margin-bottom: 1rem;
		justify-content: center;
	}
	.fields-one input,
	.fields-two input {
		max-width: calc(80% + 0.25rem);
		width: 100%;
		gap: 0.25rem;
	}
	.fields-three textarea {
		max-width: calc(80% + 0.25rem);
		width: 100%;
		resize: none;
	}
	.fields-one input:nth-child(odd),
	.fields-two input:nth-child(odd) {
		margin-right: 0rem;
	}
	.form--hero p {
		font-size: 1.5rem;
		margin-top: 2rem;
	}
	.form--submit > p {
		margin: 0;
	}
}

/* form!!! */

/* contact section background - make full page length */
.section--four {
	padding: 0;
	margin: 0;
}
.foot-section--wrapper {
	height: calc(100vh - 4rem);
	padding-top: 4rem;
	padding-bottom: 4rem;
	background-image: url(/Assets/blue\ paint\ brush.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 1;
	position: relative;
}
.foot-section--wrapper::before {
	content: "";
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
@media (max-width: 1000px) {
	.foot-section--wrapper {
		height: 100vh;
		padding-top: 0rem;
		background-image: url(/Assets/blue\ paint\ brush.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		/* padding-bottom: calc(34px + 4rem); */
	}
	.section--four-header {
		margin-top: 0;
		font-size: 2rem;
	}
	.section--four {
		padding: 0;
		margin: 0;
	}
}

footer {
	display: flex;
	/* flex-direction: row; */
	align-items: center;
	justify-content: center;
	max-height: 4rem;
	position: relative;
	background-color: var(--grey-color);
}
