* {
	box-sizing: border-box;
  }

body {
	margin:0;
	padding:0;
	font-family:
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		Roboto,
		Oxygen,
		Ubuntu,
		Cantarell,
		'Open Sans',
		'Helvetica Neue',
		sans-serif;
		background:#d6d8db;
}



.content {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
}

.content p {
	margin-bottom: 40px;
}

.source-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 100%;
	transition: 0.5s ease;
	backface-visibility: hidden;
}

.source-container a {
	text-decoration: none;
	color: black;
}

.source-container :hover {
	background-color: #bbbdbf;
	color: white;
}

.source-container--inner {
	width: 30%;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	border-radius: 10px;
	padding: 20px 0px;
}

.source-container--inner i {
	font-size: 80px;
	padding: 40px 0px;
}

.coming-soon,
.coming-soon i {
	color: red;
}

.coming-soon:hover {
	color: red;
}

/*PR Form Entries*/
.form-container {
	width: 100%;
}

.one-column {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	flex-direction: column;
	justify-content: center;
}

.full-width {
	text-align: center;
	width: 100%;
	align-self: center;
	margin: 5px 0;
}

.full-width h4 {
	margin:10px;
	text-align: left;
}

.full-width input {
	width: 100%;
	padding-left: 10px;
	height: 35px;
	border-radius: 5px;
	border: none;
	box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 4px 0px inset;
	box-sizing: border-box;
}

.full-width textarea {
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	padding-left: 10px;
	padding-top: 20px;
	border-radius: 5px;
	min-height: 300px;
	border: none;
	box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 4px 0px inset;
	box-sizing: border-box;
	overflow-y: auto;
}

.next-button,
button {
	text-align: right;
}

.two-column {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 100%;
	width: 1200px;
}

.one-half {
	width: 45%;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	border-radius: 10px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-content: center;
	flex-wrap: wrap;
	height: fit-content;
	min-height: 700px;
}

.popup :hover {
	background-color: white !important;
	color: black !important;
}

.popup button:hover {
	background-color: #0056b3 !important;
	color: white !important;
}



@media screen and (max-width: 800px) {
	body{
		background:white;
	}

	.content{
		margin-top:0;
	}

	.row{
		flex-wrap: wrap;
	}
}