.dark-background {
	background-color: #101010;
}

.white-text {
	color: white;
}

.form-grid {
	display: grid;
}


.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 992px) {
	.grid-2 {
		grid-template-columns: repeat(1, 1fr);
	}
}

.form-row {
	display: flex;
	padding-left: 5px;	
	padding-right: 5px;	
}

.contact-div {
	max-width: 720px
}

.two-col {
	grid-column-start: 1;
	grid-column-start: 2;
}

.text-input {
	display: block;
	width: 100%;
	height: calc(1.5em + .75rem + 2px);
	padding: 0rem .75rem;
	border-radius: .25rem;
	border: 1px solid #ced4da;
	font-family: inherit;
	font-size: inherit;
}

.text-input:focus {
	color: #495057;
	background-color: #fff;
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}

textarea {
	overflow: auto;
	resize: vertical;
	margin: 0;
	height: auto !important;
}

.submit-button {
	width: 100%;
	background-color: #0e8714;
	border-color: #0e8714;
	color: white;
	font-size: 1.25em;
	padding: .5em .1em;
	border-radius: .5em;
	display: block;
	font-family: inherit;
	cursor: pointer;
	-webkit-appearance: button;
}

.hidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
