
.contactHeaven{
	width: 75%;
	margin: auto;
	display: flex;
	justify-content: space-between;
}
.form{
	width: 60%;
}
.heaven{
	width: 29%;
	margin-bottom: 1em;
}
.formLine{
	width: 80%;
	display: flex;
	justify-content: space-between;
	padding: 1em;
	align-items: center;
}
.formBox{
	width: 60%;
	border-radius: 15px;
}
.formBox input{
	width: 100%;
	padding: .5em;
	border-radius: 15px;
}
.formBox textarea{
	width: 102%;
	min-height: 8em;
	border-radius: 15px;
}
.submitLine{
	text-align: center;
	font-size: 1.3em;
}
.submit{
	margin: 2em;
	font-size: 1.1em;
	padding: .5em;
	border-radius: 15px;
	background-color: rgba(86, 73, 127, 0.75);
	color: white;
	cursor: pointer;
}
@media screen and (max-width: 675px) {
	.contactHeaven {
		display: block;
		width: 100%;
	}
	.form{
		width: 100%;
	}
	.heaven{
		width: 100%;
		clear: both;
		margin-bottom: 1em;
	}
	
}