body {
	color: #1a1a1a;
}
img {
	max-width: 100%;
	height: auto;
}

/* header */
header {
	max-width: 540px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
header .logo {
	text-align: center;
}
header .logo img {
	height: 200px;
}
header .navigation {
	text-align: center;
}
header .navigation ul {
	list-style: none;
	padding: .5rem 0;
	margin: 0;
}
header .navigation ul.book {
	border-bottom: 1px solid #ccc;
}
header .navigation ul.book li {
	background: #181d4b;
	border-radius: 0.5rem;
	height: 48px;
}
header .navigation ul.book li a {
	color: #fff;
}
header .navigation ul li {
	margin: 0 .5rem;
	display: inline-block;
	line-height: 48px;
	padding: 0 .5rem;
}
header .navigation ul li a {
	display: block;
	color: initial;
	text-decoration: none;
	text-transform: uppercase;
}

/* page */
.page {
	max-width: 540px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2rem;
}
.page .heading {
	text-align: center;
}
.page .heading p {
	font-size: 1.25rem;
}
.page .option {
	border-bottom: 1px solid #d5d8ec;
	color: #808080;
	padding-bottom: 2rem;
}
.page .option:last-of-type {
	border-bottom: 0;
}
.page .option .placeholder {
	height: 250px;
}
.page .option .placeholder img {
	object-fit: cover;
	height: 250px;
	width: 100%;
	border-radius: .5rem;
}
.page .option h2 {
	color: #212121;
}
.page .option .ctas {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
}
.page .option .ctas .ebtn {
	flex: 0 49%;
	width: 49%;
	color: #ffffff;
  	font-weight: bold;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border-radius: .5rem;
  	margin-bottom: .5rem;
	text-transform: uppercase;
}
.page .option .ctas .ebtn.menu {
	background: #e87b43;
}
.page .option .ctas .ebtn.book {
	background: #181d4b;
	text-decoration: none;
}

/* footer */
footer {
	padding: 3rem 0;
	text-align: center;
}
footer a {
	text-decoration: none;
}
footer svg,
footer img {
	height: 50px;
	margin: 0 .5rem;
}

/* responsive */
@media(max-width: 767px) {
	.page .option .ctas .ebtn {
		width: 100%;
		flex: 0 100%;
	}
}