html {
	font-size: 100%;
}

body {
	display: block;
	margin: 0;
	padding: 0;
	color: #FFFFFF;
	background: #39A5FF;
	font-family: 'Montserrat', sans-serif;
}

main {
	padding-top: 80px;
}

@media screen and (min-width: 41em) {
	main {
		padding-top: 100px;
	}
}

*, *::after, *::before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

h1, h2 {
	margin: 0px;
	text-shadow: 0px 3px 5px rgba(0, 0, 0, 1);
}

img {
  box-sizing: content-box;
  -moz-box-sizing: content-box; }

a, a:visited {
	text-decoration: none;
}

.wrapper {
	display: block;
	width: 100%;
	max-width: 1100px;
	margin: auto;
}

.noscroll {
	overflow-y: hidden;
}

.text-center {
	text-align: center;
}

.text-white {
	color: #FFFFFF;
}

.block {
	display: block;
	position: relative;
	max-width: 1200px;
	margin: auto;
	padding: 40px 20px;
}

@media screen and (min-width: 50em) {
    .block {
		padding: 40px 30px;
		min-height: 600px;
	}
}

.block.-fullwidth {
	max-width: none;
}
/* Secondary (mid-page) background color */
.block__wrapper:nth-child(odd) {
    background-color: #F06AF0;
    color: #FFFFFF;
	
}
.block__content {
    display: block;
    position: relative;
    width: 100%;
}
.block__content.-text {
    margin: auto;
    font-size: 1rem;
    line-height: 1.8;
}
@media screen and (min-width: 50em) {
	.block__content.-text {
		max-width: 80%;
		font-size: 1.125rem;
		padding: 1.5rem 0;
	}
}
@media screen and (min-width: 62em) {
	.block__content.-text {
		padding: 3rem 0;
	}
}
.block__content h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.8125rem;
	line-height: 1;
	font-weight: normal;
	margin: 0 0 1rem;
	color: #FFFFFF;
}
@media screen and (min-width: 50em) {
	.block__content h1 {
		font-size: 7.5rem;
	}
}
.block__content h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.75rem;
	margin-bottom: 20px;
}
@media screen and (min-width: 50em) {
	.block__content h2 {
		font-size: 2.125rem;
	}
}
.block__content header {
	font-size: 1.25rem;
	font-weight: bold;
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.block__content .intro {
	margin-bottom: 2rem;
}

.overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.0);
}

/* Sliding Menu */
.offcanvas {
	position: fixed;
	width: 100%;
	height: 100vh;
	background: rgba(0,160,255, 0.8);
	backdrop-filter: blur(6px);
	transform: translateX(100%);
	transition: transform 400ms ease-in-out;
	z-index: 10;
	padding: 10px;
}

@media screen and (min-width: 41em) {
	.offcanvas {
		display: none;
	}
}

.offcanvas.open {
	transform: translateX(0%);
}
.offcanvas__close {
	position: absolute;
	width: 55px;
	height: 55px;
	top: 10px;
	right: 8px;
	padding: 0px;
	line-height: 1;
}
.offcanvas__close span {
	display: block;
	position: absolute;
	  
/* X button */
	background-color: #FFFFFF;
	width: 30px;
	height: 2px;
}
.offcanvas__close span:first-child {
	transform: rotate(45deg);
	top: 28px;
	left: 12px;
}
.offcanvas__close span:last-child {
	transform: rotate(-45deg);
	top: 28px;
	left: 12px;
}
.offcanvas__content {
	text-align: center;
	padding-top: 5rem;
}
.offcanvas__image {
	margin-bottom: 20px;
}
	
/* Sliding Menu Items */
.offcanvas__item {
	display: block;
	font-size: 1.5rem;
	line-height: 3;
	color: #FFFFFF;
}	
.offcanvas__item:active {
	color: #FFFFFF;
	background-color: #F06AF0;
}

.header {
	position: fixed;
	width: 100%;
	padding: 10px;
	background: rgba(0,160,255, 0.3);
	backdrop-filter: blur(6px);
	box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
	z-index: 10;
}
.header .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header__image {
	flex: 0 1 auto;
	height: 60px;
}
@media screen and (min-width: 41em) {
	.header__image {
		height: 80px;
	}
}
.header__nav {
	flex: 0 1 auto;
	display: none;
}
@media screen and (min-width: 41em) {
	.header__nav {
		display: block;
	}
}
		
/* Header Menu Items */
.header__nav-item {
	font-size: 1.125rem;
	color: #FFFFFF;
	padding: 10px 20px;
	transition: color 150ms ease-in-out;
}
.header__nav-item:hover {
	color: #FFFFFF;
	background-color: #F06AF0;
	border-radius: 20px;
}
.header__open {
	display: block;
	padding: 12px;
	width: 55px;
	position: absolute;
	right: 5px;
}
@media screen and (min-width: 41em) {
	.header__open {
		display: none;
	}
}
.header__open span {
	display: block;
	background: #FFFFFF;
	height: 2px;
	width: 100%;
	margin-bottom: 8px;
}
.header__open span:last-child {
	margin-bottom: 0;
}

#home.block {
	background-image: url(../images/tea_1920.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

@media screen and (min-width: 50em) {
	#home .block__content {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
		margin-top: -2rem;
	}
}

#home .block__content h2 {
	font-family: "Lato", sans-serif;
	font-size: 1.875rem;
}

#about .grid {
	display: block;
}
@media screen and (min-width: 41em) {
	#about .grid {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
	}
}
#about .grid__item {
	height: 200px;
	margin: 0 0 20px;
	background-size: cover;
	background-position: center center;
}
@media screen and (min-width: 41em) {
	#about .grid__item {
		width: 48%;
	}
}
@media screen and (min-width: 62em) {
	#about .grid__item {
		width: 21%;
		margin: 0 10px;
	}
}

#menu .grid {
	display: block;
}
@media screen and (min-width: 41em) {
	#menu .grid {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
	}
}
#menu .grid__item {
	text-align: center;
}
@media screen and (min-width: 41em) {
	#menu .grid__item {
		width: 48%;
	}
}
#menu .grid__image {
	height: 300px;
	margin: 0 0 20px;
	background-size: cover;
	background-position: center center;
}
#menu .grid__content p {
	font-size: 1.0625rem;
	margin: 0 0 0.25rem;
}

#location .grid {
	display: block;
}
@media screen and (min-width: 41em) {
	#location .grid {
		display: flex;
		flex-flow: row wrap;
		justify-content: flex-start;
	}
}
#location .grid__item {
	margin: 0 0 20px;
	padding: 0 10px;
	background-size: cover;
	background-position: center center;
}
#location .grid__item.map img {
	width: 100%;
	max-width: 500px;
}

footer {
	padding: 20px 0;
	text-align: center;
	background-color: #CFE0E0;
	color: #408040;
	font-size: .7rem;
}


backdrop-filter: blur(1px);