html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}
* {
  box-sizing: border-box;
}
html, body {
	height: 100%;
	font-family: "Raleway", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
}
body .wrapper {
	text-align: center;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
a, a:hover {
	color: #00833D;
}
.background img {
	width: 100%;
	height: auto;
}
.wrapper h1 {
	font-size: 6rem;
}
h1, h2, h3, h4, h5 {
	font-weight: 800;
}
.btn-text {
	min-width: 150px;
	font-size: 14px;
	color: #fff;
	font-family: 'Raleway', sans-serif;
	line-height: 41px;
	border: 2px solid #00833D;
	padding: 0 22px;
	border-radius: 0px;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: #00833D;
	height: 44px;
	text-align: center;
	-webkit-transition: all 0.2s linear 0s;
	-moz-transition: all 0.2s linear 0s;
	-ms-transition: all 0.2s linear 0s;
	-o-transition: all 0.2s linear 0s;
	transition: all 0.2s linear 0s;
	text-decoration: none;
}
.btn-text:hover {
	color: #fff;
}

/* Custom css */
#popup {
	position: fixed;
	z-index: 999999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.750);
	display: flex;
	align-items: center;
}
#popup .inner {
	width: 100%;
	max-width: 700px;
	display: block;
	margin: 0 auto;
}
#popup .content {
	background: #fff;
	padding: 4rem;
	box-shadow: 0 0 3rem rgba(0, 0, 0, 0.150);
	margin: 0 1.5rem;
}
#popup .content p {
	line-height: 1.5;
	margin: 0;
}
#popup .content a {
	text-decoration: underline;
}
#popup .content a.btn-text {
	margin: 0;
	text-decoration: none;
}
@media screen and (max-width:768px) {
	#popup .content {
		padding: 1.5rem;
	}
}