.about--landing-container {
	display: flex;
	flex-direction: column;
	flex: 1 1 100%;
	align-items: center;
	justify-content: center;
	max-width: 900px;
	margin: 0 auto;
}
.about--background {
	background-image: url(/Assets/about\ us\ background.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 0.5rem 1rem 2rem 1rem;
}
.about--header {
	color: rgb(0, 0, 0);
	background-color: #fff;
	padding: 0.5rem 1rem;
	display: inline-block;
}
.about--content-container {
	padding: 0.5rem;
	border: 1px solid var(--grey-color);
	/* margin: 0 1rem 2rem 1rem; */
	font-size: 1.25rem;
	line-height: 160%;
	background-color: rgba(0, 0, 0, 0.75);
	color: #f1f1f1;
}
.about--content-paragraphs {
	text-align: center;
}
.line-break {
	display: block;
	margin-top: 2rem;
}
.news_article {
	background-color: rgb(218, 218, 218);
	padding: 2rem 0.5rem;
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.301);
}
.news_article--background {
	background-image: url(/Assets/paper-article-blur.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height: 900px;
	position: relative;
}
.news_article--content {
	display: flex;
	flex-direction: row;
	position: absolute;
	left: 50%;
	top: 10%;
	transform: translateX(-50%);
}
.news_article--content img {
	height: 100%;
	width: 800px;
}
@media (max-width: 1000px) {
	.about--background {
		background-image: url(/Assets/about\ us\ background-small.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		padding: 0.5rem 1rem 2rem 1rem;
	}
	.news_article--content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		position: static;
		padding-top: 0%;
		margin-inline: auto;
		transform: translateX(0);
	}
	.news_article--content img {
		max-width: 100%;
		width: 100%;
	}
	.news_article--background {
		background-size: cover;
		position: relative;
	}
}
footer {
	align-items: center;
	justify-content: center;
	position: static;
	bottom: 0;
	left: 0;
	transform: translateX(0%);
}

/* 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!!! */

.bottom--contact_footer-container {
	padding: 2rem 0.5rem 0rem;
	background: linear-gradient(
		275deg,
		rgba(196, 196, 196, 1) 0%,
		rgba(255, 255, 255, 1) 100%
	);
}
