/* FISLess 1.8.2.1 */

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	-khtml-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
body {
	font-family: "Roboto Slab","Arial";
	font-size: 24px;
}
#birdie {
	display: block;
	position: absolute;
	left: calc(50vw - 100px);
	margin: 0 auto;
	z-index: 2000;
}
@media (max-width:649px) {
	#birdie {
		top: 13px;
		height: 130px;
	}
}
@media (min-width:650px) {
	#birdie {
		top: calc(30vh - 141px);
		height: 170px;
	}
}
a {
	border: none;
	color: inherit;
	text-decoration: none;
}
@media (max-width:649px) {
	#menu,
	#switcharea {
		width: 100%;
		max-width: 60vw;
	}
}
@media (min-width:650px) {
	#menu,
	#switcharea {
		width: 1420px;
		max-width: calc(100vw - 40px);
	}
}
#switcharea {
	display: grid;
	margin: 0 auto 60px;
	justify-content: center;
	justify-self: center;
}
@media (max-width:649px) {
	#switcharea {
		margin-top: 120px;
		grid-gap: 45px;
	}
	#switcharea > a {
		display: block;
		width: 100%;
	}
}
@media (min-width:650px) {
	#switcharea {
		margin-top: 30vh;
		grid-gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	#switcharea > a {
		width: 700px;
		max-width: calc((100vw - 60px) / 2);
		display: grid;
		margin-top: -100px;
		grid-template-areas:
				"title"
				"image";
		grid-template-rows: 100px auto;
	}
	#switcharea > a > img {
		grid-area: image;
	}
	#switcharea > a > div {
		align-self: center;
		grid-area: title;
	}
}
#switcharea > a img {
	width: 100%;
}
#switcharea > a .text {
	height: 70px;
	margin-top: 15px;
	text-align: center;
}
#switcharea > a .text span {
	display: block;
}
#switcharea > a .text span:first-child {
	font-weight: 700;
}
#switcharea > a .text span:last-child {
	font-weight: 300;
}
#menu {
	margin: 0 auto;
	border-top: 1px solid black;
	background-color: white;
	font-size: 14px;
	justify-content: center;
}
#menu li {
	padding: 10px 20px;
	font-weight: bold;
	list-style-type: none;
}
@media (max-width:649px) {
	#menu {
		position: relative;
		width: 100%;
		max-width: 100%;
		padding-bottom: 20px;
		padding-top: 20px;
	}
	#menu li {
		display: block;
		width: 100%;
		margin: 5px;
		padding: 0;
		text-align: center;
	}
}
@media (min-width:650px) {
	#menu {
		display: flex;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
	}
	#menu li:not(:first-child):before {
		margin-left: -20px;
		margin-right: 20px;
		content: '·';
	}
}