.contact {
	overflow: hidden;
	width: 800px;
	margin: 0 auto;
	display: block;
	padding: 40px 30px;
}
.contact h5 {
	font-weight: 500;
	font-size: 38px;
	margin-bottom: 18px;
	text-align: center;
}
.contact h4 {
  color: #323946;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}
.contact p {
	font-size: 15px;
	color: #666;
	margin-bottom: 30px;
	text-align: center;
}
form input {
	display: block;
	height: 60px;
	padding: 8px 15px;
	border-radius: 0;
	color: #929292;
	border: 1px solid rgba(0, 0, 0, 0.2);
	margin-bottom: 15px;
	width: 100%;
	box-sizing: border-box;
	font-size: 18px;
}
form textarea {
	display: block;
	padding: 12px 13px;
	border-radius: 0;
	color: #7a7a7a;
	border: 1px solid rgba(0, 0, 0, 0.2);
	margin-bottom: 15px;
	width: 100%;
	box-sizing: border-box;
	font-size: 20px;
	resize: none;
}
form .btn-row {
	display: flex;
	justify-content: space-between;
}
form button[type="submit"] {
	width: 49%;
	padding: 12px 0;
	font-size: 18px;
	background-color:#1d86d2;
	color: white;
	border: none;
	cursor: pointer;
}
form button[type="submit"]:hover {
	background-color: #67686f;
}
form button[type="reset"] {
	width: 49%;
	padding: 12px 0;
	font-size: 18px;
	background-color: #b1b1b1;
	color: white;
	border: none;
	cursor: pointer;
}
form button[type="reset"]:hover {
	background-color: #bababa;
}
