/* buttons */

.button {
	text-decoration: none;
	background-color: #f14a3b;
	color: white;
	font-family: "Montserrat", sans-serif;
	padding: 0.7rem 0.95rem;
	position: relative;
	min-width: 10rem;
	transition: all 300ms;
	display: inline-block;
	text-align: center;
	border: 0;
}

	.button:hover {
		background-color: #FF5046;
	}

.button--alt {
	background-color: white;
	border: 1px solid #f14a3b;
	font-family: "Montserrat", sans-serif;
	color: #f14a3b;
}

	.button--alt:hover {
		color: white;
	}

.button--narrow {
	width: auto;
	min-width: 0;
}

.button--block {
	width: 100%;
}

/* button group */

.button-group {
	display: block;
}

	.button-group .button {
		margin-right: 1rem;
		margin-bottom: 1rem;
	}
