/* Boutons */
a {
	color: #D9A441;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

::selection {
	background: rgba(217, 164, 65, .35);
	color: var(--text);
}

.sbtn, .contact-form .sbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 999px;
	border: 1px solid rgba(217, 164, 65, .35);
	background: rgba(244, 232, 200, .35);
	color:var(--text);
	font-weight:600;
	cursor: pointer;
	text-decoration: none;
	transition: transform .08s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
	position: relative;
	overflow: hidden;
}

.sbtn:hover, .contact-form .sbtn:hover {
	background: var(--accent-color);
	border-color:rgba(244, 232, 200, .60);
	transform: translateY(-1px);
	box-shadow:0 0 18px rgba(217, 164, 65, .35),0 8px 28px rgba(0, 0, 0, .15);
}

.sbtn:active, .contact-form .sbtn:active {
	transform: translateY(0);
}