@charset 'utf-8';

#consultationButton {
	padding: 0.7rem 1.6rem;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--color-text-primary-btn);

	background: linear-gradient(180deg,
			#d6b45d 0%,
			#c8a44e 55%,
			#b8933f 100%);

	border: 1px solid #a88535;
	border-radius: 6px;

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.35),
		0 2px 6px rgba(0, 0, 0, 0.15);

	transition: all .2s ease;
	cursor: pointer;
}

#consultationButton:hover {
	background: linear-gradient(180deg,
			#e0be67 0%,
			#c8a44e 60%,
			#b08c3b 100%);

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.4),
		0 4px 12px rgba(0, 0, 0, 0.18);

	transform: translateY(-1px);
}

#consultationButton:active {

	transform: translateY(1px);

	box-shadow:
		inset 0 2px 4px rgba(0, 0, 0, 0.25),
		0 1px 2px rgba(0, 0, 0, 0.1);
}

#footer {
	background-color: #333;
}
#footer .footer-sitename {
	color:var(--color-text-muted);
}
#footer .footer-sitemap h5, .footer-contact h5 {
	color: var(--color-text-muted);
}
#footer a:hover {
	color: var(--color-primary);
}
#footer p, #footer a, #footer .footer-bottom {
	color: var(--color-text-muted);
}