#menu-main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.flex-container {
	display: flex;
	flex-direction: row;
	gap: 3rem;
}

#menus {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 90vw;
	max-width: 1000px;
	min-height: 75vh;
	margin-bottom: 4rem;
}

.menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 80vh;
}

.menu-column {
	flex-basis: 100%;
	max-width: 600px;
	min-width: 250px;
}

.menu-header {
	font-size: 1.8rem;
	margin-bottom: .5rem;
	text-align: left;
	border-bottom: #222222 solid 1px;
}

.menu-subheader {
	font-size: 1rem;
	margin-top: -.5rem;
	text-align: left;
}

.menu-subheader span {
	font-size: 1.2rem;
	margin-bottom: .5rem;
	margin-left: .5rem;
}

.menu-section h4 {
	font-weight: 600;
	font-size: 1rem;
	margin: 0;
}

.menu-section h4 span {
	font-size: 1.1rem;
	margin-left: 1.5rem;
}

.menu-section p {
	font-weight: 200;
	margin: 0 0 1rem 0;
	font-size: .9rem;
}

/* ===TABS=== */
.tabs-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
}

.tabs-header {
	width: 100%;
	max-width: 800px;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	justify-content: center;
}

.tabs-header > li {
	display: inline-block;
	color: #222;
	font-size: 1.5rem;
	font-weight: 400;
	cursor: pointer;
	position: relative;
	text-decoration: none;
	margin: auto;
	height: 2.1rem;
	width: 11rem;
	text-align: center;
}

.tabs-header > li.active {
	font-weight: 800;
	font-size: 1.7rem;
}

.tabs-header > li:hover {
	color: #222;
}

.tabs {
	display: flex;
	width: 100%;
	justify-content: center;
	align-content: center;
	gap: 2rem;
}

.tab {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	color: #222;
}

.tab.active {
	display: flex;
	gap: 2rem;
}

#top-logo {
	fill: #222222;
}

/*Small devices*/
@media only screen and (max-width: 767.98px) {
	.flex-container {
		flex-direction: column;
		gap: 0;
	}
}
