.button-bar {
	text-align: center;
	padding: 7px 0 5px;
	box-shadow: 8px 1px 10px #acacac;
	display: flex;
	justify-content: center;
	position: relative;
}
.button-bar:before {
	content: "";
	display: block;
	width: 120px;
	height: 120px;
	background-image: url(../../assets/icons/utility/waxseal.png);
	background-size: contain;
	background-position: center;
	position: absolute;
	top: -55px;
	right: 2%;
}
.button-bar h3 {
	font-family: 'California Palms Script';
	font-weight: 100;
	color: #121216;
	transform: rotate(-6deg);
	font-size: 50px;
	margin: 16px 44px 0 0;
}
.button-bar ul {
	display: flex;
	justify-content: center;
	flex-wrap:wrap;
	list-style-type: none;
}
.button-bar ul li {
	margin: 10px 20px;
}
.button-bar ul li .button {
	font-size: 18px;
	font-family: 'freight-big-pro';
	text-decoration: none;
	min-width: 107px;
	height: 44px;
	border: none;
	padding: 8px 0 0;
	transition: all 0.5s;
	font-weight: 100;
	color: #121216;
	letter-spacing: -0.03rem;
}
.button-bar ul li .button:hover {
	text-decoration: underline;
}
.button-bar ul li:nth-child(1) .button {
	background-image: url(../../assets/icons/utility/button-hover.png);
	background-size: cover;
	opacity: 1;
	background-position: center;
}
@media all and (max-width:1020px) {
	.button-bar ul li {
		margin: 10px 8px;
	}
}
@media all and (max-width: 850px) {
	.button-bar {
		display: block;
	}
	.button-bar h3 {
		margin: 16px 0 0 0;
	}
	.button-bar:before {
		top: -39px;
		width: 100px;
		height: 100px;
	}
}
@media all and (max-width:550px) {
	.button-bar:before {
		top: -33px;
		width: 80px;
		height: 80px;
		right:4%;
	}
	.button-bar ul li {
		margin: 10px 1px;
	}
	
}
@media all and (max-width:436px) {
	.button-bar ul li .button {
		min-width: 93px;
	}
} 