@charset "UTF-8";
/* Hop Li Restaurant CSS Document */

html {
	font-size: 10px;
	box-sizing: border-box;
	overflow-y: scroll;
}
*, *:before, *:after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
a, a:hover {
	color: currentColor;
	text-decoration: none;
}
body {
	margin: 0;
	padding: 0;
}

#wrapper {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

header {
	background: #16562d;
}
header img {
	display: block;
	margin: 0 auto;
	width: 55%;
}
.marquee {
	padding: 10px 0;
	background: #f7e663;
	font-size: calc(12px + 0.8vw);
}

/*section*/
section {
	display: flex;
	flex-wrap: wrap;
}
.pico, .santa_monica {
	flex: 1;
	padding: 2vh 2vw;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
.pico {
	border-right: solid 1px #999;
}
h2 {
	font-size: calc(16px + 1vw);
	text-align: center;
	color: maroon;
	margin-bottom: 1vh;
}
h2 span {
	font-weight: 400;
	font-size: 0.8em;
}
p {
	font-size: calc(16px + 0.3vw);
	text-align: center;
}
.pdf {
	background: maroon;
	text-align: center;
	padding: 1vh 1vw;
	margin: 2vh auto;
	font-size: calc(16px + 0.5vw);
	color: white;
	width: 80%;
}
.pdf:hover {
	background: #5b8a0f;
}
.map {
	width: 75%;
	height: 0;
	padding-bottom: 45%;
	position: relative;
	border: solid 5px orange;
	margin: 10px auto;
}
iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border: none;
}

@media (max-width: 700px) {
	header img {
		width: 75%;
	}
	.pico {
		border: none;
		border-bottom: solid 1px #999;
		padding-bottom: 6vh;
	}
	section {
		flex-direction: column;
	}
	.map {
		padding-bottom: 30%;
	}

}









