.contact-form, .contact-info {
	position: relative;
	overflow: hidden;
	height: auto;
	padding: 10px;
}
.contact-form {
	width: 66%;
	float: left;
}
.contact-info {
	width: 34%;
	float: right;
	text-align: center;
	line-height: 150%;
}
@media screen and (max-width: 940px) {
	.contact-form, .contact-info {
		width: 50%;
	}
}
@media screen and (max-width: 640px) {
	.contact-form, .contact-info {
		padding: 5px;
		width: 100%;
	}
	article.contact {
		padding: 5px;
	}
}
.contact-info button, .contact-info a.button {
	padding: 0px 20px !important;
	width: 80%;
	font-size: 9pt;
	margin-top: 20px !important;
	margin-bottom: 60px !important;
}
.contact-info a.tel, .contact-info a.email {
	text-decoration: none;
	color: inherit;
}
.contact-info span.italic {
	font-style: italic;
}
.contact-info span {
	font-size: 12pt;
	margin-bottom: 20px;
	display: inline-block;
}

.invalid {
	background-color: rgb(255, 148, 134);
	color: #D00;
	font-weight: bold;
}
.invalid::placeholder {
	color: #D00;
	font-weight: bold;
}

form.contact {
	width: 100%;
	text-align: center;
}
input[type="text"], input[type="email"], textarea {
	box-sizing: border-box;
	padding: 10px;
	font-size: 10pt;
	font-family: Montserrat, sans-serif;
	outline: none;
	border: 1px solid #999;
	letter-spacing: 1px;
}
form.contact input[name="c_name"] {
	float: left;
	width: CALC(50% - 5px);
	margin-right: 5px;
}
form.contact input[name="c_email"] {
	float: right;
	width: CALC(50% - 10px);
	margin-left: 10px;
}
form.contact input[name="c_subject"] {
	margin-top: 20px;
	width: 100%;
}
form.contact textarea[name="c_content"] {
	margin-top: 20px;
	width: 100%;
	height: 350px;
	resize: vertical;
	margin-bottom: 20px;
}

article.contact {
	padding-bottom: 0px;
}
iframe.google-map {
	width: 100%;
	height: 512px;
	border: 0px;
	margin-bottom: -14px;
}

.contact-mail-msg {
	display: none;
	padding: 20px;
	text-align: center;
	margin-bottom: 40px;
}
.contact-mail-msg.success {
	background-color: rgb(121, 255, 121);
	color: #050;
}
.contact-mail-msg.error {
	background-color: rgb(255, 121, 121);
	color: #500;
}
.contact-mail-msg a {
	font-weight: bold;
	font-size: 10pt;
	text-decoration: none;
}
.contact-mail-msg.success a {
	color: #040;
}
.contact-mail-msg.error a {
	color: #400;
}

.accordion {
	background-color: #000;
	color: #ffffff;
	cursor: pointer;
	padding: 8px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	border-bottom: 1px solid white;
}

.accordion:hover {
	background-color: #393838;
}
@media screen and (max-width: 640px) {
	.accordion:hover {
		background-color: #000;
	}
}
.active-acc {
	background-color: #393838 !important;
}

.accordion:after {
	content: '\002B';
	color: #fff;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}

.active-acc:after {
	content: "\2212";
}

.panel {
	padding: 0 18px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	position: relative;
	top: -10px;
}
