.contact_form {
	/*max-width: 1500px;*/
	width: 100vw;
	margin: 100px auto 0;
	display: flex;
	justify-content: center;
	padding: 40px;
	background-color: #8364e8;
	z-index: 0;
}
@media only screen and (max-width: 800px) {
	.contact_form {
		flex-direction: column;
		gap: 20px;
		padding: 20px;
	}
}
.contact_form figure:nth-child(1) {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
  max-width: 400px;
}
.contact_form figure:nth-child(1) h2 {
	font-size: 2.5rem;
	z-index: 100;
	color: #fff;
}
.contact_form img {
	height: auto;
	width: 200px;
	margin-top: -100px;
	z-index: 0;
}
@media only screen and (max-width: 800px) {
	.contact_form img {
		transform: rotate(90deg);
	}
}
.contact_form figure {
  flex: 1 auto;
}
@media only screen and (max-width: 800px) {
	.contact_form figure:nth-child(1) {
		margin: auto;
	}
}
.contact_form figure:nth-child(2) {
  max-width: 500px;
	margin-right: 20px;
}
.contact_form form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	/*margin: auto;*/
	padding: 20px;
	/*background-color: #039cdf;*/
	border: solid 2px #fff;
	border-radius: 25px;
	/*width: 400px;*/
}
.contact_form input,
.contact_form textarea {
	padding: 7px;
	border: none;
}
.contact_form input:focus,
.contact_form textarea:focus {
	border: none;
	outline: none;
	background-color: #eee;
}
.contact_form textarea {
	min-height: 250px;
	max-height: 500px;
	resize: vertical;
	color: #000;
}
.contact_form input[type="submit"] {
	font-weight: bold;
	cursor: pointer;
	background-color: #25D366;
	transition: background-color 0.15s ease;
	color: #fff;
}
.contact_form input[type="submit"]:hover {
  background: #21BD5B;
}