.main_container {
	display: flex;
	justify-content: center;
}
.contact-container {
	border-radius: 12px;
	width: 80%;
	background-color: var(--backgroundLight);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10rem;
	padding: 4rem 3rem;
}
.contact_img {
	display: flex;
	justify-content: center;
}
.img_contact {
	width: 70%;
	height: 100%;
}
.contact_form {
	margin-right: 5rem;
}
.contact_form label {
	color: #dddddd;
	font-size: 1.6rem;
}
.contact_form input,
textarea {
	background-color: transparent;
	border: 1px solid var(--backgroundTransparent);
	width: 45.5rem;
	height: 4.7rem;
	border-radius: 1.2rem;
	padding-left: 2rem;
	margin-bottom: 1.5rem;
	font-size: 1.4rem;
	margin-top: 0.5rem;
	color: #dddddd;
}

.name {
	margin-top: 2rem;
}

#message {
	color: white;
	font-size: 1.4rem;
	height: 6.5rem;
}

textarea {
	font-weight: 350;
	padding-top: 1rem;
}

@media (max-width: 1200px) {
	.container {
		width: 90%;
		flex-direction: column;
		align-items: center;
		margin-top: 5rem;
	}
	.contact_form {
		margin-right: 0;
	}
	.contact_img {
		margin-top: 5rem;
	}
}
@media (max-width: 768px) {
	.container {
		width: 100%;
		flex-direction: column;
		align-items: center;
		margin-top: 5rem;
	}
	.contact_form {
		margin-right: 0;
	}
	.contact_img {
		margin-top: 5rem;
	}
}
@media (max-width: 500px) {
	.contact_form input,
	textarea {
		width: 100%;
	}
	.submit button {
		width: 100%;
	}
}
@media (max-width: 400px) {
	.contact_form input,
	textarea {
		width: 100%;
	}
	.submit button {
		width: 100%;
	}
}
