.food-menu {
	background: var(--white-color);
	padding: 0 5% 50px;
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.food-menu .max-width {
	max-width: 1200px;
	  position: relative;
	  width: 100%;
	  display: flex;
	  flex-wrap: wrap;
	  gap: 10px;
	  margin: 0 0 10px 0;
	  justify-content: center;
}

.menu-title {
	margin: 0 0 30px 0;
	font-size: 2.5em;
	font-weight: 400;
}

.menu-subtitle {
	margin: 0 0 30px 0;
	text-align: center;
	  max-width: 900px;
	  width: 100%;
}

.menu-disclaimer {
	font-size: 0.9em;
	max-width: 900px;
	margin: 0 0 20px 0;
}

.food-menu-item {
	width: calc(33% - 10px);
	position: relative;
	padding: 30px;
	  background: #e8e5df;
}

.menu-item-title {
	text-transform: capitalize;
	font-size: 1.15em;
	  font-family: var(--main-font);
	  color: var(--main-color);
	  font-weight: 700;
	  margin-bottom: 5px;
}

.menu-item-subtitle {
	margin: 0 0 3px 0;
	  color: var(--second-color);
	  line-height: 1.4em;
}

.menu-item-subtitle strong {
	font-weight: 500;
}

.menu-item-description {
	margin: 0;
	  line-height: 1.4em;
	  font-size: 0.9em;
}

.menu-item-price {
	font-size: 1.25em;
	  font-family: var(--main-font);
	  color: var(--main-color);
	  font-weight: 700;
	  margin: 5px 10px 0 0;
}

.dietary-options {
	display: flex;
	position: relative;
	margin: 0 0;
}

.dietary-options-key {
	margin: 0 0 30px 15px;
	  display: flex;
	  position: relative;
	  background: #e8e5df;
	  padding: 20px 30px 20px 57px;
	  justify-content: center;
	  flex-wrap: wrap;
}

.dietary-options li {
	width: 20px;
	margin: 0 8px 0 0;
	position: relative;
}

.dietary-options-key li {
	width: auto;
	margin: 0 45px 0 0;
	position: relative;
	color:var(--main-color);
	font-size: 0.875em;
	font-weight: 500;
}

.dietary-options-key li:last-of-type {
	margin: 0;
}


.dietary-options li span:before, .dietary-options-key li span:before {
	font-family: var(--main-font);
	font-weight: 600;
	color: var(--white-color);
	height: 22px;
	width: 22px;
	font-size: 0.7em;
	display: inline-block;
	text-align: center;
	line-height: 22px;

}

.dietary-options-key li span:before { 
	position: absolute;
	left: -26px;
	  top: -2px;

}

.vegan:before {
	content:'VE';
	background:#2A6D56;
}

.vegetarian:before {
	content:'V';
	background:#4e8499;
}

.gluten-free:before {
	content:'GF';
	background:var(--second-color);
}

.gluten-free-optional:before {
	content:'GO';
	background:var(--main-color);
}

.bottom-info {
	display: flex;
	position: relative;
	align-items: center;
	margin: 15px 0 0 0;
	padding: 15px 0 0 0;
	border-top: 1px solid #cec6b6;
}

.pink-button.print-menu {
	margin: 90px 0 0 0;
	position: relative;
	padding: 10px 20px 12px 45px;
}

.pink-button.print-menu:before {
	content: '\f1c1';
	  font-family: 'Font Awesome 5 Pro';
	  font-size: 1.5em;
	  color: var(--white-color);
	  position: absolute;
	  left: 21px;
	  top: 11px;
	  font-weight: 300;
}


@media screen and (max-width: 800px){
	.food-menu {
		align-items: flex-start;
	}
	
	.menu-subtitle {
		text-align: left;
	}
	
	.food-menu .max-width { 
		justify-content: flex-start;
	}
	.dietary-options-key {
		margin: 0 0 30px 0;
	}
	.food-menu-item {
		width: calc(50% - 10px);
	}
}

@media screen and (max-width: 605px){ 
	.dietary-options-key {
		justify-content: flex-start;
	}
	.dietary-options-key li {
		margin: 0 45px 15px 0;
		
	}
}

@media screen and (max-width: 450px){
	.food-menu-item {
		width: calc(100% - 10px);
	}
}