/* #pardot-form * {
	box-sizing: border-box;
}
#pardot-form {
	padding: 0;
	margin: 0;
}
#pardot-form .form-field input {
  width: 100%;
  padding: 12px 8px;
  font-size: 20px;
	border-radius: 5px;
	border: none;
}
#pardot-form .form-field label {
	margin-bottom: 5px;
}
#pardot-form .form-field select {
	height: 47px;
	width: 100%;
  padding: 12px 8px;
  font-size: 20px;
	border-radius: 5px;
	border: none;
}
#pardot-form p.form-field {
  width: 48%;
  display: inline-block;
  margin: 0 0 15px 0;
}
#pardot-form p.form-field:nth-child(1) {
  width: 100%;
  display: block;
  margin: 0 0 15px 0;
}
#pardot-form p.submit input {
  background: #ffd138;
  border: none;
  font-size: 20px;
  font-weight: 800;
  color: #244360;
  text-transform: uppercase;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  padding: 10px 50px;
  border-radius: 5px;
} */


/*
* CSS Reset
**/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*
* Document Styles
**/
* {
  box-sizing: border-box;
}
html {
  font-size: 16px;
	background: #fff;
}
body {
  font-size: 1rem;
  font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
  font-weight: 400;
  line-height: 1;
  background-image: url(../img/grid-05.png);
  background-position: center;
  background-repeat: repeat-y;
  background-color: #f3efef;
	/* background-color: #eff2f3; */
  border: 24px solid #fff;
  color: #244360;
}

/*
* Text Styles
**/
h1, h2, h3, h4, h5, h6 {
  font-size: 1.625em;
  font-weight: 400;
  margin: 1em 0 0.5em;
  text-transform: uppercase;
}
h1 {
  font-size: 3.625em;
  font-weight: 800;
  font-style: italic;
}
h2 {
  font-size: 3em;
  font-style: italic;
  font-weight: 800;
}
h3 {
  font-size: 2em;
}
p {
  font-size: 1.25em;
  margin: 1em 0;
  line-height: 1.5;
}
p.heading {
	font-size: 2em;
	margin-bottom: 0.5em;
  margin-top: 0.75em;
}
strong {
  font-weight: 800;
}
em {
  font-style: italic;
}
sup {
	vertical-align: super;
	font-size: 0.5em;
}

a {
  color: #0090d3;
  text-decoration: none;
}
.button {
  display: inline-block;
  background: #244360;
  border-radius: 3px;
  color: #fff;
  font-weight: 800;
  padding: 12px 50px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin: 2rem 0;
}
.button.accent {
  background: #ffd138;
  color: #244360;
}
a.button.tiny {
  margin: 10px;
  padding: 5px 12px;
  font-size: 0.8em;
	font-weight: 400;
}
.button.tiny .fa {
	margin-right: 5px;
}

.accent_text {
  color: #ffd138;
}
small {
  font-size: 0.7em;
}

.facebook {
	background-color: #3b5998;
}
.twitter {
	background-color: #00aced;
}
.email {
	background-color: #dd4b39;
}

.video_wrap {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
}
.video_wrap iframe,
.video_wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*
* Accordions & Lists
**/
ul, ol {
  font-size: 1em;
  margin: 1.5em 3em;
}
li {
  line-height: 1.5;
	font-size: 1.1em;
  margin-bottom: 0.5em;
}
.flex-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.flex-list li {
  font-size: 1.8rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}

div.accordion {
    background-color: #fff;
    cursor: pointer;
    padding: 18px 55px 18px 18px;
    width: 100%;
    border-top: 2px solid #eaf3f6;
    text-align: left;
    outline: none;
    transition: 0.4s;
		position: relative;
}
div.accordion:after {
    content: "\f067";
		font-family: 'FontAwesome';
    position: absolute;
		right: 20px;
		top: calc( 50% - 13px );
    margin-left: 5px;
}
div.accordion.active:after {
    content: "\f068";
}
div.accordion:first-of-type {
  border-top: none;
}
.accordion-panel {
    padding: 0 18px;
    background-color: white;
    border-bottom: 2px solid #eaf3f6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.accordion-panel.panel-active {
	border-top: 1px solid #eff2f3;
}

/*
* Layout
**/
.wrapper {
	max-width: 900px;
  margin: 0 auto;
	padding: 0 15px;
	box-sizing: content-box;
}
.wrapper.wide {
	max-width: 900px;
}
/* .text-wrapper {
  max-width: 800px;
  margin: 0 auto;
} */
img {
  display: block;
  margin: 20px 0;
  max-width: 100%;
}
.flex-row {
  display: flex;
  justify-content: space-between;
}

/*
* Header
**/
section#header {
    background-image: url( '../img/crowdfiber-wallpaper.png' );
    color: #fff;
    background-size: cover;padding-bottom: 100px;
}
#header h1 {
	margin-bottom: 10px;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  max-width: 250px;
}
.logo em {
  font-size: 1.25em;
  display: inline-block;
}
.logo span {
	text-align: right;
	margin-top: -20px;
}

