@import "./fontello/css/fontello.css";

a,
b,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
html,
i,
img,
li,
ol,
p,
span,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
u,
ul {
	border: 0;
	margin: 0;
	padding: 0;
}
html,
body {
	height: 100%;
}
body {
	color: #000;
	font-family: "Helvetica Neue", "Helvetica", Arial, Sans-Serif;
	font-size: 16px;
	width: 100%;
}

/* BIZANGO TEXT - NEW DEFAULTS - DON'T HAVE A TOP MARGIN THAT IS NOT ZERO ON A CORE TEXT ELEMENT */
p,
li,
figcaption {
	font-size: 1rem;
	line-height: 1.4;
	margin-top: 0;
	margin-bottom: 0.7em;
}
figure {
	margin: 1em 0;
}
img,
iframe:not(.playerBox) {
	max-width: 100%;
}
ul {
	margin-left: 50px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 0.5em;
	line-height: 1.2;
	font-weight: normal;
	margin-top: 0;
}

h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.5em;
}
h3 {
	font-size: 1.2em;
}
h4 {
	font-size: 1.1em;
}
h5 {
	font-size: 1em;
}
h6 {
	font-size: 0.8em;
}

/* Please override this with a sitewide default link color! This should be the color for all body text links. Then override for nav, etc, as needed. */
a {
	color: #ff0000;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	color: #ff0000;
}

/* BIZANGO DEFAULT COLORS - REPLACE AND DELETE! */
body {
	background: #fff;
}

/* BIZANGO PAGE LAYOUT STRUCTURE */
.page_frame {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1262px;
	padding-left: 20px;
	padding-right: 20px;
	position: relative;
}

/* NAV */
.nav {
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav a {
	display: block;
	padding: 10px 20px;
	text-decoration: none;
}
.nav li {
	line-height: 1;
	margin: 0;
}
.nav > li {
	position: relative;
}
.nav .subnav li {
	display: block;
}
.subnav {
	display: block;
	left: -9999px;
	margin: 0;
	min-width: 100%;
	position: absolute;
	top: 100%;
	white-space: nowrap;
	z-index: 1;
}
@media only screen and (min-width: 768px) {
	.nav {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
	}
}

.logo a,
.logo a:hover,
.logo a:active,
.logo a:focus {
	text-decoration: none;
}
.logo a {
	display: block;
	padding: 10px 0;
}

/* header */
.header {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 9;
}
.header__frame {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.header__nav-toggle {
	cursor: pointer;
	display: inline-block;
	border: 1px solid #000;
	line-height: 1;
	padding: 6px;
}
.header .nav > li:hover .subnav {
	left: 0;
}
@media only screen and (max-width: 767px) {
	.header__nav {
		padding-bottom: 10px;
		padding-top: 10px;
		text-align: right;
	}
	.header__nav-wrapper {
		background-color: white;
		display: none;
		left: 0;
		position: absolute;
		right: 0;
		text-align: left;
		top: 100%;
		z-index: 9;
	}
	.header__nav--utility {
		display: none;
	}
	.header__nav-wrapper.toggle-show {
		display: initial;
	}
	.header .subnav {
		padding-left: 20px;
	}
	.header .nav > li:hover .subnav {
		position: relative;
	}
}
@media only screen and (min-width: 768px) {
	.header {
		padding-bottom: 1rem;
		padding-top: 1rem;
	}
	.header__frame {
		align-items: flex-end;
	}
	.header__nav-toggle,
	.header__nav-wrapper .nav--utility {
		display: none;
	}
}

/* footer */
.footer {
	padding-bottom: 3rem;
	padding-top: 3rem;
}
.footer__logo {
	margin: 0 auto;
}
.footer .subnav {
	display: none;
}
@media only screen and (min-width: 768px) {
	.footer__frame {
		align-items: flex-end;
		display: flex;
		justify-content: space-between;
	}
}
.deep-footer {
	background-color: #000;
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
}
.deep-footer__content {
	color: #888;
	text-align: center;
}
.deep-footer .copyright {
	font-size: 0.625rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
#bizango {
	width: 220px;
	height: 12px;
	padding-bottom: 20px;
	font-size: 10px;
	color: #888;
	display: block;
	margin: 40px auto 25px;
	background-image: url("/images/bizango-white.png");
	background-repeat: no-repeat;
	background-position: center bottom;
}

/* REQUIRED FOR CMS */
.help {
	background: #ddd;
	border-radius: 8px;
	color: #666;
	font-size: 13px;
	line-height: 1;
	margin: 0;
	padding: 10px;
}
.help p a {
	color: #ddd;
	text-decoration: underline;
}
.block__admin-view {
	padding-left: 42px;
}
@media only screen and (max-width: 767px) {
	.bizango_cms_content [style*="text-align: right"] {
		text-align: left !important;
	}
}

/* OPTIONAL */
img.illustration {
	display: block;
	margin: 0;
	margin-bottom: 20px;
}

/* helpers-> clearfix */
.group:before,
.group:after {
	content: "";
	display: table;
}
.group:after {
	clear: both;
}
.group {
	zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}
.clear {
	clear: both;
}
html body .block #mc_embed_signup {
	background-color: transparent;
	display: block;
	margin: 0 auto;
	max-width: 100%;
	font-family: "Source Sans Pro", sans-serif;
}
html body .block #mc_embed_signup input[type="email"] {
	background-color: #fce9f0;
	color: #3b4258;
	width: 95%;
}
html body .block #mc_embed_signup input[type="submit"] {
	background-color: #7fafc4;
	font-size: 12px;
	margin-left: 10px;
	margin-top: 31px;
}
html body .block #mc_embed_signup input[type="submit"]:hover,
html body .block #mc_embed_signup input[type="submit"]:focus {
	background-color: #3b4258;
}
html body .block #mc_embed_signup #mce-success-response {
	color: #3b4258;
	text-align: left;
}
@media only screen and (max-width: 767px) {
	html body .block #mc_embed_signup .display-flex {
		display: block;
		text-align: center;
	}
	html body .block #mc_embed_signup input[type="email"] {
		margin: 0 auto;
		max-width: 385px;
		width: 100%;
	}
	html body .block #mc_embed_signup input[type="submit"] {
		margin-left: 0;
	}
}
/* QUICK FLAIR DESIGN UPDATE */
.block_id-333608:before {
	background-image: url(/images/sites/jq/flair.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 58px;
	left: 50%;
	position: absolute;
	top: 4px;
	transform: translate(-50%, -50%);
	width: 216px;
	z-index: 1;
}
