html, body {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
}

h1, h2, h3, h4, h5, h6, p, a, ul, li, span, form, label, button, input {
	font-family: roboto, arial, sans-serif;
	margin: 0px;
	padding: 0px;
	color: #333;
	text-decoration: none;
	letter-spacing: 0.2px;
}

img {
	vertical-align: bottom;
}

b {
	font-weight: 500;
}

strong {
	font-weight: 600;
}

p {
	line-height: 150%;
}

* {
	box-sizing: border-box;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-ms-word-break: break-all;
	/* This is the dangerous one in WebKit, as it breaks things wherever */
	word-break: break-all;
	/* Instead use this non-standard one: */
	word-break: break-word;
}

.row::after {
	content: "";
	clear: both;
	display: table;
}

#top {
	background: #fff url(img/bg.jpg) no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	width: 100%;
	padding: 80px 30px 120px 30px;
	text-align: center;
}

#top img {
	width: 40px;
}

#top h1 {
	font-size: 16px;
	font-weight: 300;
	margin-top: 20px;
}

#top h2 {
	font-size: 50px;
	font-weight: 500;
	padding-top: 10px;
	max-width: 650px;
	margin: auto;
}

#top p {
	font-size: 20px;
	font-weight: 400;
	margin-top: 10px;
}

.cta {
	font-size: 20px;
	font-weight: 600;
	padding: 10px 15px;
	border: 2px solid #393185;
	border-radius: 50px;
	display: inline-block;
	margin-top: 20px;
	background: #393185;
	color: #fff;
}

#content-01 {
	width: 100%;
	max-width: 600px;
	text-align: center;
	padding: 50px 20px;
	margin: auto;
}

#content-01 h2 {
	font-size: 30px;
}

#content-01 p:nth-child(2) {
	padding-top: 10px;
	font-size: 18px;
}

#content-01 p:nth-child(3) {
	font-size: 50px;
	display: inline-block;
	padding-top: 15px;
}

#content-01 p:nth-child(4) {
	padding-top: 20px;
	font-size: 14px;
}

#content-01 h3 {
	padding-top: 20px;
	font-size: 24px;
}

#content-01 p:nth-child(6) {
	padding-top: 20px;
	font-size: 14px;
}

#content-02 {
	width: 100%;
	text-align: center;
	padding: 50px 20px;
	background: #f1f1f1;
}

#content-02-1 {
	width: 100%;
	max-width: 600px;
	margin: auto;
}

#content-02-1 p {
	padding-top: 10px;
}

#footer {
	width: 100%;
	background: #2D244C;
}

#footer-01 {
	padding: 130px 30px 30px 30px;
	text-align: center;
}

#footer-01 p {
	font-size: 14px;
	color: #fff;
}

#footer-01 p a {
	font-size: 14px;
	color: #fff;
}

/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */   
  height: 100%;
  width: 100%;
  display: none;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  background-color: #fff; /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  width: 100%; /* 100% width */
  max-width: 800px;
  margin: auto;
  padding: 90px 30px;
}

.overlay-content p, h2, a, li, h3 {
	padding-top: 15px;
	font-weight: 300;
}

.overlay-content h1 {
	padding-top: 15px;
	font-weight: 400;
}

.overlay-content strong {
	font-weight: 500;
}

.overlay-content a {
	color: blue;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 40px;
  z-index: 99;
}

@media only screen and (max-width: 700px) {
	#top h2 {max-width: 92%; font-size: 6vw;}
	#top p {font-size: 16px;}
}