.intro a {
	color: #ffd138;
	text-decoration: underline;
}
.intro a:hover {
	text-decoration: none;
}

#main-nav {
	/* background-color: #eff2f3; */
  border-bottom: 2px solid #fff;
  box-sizing: border-box;
	padding-top: 2px;
}
#main-nav ul {
	list-style: none;
}
#main-nav li {
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 0;
}
#main-nav li a {
	color: #244360;
  text-transform: uppercase;
  padding: 10px 5px;
  display: block;
	position: relative;
}
#main-nav li a:after {
    content: '';
    background: #d13f3e;
    height: 2px;
    width: 0%;
    position: absolute;
    bottom: -2px;
    left: 50%;
		/* transform: translateX(50%); */
		transition: all 250ms ease-in-out;
}
#main-nav li a:hover:after {
    width: 100%;
		/* transform: translateX(0%); */
		left: 0;
}


main img {
  margin: 2.5em 0 5em;
  box-shadow: 24px 24px 0 rgba(255,255,255,0.4);
}

#address_form {
	background: linear-gradient(rgb(243, 239, 239) 110px, rgba(243, 239, 239, 0));
  border-radius: 5px;
  padding: 25px;
  margin-top: -90px;
}

aside.lockup {
  background-image: url( '../img/crowdfiber-wallpaper.png' );
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  padding: 125px 0;
  margin: 80px 0;
}
aside.lockup .wrapper {
  max-width: 1126px;
}
aside.lockup h2 {
  /* font-weight: 400; */
  margin-bottom: 40px;
  /* font-style: normal; */
  margin-top: 0;
}
aside.lockup .flex-list {
	list-style: none;
	flex-wrap: wrap;
}
aside.lockup .flex-list li {
	margin-right: 15px;
	font-size: 1.5em;
}
aside.lockup .flex-list li:before {
	content: '';
	display: inline-block;
	background-image: url('../img/checkmark-yellow@2x.png');
	background-size: cover;
	width: 30px;
	height: 27px;
	margin-right: 10px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
}
.grid.col3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.stats {
  background-image: linear-gradient(to right, #3c648a 0%, #3c648a 33%, #244360 33%, #244360 67%, #102941 67%, #102941 100%);
  margin: 50px -50px;
}
.stat {
  padding: 45px 15px;
  color: #fff;
  text-align: center;
  font-size: 48px;
  font-weight: 800;
}
.stat span {
  display: block;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 15px;
}


#steps {
  margin-bottom: 50px;
}
#steps .accordion {
  font-size: 2em;
  font-weight: 800;
  /* color: #888; */
}

#faq {
  margin-bottom: 80px;
}
#faq .accordion {
  font-size: 1.6em;
  font-weight: 400;
	line-height: 1.2;
}

/*
* Pricing Tables
**/
#pricing .flex-row {
	margin-bottom: 50px;
	flex-wrap: wrap;
}
.price-card {
  background: #fff;
  padding: 30px 25px;
  width: 31%;
  box-shadow: 0 5px 8px -4px rgba(0,0,0,0.05);
  margin: 10px;
	min-width: 255px;
}
p.package-title {
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-top: 0;
  font-size: 2.3em;
	font-weight: bold;
	line-height: 1;
	opacity: 0.8;
}
p.price {
  margin-top: 0;
  font-size: 2em;
  /* font-weight: bold; */
  margin-bottom: 15px;
  opacity: 0.8;
}
.price span {
  font-size: initial;
  font-weight: initial;
  margin-left: 4px;
}
.description p {
  border-top: 2px solid #e1e2e2;
  padding-top: 20px;
}
.description p {
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.7;
}


/*
* Responsive
**/
@media screen and (max-width: 999px) {
	.stats {
		margin: 50px 0;
	}
}
@media screen and (max-width: 960px) {
	aside.lockup {
		padding: 100px 0;
	}
	.flex-row {
		justify-content: center;
	}
}
@media screen and (max-width: 699px) {
	body {
		border-width: 12px;
	}
	#header .logo {
		flex-direction: column;
		align-items: flex-start;
	}
	#header .logo span {
		text-align: center;
		margin-bottom: 20px;
	}
	#header h1 {
		margin-top: 40px;
	}
	#main-nav ul {
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 0.8em;
	}
	.flex-list {
		flex-direction: column;
		align-items: flex-start;
		max-width: 325px;
		margin: 1.5em auto;
	}
	.flex-list .button {
		width: 100%;
		margin: 5px 0;
	}

}
@media screen and (max-width: 827px) {
	#address_form iframe {
		height: 1380px;
	}
}
@media screen and (max-width: 575px) {
	.stats.grid {
		grid-template-columns: auto;
		background-image: linear-gradient(to bottom, #3c648a 0%, #3c648a 33%, #244360 33%, #244360 67%, #102941 67%, #102941 100%)
	}
}
@media screen and (max-width: 450px) {
	html {
		font-size: 13px;
	}
	body {
		border-width: 0px;
	}
	.flex-list li {
		width: 100%;
	}
	.price-card {
		width: 100%;
	}
}
