#contact_page_container
{
	background: #f4eee2;
}
#contact_page
{
	display: flex;
	align-items: center;
	padding: 100px 0 50px 0;
}
#contact_page>div
{
	flex: 1;
}
#contact_data
{
	text-align: center;
}
#contact_data h1
{
	font-size: 40px;
	font-weight: bold;
}
#contact_data h2
{
	font-size: 30px;
	font-weight: bold;
}
#contact_data div
{
	color: #6a655f;
	margin-bottom: 30px;
}
#contact_data div a
{
	color: #6a655f;
	text-decoration: none;
}
#contact_data .social img
{
	width: 50px;
	margin: 0 10px;
}
#contact_form, #contact_success
{
	background: #fff9ed;
	padding: 30px;
	border-radius: 30px;
	margin: 10px;
}
#contact_form h2
{
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 20px;
}
#contact_form label
{
	font-weight: bold;
	margin-left: 15px;
}
#contact_form input
{
	height: 50px;
}
#contact_form #reference
{
	margin-left: 15px;
	margin-bottom: 10px;
	font-size: 12px;
}
#contact_form textarea
{
	height: 150px;
	resize: none;
}
#contact_form input:not(.button), #contact_form textarea
{
	width: 100%;
	border: 0;
	outline: none;
	transition: .3s;
	margin: 5px 0 10px 0;
	padding: 15px 15px;
	border-radius: 30px;
	background: #f1e8d7;
}
#contact_form input:focus, #contact_form textarea:focus
{
	border: 1px solid #a39d92;
}
#contact_form .button
{
	width: 100%;
}
#contact_form .name_surname
{
	display: flex;
	gap: 10px;
}
#contact_form .name_surname>div
{
	width: 100%;
}
#contact_page_container #contact_faq
{
	text-align: center;
	font-size: 14px;
	color: #6a6561;
	padding-bottom: 30px;
}
#contact_page_container #contact_faq a, #register_for_price a
{
	color: #c4935b;
	text-decoration: none;
	font-weight: bold;
}
#contact_page_container .msg
{
	display: flex;
	justify-content: center;
	padding: 20px 0;
	position: absolute;
	left: 0;
	right: 0;
}
#contact_page_container .msg>div
{
	padding: 10px;
	border-radius: 10px;
	box-shadow: -1px -1px 6px 1px #e1e1e1;
	display: flex;
	margin: 10px;
}
#contact_page_container .msg i.fa-close
{
	margin-left: 10px;
	cursor: pointer;
}
#register_for_price>div
{
	background: #fff9ed;
}
#contact_error_msg>div
{
	background: #f7b39c;
	color: #e10102;
}
#contact_error_msg i.fa-exclamation-triangle
{
	margin-right: 3px;
}
@media (max-width: 768px)
{
	#contact_page
	{
		flex-direction: column;
	}
}
